api

package
v0.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 15, 2023 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

Functions

This section is empty.

Types

type AdvanceDecryptRequest added in v0.3.0

type AdvanceDecryptRequest struct {
	CiphertextBlob []byte `protobuf:"bytes,1,opt,name=CiphertextBlob,proto3" json:"CiphertextBlob,omitempty"`
	KeyId          string `protobuf:"bytes,2,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Algorithm      string `protobuf:"bytes,3,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	Aad            []byte `protobuf:"bytes,4,opt,name=Aad,proto3" json:"Aad,omitempty"`
	Iv             []byte `protobuf:"bytes,5,opt,name=Iv,proto3" json:"Iv,omitempty"`
	PaddingMode    string `protobuf:"bytes,6,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceDecryptRequest) Descriptor deprecated added in v0.3.0

func (*AdvanceDecryptRequest) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceDecryptRequest.ProtoReflect.Descriptor instead.

func (*AdvanceDecryptRequest) GetAad added in v0.3.0

func (x *AdvanceDecryptRequest) GetAad() []byte

func (*AdvanceDecryptRequest) GetAlgorithm added in v0.3.0

func (x *AdvanceDecryptRequest) GetAlgorithm() string

func (*AdvanceDecryptRequest) GetCiphertextBlob added in v0.3.0

func (x *AdvanceDecryptRequest) GetCiphertextBlob() []byte

func (*AdvanceDecryptRequest) GetIv added in v0.3.0

func (x *AdvanceDecryptRequest) GetIv() []byte

func (*AdvanceDecryptRequest) GetKeyId added in v0.3.0

func (x *AdvanceDecryptRequest) GetKeyId() string

func (*AdvanceDecryptRequest) GetPaddingMode added in v0.3.0

func (x *AdvanceDecryptRequest) GetPaddingMode() string

func (*AdvanceDecryptRequest) ProtoMessage added in v0.3.0

func (*AdvanceDecryptRequest) ProtoMessage()

func (*AdvanceDecryptRequest) ProtoReflect added in v0.3.0

func (x *AdvanceDecryptRequest) ProtoReflect() protoreflect.Message

func (*AdvanceDecryptRequest) Reset added in v0.3.0

func (x *AdvanceDecryptRequest) Reset()

func (*AdvanceDecryptRequest) String added in v0.3.0

func (x *AdvanceDecryptRequest) String() string

type AdvanceDecryptResponse added in v0.3.0

type AdvanceDecryptResponse struct {
	KeyId        string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Plaintext    []byte `protobuf:"bytes,2,opt,name=Plaintext,proto3" json:"Plaintext,omitempty"`
	RequestId    string `protobuf:"bytes,3,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm    string `protobuf:"bytes,4,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	PaddingMode  string `protobuf:"bytes,5,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	KeyVersionId string `protobuf:"bytes,6,opt,name=KeyVersionId,proto3" json:"KeyVersionId,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceDecryptResponse) Descriptor deprecated added in v0.3.0

func (*AdvanceDecryptResponse) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceDecryptResponse.ProtoReflect.Descriptor instead.

func (*AdvanceDecryptResponse) GetAlgorithm added in v0.3.0

func (x *AdvanceDecryptResponse) GetAlgorithm() string

func (*AdvanceDecryptResponse) GetKeyId added in v0.3.0

func (x *AdvanceDecryptResponse) GetKeyId() string

func (*AdvanceDecryptResponse) GetKeyVersionId added in v0.3.0

func (x *AdvanceDecryptResponse) GetKeyVersionId() string

func (*AdvanceDecryptResponse) GetPaddingMode added in v0.3.0

func (x *AdvanceDecryptResponse) GetPaddingMode() string

func (*AdvanceDecryptResponse) GetPlaintext added in v0.3.0

func (x *AdvanceDecryptResponse) GetPlaintext() []byte

func (*AdvanceDecryptResponse) GetRequestId added in v0.3.0

func (x *AdvanceDecryptResponse) GetRequestId() string

func (*AdvanceDecryptResponse) ProtoMessage added in v0.3.0

func (*AdvanceDecryptResponse) ProtoMessage()

func (*AdvanceDecryptResponse) ProtoReflect added in v0.3.0

func (x *AdvanceDecryptResponse) ProtoReflect() protoreflect.Message

func (*AdvanceDecryptResponse) Reset added in v0.3.0

func (x *AdvanceDecryptResponse) Reset()

func (*AdvanceDecryptResponse) String added in v0.3.0

func (x *AdvanceDecryptResponse) String() string

type AdvanceEncryptRequest added in v0.3.0

type AdvanceEncryptRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Plaintext   []byte `protobuf:"bytes,2,opt,name=Plaintext,proto3" json:"Plaintext,omitempty"`
	Algorithm   string `protobuf:"bytes,3,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	Aad         []byte `protobuf:"bytes,4,opt,name=Aad,proto3" json:"Aad,omitempty"`
	Iv          []byte `protobuf:"bytes,5,opt,name=Iv,proto3" json:"Iv,omitempty"`
	PaddingMode string `protobuf:"bytes,6,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	// contains filtered or unexported fields
}

高级加解密接口

func (*AdvanceEncryptRequest) Descriptor deprecated added in v0.3.0

func (*AdvanceEncryptRequest) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceEncryptRequest.ProtoReflect.Descriptor instead.

func (*AdvanceEncryptRequest) GetAad added in v0.3.0

func (x *AdvanceEncryptRequest) GetAad() []byte

func (*AdvanceEncryptRequest) GetAlgorithm added in v0.3.0

func (x *AdvanceEncryptRequest) GetAlgorithm() string

func (*AdvanceEncryptRequest) GetIv added in v0.3.0

func (x *AdvanceEncryptRequest) GetIv() []byte

func (*AdvanceEncryptRequest) GetKeyId added in v0.3.0

func (x *AdvanceEncryptRequest) GetKeyId() string

func (*AdvanceEncryptRequest) GetPaddingMode added in v0.3.0

func (x *AdvanceEncryptRequest) GetPaddingMode() string

func (*AdvanceEncryptRequest) GetPlaintext added in v0.3.0

func (x *AdvanceEncryptRequest) GetPlaintext() []byte

func (*AdvanceEncryptRequest) ProtoMessage added in v0.3.0

func (*AdvanceEncryptRequest) ProtoMessage()

func (*AdvanceEncryptRequest) ProtoReflect added in v0.3.0

func (x *AdvanceEncryptRequest) ProtoReflect() protoreflect.Message

func (*AdvanceEncryptRequest) Reset added in v0.3.0

func (x *AdvanceEncryptRequest) Reset()

func (*AdvanceEncryptRequest) String added in v0.3.0

func (x *AdvanceEncryptRequest) String() string

type AdvanceEncryptResponse added in v0.3.0

