Versions in this module Expand all Collapse all v1 v1.5.0 Mar 10, 2026 Changes in this version + var AllowedProjectScopeEnumValues = []ProjectScope + 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 AccessKey struct + DisplayName string + Expires string + KeyId string + func NewAccessKey(displayName string, expires string, keyId string) *AccessKey + func NewAccessKeyWithDefaults() *AccessKey + func (o *AccessKey) GetDisplayName() string + func (o *AccessKey) GetDisplayNameOk() (*string, bool) + func (o *AccessKey) GetExpires() string + func (o *AccessKey) GetExpiresOk() (*string, bool) + func (o *AccessKey) GetKeyId() string + func (o *AccessKey) GetKeyIdOk() (*string, bool) + func (o *AccessKey) SetDisplayName(v string) + func (o *AccessKey) SetExpires(v string) + func (o *AccessKey) SetKeyId(v string) + func (o *AccessKey) UnmarshalJSON(data []byte) (err error) + func (o AccessKey) MarshalJSON() ([]byte, error) + func (o AccessKey) ToMap() (map[string]interface{}, error) + type ApiCreateAccessKeyRequest struct + ApiService DefaultAPI + func (r ApiCreateAccessKeyRequest) CreateAccessKeyPayload(createAccessKeyPayload CreateAccessKeyPayload) ApiCreateAccessKeyRequest + func (r ApiCreateAccessKeyRequest) CredentialsGroup(credentialsGroup string) ApiCreateAccessKeyRequest + func (r ApiCreateAccessKeyRequest) Execute() (*CreateAccessKeyResponse, error) + type ApiCreateBucketRequest struct + ApiService DefaultAPI + func (r ApiCreateBucketRequest) Execute() (*CreateBucketResponse, error) + type ApiCreateCredentialsGroupRequest struct + ApiService DefaultAPI + func (r ApiCreateCredentialsGroupRequest) CreateCredentialsGroupPayload(createCredentialsGroupPayload CreateCredentialsGroupPayload) ApiCreateCredentialsGroupRequest + func (r ApiCreateCredentialsGroupRequest) Execute() (*CreateCredentialsGroupResponse, error) + type ApiDeleteAccessKeyRequest struct + ApiService DefaultAPI + func (r ApiDeleteAccessKeyRequest) CredentialsGroup(credentialsGroup string) ApiDeleteAccessKeyRequest + func (r ApiDeleteAccessKeyRequest) Execute() (*DeleteAccessKeyResponse, error) + type ApiDeleteBucketRequest struct + ApiService DefaultAPI + func (r ApiDeleteBucketRequest) Execute() (*DeleteBucketResponse, error) + type ApiDeleteCredentialsGroupRequest struct + ApiService DefaultAPI + func (r ApiDeleteCredentialsGroupRequest) Execute() (*DeleteCredentialsGroupResponse, error) + type ApiDisableServiceRequest struct + ApiService DefaultAPI + func (r ApiDisableServiceRequest) Execute() (*ProjectStatus, error) + type ApiEnableServiceRequest struct + ApiService DefaultAPI + func (r ApiEnableServiceRequest) Execute() (*ProjectStatus, error) + type ApiGetBucketRequest struct + ApiService DefaultAPI + func (r ApiGetBucketRequest) Execute() (*GetBucketResponse, error) + type ApiGetServiceStatusRequest struct + ApiService DefaultAPI + func (r ApiGetServiceStatusRequest) Execute() (*ProjectStatus, error) + type ApiListAccessKeysRequest struct + ApiService DefaultAPI + func (r ApiListAccessKeysRequest) CredentialsGroup(credentialsGroup string) ApiListAccessKeysRequest + func (r ApiListAccessKeysRequest) Execute() (*ListAccessKeysResponse, error) + type ApiListBucketsRequest struct + ApiService DefaultAPI + func (r ApiListBucketsRequest) Execute() (*ListBucketsResponse, error) + type ApiListCredentialsGroupsRequest struct + ApiService DefaultAPI + func (r ApiListCredentialsGroupsRequest) Execute() (*ListCredentialsGroupsResponse, error) + type Bucket struct + Name string + Region string + UrlPathStyle string + UrlVirtualHostedStyle string + func NewBucket(name string, region string, urlPathStyle string, urlVirtualHostedStyle string) *Bucket + func NewBucketWithDefaults() *Bucket + func (o *Bucket) GetName() string + func (o *Bucket) GetNameOk() (*string, bool) + func (o *Bucket) GetRegion() string + func (o *Bucket) GetRegionOk() (*string, bool) + func (o *Bucket) GetUrlPathStyle() string + func (o *Bucket) GetUrlPathStyleOk() (*string, bool) + func (o *Bucket) GetUrlVirtualHostedStyle() string + func (o *Bucket) GetUrlVirtualHostedStyleOk() (*string, bool) + func (o *Bucket) SetName(v string) + func (o *Bucket) SetRegion(v string) + func (o *Bucket) SetUrlPathStyle(v string) + func (o *Bucket) SetUrlVirtualHostedStyle(v string) + func (o *Bucket) UnmarshalJSON(data []byte) (err error) + func (o Bucket) MarshalJSON() ([]byte, error) + func (o Bucket) ToMap() (map[string]interface{}, error) + type CreateAccessKeyPayload struct + Expires *time.Time + func NewCreateAccessKeyPayload() *CreateAccessKeyPayload + func NewCreateAccessKeyPayloadWithDefaults() *CreateAccessKeyPayload + func (o *CreateAccessKeyPayload) GetExpires() time.Time + func (o *CreateAccessKeyPayload) GetExpiresOk() (*time.Time, bool) + func (o *CreateAccessKeyPayload) HasExpires() bool + func (o *CreateAccessKeyPayload) SetExpires(v time.Time) + func (o CreateAccessKeyPayload) MarshalJSON() ([]byte, error) + func (o CreateAccessKeyPayload) ToMap() (map[string]interface{}, error) + type CreateAccessKeyResponse struct + AccessKey string + DisplayName string + Expires NullableString + KeyId string + Project string + SecretAccessKey string + func NewCreateAccessKeyResponse(accessKey string, displayName string, expires NullableString, keyId string, ...) *CreateAccessKeyResponse + func NewCreateAccessKeyResponseWithDefaults() *CreateAccessKeyResponse + func (o *CreateAccessKeyResponse) GetAccessKey() string + func (o *CreateAccessKeyResponse) GetAccessKeyOk() (*string, bool) + func (o *CreateAccessKeyResponse) GetDisplayName() string + func (o *CreateAccessKeyResponse) GetDisplayNameOk() (*string, bool) + func (o *CreateAccessKeyResponse) GetExpires() string + func (o *CreateAccessKeyResponse) GetExpiresOk() (*string, bool) + func (o *CreateAccessKeyResponse) GetKeyId() string + func (o *CreateAccessKeyResponse) GetKeyIdOk() (*string, bool) + func (o *CreateAccessKeyResponse) GetProject() string + func (o *CreateAccessKeyResponse) GetProjectOk() (*string, bool) + func (o *CreateAccessKeyResponse) GetSecretAccessKey() string + func (o *CreateAccessKeyResponse) GetSecretAccessKeyOk() (*string, bool) + func (o *CreateAccessKeyResponse) SetAccessKey(v string) + func (o *CreateAccessKeyResponse) SetDisplayName(v string) + func (o *CreateAccessKeyResponse) SetExpires(v string) + func (o *CreateAccessKeyResponse) SetKeyId(v string) + func (o *CreateAccessKeyResponse) SetProject(v string) + func (o *CreateAccessKeyResponse) SetSecretAccessKey(v string) + func (o *CreateAccessKeyResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateAccessKeyResponse) MarshalJSON() ([]byte, error) + func (o CreateAccessKeyResponse) ToMap() (map[string]interface{}, error) + type CreateBucketResponse struct + Bucket string + Project string + func NewCreateBucketResponse(bucket string, project string) *CreateBucketResponse + func NewCreateBucketResponseWithDefaults() *CreateBucketResponse + func (o *CreateBucketResponse) GetBucket() string + func (o *CreateBucketResponse) GetBucketOk() (*string, bool) + func (o *CreateBucketResponse) GetProject() string + func (o *CreateBucketResponse) GetProjectOk() (*string, bool) + func (o *CreateBucketResponse) SetBucket(v string) + func (o *CreateBucketResponse) SetProject(v string) + func (o *CreateBucketResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateBucketResponse) MarshalJSON() ([]byte, error) + func (o CreateBucketResponse) ToMap() (map[string]interface{}, error) + type CreateCredentialsGroupPayload struct + DisplayName string + func NewCreateCredentialsGroupPayload(displayName string) *CreateCredentialsGroupPayload + func NewCreateCredentialsGroupPayloadWithDefaults() *CreateCredentialsGroupPayload + func (o *CreateCredentialsGroupPayload) GetDisplayName() string + func (o *CreateCredentialsGroupPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateCredentialsGroupPayload) SetDisplayName(v string) + func (o *CreateCredentialsGroupPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateCredentialsGroupPayload) MarshalJSON() ([]byte, error) + func (o CreateCredentialsGroupPayload) ToMap() (map[string]interface{}, error) + type CreateCredentialsGroupResponse struct + CredentialsGroup CredentialsGroup + Project string + func NewCreateCredentialsGroupResponse(credentialsGroup CredentialsGroup, project string) *CreateCredentialsGroupResponse + func NewCreateCredentialsGroupResponseWithDefaults() *CreateCredentialsGroupResponse + func (o *CreateCredentialsGroupResponse) GetCredentialsGroup() CredentialsGroup + func (o *CreateCredentialsGroupResponse) GetCredentialsGroupOk() (*CredentialsGroup, bool) + func (o *CreateCredentialsGroupResponse) GetProject() string + func (o *CreateCredentialsGroupResponse) GetProjectOk() (*string, bool) + func (o *CreateCredentialsGroupResponse) SetCredentialsGroup(v CredentialsGroup) + func (o *CreateCredentialsGroupResponse) SetProject(v string) + func (o *CreateCredentialsGroupResponse) UnmarshalJSON(data []byte) (err error) + func (o CreateCredentialsGroupResponse) MarshalJSON() ([]byte, error) + func (o CreateCredentialsGroupResponse) ToMap() (map[string]interface{}, error) + type CredentialsGroup struct + CredentialsGroupId string + DisplayName string + Urn string + func NewCredentialsGroup(credentialsGroupId string, displayName string, urn string) *CredentialsGroup + func NewCredentialsGroupWithDefaults() *CredentialsGroup + func (o *CredentialsGroup) GetCredentialsGroupId() string + func (o *CredentialsGroup) GetCredentialsGroupIdOk() (*string, bool) + func (o *CredentialsGroup) GetDisplayName() string + func (o *CredentialsGroup) GetDisplayNameOk() (*string, bool) + func (o *CredentialsGroup) GetUrn() string + func (o *CredentialsGroup) GetUrnOk() (*string, bool) + func (o *CredentialsGroup) SetCredentialsGroupId(v string) + func (o *CredentialsGroup) SetDisplayName(v string) + func (o *CredentialsGroup) SetUrn(v string) + func (o *CredentialsGroup) UnmarshalJSON(data []byte) (err error) + func (o CredentialsGroup) MarshalJSON() ([]byte, error) + func (o CredentialsGroup) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateAccessKey func(ctx context.Context, projectId string, region string) ApiCreateAccessKeyRequest + CreateAccessKeyExecute func(r ApiCreateAccessKeyRequest) (*CreateAccessKeyResponse, error) + CreateBucket func(ctx context.Context, projectId string, region string, bucketName string) ApiCreateBucketRequest + CreateBucketExecute func(r ApiCreateBucketRequest) (*CreateBucketResponse, error) + CreateCredentialsGroup func(ctx context.Context, projectId string, region string) ApiCreateCredentialsGroupRequest + CreateCredentialsGroupExecute func(r ApiCreateCredentialsGroupRequest) (*CreateCredentialsGroupResponse, error) + DeleteAccessKey func(ctx context.Context, projectId string, region string, keyId string) ApiDeleteAccessKeyRequest + DeleteAccessKeyExecute func(r ApiDeleteAccessKeyRequest) (*DeleteAccessKeyResponse, error) + DeleteBucket func(ctx context.Context, projectId string, region string, bucketName string) ApiDeleteBucketRequest + DeleteBucketExecute func(r ApiDeleteBucketRequest) (*DeleteBucketResponse, error) + DeleteCredentialsGroup func(ctx context.Context, projectId string, region string, groupId string) ApiDeleteCredentialsGroupRequest + DeleteCredentialsGroupExecute func(r ApiDeleteCredentialsGroupRequest) (*DeleteCredentialsGroupResponse, error) + DisableService func(ctx context.Context, projectId string, region string) ApiDisableServiceRequest + DisableServiceExecute func(r ApiDisableServiceRequest) (*ProjectStatus, error) + EnableService func(ctx context.Context, projectId string, region string) ApiEnableServiceRequest + EnableServiceExecute func(r ApiEnableServiceRequest) (*ProjectStatus, error) + GetBucket func(ctx context.Context, projectId string, region string, bucketName string) ApiGetBucketRequest + GetBucketExecute func(r ApiGetBucketRequest) (*GetBucketResponse, error) + GetServiceStatus func(ctx context.Context, projectId string, region string) ApiGetServiceStatusRequest + GetServiceStatusExecute func(r ApiGetServiceStatusRequest) (*ProjectStatus, error) + ListAccessKeys func(ctx context.Context, projectId string, region string) ApiListAccessKeysRequest + ListAccessKeysExecute func(r ApiListAccessKeysRequest) (*ListAccessKeysResponse, error) + ListBuckets func(ctx context.Context, projectId string, region string) ApiListBucketsRequest + ListBucketsExecute func(r ApiListBucketsRequest) (*ListBucketsResponse, error) + ListCredentialsGroups func(ctx context.Context, projectId string, region string) ApiListCredentialsGroupsRequest + ListCredentialsGroupsExecute func(r ApiListCredentialsGroupsRequest) (*ListCredentialsGroupsResponse, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateAccessKey(ctx context.Context, projectId string, region string) ApiCreateAccessKeyRequest + func (a *DefaultAPIService) CreateAccessKeyExecute(r ApiCreateAccessKeyRequest) (*CreateAccessKeyResponse, error) + func (a *DefaultAPIService) CreateBucket(ctx context.Context, projectId string, region string, bucketName string) ApiCreateBucketRequest + func (a *DefaultAPIService) CreateBucketExecute(r ApiCreateBucketRequest) (*CreateBucketResponse, error) + func (a *DefaultAPIService) CreateCredentialsGroup(ctx context.Context, projectId string, region string) ApiCreateCredentialsGroupRequest + func (a *DefaultAPIService) CreateCredentialsGroupExecute(r ApiCreateCredentialsGroupRequest) (*CreateCredentialsGroupResponse, error) + func (a *DefaultAPIService) DeleteAccessKey(ctx context.Context, projectId string, region string, keyId string) ApiDeleteAccessKeyRequest + func (a *DefaultAPIService) DeleteAccessKeyExecute(r ApiDeleteAccessKeyRequest) (*DeleteAccessKeyResponse, error) + func (a *DefaultAPIService) DeleteBucket(ctx context.Context, projectId string, region string, bucketName string) ApiDeleteBucketRequest + func (a *DefaultAPIService) DeleteBucketExecute(r ApiDeleteBucketRequest) (*DeleteBucketResponse, error) + func (a *DefaultAPIService) DeleteCredentialsGroup(ctx context.Context, projectId string, region string, groupId string) ApiDeleteCredentialsGroupRequest + func (a *DefaultAPIService) DeleteCredentialsGroupExecute(r ApiDeleteCredentialsGroupRequest) (*DeleteCredentialsGroupResponse, error) + func (a *DefaultAPIService) DisableService(ctx context.Context, projectId string, region string) ApiDisableServiceRequest + func (a *DefaultAPIService) DisableServiceExecute(r ApiDisableServiceRequest) (*ProjectStatus, error) + func (a *DefaultAPIService) EnableService(ctx context.Context, projectId string, region string) ApiEnableServiceRequest + func (a *DefaultAPIService) EnableServiceExecute(r ApiEnableServiceRequest) (*ProjectStatus, error) + func (a *DefaultAPIService) GetBucket(ctx context.Context, projectId string, region string, bucketName string) ApiGetBucketRequest + func (a *DefaultAPIService) GetBucketExecute(r ApiGetBucketRequest) (*GetBucketResponse, error) + func (a *DefaultAPIService) GetServiceStatus(ctx context.Context, projectId string, region string) ApiGetServiceStatusRequest + func (a *DefaultAPIService) GetServiceStatusExecute(r ApiGetServiceStatusRequest) (*ProjectStatus, error) + func (a *DefaultAPIService) ListAccessKeys(ctx context.Context, projectId string, region string) ApiListAccessKeysRequest + func (a *DefaultAPIService) ListAccessKeysExecute(r ApiListAccessKeysRequest) (*ListAccessKeysResponse, error) + func (a *DefaultAPIService) ListBuckets(ctx context.Context, projectId string, region string) ApiListBucketsRequest + func (a *DefaultAPIService) ListBucketsExecute(r ApiListBucketsRequest) (*ListBucketsResponse, error) + func (a *DefaultAPIService) ListCredentialsGroups(ctx context.Context, projectId string, region string) ApiListCredentialsGroupsRequest + func (a *DefaultAPIService) ListCredentialsGroupsExecute(r ApiListCredentialsGroupsRequest) (*ListCredentialsGroupsResponse, error) + type DefaultAPIServiceMock struct + CreateAccessKeyExecuteMock *func(r ApiCreateAccessKeyRequest) (*CreateAccessKeyResponse, error) + CreateBucketExecuteMock *func(r ApiCreateBucketRequest) (*CreateBucketResponse, error) + CreateCredentialsGroupExecuteMock *func(r ApiCreateCredentialsGroupRequest) (*CreateCredentialsGroupResponse, error) + DeleteAccessKeyExecuteMock *func(r ApiDeleteAccessKeyRequest) (*DeleteAccessKeyResponse, error) + DeleteBucketExecuteMock *func(r ApiDeleteBucketRequest) (*DeleteBucketResponse, error) + DeleteCredentialsGroupExecuteMock *func(r ApiDeleteCredentialsGroupRequest) (*DeleteCredentialsGroupResponse, error) + DisableServiceExecuteMock *func(r ApiDisableServiceRequest) (*ProjectStatus, error) + EnableServiceExecuteMock *func(r ApiEnableServiceRequest) (*ProjectStatus, error) + GetBucketExecuteMock *func(r ApiGetBucketRequest) (*GetBucketResponse, error) + GetServiceStatusExecuteMock *func(r ApiGetServiceStatusRequest) (*ProjectStatus, error) + ListAccessKeysExecuteMock *func(r ApiListAccessKeysRequest) (*ListAccessKeysResponse, error) + ListBucketsExecuteMock *func(r ApiListBucketsRequest) (*ListBucketsResponse, error) + ListCredentialsGroupsExecuteMock *func(r ApiListCredentialsGroupsRequest) (*ListCredentialsGroupsResponse, error) + func (a DefaultAPIServiceMock) CreateAccessKey(ctx context.Context, projectId string, region string) ApiCreateAccessKeyRequest + func (a DefaultAPIServiceMock) CreateAccessKeyExecute(r ApiCreateAccessKeyRequest) (*CreateAccessKeyResponse, error) + func (a DefaultAPIServiceMock) CreateBucket(ctx context.Context, projectId string, region string, bucketName string) ApiCreateBucketRequest + func (a DefaultAPIServiceMock) CreateBucketExecute(r ApiCreateBucketRequest) (*CreateBucketResponse, error) + func (a DefaultAPIServiceMock) CreateCredentialsGroup(ctx context.Context, projectId string, region string) ApiCreateCredentialsGroupRequest + func (a DefaultAPIServiceMock) CreateCredentialsGroupExecute(r ApiCreateCredentialsGroupRequest) (*CreateCredentialsGroupResponse, error) + func (a DefaultAPIServiceMock) DeleteAccessKey(ctx context.Context, projectId string, region string, keyId string) ApiDeleteAccessKeyRequest + func (a DefaultAPIServiceMock) DeleteAccessKeyExecute(r ApiDeleteAccessKeyRequest) (*DeleteAccessKeyResponse, error) + func (a DefaultAPIServiceMock) DeleteBucket(ctx context.Context, projectId string, region string, bucketName string) ApiDeleteBucketRequest + func (a DefaultAPIServiceMock) DeleteBucketExecute(r ApiDeleteBucketRequest) (*DeleteBucketResponse, error) + func (a DefaultAPIServiceMock) DeleteCredentialsGroup(ctx context.Context, projectId string, region string, groupId string) ApiDeleteCredentialsGroupRequest + func (a DefaultAPIServiceMock) DeleteCredentialsGroupExecute(r ApiDeleteCredentialsGroupRequest) (*DeleteCredentialsGroupResponse, error) + func (a DefaultAPIServiceMock) DisableService(ctx context.Context, projectId string, region string) ApiDisableServiceRequest + func (a DefaultAPIServiceMock) DisableServiceExecute(r ApiDisableServiceRequest) (*ProjectStatus, error) + func (a DefaultAPIServiceMock) EnableService(ctx context.Context, projectId string, region string) ApiEnableServiceRequest + func (a DefaultAPIServiceMock) EnableServiceExecute(r ApiEnableServiceRequest) (*ProjectStatus, error) + func (a DefaultAPIServiceMock) GetBucket(ctx context.Context, projectId string, region string, bucketName string) ApiGetBucketRequest + func (a DefaultAPIServiceMock) GetBucketExecute(r ApiGetBucketRequest) (*GetBucketResponse, error) + func (a DefaultAPIServiceMock) GetServiceStatus(ctx context.Context, projectId string, region string) ApiGetServiceStatusRequest + func (a DefaultAPIServiceMock) GetServiceStatusExecute(r ApiGetServiceStatusRequest) (*ProjectStatus, error) + func (a DefaultAPIServiceMock) ListAccessKeys(ctx context.Context, projectId string, region string) ApiListAccessKeysRequest + func (a DefaultAPIServiceMock) ListAccessKeysExecute(r ApiListAccessKeysRequest) (*ListAccessKeysResponse, error) + func (a DefaultAPIServiceMock) ListBuckets(ctx context.Context, projectId string, region string) ApiListBucketsRequest + func (a DefaultAPIServiceMock) ListBucketsExecute(r ApiListBucketsRequest) (*ListBucketsResponse, error) + func (a DefaultAPIServiceMock) ListCredentialsGroups(ctx context.Context, projectId string, region string) ApiListCredentialsGroupsRequest + func (a DefaultAPIServiceMock) ListCredentialsGroupsExecute(r ApiListCredentialsGroupsRequest) (*ListCredentialsGroupsResponse, error) + type DeleteAccessKeyResponse struct + KeyId string + Project string + func NewDeleteAccessKeyResponse(keyId string, project string) *DeleteAccessKeyResponse + func NewDeleteAccessKeyResponseWithDefaults() *DeleteAccessKeyResponse + func (o *DeleteAccessKeyResponse) GetKeyId() string + func (o *DeleteAccessKeyResponse) GetKeyIdOk() (*string, bool) + func (o *DeleteAccessKeyResponse) GetProject() string + func (o *DeleteAccessKeyResponse) GetProjectOk() (*string, bool) + func (o *DeleteAccessKeyResponse) SetKeyId(v string) + func (o *DeleteAccessKeyResponse) SetProject(v string) + func (o *DeleteAccessKeyResponse) UnmarshalJSON(data []byte) (err error) + func (o DeleteAccessKeyResponse) MarshalJSON() ([]byte, error) + func (o DeleteAccessKeyResponse) ToMap() (map[string]interface{}, error) + type DeleteBucketResponse struct + Bucket string + Project string + func NewDeleteBucketResponse(bucket string, project string) *DeleteBucketResponse + func NewDeleteBucketResponseWithDefaults() *DeleteBucketResponse + func (o *DeleteBucketResponse) GetBucket() string + func (o *DeleteBucketResponse) GetBucketOk() (*string, bool) + func (o *DeleteBucketResponse) GetProject() string + func (o *DeleteBucketResponse) GetProjectOk() (*string, bool) + func (o *DeleteBucketResponse) SetBucket(v string) + func (o *DeleteBucketResponse) SetProject(v string) + func (o *DeleteBucketResponse) UnmarshalJSON(data []byte) (err error) + func (o DeleteBucketResponse) MarshalJSON() ([]byte, error) + func (o DeleteBucketResponse) ToMap() (map[string]interface{}, error) + type DeleteCredentialsGroupResponse struct + CredentialsGroupId string + Project string + func NewDeleteCredentialsGroupResponse(credentialsGroupId string, project string) *DeleteCredentialsGroupResponse + func NewDeleteCredentialsGroupResponseWithDefaults() *DeleteCredentialsGroupResponse + func (o *DeleteCredentialsGroupResponse) GetCredentialsGroupId() string + func (o *DeleteCredentialsGroupResponse) GetCredentialsGroupIdOk() (*string, bool) + func (o *DeleteCredentialsGroupResponse) GetProject() string + func (o *DeleteCredentialsGroupResponse) GetProjectOk() (*string, bool) + func (o *DeleteCredentialsGroupResponse) SetCredentialsGroupId(v string) + func (o *DeleteCredentialsGroupResponse) SetProject(v string) + func (o *DeleteCredentialsGroupResponse) UnmarshalJSON(data []byte) (err error) + func (o DeleteCredentialsGroupResponse) MarshalJSON() ([]byte, error) + func (o DeleteCredentialsGroupResponse) ToMap() (map[string]interface{}, error) + type DetailedError struct + Key string + Msg string + func NewDetailedError(key string, msg string) *DetailedError + func NewDetailedErrorWithDefaults() *DetailedError + func (o *DetailedError) GetKey() string + func (o *DetailedError) GetKeyOk() (*string, bool) + func (o *DetailedError) GetMsg() string + func (o *DetailedError) GetMsgOk() (*string, bool) + func (o *DetailedError) SetKey(v string) + func (o *DetailedError) SetMsg(v string) + func (o *DetailedError) UnmarshalJSON(data []byte) (err error) + func (o DetailedError) MarshalJSON() ([]byte, error) + func (o DetailedError) ToMap() (map[string]interface{}, error) + type ErrorMessage struct + Detail []DetailedError + func NewErrorMessage(detail []DetailedError) *ErrorMessage + func NewErrorMessageWithDefaults() *ErrorMessage + func (o *ErrorMessage) GetDetail() []DetailedError + func (o *ErrorMessage) GetDetailOk() ([]DetailedError, bool) + func (o *ErrorMessage) SetDetail(v []DetailedError) + func (o *ErrorMessage) UnmarshalJSON(data []byte) (err error) + func (o ErrorMessage) MarshalJSON() ([]byte, error) + func (o ErrorMessage) ToMap() (map[string]interface{}, error) + type GetBucketResponse struct + Bucket Bucket + Project string + func NewGetBucketResponse(bucket Bucket, project string) *GetBucketResponse + func NewGetBucketResponseWithDefaults() *GetBucketResponse + func (o *GetBucketResponse) GetBucket() Bucket + func (o *GetBucketResponse) GetBucketOk() (*Bucket, bool) + func (o *GetBucketResponse) GetProject() string + func (o *GetBucketResponse) GetProjectOk() (*string, bool) + func (o *GetBucketResponse) SetBucket(v Bucket) + func (o *GetBucketResponse) SetProject(v string) + func (o *GetBucketResponse) UnmarshalJSON(data []byte) (err error) + func (o GetBucketResponse) MarshalJSON() ([]byte, error) + func (o GetBucketResponse) ToMap() (map[string]interface{}, error) + type HTTPValidationError struct + Detail []ValidationError + func NewHTTPValidationError() *HTTPValidationError + func NewHTTPValidationErrorWithDefaults() *HTTPValidationError + func (o *HTTPValidationError) GetDetail() []ValidationError + func (o *HTTPValidationError) GetDetailOk() ([]ValidationError, bool) + func (o *HTTPValidationError) HasDetail() bool + func (o *HTTPValidationError) SetDetail(v []ValidationError) + func (o HTTPValidationError) MarshalJSON() ([]byte, error) + func (o HTTPValidationError) ToMap() (map[string]interface{}, error) + type ListAccessKeysResponse struct + AccessKeys []AccessKey + Project string + func NewListAccessKeysResponse(accessKeys []AccessKey, project string) *ListAccessKeysResponse + func NewListAccessKeysResponseWithDefaults() *ListAccessKeysResponse + func (o *ListAccessKeysResponse) GetAccessKeys() []AccessKey + func (o *ListAccessKeysResponse) GetAccessKeysOk() ([]AccessKey, bool) + func (o *ListAccessKeysResponse) GetProject() string + func (o *ListAccessKeysResponse) GetProjectOk() (*string, bool) + func (o *ListAccessKeysResponse) SetAccessKeys(v []AccessKey) + func (o *ListAccessKeysResponse) SetProject(v string) + func (o *ListAccessKeysResponse) UnmarshalJSON(data []byte) (err error) + func (o ListAccessKeysResponse) MarshalJSON() ([]byte, error) + func (o ListAccessKeysResponse) ToMap() (map[string]interface{}, error) + type ListBucketsResponse struct + Buckets []Bucket + Project string + func NewListBucketsResponse(buckets []Bucket, project string) *ListBucketsResponse + func NewListBucketsResponseWithDefaults() *ListBucketsResponse + func (o *ListBucketsResponse) GetBuckets() []Bucket + func (o *ListBucketsResponse) GetBucketsOk() ([]Bucket, bool) + func (o *ListBucketsResponse) GetProject() string + func (o *ListBucketsResponse) GetProjectOk() (*string, bool) + func (o *ListBucketsResponse) SetBuckets(v []Bucket) + func (o *ListBucketsResponse) SetProject(v string) + func (o *ListBucketsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListBucketsResponse) MarshalJSON() ([]byte, error) + func (o ListBucketsResponse) ToMap() (map[string]interface{}, error) + type ListCredentialsGroupsResponse struct + CredentialsGroups []CredentialsGroup + Project string + func NewListCredentialsGroupsResponse(credentialsGroups []CredentialsGroup, project string) *ListCredentialsGroupsResponse + func NewListCredentialsGroupsResponseWithDefaults() *ListCredentialsGroupsResponse + func (o *ListCredentialsGroupsResponse) GetCredentialsGroups() []CredentialsGroup + func (o *ListCredentialsGroupsResponse) GetCredentialsGroupsOk() ([]CredentialsGroup, bool) + func (o *ListCredentialsGroupsResponse) GetProject() string + func (o *ListCredentialsGroupsResponse) GetProjectOk() (*string, bool) + func (o *ListCredentialsGroupsResponse) SetCredentialsGroups(v []CredentialsGroup) + func (o *ListCredentialsGroupsResponse) SetProject(v string) + func (o *ListCredentialsGroupsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListCredentialsGroupsResponse) MarshalJSON() ([]byte, error) + func (o ListCredentialsGroupsResponse) ToMap() (map[string]interface{}, error) + type LocationInner struct + Int32 *int32 + String *string + func (dst *LocationInner) UnmarshalJSON(data []byte) error + func (src LocationInner) MarshalJSON() ([]byte, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NullableAccessKey struct + func NewNullableAccessKey(val *AccessKey) *NullableAccessKey + func (v *NullableAccessKey) Set(val *AccessKey) + func (v *NullableAccessKey) UnmarshalJSON(src []byte) error + func (v *NullableAccessKey) Unset() + func (v NullableAccessKey) Get() *AccessKey + func (v NullableAccessKey) IsSet() bool + func (v NullableAccessKey) 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 NullableBucket struct + func NewNullableBucket(val *Bucket) *NullableBucket + func (v *NullableBucket) Set(val *Bucket) + func (v *NullableBucket) UnmarshalJSON(src []byte) error + func (v *NullableBucket) Unset() + func (v NullableBucket) Get() *Bucket + func (v NullableBucket) IsSet() bool + func (v NullableBucket) MarshalJSON() ([]byte, error) + type NullableCreateAccessKeyPayload struct + func NewNullableCreateAccessKeyPayload(val *CreateAccessKeyPayload) *NullableCreateAccessKeyPayload + func (v *NullableCreateAccessKeyPayload) Set(val *CreateAccessKeyPayload) + func (v *NullableCreateAccessKeyPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAccessKeyPayload) Unset() + func (v NullableCreateAccessKeyPayload) Get() *CreateAccessKeyPayload + func (v NullableCreateAccessKeyPayload) IsSet() bool + func (v NullableCreateAccessKeyPayload) MarshalJSON() ([]byte, error) + type NullableCreateAccessKeyResponse struct + func NewNullableCreateAccessKeyResponse(val *CreateAccessKeyResponse) *NullableCreateAccessKeyResponse + func (v *NullableCreateAccessKeyResponse) Set(val *CreateAccessKeyResponse) + func (v *NullableCreateAccessKeyResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateAccessKeyResponse) Unset() + func (v NullableCreateAccessKeyResponse) Get() *CreateAccessKeyResponse + func (v NullableCreateAccessKeyResponse) IsSet() bool + func (v NullableCreateAccessKeyResponse) MarshalJSON() ([]byte, error) + type NullableCreateBucketResponse struct + func NewNullableCreateBucketResponse(val *CreateBucketResponse) *NullableCreateBucketResponse + func (v *NullableCreateBucketResponse) Set(val *CreateBucketResponse) + func (v *NullableCreateBucketResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateBucketResponse) Unset() + func (v NullableCreateBucketResponse) Get() *CreateBucketResponse + func (v NullableCreateBucketResponse) IsSet() bool + func (v NullableCreateBucketResponse) MarshalJSON() ([]byte, error) + type NullableCreateCredentialsGroupPayload struct + func NewNullableCreateCredentialsGroupPayload(val *CreateCredentialsGroupPayload) *NullableCreateCredentialsGroupPayload + func (v *NullableCreateCredentialsGroupPayload) Set(val *CreateCredentialsGroupPayload) + func (v *NullableCreateCredentialsGroupPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateCredentialsGroupPayload) Unset() + func (v NullableCreateCredentialsGroupPayload) Get() *CreateCredentialsGroupPayload + func (v NullableCreateCredentialsGroupPayload) IsSet() bool + func (v NullableCreateCredentialsGroupPayload) MarshalJSON() ([]byte, error) + type NullableCreateCredentialsGroupResponse struct + func NewNullableCreateCredentialsGroupResponse(val *CreateCredentialsGroupResponse) *NullableCreateCredentialsGroupResponse + func (v *NullableCreateCredentialsGroupResponse) Set(val *CreateCredentialsGroupResponse) + func (v *NullableCreateCredentialsGroupResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateCredentialsGroupResponse) Unset() + func (v NullableCreateCredentialsGroupResponse) Get() *CreateCredentialsGroupResponse + func (v NullableCreateCredentialsGroupResponse) IsSet() bool + func (v NullableCreateCredentialsGroupResponse) MarshalJSON() ([]byte, error) + type NullableCredentialsGroup struct + func NewNullableCredentialsGroup(val *CredentialsGroup) *NullableCredentialsGroup + func (v *NullableCredentialsGroup) Set(val *CredentialsGroup) + func (v *NullableCredentialsGroup) UnmarshalJSON(src []byte) error + func (v *NullableCredentialsGroup) Unset() + func (v NullableCredentialsGroup) Get() *CredentialsGroup + func (v NullableCredentialsGroup) IsSet() bool + func (v NullableCredentialsGroup) MarshalJSON() ([]byte, error) + type NullableDeleteAccessKeyResponse struct + func NewNullableDeleteAccessKeyResponse(val *DeleteAccessKeyResponse) *NullableDeleteAccessKeyResponse + func (v *NullableDeleteAccessKeyResponse) Set(val *DeleteAccessKeyResponse) + func (v *NullableDeleteAccessKeyResponse) UnmarshalJSON(src []byte) error + func (v *NullableDeleteAccessKeyResponse) Unset() + func (v NullableDeleteAccessKeyResponse) Get() *DeleteAccessKeyResponse + func (v NullableDeleteAccessKeyResponse) IsSet() bool + func (v NullableDeleteAccessKeyResponse) MarshalJSON() ([]byte, error) + type NullableDeleteBucketResponse struct + func NewNullableDeleteBucketResponse(val *DeleteBucketResponse) *NullableDeleteBucketResponse + func (v *NullableDeleteBucketResponse) Set(val *DeleteBucketResponse) + func (v *NullableDeleteBucketResponse) UnmarshalJSON(src []byte) error + func (v *NullableDeleteBucketResponse) Unset() + func (v NullableDeleteBucketResponse) Get() *DeleteBucketResponse + func (v NullableDeleteBucketResponse) IsSet() bool + func (v NullableDeleteBucketResponse) MarshalJSON() ([]byte, error) + type NullableDeleteCredentialsGroupResponse struct + func NewNullableDeleteCredentialsGroupResponse(val *DeleteCredentialsGroupResponse) *NullableDeleteCredentialsGroupResponse + func (v *NullableDeleteCredentialsGroupResponse) Set(val *DeleteCredentialsGroupResponse) + func (v *NullableDeleteCredentialsGroupResponse) UnmarshalJSON(src []byte) error + func (v *NullableDeleteCredentialsGroupResponse) Unset() + func (v NullableDeleteCredentialsGroupResponse) Get() *DeleteCredentialsGroupResponse + func (v NullableDeleteCredentialsGroupResponse) IsSet() bool + func (v NullableDeleteCredentialsGroupResponse) MarshalJSON() ([]byte, error) + type NullableDetailedError struct + func NewNullableDetailedError(val *DetailedError) *NullableDetailedError + func (v *NullableDetailedError) Set(val *DetailedError) + func (v *NullableDetailedError) UnmarshalJSON(src []byte) error + func (v *NullableDetailedError) Unset() + func (v NullableDetailedError) Get() *DetailedError + func (v NullableDetailedError) IsSet() bool + func (v NullableDetailedError) MarshalJSON() ([]byte, error) + type NullableErrorMessage struct + func NewNullableErrorMessage(val *ErrorMessage) *NullableErrorMessage + func (v *NullableErrorMessage) Set(val *ErrorMessage) + func (v *NullableErrorMessage) UnmarshalJSON(src []byte) error + func (v *NullableErrorMessage) Unset() + func (v NullableErrorMessage) Get() *ErrorMessage + func (v NullableErrorMessage) IsSet() bool + func (v NullableErrorMessage) 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 NullableGetBucketResponse struct + func NewNullableGetBucketResponse(val *GetBucketResponse) *NullableGetBucketResponse + func (v *NullableGetBucketResponse) Set(val *GetBucketResponse) + func (v *NullableGetBucketResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetBucketResponse) Unset() + func (v NullableGetBucketResponse) Get() *GetBucketResponse + func (v NullableGetBucketResponse) IsSet() bool + func (v NullableGetBucketResponse) MarshalJSON() ([]byte, error) + type NullableHTTPValidationError struct + func NewNullableHTTPValidationError(val *HTTPValidationError) *NullableHTTPValidationError + func (v *NullableHTTPValidationError) Set(val *HTTPValidationError) + func (v *NullableHTTPValidationError) UnmarshalJSON(src []byte) error + func (v *NullableHTTPValidationError) Unset() + func (v NullableHTTPValidationError) Get() *HTTPValidationError + func (v NullableHTTPValidationError) IsSet() bool + func (v NullableHTTPValidationError) 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 NullableListAccessKeysResponse struct + func NewNullableListAccessKeysResponse(val *ListAccessKeysResponse) *NullableListAccessKeysResponse + func (v *NullableListAccessKeysResponse) Set(val *ListAccessKeysResponse) + func (v *NullableListAccessKeysResponse) UnmarshalJSON(src []byte) error + func (v *NullableListAccessKeysResponse) Unset() + func (v NullableListAccessKeysResponse) Get() *ListAccessKeysResponse + func (v NullableListAccessKeysResponse) IsSet() bool + func (v NullableListAccessKeysResponse) MarshalJSON() ([]byte, error) + type NullableListBucketsResponse struct + func NewNullableListBucketsResponse(val *ListBucketsResponse) *NullableListBucketsResponse + func (v *NullableListBucketsResponse) Set(val *ListBucketsResponse) + func (v *NullableListBucketsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListBucketsResponse) Unset() + func (v NullableListBucketsResponse) Get() *ListBucketsResponse + func (v NullableListBucketsResponse) IsSet() bool + func (v NullableListBucketsResponse) MarshalJSON() ([]byte, error) + type NullableListCredentialsGroupsResponse struct + func NewNullableListCredentialsGroupsResponse(val *ListCredentialsGroupsResponse) *NullableListCredentialsGroupsResponse + func (v *NullableListCredentialsGroupsResponse) Set(val *ListCredentialsGroupsResponse) + func (v *NullableListCredentialsGroupsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListCredentialsGroupsResponse) Unset() + func (v NullableListCredentialsGroupsResponse) Get() *ListCredentialsGroupsResponse + func (v NullableListCredentialsGroupsResponse) IsSet() bool + func (v NullableListCredentialsGroupsResponse) MarshalJSON() ([]byte, error) + type NullableLocationInner struct + func NewNullableLocationInner(val *LocationInner) *NullableLocationInner + func (v *NullableLocationInner) Set(val *LocationInner) + func (v *NullableLocationInner) UnmarshalJSON(src []byte) error + func (v *NullableLocationInner) Unset() + func (v NullableLocationInner) Get() *LocationInner + func (v NullableLocationInner) IsSet() bool + func (v NullableLocationInner) MarshalJSON() ([]byte, error) + type NullableProjectScope struct + func NewNullableProjectScope(val *ProjectScope) *NullableProjectScope + func (v *NullableProjectScope) Set(val *ProjectScope) + func (v *NullableProjectScope) UnmarshalJSON(src []byte) error + func (v *NullableProjectScope) Unset() + func (v NullableProjectScope) Get() *ProjectScope + func (v NullableProjectScope) IsSet() bool + func (v NullableProjectScope) MarshalJSON() ([]byte, error) + type NullableProjectStatus struct + func NewNullableProjectStatus(val *ProjectStatus) *NullableProjectStatus + func (v *NullableProjectStatus) Set(val *ProjectStatus) + func (v *NullableProjectStatus) UnmarshalJSON(src []byte) error + func (v *NullableProjectStatus) Unset() + func (v NullableProjectStatus) Get() *ProjectStatus + func (v NullableProjectStatus) IsSet() bool + func (v NullableProjectStatus) 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 NullableValidationError struct + func NewNullableValidationError(val *ValidationError) *NullableValidationError + func (v *NullableValidationError) Set(val *ValidationError) + func (v *NullableValidationError) UnmarshalJSON(src []byte) error + func (v *NullableValidationError) Unset() + func (v NullableValidationError) Get() *ValidationError + func (v NullableValidationError) IsSet() bool + func (v NullableValidationError) MarshalJSON() ([]byte, error) + type ProjectScope string + const PROJECTSCOPE_PUBLIC + const PROJECTSCOPE_SCHWARZ + func NewProjectScopeFromValue(v string) (*ProjectScope, error) + func (v *ProjectScope) UnmarshalJSON(src []byte) error + func (v ProjectScope) IsValid() bool + func (v ProjectScope) Ptr() *ProjectScope + type ProjectStatus struct + Project string + Scope ProjectScope + func NewProjectStatus(project string, scope ProjectScope) *ProjectStatus + func NewProjectStatusWithDefaults() *ProjectStatus + func (o *ProjectStatus) GetProject() string + func (o *ProjectStatus) GetProjectOk() (*string, bool) + func (o *ProjectStatus) GetScope() ProjectScope + func (o *ProjectStatus) GetScopeOk() (*ProjectScope, bool) + func (o *ProjectStatus) SetProject(v string) + func (o *ProjectStatus) SetScope(v ProjectScope) + func (o *ProjectStatus) UnmarshalJSON(data []byte) (err error) + func (o ProjectStatus) MarshalJSON() ([]byte, error) + func (o ProjectStatus) ToMap() (map[string]interface{}, error) + type ValidationError struct + Loc []LocationInner + Msg string + Type string + func NewValidationError(loc []LocationInner, msg string, types string) *ValidationError + func NewValidationErrorWithDefaults() *ValidationError + func (o *ValidationError) GetLoc() []LocationInner + func (o *ValidationError) GetLocOk() ([]LocationInner, bool) + func (o *ValidationError) GetMsg() string + func (o *ValidationError) GetMsgOk() (*string, bool) + func (o *ValidationError) GetType() string + func (o *ValidationError) GetTypeOk() (*string, bool) + func (o *ValidationError) SetLoc(v []LocationInner) + func (o *ValidationError) SetMsg(v string) + func (o *ValidationError) SetType(v string) + func (o *ValidationError) UnmarshalJSON(data []byte) (err error) + func (o ValidationError) MarshalJSON() ([]byte, error) + func (o ValidationError) ToMap() (map[string]interface{}, error)