Versions in this module Expand all Collapse all v1 v1.4.0 Mar 9, 2026 Changes in this version + var AllowedAccessScopeEnumValues = []AccessScope + var AllowedAlgorithmEnumValues = []Algorithm + var AllowedBackendEnumValues = []Backend + var AllowedProtectionEnumValues = []Protection + var AllowedPurposeEnumValues = []Purpose + var AllowedWrappingAlgorithmEnumValues = []WrappingAlgorithm + var AllowedWrappingPurposeEnumValues = []WrappingPurpose + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type AccessScope string + const ACCESSSCOPE_PUBLIC + const ACCESSSCOPE_SNA + func NewAccessScopeFromValue(v string) (*AccessScope, error) + func (v *AccessScope) UnmarshalJSON(src []byte) error + func (v AccessScope) IsValid() bool + func (v AccessScope) Ptr() *AccessScope + type Algorithm string + const ALGORITHM_AES_256_GCM + const ALGORITHM_ECDSA_P256_SHA256 + const ALGORITHM_ECDSA_P384_SHA384 + const ALGORITHM_ECDSA_P521_SHA512 + const ALGORITHM_HMAC_SHA256 + const ALGORITHM_HMAC_SHA384 + const ALGORITHM_HMAC_SHA512 + const ALGORITHM_RSA_2048_OAEP_SHA256 + const ALGORITHM_RSA_3072_OAEP_SHA256 + const ALGORITHM_RSA_4096_OAEP_SHA256 + const ALGORITHM_RSA_4096_OAEP_SHA512 + func NewAlgorithmFromValue(v string) (*Algorithm, error) + func (v *Algorithm) UnmarshalJSON(src []byte) error + func (v Algorithm) IsValid() bool + func (v Algorithm) Ptr() *Algorithm + type ApiCreateKeyRequest struct + ApiService DefaultAPI + func (r ApiCreateKeyRequest) CreateKeyPayload(createKeyPayload CreateKeyPayload) ApiCreateKeyRequest + func (r ApiCreateKeyRequest) Execute() (*Key, error) + type ApiCreateKeyRingRequest struct + ApiService DefaultAPI + func (r ApiCreateKeyRingRequest) CreateKeyRingPayload(createKeyRingPayload CreateKeyRingPayload) ApiCreateKeyRingRequest + func (r ApiCreateKeyRingRequest) Execute() (*KeyRing, error) + type ApiCreateWrappingKeyRequest struct + ApiService DefaultAPI + func (r ApiCreateWrappingKeyRequest) CreateWrappingKeyPayload(createWrappingKeyPayload CreateWrappingKeyPayload) ApiCreateWrappingKeyRequest + func (r ApiCreateWrappingKeyRequest) Execute() (*WrappingKey, error) + type ApiDecryptRequest struct + ApiService DefaultAPI + func (r ApiDecryptRequest) DecryptPayload(decryptPayload DecryptPayload) ApiDecryptRequest + func (r ApiDecryptRequest) Execute() (*DecryptedData, error) + type ApiDeleteKeyRequest struct + ApiService DefaultAPI + func (r ApiDeleteKeyRequest) Execute() error + type ApiDeleteKeyRingRequest struct + ApiService DefaultAPI + func (r ApiDeleteKeyRingRequest) Execute() error + type ApiDeleteWrappingKeyRequest struct + ApiService DefaultAPI + func (r ApiDeleteWrappingKeyRequest) Execute() error + type ApiDestroyVersionRequest struct + ApiService DefaultAPI + func (r ApiDestroyVersionRequest) Execute() error + type ApiDisableVersionRequest struct + ApiService DefaultAPI + func (r ApiDisableVersionRequest) Execute() error + type ApiEnableVersionRequest struct + ApiService DefaultAPI + func (r ApiEnableVersionRequest) Execute() error + type ApiEncryptRequest struct + ApiService DefaultAPI + func (r ApiEncryptRequest) EncryptPayload(encryptPayload EncryptPayload) ApiEncryptRequest + func (r ApiEncryptRequest) Execute() (*EncryptedData, error) + type ApiGetKeyRequest struct + ApiService DefaultAPI + func (r ApiGetKeyRequest) Execute() (*Key, error) + type ApiGetKeyRingRequest struct + ApiService DefaultAPI + func (r ApiGetKeyRingRequest) Execute() (*KeyRing, error) + type ApiGetVersionRequest struct + ApiService DefaultAPI + func (r ApiGetVersionRequest) Execute() (*Version, error) + type ApiGetWrappingKeyRequest struct + ApiService DefaultAPI + func (r ApiGetWrappingKeyRequest) Execute() (*WrappingKey, error) + type ApiImportKeyRequest struct + ApiService DefaultAPI + func (r ApiImportKeyRequest) Execute() (*Version, error) + func (r ApiImportKeyRequest) ImportKeyPayload(importKeyPayload ImportKeyPayload) ApiImportKeyRequest + type ApiListKeyRingsRequest struct + ApiService DefaultAPI + func (r ApiListKeyRingsRequest) Execute() (*KeyRingList, error) + type ApiListKeysRequest struct + ApiService DefaultAPI + func (r ApiListKeysRequest) Execute() (*KeyList, error) + type ApiListVersionsRequest struct + ApiService DefaultAPI + func (r ApiListVersionsRequest) Execute() (*VersionList, error) + type ApiListWrappingKeysRequest struct + ApiService DefaultAPI + func (r ApiListWrappingKeysRequest) Execute() (*WrappingKeyList, error) + type ApiRestoreKeyRequest struct + ApiService DefaultAPI + func (r ApiRestoreKeyRequest) Execute() error + type ApiRestoreVersionRequest struct + ApiService DefaultAPI + func (r ApiRestoreVersionRequest) Execute() error + type ApiRotateKeyRequest struct + ApiService DefaultAPI + func (r ApiRotateKeyRequest) Execute() (*Version, error) + type ApiSignRequest struct + ApiService DefaultAPI + func (r ApiSignRequest) Execute() (*SignedData, error) + func (r ApiSignRequest) SignPayload(signPayload SignPayload) ApiSignRequest + type ApiVerifyRequest struct + ApiService DefaultAPI + func (r ApiVerifyRequest) Execute() (*VerifiedData, error) + func (r ApiVerifyRequest) VerifyPayload(verifyPayload VerifyPayload) ApiVerifyRequest + type Backend string + const BACKEND_SOFTWARE + func NewBackendFromValue(v string) (*Backend, error) + func (v *Backend) UnmarshalJSON(src []byte) error + func (v Backend) IsValid() bool + func (v Backend) Ptr() *Backend + type CreateKeyPayload struct + AccessScope *AccessScope + Algorithm Algorithm + Backend Backend + Description *string + DisplayName string + ImportOnly *bool + Protection *Protection + Purpose Purpose + func NewCreateKeyPayload(algorithm Algorithm, backend Backend, displayName string, purpose Purpose) *CreateKeyPayload + func NewCreateKeyPayloadWithDefaults() *CreateKeyPayload + func (o *CreateKeyPayload) GetAccessScope() AccessScope + func (o *CreateKeyPayload) GetAccessScopeOk() (*AccessScope, bool) + func (o *CreateKeyPayload) GetAlgorithm() Algorithm + func (o *CreateKeyPayload) GetAlgorithmOk() (*Algorithm, bool) + func (o *CreateKeyPayload) GetBackend() Backend + func (o *CreateKeyPayload) GetBackendOk() (*Backend, bool) + func (o *CreateKeyPayload) GetDescription() string + func (o *CreateKeyPayload) GetDescriptionOk() (*string, bool) + func (o *CreateKeyPayload) GetDisplayName() string + func (o *CreateKeyPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateKeyPayload) GetImportOnly() bool + func (o *CreateKeyPayload) GetImportOnlyOk() (*bool, bool) + func (o *CreateKeyPayload) GetProtection() Protection + func (o *CreateKeyPayload) GetProtectionOk() (*Protection, bool) + func (o *CreateKeyPayload) GetPurpose() Purpose + func (o *CreateKeyPayload) GetPurposeOk() (*Purpose, bool) + func (o *CreateKeyPayload) HasAccessScope() bool + func (o *CreateKeyPayload) HasDescription() bool + func (o *CreateKeyPayload) HasImportOnly() bool + func (o *CreateKeyPayload) HasProtection() bool + func (o *CreateKeyPayload) SetAccessScope(v AccessScope) + func (o *CreateKeyPayload) SetAlgorithm(v Algorithm) + func (o *CreateKeyPayload) SetBackend(v Backend) + func (o *CreateKeyPayload) SetDescription(v string) + func (o *CreateKeyPayload) SetDisplayName(v string) + func (o *CreateKeyPayload) SetImportOnly(v bool) + func (o *CreateKeyPayload) SetProtection(v Protection) + func (o *CreateKeyPayload) SetPurpose(v Purpose) + func (o *CreateKeyPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateKeyPayload) MarshalJSON() ([]byte, error) + func (o CreateKeyPayload) ToMap() (map[string]interface{}, error) + type CreateKeyRingPayload struct + Description *string + DisplayName string + func NewCreateKeyRingPayload(displayName string) *CreateKeyRingPayload + func NewCreateKeyRingPayloadWithDefaults() *CreateKeyRingPayload + func (o *CreateKeyRingPayload) GetDescription() string + func (o *CreateKeyRingPayload) GetDescriptionOk() (*string, bool) + func (o *CreateKeyRingPayload) GetDisplayName() string + func (o *CreateKeyRingPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateKeyRingPayload) HasDescription() bool + func (o *CreateKeyRingPayload) SetDescription(v string) + func (o *CreateKeyRingPayload) SetDisplayName(v string) + func (o *CreateKeyRingPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateKeyRingPayload) MarshalJSON() ([]byte, error) + func (o CreateKeyRingPayload) ToMap() (map[string]interface{}, error) + type CreateWrappingKeyPayload struct + AccessScope *AccessScope + Algorithm WrappingAlgorithm + Backend Backend + Description *string + DisplayName string + Protection *Protection + Purpose WrappingPurpose + func NewCreateWrappingKeyPayload(algorithm WrappingAlgorithm, backend Backend, displayName string, ...) *CreateWrappingKeyPayload + func NewCreateWrappingKeyPayloadWithDefaults() *CreateWrappingKeyPayload + func (o *CreateWrappingKeyPayload) GetAccessScope() AccessScope + func (o *CreateWrappingKeyPayload) GetAccessScopeOk() (*AccessScope, bool) + func (o *CreateWrappingKeyPayload) GetAlgorithm() WrappingAlgorithm + func (o *CreateWrappingKeyPayload) GetAlgorithmOk() (*WrappingAlgorithm, bool) + func (o *CreateWrappingKeyPayload) GetBackend() Backend + func (o *CreateWrappingKeyPayload) GetBackendOk() (*Backend, bool) + func (o *CreateWrappingKeyPayload) GetDescription() string + func (o *CreateWrappingKeyPayload) GetDescriptionOk() (*string, bool) + func (o *CreateWrappingKeyPayload) GetDisplayName() string + func (o *CreateWrappingKeyPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateWrappingKeyPayload) GetProtection() Protection + func (o *CreateWrappingKeyPayload) GetProtectionOk() (*Protection, bool) + func (o *CreateWrappingKeyPayload) GetPurpose() WrappingPurpose + func (o *CreateWrappingKeyPayload) GetPurposeOk() (*WrappingPurpose, bool) + func (o *CreateWrappingKeyPayload) HasAccessScope() bool + func (o *CreateWrappingKeyPayload) HasDescription() bool + func (o *CreateWrappingKeyPayload) HasProtection() bool + func (o *CreateWrappingKeyPayload) SetAccessScope(v AccessScope) + func (o *CreateWrappingKeyPayload) SetAlgorithm(v WrappingAlgorithm) + func (o *CreateWrappingKeyPayload) SetBackend(v Backend) + func (o *CreateWrappingKeyPayload) SetDescription(v string) + func (o *CreateWrappingKeyPayload) SetDisplayName(v string) + func (o *CreateWrappingKeyPayload) SetProtection(v Protection) + func (o *CreateWrappingKeyPayload) SetPurpose(v WrappingPurpose) + func (o *CreateWrappingKeyPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateWrappingKeyPayload) MarshalJSON() ([]byte, error) + func (o CreateWrappingKeyPayload) ToMap() (map[string]interface{}, error) + type DecryptPayload struct + Data string + func NewDecryptPayload(data string) *DecryptPayload + func NewDecryptPayloadWithDefaults() *DecryptPayload + func (o *DecryptPayload) GetData() string + func (o *DecryptPayload) GetDataOk() (*string, bool) + func (o *DecryptPayload) SetData(v string) + func (o *DecryptPayload) UnmarshalJSON(data []byte) (err error) + func (o DecryptPayload) MarshalJSON() ([]byte, error) + func (o DecryptPayload) ToMap() (map[string]interface{}, error) + type DecryptedData struct + Data string + func NewDecryptedData(data string) *DecryptedData + func NewDecryptedDataWithDefaults() *DecryptedData + func (o *DecryptedData) GetData() string + func (o *DecryptedData) GetDataOk() (*string, bool) + func (o *DecryptedData) SetData(v string) + func (o *DecryptedData) UnmarshalJSON(data []byte) (err error) + func (o DecryptedData) MarshalJSON() ([]byte, error) + func (o DecryptedData) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateKey func(ctx context.Context, projectId string, regionId string, keyRingId string) ApiCreateKeyRequest + CreateKeyExecute func(r ApiCreateKeyRequest) (*Key, error) + CreateKeyRing func(ctx context.Context, projectId string, regionId string) ApiCreateKeyRingRequest + CreateKeyRingExecute func(r ApiCreateKeyRingRequest) (*KeyRing, error) + CreateWrappingKey func(ctx context.Context, projectId string, regionId string, keyRingId string) ApiCreateWrappingKeyRequest + CreateWrappingKeyExecute func(r ApiCreateWrappingKeyRequest) (*WrappingKey, error) + Decrypt func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDecryptRequest + DecryptExecute func(r ApiDecryptRequest) (*DecryptedData, error) + DeleteKey func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDeleteKeyRequest + DeleteKeyExecute func(r ApiDeleteKeyRequest) error + DeleteKeyRing func(ctx context.Context, projectId string, regionId string, keyRingId string) ApiDeleteKeyRingRequest + DeleteKeyRingExecute func(r ApiDeleteKeyRingRequest) error + DeleteWrappingKey func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDeleteWrappingKeyRequest + DeleteWrappingKeyExecute func(r ApiDeleteWrappingKeyRequest) error + DestroyVersion func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDestroyVersionRequest + DestroyVersionExecute func(r ApiDestroyVersionRequest) error + DisableVersion func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDisableVersionRequest + DisableVersionExecute func(r ApiDisableVersionRequest) error + EnableVersion func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiEnableVersionRequest + EnableVersionExecute func(r ApiEnableVersionRequest) error + Encrypt func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiEncryptRequest + EncryptExecute func(r ApiEncryptRequest) (*EncryptedData, error) + GetKey func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetKeyRequest + GetKeyExecute func(r ApiGetKeyRequest) (*Key, error) + GetKeyRing func(ctx context.Context, projectId string, regionId string, keyRingId string) ApiGetKeyRingRequest + GetKeyRingExecute func(r ApiGetKeyRingRequest) (*KeyRing, error) + GetVersion func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetVersionRequest + GetVersionExecute func(r ApiGetVersionRequest) (*Version, error) + GetWrappingKey func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetWrappingKeyRequest + GetWrappingKeyExecute func(r ApiGetWrappingKeyRequest) (*WrappingKey, error) + ImportKey func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiImportKeyRequest + ImportKeyExecute func(r ApiImportKeyRequest) (*Version, error) + ListKeyRings func(ctx context.Context, projectId string, regionId string) ApiListKeyRingsRequest + ListKeyRingsExecute func(r ApiListKeyRingsRequest) (*KeyRingList, error) + ListKeys func(ctx context.Context, projectId string, regionId string, keyRingId string) ApiListKeysRequest + ListKeysExecute func(r ApiListKeysRequest) (*KeyList, error) + ListVersions func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiListVersionsRequest + ListVersionsExecute func(r ApiListVersionsRequest) (*VersionList, error) + ListWrappingKeys func(ctx context.Context, projectId string, regionId string, keyRingId string) ApiListWrappingKeysRequest + ListWrappingKeysExecute func(r ApiListWrappingKeysRequest) (*WrappingKeyList, error) + RestoreKey func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRestoreKeyRequest + RestoreKeyExecute func(r ApiRestoreKeyRequest) error + RestoreVersion func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRestoreVersionRequest + RestoreVersionExecute func(r ApiRestoreVersionRequest) error + RotateKey func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRotateKeyRequest + RotateKeyExecute func(r ApiRotateKeyRequest) (*Version, error) + Sign func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiSignRequest + SignExecute func(r ApiSignRequest) (*SignedData, error) + Verify func(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiVerifyRequest + VerifyExecute func(r ApiVerifyRequest) (*VerifiedData, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateKey(ctx context.Context, projectId string, regionId string, keyRingId string) ApiCreateKeyRequest + func (a *DefaultAPIService) CreateKeyExecute(r ApiCreateKeyRequest) (*Key, error) + func (a *DefaultAPIService) CreateKeyRing(ctx context.Context, projectId string, regionId string) ApiCreateKeyRingRequest + func (a *DefaultAPIService) CreateKeyRingExecute(r ApiCreateKeyRingRequest) (*KeyRing, error) + func (a *DefaultAPIService) CreateWrappingKey(ctx context.Context, projectId string, regionId string, keyRingId string) ApiCreateWrappingKeyRequest + func (a *DefaultAPIService) CreateWrappingKeyExecute(r ApiCreateWrappingKeyRequest) (*WrappingKey, error) + func (a *DefaultAPIService) Decrypt(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDecryptRequest + func (a *DefaultAPIService) DecryptExecute(r ApiDecryptRequest) (*DecryptedData, error) + func (a *DefaultAPIService) DeleteKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDeleteKeyRequest + func (a *DefaultAPIService) DeleteKeyExecute(r ApiDeleteKeyRequest) error + func (a *DefaultAPIService) DeleteKeyRing(ctx context.Context, projectId string, regionId string, keyRingId string) ApiDeleteKeyRingRequest + func (a *DefaultAPIService) DeleteKeyRingExecute(r ApiDeleteKeyRingRequest) error + func (a *DefaultAPIService) DeleteWrappingKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDeleteWrappingKeyRequest + func (a *DefaultAPIService) DeleteWrappingKeyExecute(r ApiDeleteWrappingKeyRequest) error + func (a *DefaultAPIService) DestroyVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDestroyVersionRequest + func (a *DefaultAPIService) DestroyVersionExecute(r ApiDestroyVersionRequest) error + func (a *DefaultAPIService) DisableVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDisableVersionRequest + func (a *DefaultAPIService) DisableVersionExecute(r ApiDisableVersionRequest) error + func (a *DefaultAPIService) EnableVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiEnableVersionRequest + func (a *DefaultAPIService) EnableVersionExecute(r ApiEnableVersionRequest) error + func (a *DefaultAPIService) Encrypt(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiEncryptRequest + func (a *DefaultAPIService) EncryptExecute(r ApiEncryptRequest) (*EncryptedData, error) + func (a *DefaultAPIService) GetKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetKeyRequest + func (a *DefaultAPIService) GetKeyExecute(r ApiGetKeyRequest) (*Key, error) + func (a *DefaultAPIService) GetKeyRing(ctx context.Context, projectId string, regionId string, keyRingId string) ApiGetKeyRingRequest + func (a *DefaultAPIService) GetKeyRingExecute(r ApiGetKeyRingRequest) (*KeyRing, error) + func (a *DefaultAPIService) GetVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetVersionRequest + func (a *DefaultAPIService) GetVersionExecute(r ApiGetVersionRequest) (*Version, error) + func (a *DefaultAPIService) GetWrappingKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetWrappingKeyRequest + func (a *DefaultAPIService) GetWrappingKeyExecute(r ApiGetWrappingKeyRequest) (*WrappingKey, error) + func (a *DefaultAPIService) ImportKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiImportKeyRequest + func (a *DefaultAPIService) ImportKeyExecute(r ApiImportKeyRequest) (*Version, error) + func (a *DefaultAPIService) ListKeyRings(ctx context.Context, projectId string, regionId string) ApiListKeyRingsRequest + func (a *DefaultAPIService) ListKeyRingsExecute(r ApiListKeyRingsRequest) (*KeyRingList, error) + func (a *DefaultAPIService) ListKeys(ctx context.Context, projectId string, regionId string, keyRingId string) ApiListKeysRequest + func (a *DefaultAPIService) ListKeysExecute(r ApiListKeysRequest) (*KeyList, error) + func (a *DefaultAPIService) ListVersions(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiListVersionsRequest + func (a *DefaultAPIService) ListVersionsExecute(r ApiListVersionsRequest) (*VersionList, error) + func (a *DefaultAPIService) ListWrappingKeys(ctx context.Context, projectId string, regionId string, keyRingId string) ApiListWrappingKeysRequest + func (a *DefaultAPIService) ListWrappingKeysExecute(r ApiListWrappingKeysRequest) (*WrappingKeyList, error) + func (a *DefaultAPIService) RestoreKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRestoreKeyRequest + func (a *DefaultAPIService) RestoreKeyExecute(r ApiRestoreKeyRequest) error + func (a *DefaultAPIService) RestoreVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRestoreVersionRequest + func (a *DefaultAPIService) RestoreVersionExecute(r ApiRestoreVersionRequest) error + func (a *DefaultAPIService) RotateKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRotateKeyRequest + func (a *DefaultAPIService) RotateKeyExecute(r ApiRotateKeyRequest) (*Version, error) + func (a *DefaultAPIService) Sign(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiSignRequest + func (a *DefaultAPIService) SignExecute(r ApiSignRequest) (*SignedData, error) + func (a *DefaultAPIService) Verify(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiVerifyRequest + func (a *DefaultAPIService) VerifyExecute(r ApiVerifyRequest) (*VerifiedData, error) + type DefaultAPIServiceMock struct + CreateKeyExecuteMock *func(r ApiCreateKeyRequest) (*Key, error) + CreateKeyRingExecuteMock *func(r ApiCreateKeyRingRequest) (*KeyRing, error) + CreateWrappingKeyExecuteMock *func(r ApiCreateWrappingKeyRequest) (*WrappingKey, error) + DecryptExecuteMock *func(r ApiDecryptRequest) (*DecryptedData, error) + DeleteKeyExecuteMock *func(r ApiDeleteKeyRequest) error + DeleteKeyRingExecuteMock *func(r ApiDeleteKeyRingRequest) error + DeleteWrappingKeyExecuteMock *func(r ApiDeleteWrappingKeyRequest) error + DestroyVersionExecuteMock *func(r ApiDestroyVersionRequest) error + DisableVersionExecuteMock *func(r ApiDisableVersionRequest) error + EnableVersionExecuteMock *func(r ApiEnableVersionRequest) error + EncryptExecuteMock *func(r ApiEncryptRequest) (*EncryptedData, error) + GetKeyExecuteMock *func(r ApiGetKeyRequest) (*Key, error) + GetKeyRingExecuteMock *func(r ApiGetKeyRingRequest) (*KeyRing, error) + GetVersionExecuteMock *func(r ApiGetVersionRequest) (*Version, error) + GetWrappingKeyExecuteMock *func(r ApiGetWrappingKeyRequest) (*WrappingKey, error) + ImportKeyExecuteMock *func(r ApiImportKeyRequest) (*Version, error) + ListKeyRingsExecuteMock *func(r ApiListKeyRingsRequest) (*KeyRingList, error) + ListKeysExecuteMock *func(r ApiListKeysRequest) (*KeyList, error) + ListVersionsExecuteMock *func(r ApiListVersionsRequest) (*VersionList, error) + ListWrappingKeysExecuteMock *func(r ApiListWrappingKeysRequest) (*WrappingKeyList, error) + RestoreKeyExecuteMock *func(r ApiRestoreKeyRequest) error + RestoreVersionExecuteMock *func(r ApiRestoreVersionRequest) error + RotateKeyExecuteMock *func(r ApiRotateKeyRequest) (*Version, error) + SignExecuteMock *func(r ApiSignRequest) (*SignedData, error) + VerifyExecuteMock *func(r ApiVerifyRequest) (*VerifiedData, error) + func (a DefaultAPIServiceMock) CreateKey(ctx context.Context, projectId string, regionId string, keyRingId string) ApiCreateKeyRequest + func (a DefaultAPIServiceMock) CreateKeyExecute(r ApiCreateKeyRequest) (*Key, error) + func (a DefaultAPIServiceMock) CreateKeyRing(ctx context.Context, projectId string, regionId string) ApiCreateKeyRingRequest + func (a DefaultAPIServiceMock) CreateKeyRingExecute(r ApiCreateKeyRingRequest) (*KeyRing, error) + func (a DefaultAPIServiceMock) CreateWrappingKey(ctx context.Context, projectId string, regionId string, keyRingId string) ApiCreateWrappingKeyRequest + func (a DefaultAPIServiceMock) CreateWrappingKeyExecute(r ApiCreateWrappingKeyRequest) (*WrappingKey, error) + func (a DefaultAPIServiceMock) Decrypt(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDecryptRequest + func (a DefaultAPIServiceMock) DecryptExecute(r ApiDecryptRequest) (*DecryptedData, error) + func (a DefaultAPIServiceMock) DeleteKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDeleteKeyRequest + func (a DefaultAPIServiceMock) DeleteKeyExecute(r ApiDeleteKeyRequest) error + func (a DefaultAPIServiceMock) DeleteKeyRing(ctx context.Context, projectId string, regionId string, keyRingId string) ApiDeleteKeyRingRequest + func (a DefaultAPIServiceMock) DeleteKeyRingExecute(r ApiDeleteKeyRingRequest) error + func (a DefaultAPIServiceMock) DeleteWrappingKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDeleteWrappingKeyRequest + func (a DefaultAPIServiceMock) DeleteWrappingKeyExecute(r ApiDeleteWrappingKeyRequest) error + func (a DefaultAPIServiceMock) DestroyVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDestroyVersionRequest + func (a DefaultAPIServiceMock) DestroyVersionExecute(r ApiDestroyVersionRequest) error + func (a DefaultAPIServiceMock) DisableVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiDisableVersionRequest + func (a DefaultAPIServiceMock) DisableVersionExecute(r ApiDisableVersionRequest) error + func (a DefaultAPIServiceMock) EnableVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiEnableVersionRequest + func (a DefaultAPIServiceMock) EnableVersionExecute(r ApiEnableVersionRequest) error + func (a DefaultAPIServiceMock) Encrypt(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiEncryptRequest + func (a DefaultAPIServiceMock) EncryptExecute(r ApiEncryptRequest) (*EncryptedData, error) + func (a DefaultAPIServiceMock) GetKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetKeyRequest + func (a DefaultAPIServiceMock) GetKeyExecute(r ApiGetKeyRequest) (*Key, error) + func (a DefaultAPIServiceMock) GetKeyRing(ctx context.Context, projectId string, regionId string, keyRingId string) ApiGetKeyRingRequest + func (a DefaultAPIServiceMock) GetKeyRingExecute(r ApiGetKeyRingRequest) (*KeyRing, error) + func (a DefaultAPIServiceMock) GetVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetVersionRequest + func (a DefaultAPIServiceMock) GetVersionExecute(r ApiGetVersionRequest) (*Version, error) + func (a DefaultAPIServiceMock) GetWrappingKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiGetWrappingKeyRequest + func (a DefaultAPIServiceMock) GetWrappingKeyExecute(r ApiGetWrappingKeyRequest) (*WrappingKey, error) + func (a DefaultAPIServiceMock) ImportKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiImportKeyRequest + func (a DefaultAPIServiceMock) ImportKeyExecute(r ApiImportKeyRequest) (*Version, error) + func (a DefaultAPIServiceMock) ListKeyRings(ctx context.Context, projectId string, regionId string) ApiListKeyRingsRequest + func (a DefaultAPIServiceMock) ListKeyRingsExecute(r ApiListKeyRingsRequest) (*KeyRingList, error) + func (a DefaultAPIServiceMock) ListKeys(ctx context.Context, projectId string, regionId string, keyRingId string) ApiListKeysRequest + func (a DefaultAPIServiceMock) ListKeysExecute(r ApiListKeysRequest) (*KeyList, error) + func (a DefaultAPIServiceMock) ListVersions(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiListVersionsRequest + func (a DefaultAPIServiceMock) ListVersionsExecute(r ApiListVersionsRequest) (*VersionList, error) + func (a DefaultAPIServiceMock) ListWrappingKeys(ctx context.Context, projectId string, regionId string, keyRingId string) ApiListWrappingKeysRequest + func (a DefaultAPIServiceMock) ListWrappingKeysExecute(r ApiListWrappingKeysRequest) (*WrappingKeyList, error) + func (a DefaultAPIServiceMock) RestoreKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRestoreKeyRequest + func (a DefaultAPIServiceMock) RestoreKeyExecute(r ApiRestoreKeyRequest) error + func (a DefaultAPIServiceMock) RestoreVersion(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRestoreVersionRequest + func (a DefaultAPIServiceMock) RestoreVersionExecute(r ApiRestoreVersionRequest) error + func (a DefaultAPIServiceMock) RotateKey(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiRotateKeyRequest + func (a DefaultAPIServiceMock) RotateKeyExecute(r ApiRotateKeyRequest) (*Version, error) + func (a DefaultAPIServiceMock) Sign(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiSignRequest + func (a DefaultAPIServiceMock) SignExecute(r ApiSignRequest) (*SignedData, error) + func (a DefaultAPIServiceMock) Verify(ctx context.Context, projectId string, regionId string, keyRingId string, ...) ApiVerifyRequest + func (a DefaultAPIServiceMock) VerifyExecute(r ApiVerifyRequest) (*VerifiedData, error) + type EncryptPayload struct + Data string + func NewEncryptPayload(data string) *EncryptPayload + func NewEncryptPayloadWithDefaults() *EncryptPayload + func (o *EncryptPayload) GetData() string + func (o *EncryptPayload) GetDataOk() (*string, bool) + func (o *EncryptPayload) SetData(v string) + func (o *EncryptPayload) UnmarshalJSON(data []byte) (err error) + func (o EncryptPayload) MarshalJSON() ([]byte, error) + func (o EncryptPayload) ToMap() (map[string]interface{}, error) + type EncryptedData struct + Data string + func NewEncryptedData(data string) *EncryptedData + func NewEncryptedDataWithDefaults() *EncryptedData + func (o *EncryptedData) GetData() string + func (o *EncryptedData) GetDataOk() (*string, bool) + func (o *EncryptedData) SetData(v string) + func (o *EncryptedData) UnmarshalJSON(data []byte) (err error) + func (o EncryptedData) MarshalJSON() ([]byte, error) + func (o EncryptedData) ToMap() (map[string]interface{}, error) + type HttpError struct + Message string + func NewHttpError(message string) *HttpError + func NewHttpErrorWithDefaults() *HttpError + func (o *HttpError) GetMessage() string + func (o *HttpError) GetMessageOk() (*string, bool) + func (o *HttpError) SetMessage(v string) + func (o *HttpError) UnmarshalJSON(data []byte) (err error) + func (o HttpError) MarshalJSON() ([]byte, error) + func (o HttpError) ToMap() (map[string]interface{}, error) + type ImportKeyPayload struct + WrappedKey string + WrappingKeyId string + func NewImportKeyPayload(wrappedKey string, wrappingKeyId string) *ImportKeyPayload + func NewImportKeyPayloadWithDefaults() *ImportKeyPayload + func (o *ImportKeyPayload) GetWrappedKey() string + func (o *ImportKeyPayload) GetWrappedKeyOk() (*string, bool) + func (o *ImportKeyPayload) GetWrappingKeyId() string + func (o *ImportKeyPayload) GetWrappingKeyIdOk() (*string, bool) + func (o *ImportKeyPayload) SetWrappedKey(v string) + func (o *ImportKeyPayload) SetWrappingKeyId(v string) + func (o *ImportKeyPayload) UnmarshalJSON(data []byte) (err error) + func (o ImportKeyPayload) MarshalJSON() ([]byte, error) + func (o ImportKeyPayload) ToMap() (map[string]interface{}, error) + type Key struct + AccessScope AccessScope + Algorithm Algorithm + Backend Backend + CreatedAt time.Time + DeletionDate *time.Time + Description *string + DisplayName string + Id string + ImportOnly bool + KeyRingId string + Protection Protection + Purpose Purpose + State string + func NewKey(accessScope AccessScope, algorithm Algorithm, backend Backend, ...) *Key + func NewKeyWithDefaults() *Key + func (o *Key) GetAccessScope() AccessScope + func (o *Key) GetAccessScopeOk() (*AccessScope, bool) + func (o *Key) GetAlgorithm() Algorithm + func (o *Key) GetAlgorithmOk() (*Algorithm, bool) + func (o *Key) GetBackend() Backend + func (o *Key) GetBackendOk() (*Backend, bool) + func (o *Key) GetCreatedAt() time.Time + func (o *Key) GetCreatedAtOk() (*time.Time, bool) + func (o *Key) GetDeletionDate() time.Time + func (o *Key) GetDeletionDateOk() (*time.Time, bool) + func (o *Key) GetDescription() string + func (o *Key) GetDescriptionOk() (*string, bool) + func (o *Key) GetDisplayName() string + func (o *Key) GetDisplayNameOk() (*string, bool) + func (o *Key) GetId() string + func (o *Key) GetIdOk() (*string, bool) + func (o *Key) GetImportOnly() bool + func (o *Key) GetImportOnlyOk() (*bool, bool) + func (o *Key) GetKeyRingId() string + func (o *Key) GetKeyRingIdOk() (*string, bool) + func (o *Key) GetProtection() Protection + func (o *Key) GetProtectionOk() (*Protection, bool) + func (o *Key) GetPurpose() Purpose + func (o *Key) GetPurposeOk() (*Purpose, bool) + func (o *Key) GetState() string + func (o *Key) GetStateOk() (*string, bool) + func (o *Key) HasDeletionDate() bool + func (o *Key) HasDescription() bool + func (o *Key) SetAccessScope(v AccessScope) + func (o *Key) SetAlgorithm(v Algorithm) + func (o *Key) SetBackend(v Backend) + func (o *Key) SetCreatedAt(v time.Time) + func (o *Key) SetDeletionDate(v time.Time) + func (o *Key) SetDescription(v string) + func (o *Key) SetDisplayName(v string) + func (o *Key) SetId(v string) + func (o *Key) SetImportOnly(v bool) + func (o *Key) SetKeyRingId(v string) + func (o *Key) SetProtection(v Protection) + func (o *Key) SetPurpose(v Purpose) + func (o *Key) SetState(v string) + func (o *Key) UnmarshalJSON(data []byte) (err error) + func (o Key) MarshalJSON() ([]byte, error) + func (o Key) ToMap() (map[string]interface{}, error) + type KeyList struct + Keys []Key + func NewKeyList(keys []Key) *KeyList + func NewKeyListWithDefaults() *KeyList + func (o *KeyList) GetKeys() []Key + func (o *KeyList) GetKeysOk() ([]Key, bool) + func (o *KeyList) SetKeys(v []Key) + func (o *KeyList) UnmarshalJSON(data []byte) (err error) + func (o KeyList) MarshalJSON() ([]byte, error) + func (o KeyList) ToMap() (map[string]interface{}, error) + type KeyRing struct + CreatedAt time.Time + Description *string + DisplayName string + Id string + State string + func NewKeyRing(createdAt time.Time, displayName string, id string, state string) *KeyRing + func NewKeyRingWithDefaults() *KeyRing + func (o *KeyRing) GetCreatedAt() time.Time + func (o *KeyRing) GetCreatedAtOk() (*time.Time, bool) + func (o *KeyRing) GetDescription() string + func (o *KeyRing) GetDescriptionOk() (*string, bool) + func (o *KeyRing) GetDisplayName() string + func (o *KeyRing) GetDisplayNameOk() (*string, bool) + func (o *KeyRing) GetId() string + func (o *KeyRing) GetIdOk() (*string, bool) + func (o *KeyRing) GetState() string + func (o *KeyRing) GetStateOk() (*string, bool) + func (o *KeyRing) HasDescription() bool + func (o *KeyRing) SetCreatedAt(v time.Time) + func (o *KeyRing) SetDescription(v string) + func (o *KeyRing) SetDisplayName(v string) + func (o *KeyRing) SetId(v string) + func (o *KeyRing) SetState(v string) + func (o *KeyRing) UnmarshalJSON(data []byte) (err error) + func (o KeyRing) MarshalJSON() ([]byte, error) + func (o KeyRing) ToMap() (map[string]interface{}, error) + type KeyRingList struct + KeyRings []KeyRing + func NewKeyRingList(keyRings []KeyRing) *KeyRingList + func NewKeyRingListWithDefaults() *KeyRingList + func (o *KeyRingList) GetKeyRings() []KeyRing + func (o *KeyRingList) GetKeyRingsOk() ([]KeyRing, bool) + func (o *KeyRingList) SetKeyRings(v []KeyRing) + func (o *KeyRingList) UnmarshalJSON(data []byte) (err error) + func (o KeyRingList) MarshalJSON() ([]byte, error) + func (o KeyRingList) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NullableAccessScope struct + func NewNullableAccessScope(val *AccessScope) *NullableAccessScope + func (v *NullableAccessScope) Set(val *AccessScope) + func (v *NullableAccessScope) UnmarshalJSON(src []byte) error + func (v *NullableAccessScope) Unset() + func (v NullableAccessScope) Get() *AccessScope + func (v NullableAccessScope) IsSet() bool + func (v NullableAccessScope) MarshalJSON() ([]byte, error) + type NullableAlgorithm struct + func NewNullableAlgorithm(val *Algorithm) *NullableAlgorithm + func (v *NullableAlgorithm) Set(val *Algorithm) + func (v *NullableAlgorithm) UnmarshalJSON(src []byte) error + func (v *NullableAlgorithm) Unset() + func (v NullableAlgorithm) Get() *Algorithm + func (v NullableAlgorithm) IsSet() bool + func (v NullableAlgorithm) MarshalJSON() ([]byte, error) + type NullableBackend struct + func NewNullableBackend(val *Backend) *NullableBackend + func (v *NullableBackend) Set(val *Backend) + func (v *NullableBackend) UnmarshalJSON(src []byte) error + func (v *NullableBackend) Unset() + func (v NullableBackend) Get() *Backend + func (v NullableBackend) IsSet() bool + func (v NullableBackend) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCreateKeyPayload struct + func NewNullableCreateKeyPayload(val *CreateKeyPayload) *NullableCreateKeyPayload + func (v *NullableCreateKeyPayload) Set(val *CreateKeyPayload) + func (v *NullableCreateKeyPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateKeyPayload) Unset() + func (v NullableCreateKeyPayload) Get() *CreateKeyPayload + func (v NullableCreateKeyPayload) IsSet() bool + func (v NullableCreateKeyPayload) MarshalJSON() ([]byte, error) + type NullableCreateKeyRingPayload struct + func NewNullableCreateKeyRingPayload(val *CreateKeyRingPayload) *NullableCreateKeyRingPayload + func (v *NullableCreateKeyRingPayload) Set(val *CreateKeyRingPayload) + func (v *NullableCreateKeyRingPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateKeyRingPayload) Unset() + func (v NullableCreateKeyRingPayload) Get() *CreateKeyRingPayload + func (v NullableCreateKeyRingPayload) IsSet() bool + func (v NullableCreateKeyRingPayload) MarshalJSON() ([]byte, error) + type NullableCreateWrappingKeyPayload struct + func NewNullableCreateWrappingKeyPayload(val *CreateWrappingKeyPayload) *NullableCreateWrappingKeyPayload + func (v *NullableCreateWrappingKeyPayload) Set(val *CreateWrappingKeyPayload) + func (v *NullableCreateWrappingKeyPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateWrappingKeyPayload) Unset() + func (v NullableCreateWrappingKeyPayload) Get() *CreateWrappingKeyPayload + func (v NullableCreateWrappingKeyPayload) IsSet() bool + func (v NullableCreateWrappingKeyPayload) MarshalJSON() ([]byte, error) + type NullableDecryptPayload struct + func NewNullableDecryptPayload(val *DecryptPayload) *NullableDecryptPayload + func (v *NullableDecryptPayload) Set(val *DecryptPayload) + func (v *NullableDecryptPayload) UnmarshalJSON(src []byte) error + func (v *NullableDecryptPayload) Unset() + func (v NullableDecryptPayload) Get() *DecryptPayload + func (v NullableDecryptPayload) IsSet() bool + func (v NullableDecryptPayload) MarshalJSON() ([]byte, error) + type NullableDecryptedData struct + func NewNullableDecryptedData(val *DecryptedData) *NullableDecryptedData + func (v *NullableDecryptedData) Set(val *DecryptedData) + func (v *NullableDecryptedData) UnmarshalJSON(src []byte) error + func (v *NullableDecryptedData) Unset() + func (v NullableDecryptedData) Get() *DecryptedData + func (v NullableDecryptedData) IsSet() bool + func (v NullableDecryptedData) MarshalJSON() ([]byte, error) + type NullableEncryptPayload struct + func NewNullableEncryptPayload(val *EncryptPayload) *NullableEncryptPayload + func (v *NullableEncryptPayload) Set(val *EncryptPayload) + func (v *NullableEncryptPayload) UnmarshalJSON(src []byte) error + func (v *NullableEncryptPayload) Unset() + func (v NullableEncryptPayload) Get() *EncryptPayload + func (v NullableEncryptPayload) IsSet() bool + func (v NullableEncryptPayload) MarshalJSON() ([]byte, error) + type NullableEncryptedData struct + func NewNullableEncryptedData(val *EncryptedData) *NullableEncryptedData + func (v *NullableEncryptedData) Set(val *EncryptedData) + func (v *NullableEncryptedData) UnmarshalJSON(src []byte) error + func (v *NullableEncryptedData) Unset() + func (v NullableEncryptedData) Get() *EncryptedData + func (v NullableEncryptedData) IsSet() bool + func (v NullableEncryptedData) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableHttpError struct + func NewNullableHttpError(val *HttpError) *NullableHttpError + func (v *NullableHttpError) Set(val *HttpError) + func (v *NullableHttpError) UnmarshalJSON(src []byte) error + func (v *NullableHttpError) Unset() + func (v NullableHttpError) Get() *HttpError + func (v NullableHttpError) IsSet() bool + func (v NullableHttpError) MarshalJSON() ([]byte, error) + type NullableImportKeyPayload struct + func NewNullableImportKeyPayload(val *ImportKeyPayload) *NullableImportKeyPayload + func (v *NullableImportKeyPayload) Set(val *ImportKeyPayload) + func (v *NullableImportKeyPayload) UnmarshalJSON(src []byte) error + func (v *NullableImportKeyPayload) Unset() + func (v NullableImportKeyPayload) Get() *ImportKeyPayload + func (v NullableImportKeyPayload) IsSet() bool + func (v NullableImportKeyPayload) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableKey struct + func NewNullableKey(val *Key) *NullableKey + func (v *NullableKey) Set(val *Key) + func (v *NullableKey) UnmarshalJSON(src []byte) error + func (v *NullableKey) Unset() + func (v NullableKey) Get() *Key + func (v NullableKey) IsSet() bool + func (v NullableKey) MarshalJSON() ([]byte, error) + type NullableKeyList struct + func NewNullableKeyList(val *KeyList) *NullableKeyList + func (v *NullableKeyList) Set(val *KeyList) + func (v *NullableKeyList) UnmarshalJSON(src []byte) error + func (v *NullableKeyList) Unset() + func (v NullableKeyList) Get() *KeyList + func (v NullableKeyList) IsSet() bool + func (v NullableKeyList) MarshalJSON() ([]byte, error) + type NullableKeyRing struct + func NewNullableKeyRing(val *KeyRing) *NullableKeyRing + func (v *NullableKeyRing) Set(val *KeyRing) + func (v *NullableKeyRing) UnmarshalJSON(src []byte) error + func (v *NullableKeyRing) Unset() + func (v NullableKeyRing) Get() *KeyRing + func (v NullableKeyRing) IsSet() bool + func (v NullableKeyRing) MarshalJSON() ([]byte, error) + type NullableKeyRingList struct + func NewNullableKeyRingList(val *KeyRingList) *NullableKeyRingList + func (v *NullableKeyRingList) Set(val *KeyRingList) + func (v *NullableKeyRingList) UnmarshalJSON(src []byte) error + func (v *NullableKeyRingList) Unset() + func (v NullableKeyRingList) Get() *KeyRingList + func (v NullableKeyRingList) IsSet() bool + func (v NullableKeyRingList) MarshalJSON() ([]byte, error) + type NullableProtection struct + func NewNullableProtection(val *Protection) *NullableProtection + func (v *NullableProtection) Set(val *Protection) + func (v *NullableProtection) UnmarshalJSON(src []byte) error + func (v *NullableProtection) Unset() + func (v NullableProtection) Get() *Protection + func (v NullableProtection) IsSet() bool + func (v NullableProtection) MarshalJSON() ([]byte, error) + type NullablePurpose struct + func NewNullablePurpose(val *Purpose) *NullablePurpose + func (v *NullablePurpose) Set(val *Purpose) + func (v *NullablePurpose) UnmarshalJSON(src []byte) error + func (v *NullablePurpose) Unset() + func (v NullablePurpose) Get() *Purpose + func (v NullablePurpose) IsSet() bool + func (v NullablePurpose) MarshalJSON() ([]byte, error) + type NullableSignPayload struct + func NewNullableSignPayload(val *SignPayload) *NullableSignPayload + func (v *NullableSignPayload) Set(val *SignPayload) + func (v *NullableSignPayload) UnmarshalJSON(src []byte) error + func (v *NullableSignPayload) Unset() + func (v NullableSignPayload) Get() *SignPayload + func (v NullableSignPayload) IsSet() bool + func (v NullableSignPayload) MarshalJSON() ([]byte, error) + type NullableSignedData struct + func NewNullableSignedData(val *SignedData) *NullableSignedData + func (v *NullableSignedData) Set(val *SignedData) + func (v *NullableSignedData) UnmarshalJSON(src []byte) error + func (v *NullableSignedData) Unset() + func (v NullableSignedData) Get() *SignedData + func (v NullableSignedData) IsSet() bool + func (v NullableSignedData) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableVerifiedData struct + func NewNullableVerifiedData(val *VerifiedData) *NullableVerifiedData + func (v *NullableVerifiedData) Set(val *VerifiedData) + func (v *NullableVerifiedData) UnmarshalJSON(src []byte) error + func (v *NullableVerifiedData) Unset() + func (v NullableVerifiedData) Get() *VerifiedData + func (v NullableVerifiedData) IsSet() bool + func (v NullableVerifiedData) MarshalJSON() ([]byte, error) + type NullableVerifyPayload struct + func NewNullableVerifyPayload(val *VerifyPayload) *NullableVerifyPayload + func (v *NullableVerifyPayload) Set(val *VerifyPayload) + func (v *NullableVerifyPayload) UnmarshalJSON(src []byte) error + func (v *NullableVerifyPayload) Unset() + func (v NullableVerifyPayload) Get() *VerifyPayload + func (v NullableVerifyPayload) IsSet() bool + func (v NullableVerifyPayload) MarshalJSON() ([]byte, error) + type NullableVersion struct + func NewNullableVersion(val *Version) *NullableVersion + func (v *NullableVersion) Set(val *Version) + func (v *NullableVersion) UnmarshalJSON(src []byte) error + func (v *NullableVersion) Unset() + func (v NullableVersion) Get() *Version + func (v NullableVersion) IsSet() bool + func (v NullableVersion) MarshalJSON() ([]byte, error) + type NullableVersionList struct + func NewNullableVersionList(val *VersionList) *NullableVersionList + func (v *NullableVersionList) Set(val *VersionList) + func (v *NullableVersionList) UnmarshalJSON(src []byte) error + func (v *NullableVersionList) Unset() + func (v NullableVersionList) Get() *VersionList + func (v NullableVersionList) IsSet() bool + func (v NullableVersionList) MarshalJSON() ([]byte, error) + type NullableWrappingAlgorithm struct + func NewNullableWrappingAlgorithm(val *WrappingAlgorithm) *NullableWrappingAlgorithm + func (v *NullableWrappingAlgorithm) Set(val *WrappingAlgorithm) + func (v *NullableWrappingAlgorithm) UnmarshalJSON(src []byte) error + func (v *NullableWrappingAlgorithm) Unset() + func (v NullableWrappingAlgorithm) Get() *WrappingAlgorithm + func (v NullableWrappingAlgorithm) IsSet() bool + func (v NullableWrappingAlgorithm) MarshalJSON() ([]byte, error) + type NullableWrappingKey struct + func NewNullableWrappingKey(val *WrappingKey) *NullableWrappingKey + func (v *NullableWrappingKey) Set(val *WrappingKey) + func (v *NullableWrappingKey) UnmarshalJSON(src []byte) error + func (v *NullableWrappingKey) Unset() + func (v NullableWrappingKey) Get() *WrappingKey + func (v NullableWrappingKey) IsSet() bool + func (v NullableWrappingKey) MarshalJSON() ([]byte, error) + type NullableWrappingKeyList struct + func NewNullableWrappingKeyList(val *WrappingKeyList) *NullableWrappingKeyList + func (v *NullableWrappingKeyList) Set(val *WrappingKeyList) + func (v *NullableWrappingKeyList) UnmarshalJSON(src []byte) error + func (v *NullableWrappingKeyList) Unset() + func (v NullableWrappingKeyList) Get() *WrappingKeyList + func (v NullableWrappingKeyList) IsSet() bool + func (v NullableWrappingKeyList) MarshalJSON() ([]byte, error) + type NullableWrappingPurpose struct + func NewNullableWrappingPurpose(val *WrappingPurpose) *NullableWrappingPurpose + func (v *NullableWrappingPurpose) Set(val *WrappingPurpose) + func (v *NullableWrappingPurpose) UnmarshalJSON(src []byte) error + func (v *NullableWrappingPurpose) Unset() + func (v NullableWrappingPurpose) Get() *WrappingPurpose + func (v NullableWrappingPurpose) IsSet() bool + func (v NullableWrappingPurpose) MarshalJSON() ([]byte, error) + type Protection string + const PROTECTION_SOFTWARE + func NewProtectionFromValue(v string) (*Protection, error) + func (v *Protection) UnmarshalJSON(src []byte) error + func (v Protection) IsValid() bool + func (v Protection) Ptr() *Protection + type Purpose string + const PURPOSE_ASYMMETRIC_ENCRYPT_DECRYPT + const PURPOSE_ASYMMETRIC_SIGN_VERIFY + const PURPOSE_MESSAGE_AUTHENTICATION_CODE + const PURPOSE_SYMMETRIC_ENCRYPT_DECRYPT + func NewPurposeFromValue(v string) (*Purpose, error) + func (v *Purpose) UnmarshalJSON(src []byte) error + func (v Purpose) IsValid() bool + func (v Purpose) Ptr() *Purpose + type SignPayload struct + Data string + func NewSignPayload(data string) *SignPayload + func NewSignPayloadWithDefaults() *SignPayload + func (o *SignPayload) GetData() string + func (o *SignPayload) GetDataOk() (*string, bool) + func (o *SignPayload) SetData(v string) + func (o *SignPayload) UnmarshalJSON(data []byte) (err error) + func (o SignPayload) MarshalJSON() ([]byte, error) + func (o SignPayload) ToMap() (map[string]interface{}, error) + type SignedData struct + Data string + Signature string + func NewSignedData(data string, signature string) *SignedData + func NewSignedDataWithDefaults() *SignedData + func (o *SignedData) GetData() string + func (o *SignedData) GetDataOk() (*string, bool) + func (o *SignedData) GetSignature() string + func (o *SignedData) GetSignatureOk() (*string, bool) + func (o *SignedData) SetData(v string) + func (o *SignedData) SetSignature(v string) + func (o *SignedData) UnmarshalJSON(data []byte) (err error) + func (o SignedData) MarshalJSON() ([]byte, error) + func (o SignedData) ToMap() (map[string]interface{}, error) + type VerifiedData struct + Valid bool + func NewVerifiedData(valid bool) *VerifiedData + func NewVerifiedDataWithDefaults() *VerifiedData + func (o *VerifiedData) GetValid() bool + func (o *VerifiedData) GetValidOk() (*bool, bool) + func (o *VerifiedData) SetValid(v bool) + func (o *VerifiedData) UnmarshalJSON(data []byte) (err error) + func (o VerifiedData) MarshalJSON() ([]byte, error) + func (o VerifiedData) ToMap() (map[string]interface{}, error) + type VerifyPayload struct + Data string + Signature string + func NewVerifyPayload(data string, signature string) *VerifyPayload + func NewVerifyPayloadWithDefaults() *VerifyPayload + func (o *VerifyPayload) GetData() string + func (o *VerifyPayload) GetDataOk() (*string, bool) + func (o *VerifyPayload) GetSignature() string + func (o *VerifyPayload) GetSignatureOk() (*string, bool) + func (o *VerifyPayload) SetData(v string) + func (o *VerifyPayload) SetSignature(v string) + func (o *VerifyPayload) UnmarshalJSON(data []byte) (err error) + func (o VerifyPayload) MarshalJSON() ([]byte, error) + func (o VerifyPayload) ToMap() (map[string]interface{}, error) + type Version struct + CreatedAt time.Time + DestroyDate *time.Time + Disabled bool + KeyId string + KeyRingId string + Number int64 + PublicKey *string + State string + func NewVersion(createdAt time.Time, disabled bool, keyId string, keyRingId string, ...) *Version + func NewVersionWithDefaults() *Version + func (o *Version) GetCreatedAt() time.Time + func (o *Version) GetCreatedAtOk() (*time.Time, bool) + func (o *Version) GetDestroyDate() time.Time + func (o *Version) GetDestroyDateOk() (*time.Time, bool) + func (o *Version) GetDisabled() bool + func (o *Version) GetDisabledOk() (*bool, bool) + func (o *Version) GetKeyId() string + func (o *Version) GetKeyIdOk() (*string, bool) + func (o *Version) GetKeyRingId() string + func (o *Version) GetKeyRingIdOk() (*string, bool) + func (o *Version) GetNumber() int64 + func (o *Version) GetNumberOk() (*int64, bool) + func (o *Version) GetPublicKey() string + func (o *Version) GetPublicKeyOk() (*string, bool) + func (o *Version) GetState() string + func (o *Version) GetStateOk() (*string, bool) + func (o *Version) HasDestroyDate() bool + func (o *Version) HasPublicKey() bool + func (o *Version) SetCreatedAt(v time.Time) + func (o *Version) SetDestroyDate(v time.Time) + func (o *Version) SetDisabled(v bool) + func (o *Version) SetKeyId(v string) + func (o *Version) SetKeyRingId(v string) + func (o *Version) SetNumber(v int64) + func (o *Version) SetPublicKey(v string) + func (o *Version) SetState(v string) + func (o *Version) UnmarshalJSON(data []byte) (err error) + func (o Version) MarshalJSON() ([]byte, error) + func (o Version) ToMap() (map[string]interface{}, error) + type VersionList struct + Versions []Version + func NewVersionList(versions []Version) *VersionList + func NewVersionListWithDefaults() *VersionList + func (o *VersionList) GetVersions() []Version + func (o *VersionList) GetVersionsOk() ([]Version, bool) + func (o *VersionList) SetVersions(v []Version) + func (o *VersionList) UnmarshalJSON(data []byte) (err error) + func (o VersionList) MarshalJSON() ([]byte, error) + func (o VersionList) ToMap() (map[string]interface{}, error) + type WrappingAlgorithm string + const WRAPPINGALGORITHM_RSA_2048_OAEP_SHA256 + const WRAPPINGALGORITHM_RSA_2048_OAEP_SHA256_AES_256_KEY_WRAP + const WRAPPINGALGORITHM_RSA_3072_OAEP_SHA256 + const WRAPPINGALGORITHM_RSA_3072_OAEP_SHA256_AES_256_KEY_WRAP + const WRAPPINGALGORITHM_RSA_4096_OAEP_SHA256 + const WRAPPINGALGORITHM_RSA_4096_OAEP_SHA256_AES_256_KEY_WRAP + const WRAPPINGALGORITHM_RSA_4096_OAEP_SHA512 + const WRAPPINGALGORITHM_RSA_4096_OAEP_SHA512_AES_256_KEY_WRAP + func NewWrappingAlgorithmFromValue(v string) (*WrappingAlgorithm, error) + func (v *WrappingAlgorithm) UnmarshalJSON(src []byte) error + func (v WrappingAlgorithm) IsValid() bool + func (v WrappingAlgorithm) Ptr() *WrappingAlgorithm + type WrappingKey struct + AccessScope AccessScope + Algorithm WrappingAlgorithm + Backend Backend + CreatedAt time.Time + Description *string + DisplayName string + ExpiresAt time.Time + Id string + KeyRingId string + Protection Protection + PublicKey *string + Purpose WrappingPurpose + State string + func NewWrappingKey(accessScope AccessScope, algorithm WrappingAlgorithm, backend Backend, ...) *WrappingKey + func NewWrappingKeyWithDefaults() *WrappingKey + func (o *WrappingKey) GetAccessScope() AccessScope + func (o *WrappingKey) GetAccessScopeOk() (*AccessScope, bool) + func (o *WrappingKey) GetAlgorithm() WrappingAlgorithm + func (o *WrappingKey) GetAlgorithmOk() (*WrappingAlgorithm, bool) + func (o *WrappingKey) GetBackend() Backend + func (o *WrappingKey) GetBackendOk() (*Backend, bool) + func (o *WrappingKey) GetCreatedAt() time.Time + func (o *WrappingKey) GetCreatedAtOk() (*time.Time, bool) + func (o *WrappingKey) GetDescription() string + func (o *WrappingKey) GetDescriptionOk() (*string, bool) + func (o *WrappingKey) GetDisplayName() string + func (o *WrappingKey) GetDisplayNameOk() (*string, bool) + func (o *WrappingKey) GetExpiresAt() time.Time + func (o *WrappingKey) GetExpiresAtOk() (*time.Time, bool) + func (o *WrappingKey) GetId() string + func (o *WrappingKey) GetIdOk() (*string, bool) + func (o *WrappingKey) GetKeyRingId() string + func (o *WrappingKey) GetKeyRingIdOk() (*string, bool) + func (o *WrappingKey) GetProtection() Protection + func (o *WrappingKey) GetProtectionOk() (*Protection, bool) + func (o *WrappingKey) GetPublicKey() string + func (o *WrappingKey) GetPublicKeyOk() (*string, bool) + func (o *WrappingKey) GetPurpose() WrappingPurpose + func (o *WrappingKey) GetPurposeOk() (*WrappingPurpose, bool) + func (o *WrappingKey) GetState() string + func (o *WrappingKey) GetStateOk() (*string, bool) + func (o *WrappingKey) HasDescription() bool + func (o *WrappingKey) HasPublicKey() bool + func (o *WrappingKey) SetAccessScope(v AccessScope) + func (o *WrappingKey) SetAlgorithm(v WrappingAlgorithm) + func (o *WrappingKey) SetBackend(v Backend) + func (o *WrappingKey) SetCreatedAt(v time.Time) + func (o *WrappingKey) SetDescription(v string) + func (o *WrappingKey) SetDisplayName(v string) + func (o *WrappingKey) SetExpiresAt(v time.Time) + func (o *WrappingKey) SetId(v string) + func (o *WrappingKey) SetKeyRingId(v string) + func (o *WrappingKey) SetProtection(v Protection) + func (o *WrappingKey) SetPublicKey(v string) + func (o *WrappingKey) SetPurpose(v WrappingPurpose) + func (o *WrappingKey) SetState(v string) + func (o *WrappingKey) UnmarshalJSON(data []byte) (err error) + func (o WrappingKey) MarshalJSON() ([]byte, error) + func (o WrappingKey) ToMap() (map[string]interface{}, error) + type WrappingKeyList struct + WrappingKeys []WrappingKey + func NewWrappingKeyList(wrappingKeys []WrappingKey) *WrappingKeyList + func NewWrappingKeyListWithDefaults() *WrappingKeyList + func (o *WrappingKeyList) GetWrappingKeys() []WrappingKey + func (o *WrappingKeyList) GetWrappingKeysOk() ([]WrappingKey, bool) + func (o *WrappingKeyList) SetWrappingKeys(v []WrappingKey) + func (o *WrappingKeyList) UnmarshalJSON(data []byte) (err error) + func (o WrappingKeyList) MarshalJSON() ([]byte, error) + func (o WrappingKeyList) ToMap() (map[string]interface{}, error) + type WrappingPurpose string + const WRAPPINGPURPOSE_WRAP_ASYMMETRIC_KEY + const WRAPPINGPURPOSE_WRAP_SYMMETRIC_KEY + func NewWrappingPurposeFromValue(v string) (*WrappingPurpose, error) + func (v *WrappingPurpose) UnmarshalJSON(src []byte) error + func (v WrappingPurpose) IsValid() bool + func (v WrappingPurpose) Ptr() *WrappingPurpose