type AdvanceEncryptResponse struct {
	KeyId          string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	CiphertextBlob []byte `protobuf:"bytes,2,opt,name=CiphertextBlob,proto3" json:"CiphertextBlob,omitempty"`
	Iv             []byte `protobuf:"bytes,3,opt,name=Iv,proto3" json:"Iv,omitempty"`
	RequestId      string `protobuf:"bytes,4,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm      string `protobuf:"bytes,5,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	PaddingMode    string `protobuf:"bytes,6,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	KeyVersionId   string `protobuf:"bytes,7,opt,name=KeyVersionId,proto3" json:"KeyVersionId,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceEncryptResponse) Descriptor deprecated added in v0.3.0

func (*AdvanceEncryptResponse) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceEncryptResponse.ProtoReflect.Descriptor instead.

func (*AdvanceEncryptResponse) GetAlgorithm added in v0.3.0

func (x *AdvanceEncryptResponse) GetAlgorithm() string

func (*AdvanceEncryptResponse) GetCiphertextBlob added in v0.3.0

func (x *AdvanceEncryptResponse) GetCiphertextBlob() []byte

func (*AdvanceEncryptResponse) GetIv added in v0.3.0

func (x *AdvanceEncryptResponse) GetIv() []byte

func (*AdvanceEncryptResponse) GetKeyId added in v0.3.0

func (x *AdvanceEncryptResponse) GetKeyId() string

func (*AdvanceEncryptResponse) GetKeyVersionId added in v0.3.0

func (x *AdvanceEncryptResponse) GetKeyVersionId() string

func (*AdvanceEncryptResponse) GetPaddingMode added in v0.3.0

func (x *AdvanceEncryptResponse) GetPaddingMode() string

func (*AdvanceEncryptResponse) GetRequestId added in v0.3.0

func (x *AdvanceEncryptResponse) GetRequestId() string

func (*AdvanceEncryptResponse) ProtoMessage added in v0.3.0

func (*AdvanceEncryptResponse) ProtoMessage()

func (*AdvanceEncryptResponse) ProtoReflect added in v0.3.0

func (x *AdvanceEncryptResponse) ProtoReflect() protoreflect.Message

func (*AdvanceEncryptResponse) Reset added in v0.3.0

func (x *AdvanceEncryptResponse) Reset()

func (*AdvanceEncryptResponse) String added in v0.3.0

func (x *AdvanceEncryptResponse) String() string

type AdvanceGenerateDataKeyPairRequest added in v0.5.0

type AdvanceGenerateDataKeyPairRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	KeyPairSpec string `protobuf:"bytes,2,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	KeyFormat   string `protobuf:"bytes,3,opt,name=KeyFormat,proto3" json:"KeyFormat,omitempty"`
	Aad         []byte `protobuf:"bytes,4,opt,name=Aad,proto3" json:"Aad,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceGenerateDataKeyPairRequest) Descriptor deprecated added in v0.5.0

func (*AdvanceGenerateDataKeyPairRequest) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceGenerateDataKeyPairRequest.ProtoReflect.Descriptor instead.

func (*AdvanceGenerateDataKeyPairRequest) GetAad added in v0.5.0

func (*AdvanceGenerateDataKeyPairRequest) GetKeyFormat added in v0.5.0

func (x *AdvanceGenerateDataKeyPairRequest) GetKeyFormat() string

func (*AdvanceGenerateDataKeyPairRequest) GetKeyId added in v0.5.0

func (*AdvanceGenerateDataKeyPairRequest) GetKeyPairSpec added in v0.5.0

func (x *AdvanceGenerateDataKeyPairRequest) GetKeyPairSpec() string

func (*AdvanceGenerateDataKeyPairRequest) ProtoMessage added in v0.5.0

func (*AdvanceGenerateDataKeyPairRequest) ProtoMessage()

func (*AdvanceGenerateDataKeyPairRequest) ProtoReflect added in v0.5.0

func (*AdvanceGenerateDataKeyPairRequest) Reset added in v0.5.0

func (*AdvanceGenerateDataKeyPairRequest) String added in v0.5.0

type AdvanceGenerateDataKeyPairResponse added in v0.5.0

type AdvanceGenerateDataKeyPairResponse struct {
	KeyId                    string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Iv                       []byte `protobuf:"bytes,2,opt,name=Iv,proto3" json:"Iv,omitempty"`
	KeyPairSpec              string `protobuf:"bytes,3,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	PrivateKeyPlaintext      []byte `protobuf:"bytes,4,opt,name=PrivateKeyPlaintext,proto3" json:"PrivateKeyPlaintext,omitempty"`
	PrivateKeyCiphertextBlob []byte `protobuf:"bytes,5,opt,name=PrivateKeyCiphertextBlob,proto3" json:"PrivateKeyCiphertextBlob,omitempty"`
	PublicKey                []byte `protobuf:"bytes,6,opt,name=PublicKey,proto3" json:"PublicKey,omitempty"`
	RequestId                string `protobuf:"bytes,7,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm                string `protobuf:"bytes,8,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	KeyVersionId             string `protobuf:"bytes,9,opt,name=KeyVersionId,proto3" json:"KeyVersionId,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceGenerateDataKeyPairResponse) Descriptor deprecated added in v0.5.0

func (*AdvanceGenerateDataKeyPairResponse) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceGenerateDataKeyPairResponse.ProtoReflect.Descriptor instead.

func (*AdvanceGenerateDataKeyPairResponse) GetAlgorithm added in v0.5.0

func (x *AdvanceGenerateDataKeyPairResponse) GetAlgorithm() string

func (*AdvanceGenerateDataKeyPairResponse) GetIv added in v0.5.0

func (*AdvanceGenerateDataKeyPairResponse) GetKeyId added in v0.5.0

func (*AdvanceGenerateDataKeyPairResponse) GetKeyPairSpec added in v0.5.0

func (x *AdvanceGenerateDataKeyPairResponse) GetKeyPairSpec() string

func (*AdvanceGenerateDataKeyPairResponse) GetKeyVersionId added in v0.5.0

func (x *AdvanceGenerateDataKeyPairResponse) GetKeyVersionId() string

func (*AdvanceGenerateDataKeyPairResponse) GetPrivateKeyCiphertextBlob added in v0.5.0

func (x *AdvanceGenerateDataKeyPairResponse) GetPrivateKeyCiphertextBlob() []byte

func (*AdvanceGenerateDataKeyPairResponse) GetPrivateKeyPlaintext added in v0.5.0

func (x *AdvanceGenerateDataKeyPairResponse) GetPrivateKeyPlaintext() []byte

func (*AdvanceGenerateDataKeyPairResponse) GetPublicKey added in v0.5.0

func (x *AdvanceGenerateDataKeyPairResponse) GetPublicKey() []byte

func (*AdvanceGenerateDataKeyPairResponse) GetRequestId added in v0.5.0

func (x *AdvanceGenerateDataKeyPairResponse) GetRequestId() string

func (*AdvanceGenerateDataKeyPairResponse) ProtoMessage added in v0.5.0

func (*AdvanceGenerateDataKeyPairResponse) ProtoMessage()

func (*AdvanceGenerateDataKeyPairResponse) ProtoReflect added in v0.5.0

func (*AdvanceGenerateDataKeyPairResponse) Reset added in v0.5.0

func (*AdvanceGenerateDataKeyPairResponse) String added in v0.5.0

type AdvanceGenerateDataKeyPairWithoutPlaintextRequest added in v0.5.0

type AdvanceGenerateDataKeyPairWithoutPlaintextRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	KeyPairSpec string `protobuf:"bytes,2,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	KeyFormat   string `protobuf:"bytes,3,opt,name=KeyFormat,proto3" json:"KeyFormat,omitempty"`
	Aad         []byte `protobuf:"bytes,4,opt,name=Aad,proto3" json:"Aad,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) Descriptor deprecated added in v0.5.0

Deprecated: Use AdvanceGenerateDataKeyPairWithoutPlaintextRequest.ProtoReflect.Descriptor instead.

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) GetAad added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) GetKeyFormat added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) GetKeyId added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) GetKeyPairSpec added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) ProtoMessage added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) ProtoReflect added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) Reset added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextRequest) String added in v0.5.0

type AdvanceGenerateDataKeyPairWithoutPlaintextResponse added in v0.5.0

type AdvanceGenerateDataKeyPairWithoutPlaintextResponse struct {
	KeyId                    string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Iv                       []byte `protobuf:"bytes,2,opt,name=Iv,proto3" json:"Iv,omitempty"`
	KeyPairSpec              string `protobuf:"bytes,3,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	PrivateKeyCiphertextBlob []byte `protobuf:"bytes,4,opt,name=PrivateKeyCiphertextBlob,proto3" json:"PrivateKeyCiphertextBlob,omitempty"`
	PublicKey                []byte `protobuf:"bytes,5,opt,name=PublicKey,proto3" json:"PublicKey,omitempty"`
	RequestId                string `protobuf:"bytes,6,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm                string `protobuf:"bytes,7,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	KeyVersionId             string `protobuf:"bytes,8,opt,name=KeyVersionId,proto3" json:"KeyVersionId,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) Descriptor deprecated added in v0.5.0

Deprecated: Use AdvanceGenerateDataKeyPairWithoutPlaintextResponse.ProtoReflect.Descriptor instead.

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetAlgorithm added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetIv added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetKeyId added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetKeyPairSpec added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetKeyVersionId added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetPrivateKeyCiphertextBlob added in v0.5.0

func (x *AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetPrivateKeyCiphertextBlob() []byte

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetPublicKey added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) GetRequestId added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) ProtoMessage added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) ProtoReflect added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) Reset added in v0.5.0

func (*AdvanceGenerateDataKeyPairWithoutPlaintextResponse) String added in v0.5.0

type AdvanceGenerateDataKeyRequest added in v0.3.0

type AdvanceGenerateDataKeyRequest struct {
	KeyId         string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	NumberOfBytes int32  `protobuf:"varint,2,opt,name=NumberOfBytes,proto3" json:"NumberOfBytes,omitempty"`
	Aad           []byte `protobuf:"bytes,3,opt,name=Aad,proto3" json:"Aad,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceGenerateDataKeyRequest) Descriptor deprecated added in v0.3.0

func (*AdvanceGenerateDataKeyRequest) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceGenerateDataKeyRequest.ProtoReflect.Descriptor instead.

func (*AdvanceGenerateDataKeyRequest) GetAad added in v0.3.0

func (x *AdvanceGenerateDataKeyRequest) GetAad() []byte

func (*AdvanceGenerateDataKeyRequest) GetKeyId added in v0.3.0

func (x *AdvanceGenerateDataKeyRequest) GetKeyId() string

func (*AdvanceGenerateDataKeyRequest) GetNumberOfBytes added in v0.3.0

func (x *AdvanceGenerateDataKeyRequest) GetNumberOfBytes() int32

func (*AdvanceGenerateDataKeyRequest) ProtoMessage added in v0.3.0

func (*AdvanceGenerateDataKeyRequest) ProtoMessage()

func (*AdvanceGenerateDataKeyRequest) ProtoReflect added in v0.3.0

func (*AdvanceGenerateDataKeyRequest) Reset added in v0.3.0

func (x *AdvanceGenerateDataKeyRequest) Reset()

func (*AdvanceGenerateDataKeyRequest) String added in v0.3.0

type AdvanceGenerateDataKeyResponse added in v0.3.0

type AdvanceGenerateDataKeyResponse struct {
	KeyId          string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Iv             []byte `protobuf:"bytes,2,opt,name=Iv,proto3" json:"Iv,omitempty"`
	Plaintext      []byte `protobuf:"bytes,3,opt,name=Plaintext,proto3" json:"Plaintext,omitempty"`
	CiphertextBlob []byte `protobuf:"bytes,4,opt,name=CiphertextBlob,proto3" json:"CiphertextBlob,omitempty"`
	RequestId      string `protobuf:"bytes,5,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm      string `protobuf:"bytes,6,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	KeyVersionId   string `protobuf:"bytes,7,opt,name=KeyVersionId,proto3" json:"KeyVersionId,omitempty"`
	// contains filtered or unexported fields
}

func (*AdvanceGenerateDataKeyResponse) Descriptor deprecated added in v0.3.0

func (*AdvanceGenerateDataKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use AdvanceGenerateDataKeyResponse.ProtoReflect.Descriptor instead.

func (*AdvanceGenerateDataKeyResponse) GetAlgorithm added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) GetAlgorithm() string

func (*AdvanceGenerateDataKeyResponse) GetCiphertextBlob added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) GetCiphertextBlob() []byte

func (*AdvanceGenerateDataKeyResponse) GetIv added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) GetIv() []byte

func (*AdvanceGenerateDataKeyResponse) GetKeyId added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) GetKeyId() string

func (*AdvanceGenerateDataKeyResponse) GetKeyVersionId added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) GetKeyVersionId() string

func (*AdvanceGenerateDataKeyResponse) GetPlaintext added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) GetPlaintext() []byte

func (*AdvanceGenerateDataKeyResponse) GetRequestId added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) GetRequestId() string

func (*AdvanceGenerateDataKeyResponse) ProtoMessage added in v0.3.0

func (*AdvanceGenerateDataKeyResponse) ProtoMessage()

func (*AdvanceGenerateDataKeyResponse) ProtoReflect added in v0.3.0

func (*AdvanceGenerateDataKeyResponse) Reset added in v0.3.0

func (x *AdvanceGenerateDataKeyResponse) Reset()

func (*AdvanceGenerateDataKeyResponse) String added in v0.3.0

type DecryptRequest

type DecryptRequest struct {
	CiphertextBlob []byte `protobuf:"bytes,1,opt,name=CiphertextBlob,proto3" json:"CiphertextBlob,omitempty"`
	KeyId          string `protobuf:"bytes,2,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Algorithm      string `protobuf:"bytes,3,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	Aad            []byte `protobuf:"bytes,4,opt,name=Aad,proto3" json:"Aad,omitempty"`
	Iv             []byte `protobuf:"bytes,5,opt,name=Iv,proto3" json:"Iv,omitempty"`
	PaddingMode    string `protobuf:"bytes,6,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	// contains filtered or unexported fields
}

func (*DecryptRequest) Descriptor deprecated

func (*DecryptRequest) Descriptor() ([]byte, []int)

Deprecated: Use DecryptRequest.ProtoReflect.Descriptor instead.

func (*DecryptRequest) GetAad added in v0.3.0

func (x *DecryptRequest) GetAad() []byte

func (*DecryptRequest) GetAlgorithm added in v0.3.0

func (x *DecryptRequest) GetAlgorithm() string

func (*DecryptRequest) GetCiphertextBlob added in v0.3.0

func (x *DecryptRequest) GetCiphertextBlob() []byte

func (*DecryptRequest) GetIv added in v0.3.0

func (x *DecryptRequest) GetIv() []byte

func (*DecryptRequest) GetKeyId added in v0.3.0

func (x *DecryptRequest) GetKeyId() string

func (*DecryptRequest) GetPaddingMode added in v0.3.0

func (x *DecryptRequest) GetPaddingMode() string

func (*DecryptRequest) ProtoMessage

func (*DecryptRequest) ProtoMessage()

func (*DecryptRequest) ProtoReflect added in v0.3.0

func (x *DecryptRequest) ProtoReflect() protoreflect.Message

func (*DecryptRequest) Reset

func (x *DecryptRequest) Reset()

func (*DecryptRequest) String

func (x *DecryptRequest) String() string

type DecryptResponse

type DecryptResponse struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Plaintext   []byte `protobuf:"bytes,2,opt,name=Plaintext,proto3" json:"Plaintext,omitempty"`
	RequestId   string `protobuf:"bytes,3,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm   string `protobuf:"bytes,4,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	PaddingMode string `protobuf:"bytes,5,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	// contains filtered or unexported fields
}

func (*DecryptResponse) Descriptor deprecated

func (*DecryptResponse) Descriptor() ([]byte, []int)

Deprecated: Use DecryptResponse.ProtoReflect.Descriptor instead.

func (*DecryptResponse) GetAlgorithm added in v0.3.0

func (x *DecryptResponse) GetAlgorithm() string

func (*DecryptResponse) GetKeyId added in v0.3.0

func (x *DecryptResponse) GetKeyId() string

func (*DecryptResponse) GetPaddingMode added in v0.3.0

func (x *DecryptResponse) GetPaddingMode() string

func (*DecryptResponse) GetPlaintext added in v0.3.0

func (x *DecryptResponse) GetPlaintext() []byte

func (*DecryptResponse) GetRequestId added in v0.3.0

func (x *DecryptResponse) GetRequestId() string

func (*DecryptResponse) ProtoMessage

func (*DecryptResponse) ProtoMessage()

func (*DecryptResponse) ProtoReflect added in v0.3.0

func (x *DecryptResponse) ProtoReflect() protoreflect.Message

func (*DecryptResponse) Reset

func (x *DecryptResponse) Reset()

func (*DecryptResponse) String

func (x *DecryptResponse) String() string

type EncryptRequest

type EncryptRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Plaintext   []byte `protobuf:"bytes,2,opt,name=Plaintext,proto3" json:"Plaintext,omitempty"`
	Algorithm   string `protobuf:"bytes,3,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	Aad         []byte `protobuf:"bytes,4,opt,name=Aad,proto3" json:"Aad,omitempty"`
	Iv          []byte `protobuf:"bytes,5,opt,name=Iv,proto3" json:"Iv,omitempty"`
	PaddingMode string `protobuf:"bytes,6,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptRequest) Descriptor deprecated

func (*EncryptRequest) Descriptor() ([]byte, []int)

Deprecated: Use EncryptRequest.ProtoReflect.Descriptor instead.

func (*EncryptRequest) GetAad added in v0.3.0

func (x *EncryptRequest) GetAad() []byte

func (*EncryptRequest) GetAlgorithm added in v0.3.0

func (x *EncryptRequest) GetAlgorithm() string

func (*EncryptRequest) GetIv added in v0.3.0

func (x *EncryptRequest) GetIv() []byte

func (*EncryptRequest) GetKeyId added in v0.3.0

func (x *EncryptRequest) GetKeyId() string

func (*EncryptRequest) GetPaddingMode added in v0.3.0

func (x *EncryptRequest) GetPaddingMode() string

func (*EncryptRequest) GetPlaintext added in v0.3.0

func (x *EncryptRequest) GetPlaintext() []byte

func (*EncryptRequest) ProtoMessage

func (*EncryptRequest) ProtoMessage()

func (*EncryptRequest) ProtoReflect added in v0.3.0

func (x *EncryptRequest) ProtoReflect() protoreflect.Message

func (*EncryptRequest) Reset

func (x *EncryptRequest) Reset()

func (*EncryptRequest) String

func (x *EncryptRequest) String() string

type EncryptResponse

type EncryptResponse struct {
	KeyId          string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	CiphertextBlob []byte `protobuf:"bytes,2,opt,name=CiphertextBlob,proto3" json:"CiphertextBlob,omitempty"`
	Iv             []byte `protobuf:"bytes,3,opt,name=Iv,proto3" json:"Iv,omitempty"`
	RequestId      string `protobuf:"bytes,4,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm      string `protobuf:"bytes,5,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	PaddingMode    string `protobuf:"bytes,6,opt,name=PaddingMode,proto3" json:"PaddingMode,omitempty"`
	// contains filtered or unexported fields
}

func (*EncryptResponse) Descriptor deprecated

func (*EncryptResponse) Descriptor() ([]byte, []int)

Deprecated: Use EncryptResponse.ProtoReflect.Descriptor instead.

func (*EncryptResponse) GetAlgorithm added in v0.3.0

func (x *EncryptResponse) GetAlgorithm() string

func (*EncryptResponse) GetCiphertextBlob added in v0.3.0

func (x *EncryptResponse) GetCiphertextBlob() []byte

func (*EncryptResponse) GetIv added in v0.3.0

func (x *EncryptResponse) GetIv() []byte

func (*EncryptResponse) GetKeyId added in v0.3.0

func (x *EncryptResponse) GetKeyId() string

func (*EncryptResponse) GetPaddingMode added in v0.3.0

func (x *EncryptResponse) GetPaddingMode() string

func (*EncryptResponse) GetRequestId added in v0.3.0

func (x *EncryptResponse) GetRequestId() string

func (*EncryptResponse) ProtoMessage

func (*EncryptResponse) ProtoMessage()

func (*EncryptResponse) ProtoReflect added in v0.3.0

func (x *EncryptResponse) ProtoReflect() protoreflect.Message

func (*EncryptResponse) Reset

func (x *EncryptResponse) Reset()

func (*EncryptResponse) String

func (x *EncryptResponse) String() string

type Error

type Error struct {
	StatusCode   int32  `protobuf:"varint,1,opt,name=StatusCode,proto3" json:"StatusCode,omitempty"`
	ErrorCode    string `protobuf:"bytes,2,opt,name=ErrorCode,proto3" json:"ErrorCode,omitempty"`
	ErrorMessage string `protobuf:"bytes,3,opt,name=ErrorMessage,proto3" json:"ErrorMessage,omitempty"`
	RequestId    string `protobuf:"bytes,4,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	// contains filtered or unexported fields
}

func (*Error) Descriptor deprecated

func (*Error) Descriptor() ([]byte, []int)

Deprecated: Use Error.ProtoReflect.Descriptor instead.

func (*Error) GetErrorCode added in v0.3.0

func (x *Error) GetErrorCode() string

func (*Error) GetErrorMessage added in v0.3.0

func (x *Error) GetErrorMessage() string

func (*Error) GetRequestId added in v0.3.0

func (x *Error) GetRequestId() string

func (*Error) GetStatusCode added in v0.3.0

func (x *Error) GetStatusCode() int32

func (*Error) ProtoMessage

func (*Error) ProtoMessage()

func (*Error) ProtoReflect added in v0.3.0

func (x *Error) ProtoReflect() protoreflect.Message

func (*Error) Reset

func (x *Error) Reset()

func (*Error) String

func (x *Error) String() string

type GenerateDataKeyPairRequest added in v0.5.0

type GenerateDataKeyPairRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Algorithm   string `protobuf:"bytes,2,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	KeyPairSpec string `protobuf:"bytes,3,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	KeyFormat   string `protobuf:"bytes,4,opt,name=KeyFormat,proto3" json:"KeyFormat,omitempty"`
	Aad         []byte `protobuf:"bytes,5,opt,name=Aad,proto3" json:"Aad,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateDataKeyPairRequest) Descriptor deprecated added in v0.5.0

func (*GenerateDataKeyPairRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenerateDataKeyPairRequest.ProtoReflect.Descriptor instead.

func (*GenerateDataKeyPairRequest) GetAad added in v0.5.0

func (x *GenerateDataKeyPairRequest) GetAad() []byte

func (*GenerateDataKeyPairRequest) GetAlgorithm added in v0.5.0

func (x *GenerateDataKeyPairRequest) GetAlgorithm() string

func (*GenerateDataKeyPairRequest) GetKeyFormat added in v0.5.0

func (x *GenerateDataKeyPairRequest) GetKeyFormat() string

func (*GenerateDataKeyPairRequest) GetKeyId added in v0.5.0

func (x *GenerateDataKeyPairRequest) GetKeyId() string

func (*GenerateDataKeyPairRequest) GetKeyPairSpec added in v0.5.0

func (x *GenerateDataKeyPairRequest) GetKeyPairSpec() string

func (*GenerateDataKeyPairRequest) ProtoMessage added in v0.5.0

func (*GenerateDataKeyPairRequest) ProtoMessage()

func (*GenerateDataKeyPairRequest) ProtoReflect added in v0.5.0

func (*GenerateDataKeyPairRequest) Reset added in v0.5.0

func (x *GenerateDataKeyPairRequest) Reset()

func (*GenerateDataKeyPairRequest) String added in v0.5.0

func (x *GenerateDataKeyPairRequest) String() string

type GenerateDataKeyPairResponse added in v0.5.0

type GenerateDataKeyPairResponse struct {
	KeyId                    string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Iv                       []byte `protobuf:"bytes,2,opt,name=Iv,proto3" json:"Iv,omitempty"`
	KeyPairSpec              string `protobuf:"bytes,3,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	PrivateKeyPlaintext      []byte `protobuf:"bytes,4,opt,name=PrivateKeyPlaintext,proto3" json:"PrivateKeyPlaintext,omitempty"`
	PrivateKeyCiphertextBlob []byte `protobuf:"bytes,5,opt,name=PrivateKeyCiphertextBlob,proto3" json:"PrivateKeyCiphertextBlob,omitempty"`
	PublicKey                []byte `protobuf:"bytes,6,opt,name=PublicKey,proto3" json:"PublicKey,omitempty"`
	RequestId                string `protobuf:"bytes,7,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm                string `protobuf:"bytes,8,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateDataKeyPairResponse) Descriptor deprecated added in v0.5.0

func (*GenerateDataKeyPairResponse) Descriptor() ([]byte, []int)

Deprecated: Use GenerateDataKeyPairResponse.ProtoReflect.Descriptor instead.

func (*GenerateDataKeyPairResponse) GetAlgorithm added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetAlgorithm() string

func (*GenerateDataKeyPairResponse) GetIv added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetIv() []byte

func (*GenerateDataKeyPairResponse) GetKeyId added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetKeyId() string

func (*GenerateDataKeyPairResponse) GetKeyPairSpec added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetKeyPairSpec() string

func (*GenerateDataKeyPairResponse) GetPrivateKeyCiphertextBlob added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetPrivateKeyCiphertextBlob() []byte

func (*GenerateDataKeyPairResponse) GetPrivateKeyPlaintext added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetPrivateKeyPlaintext() []byte

func (*GenerateDataKeyPairResponse) GetPublicKey added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetPublicKey() []byte

func (*GenerateDataKeyPairResponse) GetRequestId added in v0.5.0

func (x *GenerateDataKeyPairResponse) GetRequestId() string

func (*GenerateDataKeyPairResponse) ProtoMessage added in v0.5.0

func (*GenerateDataKeyPairResponse) ProtoMessage()

func (*GenerateDataKeyPairResponse) ProtoReflect added in v0.5.0

func (*GenerateDataKeyPairResponse) Reset added in v0.5.0

func (x *GenerateDataKeyPairResponse) Reset()

func (*GenerateDataKeyPairResponse) String added in v0.5.0

func (x *GenerateDataKeyPairResponse) String() string

type GenerateDataKeyPairWithoutPlaintextRequest added in v0.5.0

type GenerateDataKeyPairWithoutPlaintextRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Algorithm   string `protobuf:"bytes,2,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	KeyPairSpec string `protobuf:"bytes,3,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	KeyFormat   string `protobuf:"bytes,4,opt,name=KeyFormat,proto3" json:"KeyFormat,omitempty"`
	Aad         []byte `protobuf:"bytes,5,opt,name=Aad,proto3" json:"Aad,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateDataKeyPairWithoutPlaintextRequest) Descriptor deprecated added in v0.5.0

Deprecated: Use GenerateDataKeyPairWithoutPlaintextRequest.ProtoReflect.Descriptor instead.

func (*GenerateDataKeyPairWithoutPlaintextRequest) GetAad added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) GetAlgorithm added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) GetKeyFormat added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) GetKeyId added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) GetKeyPairSpec added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) ProtoMessage added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) ProtoReflect added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) Reset added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextRequest) String added in v0.5.0

type GenerateDataKeyPairWithoutPlaintextResponse added in v0.5.0

type GenerateDataKeyPairWithoutPlaintextResponse struct {
	KeyId                    string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Iv                       []byte `protobuf:"bytes,2,opt,name=Iv,proto3" json:"Iv,omitempty"`
	KeyPairSpec              string `protobuf:"bytes,3,opt,name=KeyPairSpec,proto3" json:"KeyPairSpec,omitempty"`
	PrivateKeyCiphertextBlob []byte `protobuf:"bytes,4,opt,name=PrivateKeyCiphertextBlob,proto3" json:"PrivateKeyCiphertextBlob,omitempty"`
	PublicKey                []byte `protobuf:"bytes,5,opt,name=PublicKey,proto3" json:"PublicKey,omitempty"`
	RequestId                string `protobuf:"bytes,6,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm                string `protobuf:"bytes,7,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateDataKeyPairWithoutPlaintextResponse) Descriptor deprecated added in v0.5.0

Deprecated: Use GenerateDataKeyPairWithoutPlaintextResponse.ProtoReflect.Descriptor instead.

func (*GenerateDataKeyPairWithoutPlaintextResponse) GetAlgorithm added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) GetIv added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) GetKeyId added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) GetKeyPairSpec added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) GetPrivateKeyCiphertextBlob added in v0.5.0

func (x *GenerateDataKeyPairWithoutPlaintextResponse) GetPrivateKeyCiphertextBlob() []byte

func (*GenerateDataKeyPairWithoutPlaintextResponse) GetPublicKey added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) GetRequestId added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) ProtoMessage added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) ProtoReflect added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) Reset added in v0.5.0

func (*GenerateDataKeyPairWithoutPlaintextResponse) String added in v0.5.0

type GenerateDataKeyRequest

type GenerateDataKeyRequest struct {
	KeyId         string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Algorithm     string `protobuf:"bytes,2,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	NumberOfBytes int32  `protobuf:"varint,3,opt,name=NumberOfBytes,proto3" json:"NumberOfBytes,omitempty"`
	Aad           []byte `protobuf:"bytes,4,opt,name=Aad,proto3" json:"Aad,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateDataKeyRequest) Descriptor deprecated

func (*GenerateDataKeyRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenerateDataKeyRequest.ProtoReflect.Descriptor instead.

func (*GenerateDataKeyRequest) GetAad added in v0.3.0

func (x *GenerateDataKeyRequest) GetAad() []byte

func (*GenerateDataKeyRequest) GetAlgorithm added in v0.3.0

func (x *GenerateDataKeyRequest) GetAlgorithm() string

func (*GenerateDataKeyRequest) GetKeyId added in v0.3.0

func (x *GenerateDataKeyRequest) GetKeyId() string

func (*GenerateDataKeyRequest) GetNumberOfBytes added in v0.3.0

func (x *GenerateDataKeyRequest) GetNumberOfBytes() int32

func (*GenerateDataKeyRequest) ProtoMessage

func (*GenerateDataKeyRequest) ProtoMessage()

func (*GenerateDataKeyRequest) ProtoReflect added in v0.3.0

func (x *GenerateDataKeyRequest) ProtoReflect() protoreflect.Message

func (*GenerateDataKeyRequest) Reset

func (x *GenerateDataKeyRequest) Reset()

func (*GenerateDataKeyRequest) String

func (x *GenerateDataKeyRequest) String() string

type GenerateDataKeyResponse

type GenerateDataKeyResponse struct {
	KeyId          string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Iv             []byte `protobuf:"bytes,2,opt,name=Iv,proto3" json:"Iv,omitempty"`
	Plaintext      []byte `protobuf:"bytes,3,opt,name=Plaintext,proto3" json:"Plaintext,omitempty"`
	CiphertextBlob []byte `protobuf:"bytes,4,opt,name=CiphertextBlob,proto3" json:"CiphertextBlob,omitempty"`
	RequestId      string `protobuf:"bytes,5,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm      string `protobuf:"bytes,6,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateDataKeyResponse) Descriptor deprecated

func (*GenerateDataKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use GenerateDataKeyResponse.ProtoReflect.Descriptor instead.

func (*GenerateDataKeyResponse) GetAlgorithm added in v0.3.0

func (x *GenerateDataKeyResponse) GetAlgorithm() string

func (*GenerateDataKeyResponse) GetCiphertextBlob added in v0.3.0

func (x *GenerateDataKeyResponse) GetCiphertextBlob() []byte

func (*GenerateDataKeyResponse) GetIv added in v0.3.0

func (x *GenerateDataKeyResponse) GetIv() []byte

func (*GenerateDataKeyResponse) GetKeyId added in v0.3.0

func (x *GenerateDataKeyResponse) GetKeyId() string

func (*GenerateDataKeyResponse) GetPlaintext added in v0.3.0

func (x *GenerateDataKeyResponse) GetPlaintext() []byte

func (*GenerateDataKeyResponse) GetRequestId added in v0.3.0

func (x *GenerateDataKeyResponse) GetRequestId() string

func (*GenerateDataKeyResponse) ProtoMessage

func (*GenerateDataKeyResponse) ProtoMessage()

func (*GenerateDataKeyResponse) ProtoReflect added in v0.3.0

func (x *GenerateDataKeyResponse) ProtoReflect() protoreflect.Message

func (*GenerateDataKeyResponse) Reset

func (x *GenerateDataKeyResponse) Reset()

func (*GenerateDataKeyResponse) String

func (x *GenerateDataKeyResponse) String() string

type GenerateRandomRequest

type GenerateRandomRequest struct {
	Length int32 `protobuf:"varint,1,opt,name=Length,proto3" json:"Length,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateRandomRequest) Descriptor deprecated

func (*GenerateRandomRequest) Descriptor() ([]byte, []int)

Deprecated: Use GenerateRandomRequest.ProtoReflect.Descriptor instead.

func (*GenerateRandomRequest) GetLength added in v0.3.0

func (x *GenerateRandomRequest) GetLength() int32

func (*GenerateRandomRequest) ProtoMessage

func (*GenerateRandomRequest) ProtoMessage()

func (*GenerateRandomRequest) ProtoReflect added in v0.3.0

func (x *GenerateRandomRequest) ProtoReflect() protoreflect.Message

func (*GenerateRandomRequest) Reset

func (x *GenerateRandomRequest) Reset()

func (*GenerateRandomRequest) String

func (x *GenerateRandomRequest) String() string

type GenerateRandomResponse

type GenerateRandomResponse struct {
	Random    []byte `protobuf:"bytes,1,opt,name=Random,proto3" json:"Random,omitempty"`
	RequestId string `protobuf:"bytes,2,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	// contains filtered or unexported fields
}

func (*GenerateRandomResponse) Descriptor deprecated

func (*GenerateRandomResponse) Descriptor() ([]byte, []int)

Deprecated: Use GenerateRandomResponse.ProtoReflect.Descriptor instead.

func (*GenerateRandomResponse) GetRandom added in v0.3.0

func (x *GenerateRandomResponse) GetRandom() []byte

func (*GenerateRandomResponse) GetRequestId added in v0.3.0

func (x *GenerateRandomResponse) GetRequestId() string

func (*GenerateRandomResponse) ProtoMessage

func (*GenerateRandomResponse) ProtoMessage()

func (*GenerateRandomResponse) ProtoReflect added in v0.3.0

func (x *GenerateRandomResponse) ProtoReflect() protoreflect.Message

func (*GenerateRandomResponse) Reset

func (x *GenerateRandomResponse) Reset()

func (*GenerateRandomResponse) String

func (x *GenerateRandomResponse) String() string

type GetPublicKeyRequest

type GetPublicKeyRequest struct {
	KeyId string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPublicKeyRequest) Descriptor deprecated

func (*GetPublicKeyRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetPublicKeyRequest.ProtoReflect.Descriptor instead.

func (*GetPublicKeyRequest) GetKeyId added in v0.3.0

func (x *GetPublicKeyRequest) GetKeyId() string

func (*GetPublicKeyRequest) ProtoMessage

func (*GetPublicKeyRequest) ProtoMessage()

func (*GetPublicKeyRequest) ProtoReflect added in v0.3.0

func (x *GetPublicKeyRequest) ProtoReflect() protoreflect.Message

func (*GetPublicKeyRequest) Reset

func (x *GetPublicKeyRequest) Reset()

func (*GetPublicKeyRequest) String

func (x *GetPublicKeyRequest) String() string

type GetPublicKeyResponse

type GetPublicKeyResponse struct {
	KeyId     string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	PublicKey string `protobuf:"bytes,2,opt,name=PublicKey,proto3" json:"PublicKey,omitempty"`
	RequestId string `protobuf:"bytes,3,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	// contains filtered or unexported fields
}

func (*GetPublicKeyResponse) Descriptor deprecated

func (*GetPublicKeyResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetPublicKeyResponse.ProtoReflect.Descriptor instead.

func (*GetPublicKeyResponse) GetKeyId added in v0.3.0

func (x *GetPublicKeyResponse) GetKeyId() string

func (*GetPublicKeyResponse) GetPublicKey added in v0.3.0

func (x *GetPublicKeyResponse) GetPublicKey() string

func (*GetPublicKeyResponse) GetRequestId added in v0.3.0

func (x *GetPublicKeyResponse) GetRequestId() string

func (*GetPublicKeyResponse) ProtoMessage

func (*GetPublicKeyResponse) ProtoMessage()

func (*GetPublicKeyResponse) ProtoReflect added in v0.3.0

func (x *GetPublicKeyResponse) ProtoReflect() protoreflect.Message

func (*GetPublicKeyResponse) Reset

func (x *GetPublicKeyResponse) Reset()

func (*GetPublicKeyResponse) String

func (x *GetPublicKeyResponse) String() string

type GetSecretValueRequest added in v0.2.1

type GetSecretValueRequest struct {
	SecretName          string `protobuf:"bytes,1,opt,name=SecretName,proto3" json:"SecretName,omitempty"`
	VersionStage        string `protobuf:"bytes,2,opt,name=VersionStage,proto3" json:"VersionStage,omitempty"`
	VersionId           string `protobuf:"bytes,3,opt,name=VersionId,proto3" json:"VersionId,omitempty"`
	FetchExtendedConfig bool   `protobuf:"varint,4,opt,name=FetchExtendedConfig,proto3" json:"FetchExtendedConfig,omitempty"`
	// contains filtered or unexported fields
}

凭据管家API

func (*GetSecretValueRequest) Descriptor deprecated added in v0.2.1

func (*GetSecretValueRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetSecretValueRequest.ProtoReflect.Descriptor instead.

func (*GetSecretValueRequest) GetFetchExtendedConfig added in v0.3.0

func (x *GetSecretValueRequest) GetFetchExtendedConfig() bool

func (*GetSecretValueRequest) GetSecretName added in v0.3.0

func (x *GetSecretValueRequest) GetSecretName() string

func (*GetSecretValueRequest) GetVersionId added in v0.3.0

func (x *GetSecretValueRequest) GetVersionId() string

func (*GetSecretValueRequest) GetVersionStage added in v0.3.0

func (x *GetSecretValueRequest) GetVersionStage() string

func (*GetSecretValueRequest) ProtoMessage added in v0.2.1

func (*GetSecretValueRequest) ProtoMessage()

func (*GetSecretValueRequest) ProtoReflect added in v0.3.0

func (x *GetSecretValueRequest) ProtoReflect() protoreflect.Message

func (*GetSecretValueRequest) Reset added in v0.2.1

func (x *GetSecretValueRequest) Reset()

func (*GetSecretValueRequest) String added in v0.2.1

func (x *GetSecretValueRequest) String() string

type GetSecretValueResponse added in v0.2.1

type GetSecretValueResponse struct {
	SecretName        string   `protobuf:"bytes,1,opt,name=SecretName,proto3" json:"SecretName,omitempty"`
	SecretType        string   `protobuf:"bytes,2,opt,name=SecretType,proto3" json:"SecretType,omitempty"`
	SecretData        string   `protobuf:"bytes,3,opt,name=SecretData,proto3" json:"SecretData,omitempty"`
	SecretDataType    string   `protobuf:"bytes,4,opt,name=SecretDataType,proto3" json:"SecretDataType,omitempty"`
	VersionStages     []string `protobuf:"bytes,5,rep,name=VersionStages,proto3" json:"VersionStages,omitempty"`
	VersionId         string   `protobuf:"bytes,6,opt,name=VersionId,proto3" json:"VersionId,omitempty"`
	CreateTime        string   `protobuf:"bytes,7,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
	RequestId         string   `protobuf:"bytes,8,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	LastRotationDate  string   `protobuf:"bytes,9,opt,name=LastRotationDate,proto3" json:"LastRotationDate,omitempty"`
	NextRotationDate  string   `protobuf:"bytes,10,opt,name=NextRotationDate,proto3" json:"NextRotationDate,omitempty"`
	ExtendedConfig    string   `protobuf:"bytes,11,opt,name=ExtendedConfig,proto3" json:"ExtendedConfig,omitempty"`
	AutomaticRotation string   `protobuf:"bytes,12,opt,name=AutomaticRotation,proto3" json:"AutomaticRotation,omitempty"`
	RotationInterval  string   `protobuf:"bytes,13,opt,name=RotationInterval,proto3" json:"RotationInterval,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSecretValueResponse) Descriptor deprecated added in v0.2.1

func (*GetSecretValueResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetSecretValueResponse.ProtoReflect.Descriptor instead.

func (*GetSecretValueResponse) GetAutomaticRotation added in v0.3.0

func (x *GetSecretValueResponse) GetAutomaticRotation() string

func (*GetSecretValueResponse) GetCreateTime added in v0.3.0

func (x *GetSecretValueResponse) GetCreateTime() string

func (*GetSecretValueResponse) GetExtendedConfig added in v0.3.0

func (x *GetSecretValueResponse) GetExtendedConfig() string

func (*GetSecretValueResponse) GetLastRotationDate added in v0.3.0

func (x *GetSecretValueResponse) GetLastRotationDate() string

func (*GetSecretValueResponse) GetNextRotationDate added in v0.3.0

func (x *GetSecretValueResponse) GetNextRotationDate() string

func (*GetSecretValueResponse) GetRequestId added in v0.3.0

func (x *GetSecretValueResponse) GetRequestId() string

func (*GetSecretValueResponse) GetRotationInterval added in v0.3.0

func (x *GetSecretValueResponse) GetRotationInterval() string

func (*GetSecretValueResponse) GetSecretData added in v0.3.0

func (x *GetSecretValueResponse) GetSecretData() string

func (*GetSecretValueResponse) GetSecretDataType added in v0.3.0

func (x *GetSecretValueResponse) GetSecretDataType() string

func (*GetSecretValueResponse) GetSecretName added in v0.3.0

func (x *GetSecretValueResponse) GetSecretName() string

func (*GetSecretValueResponse) GetSecretType added in v0.3.0

func (x *GetSecretValueResponse) GetSecretType() string

func (*GetSecretValueResponse) GetVersionId added in v0.3.0

func (x *GetSecretValueResponse) GetVersionId() string

func (*GetSecretValueResponse) GetVersionStages added in v0.3.0

func (x *GetSecretValueResponse) GetVersionStages() []string

func (*GetSecretValueResponse) ProtoMessage added in v0.2.1

func (*GetSecretValueResponse) ProtoMessage()

func (*GetSecretValueResponse) ProtoReflect added in v0.3.0

func (x *GetSecretValueResponse) ProtoReflect() protoreflect.Message

func (*GetSecretValueResponse) Reset added in v0.2.1

func (x *GetSecretValueResponse) Reset()

func (*GetSecretValueResponse) String added in v0.2.1

func (x *GetSecretValueResponse) String() string

type HmacRequest

type HmacRequest struct {
	KeyId   string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Message []byte `protobuf:"bytes,2,opt,name=Message,proto3" json:"Message,omitempty"`
	// contains filtered or unexported fields
}

func (*HmacRequest) Descriptor deprecated

func (*HmacRequest) Descriptor() ([]byte, []int)

Deprecated: Use HmacRequest.ProtoReflect.Descriptor instead.

func (*HmacRequest) GetKeyId added in v0.3.0

func (x *HmacRequest) GetKeyId() string

func (*HmacRequest) GetMessage added in v0.3.0

func (x *HmacRequest) GetMessage() []byte

func (*HmacRequest) ProtoMessage

func (*HmacRequest) ProtoMessage()

func (*HmacRequest) ProtoReflect added in v0.3.0

func (x *HmacRequest) ProtoReflect() protoreflect.Message

func (*HmacRequest) Reset

func (x *HmacRequest) Reset()

func (*HmacRequest) String

func (x *HmacRequest) String() string

type HmacResponse

type HmacResponse struct {
	KeyId     string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Signature []byte `protobuf:"bytes,2,opt,name=Signature,proto3" json:"Signature,omitempty"`
	RequestId string `protobuf:"bytes,3,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	// contains filtered or unexported fields
}

func (*HmacResponse) Descriptor deprecated

func (*HmacResponse) Descriptor() ([]byte, []int)

Deprecated: Use HmacResponse.ProtoReflect.Descriptor instead.

func (*HmacResponse) GetKeyId added in v0.3.0

func (x *HmacResponse) GetKeyId() string

func (*HmacResponse) GetRequestId added in v0.3.0

func (x *HmacResponse) GetRequestId() string

func (*HmacResponse) GetSignature added in v0.3.0

func (x *HmacResponse) GetSignature() []byte

func (*HmacResponse) ProtoMessage

func (*HmacResponse) ProtoMessage()

func (*HmacResponse) ProtoReflect added in v0.3.0

func (x *HmacResponse) ProtoReflect() protoreflect.Message

func (*HmacResponse) Reset

func (x *HmacResponse) Reset()

func (*HmacResponse) String

func (x *HmacResponse) String() string

type SignRequest

type SignRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Digest      []byte `protobuf:"bytes,2,opt,name=Digest,proto3" json:"Digest,omitempty"`
	Algorithm   string `protobuf:"bytes,3,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	Message     []byte `protobuf:"bytes,4,opt,name=Message,proto3" json:"Message,omitempty"`
	MessageType string `protobuf:"bytes,5,opt,name=MessageType,proto3" json:"MessageType,omitempty"`
	// contains filtered or unexported fields
}

func (*SignRequest) Descriptor deprecated

func (*SignRequest) Descriptor() ([]byte, []int)

Deprecated: Use SignRequest.ProtoReflect.Descriptor instead.

func (*SignRequest) GetAlgorithm added in v0.3.0

func (x *SignRequest) GetAlgorithm() string

func (*SignRequest) GetDigest added in v0.3.0

func (x *SignRequest) GetDigest() []byte

func (*SignRequest) GetKeyId added in v0.3.0

func (x *SignRequest) GetKeyId() string

func (*SignRequest) GetMessage added in v0.3.0

func (x *SignRequest) GetMessage() []byte

func (*SignRequest) GetMessageType added in v0.3.0

func (x *SignRequest) GetMessageType() string

func (*SignRequest) ProtoMessage

func (*SignRequest) ProtoMessage()

func (*SignRequest) ProtoReflect added in v0.3.0

func (x *SignRequest) ProtoReflect() protoreflect.Message

func (*SignRequest) Reset

func (x *SignRequest) Reset()

func (*SignRequest) String

func (x *SignRequest) String() string

type SignResponse

type SignResponse struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Signature   []byte `protobuf:"bytes,2,opt,name=Signature,proto3" json:"Signature,omitempty"`
	RequestId   string `protobuf:"bytes,3,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm   string `protobuf:"bytes,4,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	MessageType string `protobuf:"bytes,5,opt,name=MessageType,proto3" json:"MessageType,omitempty"`
	// contains filtered or unexported fields
}

func (*SignResponse) Descriptor deprecated

func (*SignResponse) Descriptor() ([]byte, []int)

Deprecated: Use SignResponse.ProtoReflect.Descriptor instead.

func (*SignResponse) GetAlgorithm added in v0.3.0

func (x *SignResponse) GetAlgorithm() string

func (*SignResponse) GetKeyId added in v0.3.0

func (x *SignResponse) GetKeyId() string

func (*SignResponse) GetMessageType added in v0.3.0

func (x *SignResponse) GetMessageType() string

func (*SignResponse) GetRequestId added in v0.3.0

func (x *SignResponse) GetRequestId() string

func (*SignResponse) GetSignature added in v0.3.0

func (x *SignResponse) GetSignature() []byte

func (*SignResponse) ProtoMessage

func (*SignResponse) ProtoMessage()

func (*SignResponse) ProtoReflect added in v0.3.0

func (x *SignResponse) ProtoReflect() protoreflect.Message

func (*SignResponse) Reset

func (x *SignResponse) Reset()

func (*SignResponse) String

func (x *SignResponse) String() string

type VerifyRequest

type VerifyRequest struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Digest      []byte `protobuf:"bytes,2,opt,name=Digest,proto3" json:"Digest,omitempty"`
	Signature   []byte `protobuf:"bytes,3,opt,name=Signature,proto3" json:"Signature,omitempty"`
	Algorithm   string `protobuf:"bytes,4,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	Message     []byte `protobuf:"bytes,5,opt,name=Message,proto3" json:"Message,omitempty"`
	MessageType string `protobuf:"bytes,6,opt,name=MessageType,proto3" json:"MessageType,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyRequest) Descriptor deprecated

func (*VerifyRequest) Descriptor() ([]byte, []int)

Deprecated: Use VerifyRequest.ProtoReflect.Descriptor instead.

func (*VerifyRequest) GetAlgorithm added in v0.3.0

func (x *VerifyRequest) GetAlgorithm() string

func (*VerifyRequest) GetDigest added in v0.3.0

func (x *VerifyRequest) GetDigest() []byte

func (*VerifyRequest) GetKeyId added in v0.3.0

func (x *VerifyRequest) GetKeyId() string

func (*VerifyRequest) GetMessage added in v0.3.0

func (x *VerifyRequest) GetMessage() []byte

func (*VerifyRequest) GetMessageType added in v0.3.0

func (x *VerifyRequest) GetMessageType() string

func (*VerifyRequest) GetSignature added in v0.3.0

func (x *VerifyRequest) GetSignature() []byte

func (*VerifyRequest) ProtoMessage

func (*VerifyRequest) ProtoMessage()

func (*VerifyRequest) ProtoReflect added in v0.3.0

func (x *VerifyRequest) ProtoReflect() protoreflect.Message

func (*VerifyRequest) Reset

func (x *VerifyRequest) Reset()

func (*VerifyRequest) String

func (x *VerifyRequest) String() string

type VerifyResponse

type VerifyResponse struct {
	KeyId       string `protobuf:"bytes,1,opt,name=KeyId,proto3" json:"KeyId,omitempty"`
	Value       bool   `protobuf:"varint,2,opt,name=Value,proto3" json:"Value,omitempty"`
	RequestId   string `protobuf:"bytes,3,opt,name=RequestId,proto3" json:"RequestId,omitempty"`
	Algorithm   string `protobuf:"bytes,4,opt,name=Algorithm,proto3" json:"Algorithm,omitempty"`
	MessageType string `protobuf:"bytes,5,opt,name=MessageType,proto3" json:"MessageType,omitempty"`
	// contains filtered or unexported fields
}

func (*VerifyResponse) Descriptor deprecated

func (*VerifyResponse) Descriptor() ([]byte, []int)

Deprecated: Use VerifyResponse.ProtoReflect.Descriptor instead.

func (*VerifyResponse) GetAlgorithm added in v0.3.0

func (x *VerifyResponse) GetAlgorithm() string

func (*VerifyResponse) GetKeyId added in v0.3.0

func (x *VerifyResponse) GetKeyId() string

func (*VerifyResponse) GetMessageType added in v0.3.0

func (x *VerifyResponse) GetMessageType() string

func (*VerifyResponse) GetRequestId added in v0.3.0

func (x *VerifyResponse) GetRequestId() string

func (*VerifyResponse) GetValue added in v0.3.0

func (x *VerifyResponse) GetValue() bool

func (*VerifyResponse) ProtoMessage

func (*VerifyResponse) ProtoMessage()

func (*VerifyResponse) ProtoReflect added in v0.3.0

func (x *VerifyResponse) ProtoReflect() protoreflect.Message

func (*VerifyResponse) Reset

func (x *VerifyResponse) Reset()

func (*VerifyResponse) String

func (x *VerifyResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL