models

package
v0.14.2-0...-1b0e74c Latest Latest
Warning

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

Go to latest
Published: Jan 30, 2022 License: AGPL-3.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// BucketDetailsQuotaTypeFifo captures enum value "fifo"
	BucketDetailsQuotaTypeFifo string = "fifo"

	// BucketDetailsQuotaTypeHard captures enum value "hard"
	BucketDetailsQuotaTypeHard string = "hard"
)
View Source
const (

	// BucketQuotaTypeHard captures enum value "hard"
	BucketQuotaTypeHard string = "hard"

	// BucketQuotaTypeFifo captures enum value "fifo"
	BucketQuotaTypeFifo string = "fifo"
)
View Source
const (

	// BucketReplicationRuleStatusEnabled captures enum value "Enabled"
	BucketReplicationRuleStatusEnabled string = "Enabled"

	// BucketReplicationRuleStatusDisabled captures enum value "Disabled"
	BucketReplicationRuleStatusDisabled string = "Disabled"
)
View Source
const (

	// BucketReplicationRuleSyncModeAsync captures enum value "async"
	BucketReplicationRuleSyncModeAsync string = "async"

	// BucketReplicationRuleSyncModeSync captures enum value "sync"
	BucketReplicationRuleSyncModeSync string = "sync"
)
View Source
const (

	// CreateRemoteBucketSyncModeAsync captures enum value "async"
	CreateRemoteBucketSyncModeAsync string = "async"

	// CreateRemoteBucketSyncModeSync captures enum value "sync"
	CreateRemoteBucketSyncModeSync string = "sync"
)
View Source
const (

	// LoginDetailsLoginStrategyForm captures enum value "form"
	LoginDetailsLoginStrategyForm string = "form"

	// LoginDetailsLoginStrategyRedirect captures enum value "redirect"
	LoginDetailsLoginStrategyRedirect string = "redirect"

	// LoginDetailsLoginStrategyServiceDashAccount captures enum value "service-account"
	LoginDetailsLoginStrategyServiceDashAccount string = "service-account"
)
View Source
const (

	// MultiBucketReplicationSyncModeAsync captures enum value "async"
	MultiBucketReplicationSyncModeAsync string = "async"

	// MultiBucketReplicationSyncModeSync captures enum value "sync"
	MultiBucketReplicationSyncModeSync string = "sync"
)
View Source
const (

	// SetBucketQuotaQuotaTypeFifo captures enum value "fifo"
	SetBucketQuotaQuotaTypeFifo string = "fifo"

	// SetBucketQuotaQuotaTypeHard captures enum value "hard"
	SetBucketQuotaQuotaTypeHard string = "hard"
)
View Source
const (

	// TierTypeS3 captures enum value "s3"
	TierTypeS3 string = "s3"

	// TierTypeGcs captures enum value "gcs"
	TierTypeGcs string = "gcs"

	// TierTypeAzure captures enum value "azure"
	TierTypeAzure string = "azure"

	// TierTypeUnsupported captures enum value "unsupported"
	TierTypeUnsupported string = "unsupported"
)
View Source
const (

	// OperatorSessionResponseStatusOk captures enum value "ok"
	OperatorSessionResponseStatusOk string = "ok"
)
View Source
const (

	// RemoteBucketServiceReplication captures enum value "replication"
	RemoteBucketServiceReplication string = "replication"
)
View Source
const (

	// SessionResponseStatusOk captures enum value "ok"
	SessionResponseStatusOk string = "ok"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessRule

type AccessRule struct {

	// access
	Access string `json:"access,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`
}

AccessRule access rule

swagger:model accessRule

func (*AccessRule) ContextValidate

func (m *AccessRule) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this access rule based on context it is used

func (*AccessRule) MarshalBinary

func (m *AccessRule) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AccessRule) UnmarshalBinary

func (m *AccessRule) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AccessRule) Validate

func (m *AccessRule) Validate(formats strfmt.Registry) error

Validate validates this access rule

type AccountChangePasswordRequest

type AccountChangePasswordRequest struct {

	// current secret key
	// Required: true
	CurrentSecretKey *string `json:"current_secret_key"`

	// new secret key
	// Required: true
	NewSecretKey *string `json:"new_secret_key"`
}

AccountChangePasswordRequest account change password request

swagger:model accountChangePasswordRequest

func (*AccountChangePasswordRequest) ContextValidate

func (m *AccountChangePasswordRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this account change password request based on context it is used

func (*AccountChangePasswordRequest) MarshalBinary

func (m *AccountChangePasswordRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AccountChangePasswordRequest) UnmarshalBinary

func (m *AccountChangePasswordRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AccountChangePasswordRequest) Validate

func (m *AccountChangePasswordRequest) Validate(formats strfmt.Registry) error

Validate validates this account change password request

type AddBucketLifecycle

type AddBucketLifecycle struct {

	// Non required, toggle to disable or enable rule
	Disable bool `json:"disable,omitempty"`

	// Non required, toggle to disable or enable rule
	ExpiredObjectDeleteMarker bool `json:"expired_object_delete_marker,omitempty"`

	// Required in case of expiry_days or transition fields are not set. it defines an expiry date for ILM
	ExpiryDate string `json:"expiry_date,omitempty"`

	// Required in case of expiry_date or transition fields are not set. it defines an expiry days for ILM
	ExpiryDays int32 `json:"expiry_days,omitempty"`

	// Non required, can be set in case of expiration is enabled
	NoncurrentversionExpirationDays int32 `json:"noncurrentversion_expiration_days,omitempty"`

	// Non required, can be set in case of transition is enabled
	NoncurrentversionTransitionDays int32 `json:"noncurrentversion_transition_days,omitempty"`

	// Non required, can be set in case of transition is enabled
	NoncurrentversionTransitionStorageClass string `json:"noncurrentversion_transition_storage_class,omitempty"`

	// Non required field, it matches a prefix to perform ILM operations on it
	Prefix string `json:"prefix,omitempty"`

	// Required only in case of transition is set. it refers to a tier
	StorageClass string `json:"storage_class,omitempty"`

	// Non required field, tags to match ILM files
	Tags string `json:"tags,omitempty"`

	// Required in case of transition_days or expiry fields are not set. it defines a transition date for ILM
	TransitionDate string `json:"transition_date,omitempty"`

	// Required in case of transition_date or expiry fields are not set. it defines a transition days for ILM
	TransitionDays int32 `json:"transition_days,omitempty"`
}

AddBucketLifecycle add bucket lifecycle

swagger:model addBucketLifecycle

func (*AddBucketLifecycle) ContextValidate

func (m *AddBucketLifecycle) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this add bucket lifecycle based on context it is used

func (*AddBucketLifecycle) MarshalBinary

func (m *AddBucketLifecycle) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AddBucketLifecycle) UnmarshalBinary

func (m *AddBucketLifecycle) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AddBucketLifecycle) Validate

func (m *AddBucketLifecycle) Validate(formats strfmt.Registry) error

Validate validates this add bucket lifecycle

type AddBucketReplication

type AddBucketReplication struct {

	// arn
	Arn string `json:"arn,omitempty"`

	// destination bucket
	DestinationBucket string `json:"destination_bucket,omitempty"`
}

AddBucketReplication add bucket replication

swagger:model addBucketReplication

func (*AddBucketReplication) ContextValidate

func (m *AddBucketReplication) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this add bucket replication based on context it is used

func (*AddBucketReplication) MarshalBinary

func (m *AddBucketReplication) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AddBucketReplication) UnmarshalBinary

func (m *AddBucketReplication) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AddBucketReplication) Validate

func (m *AddBucketReplication) Validate(formats strfmt.Registry) error

Validate validates this add bucket replication

type AddGroupRequest

type AddGroupRequest struct {

	// group
	// Required: true
	Group *string `json:"group"`

	// members
	// Required: true
	Members []string `json:"members"`
}

AddGroupRequest add group request

swagger:model addGroupRequest

func (*AddGroupRequest) ContextValidate

func (m *AddGroupRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this add group request based on context it is used

func (*AddGroupRequest) MarshalBinary

func (m *AddGroupRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AddGroupRequest) UnmarshalBinary

func (m *AddGroupRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AddGroupRequest) Validate

func (m *AddGroupRequest) Validate(formats strfmt.Registry) error

Validate validates this add group request

type AddPolicyRequest

type AddPolicyRequest struct {

	// name
	// Required: true
	Name *string `json:"name"`

	// policy
	// Required: true
	Policy *string `json:"policy"`
}

AddPolicyRequest add policy request

swagger:model addPolicyRequest

func (*AddPolicyRequest) ContextValidate

func (m *AddPolicyRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this add policy request based on context it is used

func (*AddPolicyRequest) MarshalBinary

func (m *AddPolicyRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AddPolicyRequest) UnmarshalBinary

func (m *AddPolicyRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AddPolicyRequest) Validate

func (m *AddPolicyRequest) Validate(formats strfmt.Registry) error

Validate validates this add policy request

type AddUserRequest

type AddUserRequest struct {

	// access key
	// Required: true
	AccessKey *string `json:"accessKey"`

	// groups
	// Required: true
	Groups []string `json:"groups"`

	// policies
	// Required: true
	Policies []string `json:"policies"`

	// secret key
	// Required: true
	SecretKey *string `json:"secretKey"`
}

AddUserRequest add user request

swagger:model addUserRequest

func (*AddUserRequest) ContextValidate

func (m *AddUserRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this add user request based on context it is used

func (*AddUserRequest) MarshalBinary

func (m *AddUserRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AddUserRequest) UnmarshalBinary

func (m *AddUserRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AddUserRequest) Validate

func (m *AddUserRequest) Validate(formats strfmt.Registry) error

Validate validates this add user request

type AdminInfoResponse

type AdminInfoResponse struct {

	// buckets
	Buckets int64 `json:"buckets,omitempty"`

	// objects
	Objects int64 `json:"objects,omitempty"`

	// prometheus not ready
	PrometheusNotReady bool `json:"prometheusNotReady,omitempty"`

	// servers
	Servers []*ServerProperties `json:"servers"`

	// usage
	Usage int64 `json:"usage,omitempty"`

	// widgets
	Widgets []*Widget `json:"widgets"`
}

AdminInfoResponse admin info response

swagger:model adminInfoResponse

func (*AdminInfoResponse) ContextValidate

func (m *AdminInfoResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this admin info response based on the context it is used

func (*AdminInfoResponse) MarshalBinary

func (m *AdminInfoResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AdminInfoResponse) UnmarshalBinary

func (m *AdminInfoResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AdminInfoResponse) Validate

func (m *AdminInfoResponse) Validate(formats strfmt.Registry) error

Validate validates this admin info response

type AllocatableResourcesResponse

type AllocatableResourcesResponse struct {

	// cpu priority
	CPUPriority *NodeMaxAllocatableResources `json:"cpu_priority,omitempty"`

	// mem priority
	MemPriority *NodeMaxAllocatableResources `json:"mem_priority,omitempty"`

	// min allocatable cpu
	MinAllocatableCPU int64 `json:"min_allocatable_cpu,omitempty"`

	// min allocatable mem
	MinAllocatableMem int64 `json:"min_allocatable_mem,omitempty"`
}

AllocatableResourcesResponse allocatable resources response

swagger:model allocatableResourcesResponse

func (*AllocatableResourcesResponse) ContextValidate

func (m *AllocatableResourcesResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this allocatable resources response based on the context it is used

func (*AllocatableResourcesResponse) MarshalBinary

func (m *AllocatableResourcesResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AllocatableResourcesResponse) UnmarshalBinary

func (m *AllocatableResourcesResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AllocatableResourcesResponse) Validate

func (m *AllocatableResourcesResponse) Validate(formats strfmt.Registry) error

Validate validates this allocatable resources response

type Annotation

type Annotation struct {

	// key
	Key string `json:"key,omitempty"`

	// value
	Value string `json:"value,omitempty"`
}

Annotation annotation

swagger:model annotation

func (*Annotation) ContextValidate

func (m *Annotation) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this annotation based on context it is used

func (*Annotation) MarshalBinary

func (m *Annotation) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Annotation) UnmarshalBinary

func (m *Annotation) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Annotation) Validate

func (m *Annotation) Validate(formats strfmt.Registry) error

Validate validates this annotation

type ArnsResponse

type ArnsResponse struct {

	// arns
	Arns []string `json:"arns"`
}

ArnsResponse arns response

swagger:model arnsResponse

func (*ArnsResponse) ContextValidate

func (m *ArnsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this arns response based on context it is used

func (*ArnsResponse) MarshalBinary

func (m *ArnsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ArnsResponse) UnmarshalBinary

func (m *ArnsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ArnsResponse) Validate

func (m *ArnsResponse) Validate(formats strfmt.Registry) error

Validate validates this arns response

type AwsConfiguration

type AwsConfiguration struct {

	// secretsmanager
	// Required: true
	Secretsmanager *AwsConfigurationSecretsmanager `json:"secretsmanager"`
}

AwsConfiguration aws configuration

swagger:model awsConfiguration

func (*AwsConfiguration) ContextValidate

func (m *AwsConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this aws configuration based on the context it is used

func (*AwsConfiguration) MarshalBinary

func (m *AwsConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AwsConfiguration) UnmarshalBinary

func (m *AwsConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AwsConfiguration) Validate

func (m *AwsConfiguration) Validate(formats strfmt.Registry) error

Validate validates this aws configuration

type AwsConfigurationSecretsmanager

type AwsConfigurationSecretsmanager struct {

	// credentials
	// Required: true
	Credentials *AwsConfigurationSecretsmanagerCredentials `json:"credentials"`

	// endpoint
	// Required: true
	Endpoint *string `json:"endpoint"`

	// kmskey
	Kmskey string `json:"kmskey,omitempty"`

	// region
	// Required: true
	Region *string `json:"region"`
}

AwsConfigurationSecretsmanager aws configuration secretsmanager

swagger:model AwsConfigurationSecretsmanager

func (*AwsConfigurationSecretsmanager) ContextValidate

func (m *AwsConfigurationSecretsmanager) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this aws configuration secretsmanager based on the context it is used

func (*AwsConfigurationSecretsmanager) MarshalBinary

func (m *AwsConfigurationSecretsmanager) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AwsConfigurationSecretsmanager) UnmarshalBinary

func (m *AwsConfigurationSecretsmanager) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AwsConfigurationSecretsmanager) Validate

func (m *AwsConfigurationSecretsmanager) Validate(formats strfmt.Registry) error

Validate validates this aws configuration secretsmanager

type AwsConfigurationSecretsmanagerCredentials

type AwsConfigurationSecretsmanagerCredentials struct {

	// accesskey
	// Required: true
	Accesskey *string `json:"accesskey"`

	// secretkey
	// Required: true
	Secretkey *string `json:"secretkey"`

	// token
	Token string `json:"token,omitempty"`
}

AwsConfigurationSecretsmanagerCredentials aws configuration secretsmanager credentials

swagger:model AwsConfigurationSecretsmanagerCredentials

func (*AwsConfigurationSecretsmanagerCredentials) ContextValidate

ContextValidate validates this aws configuration secretsmanager credentials based on context it is used

func (*AwsConfigurationSecretsmanagerCredentials) MarshalBinary

func (m *AwsConfigurationSecretsmanagerCredentials) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AwsConfigurationSecretsmanagerCredentials) UnmarshalBinary

func (m *AwsConfigurationSecretsmanagerCredentials) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AwsConfigurationSecretsmanagerCredentials) Validate

Validate validates this aws configuration secretsmanager credentials

type AzureConfiguration

type AzureConfiguration struct {

	// keyvault
	// Required: true
	Keyvault *AzureConfigurationKeyvault `json:"keyvault"`
}

AzureConfiguration azure configuration

swagger:model azureConfiguration

func (*AzureConfiguration) ContextValidate

func (m *AzureConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this azure configuration based on the context it is used

func (*AzureConfiguration) MarshalBinary

func (m *AzureConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AzureConfiguration) UnmarshalBinary

func (m *AzureConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AzureConfiguration) Validate

func (m *AzureConfiguration) Validate(formats strfmt.Registry) error

Validate validates this azure configuration

type AzureConfigurationKeyvault

type AzureConfigurationKeyvault struct {

	// credentials
	Credentials *AzureConfigurationKeyvaultCredentials `json:"credentials,omitempty"`

	// endpoint
	// Required: true
	Endpoint *string `json:"endpoint"`
}

AzureConfigurationKeyvault azure configuration keyvault

swagger:model AzureConfigurationKeyvault

func (*AzureConfigurationKeyvault) ContextValidate

func (m *AzureConfigurationKeyvault) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this azure configuration keyvault based on the context it is used

func (*AzureConfigurationKeyvault) MarshalBinary

func (m *AzureConfigurationKeyvault) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AzureConfigurationKeyvault) UnmarshalBinary

func (m *AzureConfigurationKeyvault) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AzureConfigurationKeyvault) Validate

func (m *AzureConfigurationKeyvault) Validate(formats strfmt.Registry) error

Validate validates this azure configuration keyvault

type AzureConfigurationKeyvaultCredentials

type AzureConfigurationKeyvaultCredentials struct {

	// client id
	// Required: true
	ClientID *string `json:"client_id"`

	// client secret
	// Required: true
	ClientSecret *string `json:"client_secret"`

	// tenant id
	// Required: true
	TenantID *string `json:"tenant_id"`
}

AzureConfigurationKeyvaultCredentials azure configuration keyvault credentials

swagger:model AzureConfigurationKeyvaultCredentials

func (*AzureConfigurationKeyvaultCredentials) ContextValidate

func (m *AzureConfigurationKeyvaultCredentials) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this azure configuration keyvault credentials based on context it is used

func (*AzureConfigurationKeyvaultCredentials) MarshalBinary

func (m *AzureConfigurationKeyvaultCredentials) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*AzureConfigurationKeyvaultCredentials) UnmarshalBinary

func (m *AzureConfigurationKeyvaultCredentials) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*AzureConfigurationKeyvaultCredentials) Validate

Validate validates this azure configuration keyvault credentials

type Bucket

type Bucket struct {

	// access
	Access *BucketAccess `json:"access,omitempty"`

	// creation date
	CreationDate string `json:"creation_date,omitempty"`

	// definition
	Definition string `json:"definition,omitempty"`

	// details
	Details *BucketDetails `json:"details,omitempty"`

	// name
	// Required: true
	// Min Length: 3
	Name *string `json:"name"`

	// objects
	Objects int64 `json:"objects,omitempty"`

	// rw access
	RwAccess *BucketRwAccess `json:"rw_access,omitempty"`

	// size
	Size int64 `json:"size,omitempty"`
}

Bucket bucket

swagger:model bucket

func (*Bucket) ContextValidate

func (m *Bucket) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this bucket based on the context it is used

func (*Bucket) MarshalBinary

func (m *Bucket) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Bucket) UnmarshalBinary

func (m *Bucket) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Bucket) Validate

func (m *Bucket) Validate(formats strfmt.Registry) error

Validate validates this bucket

type BucketAccess

type BucketAccess string

BucketAccess bucket access

swagger:model bucketAccess

const (

	// BucketAccessPRIVATE captures enum value "PRIVATE"
	BucketAccessPRIVATE BucketAccess = "PRIVATE"

	// BucketAccessPUBLIC captures enum value "PUBLIC"
	BucketAccessPUBLIC BucketAccess = "PUBLIC"

	// BucketAccessCUSTOM captures enum value "CUSTOM"
	BucketAccessCUSTOM BucketAccess = "CUSTOM"
)

func NewBucketAccess

func NewBucketAccess(value BucketAccess) *BucketAccess

func (BucketAccess) ContextValidate

func (m BucketAccess) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket access based on context it is used

func (BucketAccess) Pointer

func (m BucketAccess) Pointer() *BucketAccess

Pointer returns a pointer to a freshly-allocated BucketAccess.

func (BucketAccess) Validate

func (m BucketAccess) Validate(formats strfmt.Registry) error

Validate validates this bucket access

type BucketDetails

type BucketDetails struct {

	// locking
	Locking bool `json:"locking,omitempty"`

	// quota
	Quota *BucketDetailsQuota `json:"quota,omitempty"`

	// replication
	Replication bool `json:"replication,omitempty"`

	// tags
	Tags map[string]string `json:"tags,omitempty"`

	// versioning
	Versioning bool `json:"versioning,omitempty"`

	// versioning suspended
	VersioningSuspended bool `json:"versioningSuspended,omitempty"`
}

BucketDetails bucket details

swagger:model BucketDetails

func (*BucketDetails) ContextValidate

func (m *BucketDetails) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this bucket details based on the context it is used

func (*BucketDetails) MarshalBinary

func (m *BucketDetails) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketDetails) UnmarshalBinary

func (m *BucketDetails) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketDetails) Validate

func (m *BucketDetails) Validate(formats strfmt.Registry) error

Validate validates this bucket details

type BucketDetailsQuota

type BucketDetailsQuota struct {

	// quota
	Quota int64 `json:"quota,omitempty"`

	// type
	// Enum: [fifo hard]
	Type string `json:"type,omitempty"`
}

BucketDetailsQuota bucket details quota

swagger:model BucketDetailsQuota

func (*BucketDetailsQuota) ContextValidate

func (m *BucketDetailsQuota) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket details quota based on context it is used

func (*BucketDetailsQuota) MarshalBinary

func (m *BucketDetailsQuota) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketDetailsQuota) UnmarshalBinary

func (m *BucketDetailsQuota) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketDetailsQuota) Validate

func (m *BucketDetailsQuota) Validate(formats strfmt.Registry) error

Validate validates this bucket details quota

type BucketEncryptionInfo

type BucketEncryptionInfo struct {

	// algorithm
	Algorithm string `json:"algorithm,omitempty"`

	// kms master key ID
	KmsMasterKeyID string `json:"kmsMasterKeyID,omitempty"`
}

BucketEncryptionInfo bucket encryption info

swagger:model bucketEncryptionInfo

func (*BucketEncryptionInfo) ContextValidate

func (m *BucketEncryptionInfo) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket encryption info based on context it is used

func (*BucketEncryptionInfo) MarshalBinary

func (m *BucketEncryptionInfo) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketEncryptionInfo) UnmarshalBinary

func (m *BucketEncryptionInfo) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketEncryptionInfo) Validate

func (m *BucketEncryptionInfo) Validate(formats strfmt.Registry) error

Validate validates this bucket encryption info

type BucketEncryptionRequest

type BucketEncryptionRequest struct {

	// enc type
	EncType *BucketEncryptionType `json:"encType,omitempty"`

	// kms key ID
	KmsKeyID string `json:"kmsKeyID,omitempty"`
}

BucketEncryptionRequest bucket encryption request

swagger:model bucketEncryptionRequest

func (*BucketEncryptionRequest) ContextValidate

func (m *BucketEncryptionRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this bucket encryption request based on the context it is used

func (*BucketEncryptionRequest) MarshalBinary

func (m *BucketEncryptionRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketEncryptionRequest) UnmarshalBinary

func (m *BucketEncryptionRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketEncryptionRequest) Validate

func (m *BucketEncryptionRequest) Validate(formats strfmt.Registry) error

Validate validates this bucket encryption request

type BucketEncryptionType

type BucketEncryptionType string

BucketEncryptionType bucket encryption type

swagger:model bucketEncryptionType

const (

	// BucketEncryptionTypeSseDashS3 captures enum value "sse-s3"
	BucketEncryptionTypeSseDashS3 BucketEncryptionType = "sse-s3"

	// BucketEncryptionTypeSseDashKms captures enum value "sse-kms"
	BucketEncryptionTypeSseDashKms BucketEncryptionType = "sse-kms"
)

func NewBucketEncryptionType

func NewBucketEncryptionType(value BucketEncryptionType) *BucketEncryptionType

func (BucketEncryptionType) ContextValidate

func (m BucketEncryptionType) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket encryption type based on context it is used

func (BucketEncryptionType) Pointer

Pointer returns a pointer to a freshly-allocated BucketEncryptionType.

func (BucketEncryptionType) Validate

func (m BucketEncryptionType) Validate(formats strfmt.Registry) error

Validate validates this bucket encryption type

type BucketEventRequest

type BucketEventRequest struct {

	// configuration
	// Required: true
	Configuration *NotificationConfig `json:"configuration"`

	// ignore existing
	IgnoreExisting bool `json:"ignoreExisting,omitempty"`
}

BucketEventRequest bucket event request

swagger:model bucketEventRequest

func (*BucketEventRequest) ContextValidate

func (m *BucketEventRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this bucket event request based on the context it is used

func (*BucketEventRequest) MarshalBinary

func (m *BucketEventRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketEventRequest) UnmarshalBinary

func (m *BucketEventRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketEventRequest) Validate

func (m *BucketEventRequest) Validate(formats strfmt.Registry) error

Validate validates this bucket event request

type BucketLifecycleResponse

type BucketLifecycleResponse struct {

	// lifecycle
	Lifecycle []*ObjectBucketLifecycle `json:"lifecycle"`
}

BucketLifecycleResponse bucket lifecycle response

swagger:model bucketLifecycleResponse

func (*BucketLifecycleResponse) ContextValidate

func (m *BucketLifecycleResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this bucket lifecycle response based on the context it is used

func (*BucketLifecycleResponse) MarshalBinary

func (m *BucketLifecycleResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketLifecycleResponse) UnmarshalBinary

func (m *BucketLifecycleResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketLifecycleResponse) Validate

func (m *BucketLifecycleResponse) Validate(formats strfmt.Registry) error

Validate validates this bucket lifecycle response

type BucketObLockingResponse

type BucketObLockingResponse struct {

	// object locking enabled
	ObjectLockingEnabled bool `json:"object_locking_enabled,omitempty"`
}

BucketObLockingResponse bucket ob locking response

swagger:model bucketObLockingResponse

func (*BucketObLockingResponse) ContextValidate

func (m *BucketObLockingResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket ob locking response based on context it is used

func (*BucketObLockingResponse) MarshalBinary

func (m *BucketObLockingResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketObLockingResponse) UnmarshalBinary

func (m *BucketObLockingResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketObLockingResponse) Validate

func (m *BucketObLockingResponse) Validate(formats strfmt.Registry) error

Validate validates this bucket ob locking response

type BucketObject

type BucketObject struct {

	// content type
	ContentType string `json:"content_type,omitempty"`

	// expiration
	Expiration string `json:"expiration,omitempty"`

	// expiration rule id
	ExpirationRuleID string `json:"expiration_rule_id,omitempty"`

	// is delete marker
	IsDeleteMarker bool `json:"is_delete_marker,omitempty"`

	// is latest
	IsLatest bool `json:"is_latest,omitempty"`

	// last modified
	LastModified string `json:"last_modified,omitempty"`

	// legal hold status
	LegalHoldStatus string `json:"legal_hold_status,omitempty"`

	// metadata
	Metadata map[string]string `json:"metadata,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// retention mode
	RetentionMode string `json:"retention_mode,omitempty"`

	// retention until date
	RetentionUntilDate string `json:"retention_until_date,omitempty"`

	// size
	Size int64 `json:"size,omitempty"`

	// tags
	Tags map[string]string `json:"tags,omitempty"`

	// user metadata
	UserMetadata map[string]string `json:"user_metadata,omitempty"`

	// user tags
	UserTags map[string]string `json:"user_tags,omitempty"`

	// version id
	VersionID string `json:"version_id,omitempty"`
}

BucketObject bucket object

swagger:model bucketObject

func (*BucketObject) ContextValidate

func (m *BucketObject) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket object based on context it is used

func (*BucketObject) MarshalBinary

func (m *BucketObject) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketObject) UnmarshalBinary

func (m *BucketObject) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketObject) Validate

func (m *BucketObject) Validate(formats strfmt.Registry) error

Validate validates this bucket object

type BucketQuota

type BucketQuota struct {

	// quota
	Quota int64 `json:"quota,omitempty"`

	// type
	// Enum: [hard fifo]
	Type string `json:"type,omitempty"`
}

BucketQuota bucket quota

swagger:model bucketQuota

func (*BucketQuota) ContextValidate

func (m *BucketQuota) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket quota based on context it is used

func (*BucketQuota) MarshalBinary

func (m *BucketQuota) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketQuota) UnmarshalBinary

func (m *BucketQuota) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketQuota) Validate

func (m *BucketQuota) Validate(formats strfmt.Registry) error

Validate validates this bucket quota

type BucketReplicationDestination

type BucketReplicationDestination struct {

	// bucket
	Bucket string `json:"bucket,omitempty"`
}

BucketReplicationDestination bucket replication destination

swagger:model bucketReplicationDestination

func (*BucketReplicationDestination) ContextValidate

func (m *BucketReplicationDestination) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket replication destination based on context it is used

func (*BucketReplicationDestination) MarshalBinary

func (m *BucketReplicationDestination) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketReplicationDestination) UnmarshalBinary

func (m *BucketReplicationDestination) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketReplicationDestination) Validate

func (m *BucketReplicationDestination) Validate(formats strfmt.Registry) error

Validate validates this bucket replication destination

type BucketReplicationResponse

type BucketReplicationResponse struct {

	// rules
	Rules []*BucketReplicationRule `json:"rules"`
}

BucketReplicationResponse bucket replication response

swagger:model bucketReplicationResponse

func (*BucketReplicationResponse) ContextValidate

func (m *BucketReplicationResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this bucket replication response based on the context it is used

func (*BucketReplicationResponse) MarshalBinary

func (m *BucketReplicationResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketReplicationResponse) UnmarshalBinary

func (m *BucketReplicationResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketReplicationResponse) Validate

func (m *BucketReplicationResponse) Validate(formats strfmt.Registry) error

Validate validates this bucket replication response

type BucketReplicationRule

type BucketReplicationRule struct {

	// bandwidth
	Bandwidth string `json:"bandwidth,omitempty"`

	// delete marker replication
	DeleteMarkerReplication bool `json:"delete_marker_replication,omitempty"`

	// deletes replication
	DeletesReplication bool `json:"deletes_replication,omitempty"`

	// destination
	Destination *BucketReplicationDestination `json:"destination,omitempty"`

	// existing objects
	ExistingObjects bool `json:"existingObjects,omitempty"`

	// health check period
	HealthCheckPeriod int64 `json:"healthCheckPeriod,omitempty"`

	// id
	ID string `json:"id,omitempty"`

	// metadata replication
	MetadataReplication bool `json:"metadata_replication,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// priority
	Priority int32 `json:"priority,omitempty"`

	// status
	// Enum: [Enabled Disabled]
	Status string `json:"status,omitempty"`

	// storage class
	StorageClass string `json:"storageClass,omitempty"`

	// sync mode
	// Enum: [async sync]
	SyncMode *string `json:"syncMode,omitempty"`

	// tags
	Tags string `json:"tags,omitempty"`
}

BucketReplicationRule bucket replication rule

swagger:model bucketReplicationRule

func (*BucketReplicationRule) ContextValidate

func (m *BucketReplicationRule) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this bucket replication rule based on the context it is used

func (*BucketReplicationRule) MarshalBinary

func (m *BucketReplicationRule) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketReplicationRule) UnmarshalBinary

func (m *BucketReplicationRule) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketReplicationRule) Validate

func (m *BucketReplicationRule) Validate(formats strfmt.Registry) error

Validate validates this bucket replication rule

type BucketRwAccess

type BucketRwAccess struct {

	// read
	Read bool `json:"read,omitempty"`

	// write
	Write bool `json:"write,omitempty"`
}

BucketRwAccess bucket rw access

swagger:model BucketRwAccess

func (*BucketRwAccess) ContextValidate

func (m *BucketRwAccess) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket rw access based on context it is used

func (*BucketRwAccess) MarshalBinary

func (m *BucketRwAccess) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketRwAccess) UnmarshalBinary

func (m *BucketRwAccess) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketRwAccess) Validate

func (m *BucketRwAccess) Validate(formats strfmt.Registry) error

Validate validates this bucket rw access

type BucketVersioningResponse

type BucketVersioningResponse struct {

	// is versioned
	IsVersioned bool `json:"is_versioned,omitempty"`
}

BucketVersioningResponse bucket versioning response

swagger:model bucketVersioningResponse

func (*BucketVersioningResponse) ContextValidate

func (m *BucketVersioningResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bucket versioning response based on context it is used

func (*BucketVersioningResponse) MarshalBinary

func (m *BucketVersioningResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BucketVersioningResponse) UnmarshalBinary

func (m *BucketVersioningResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BucketVersioningResponse) Validate

func (m *BucketVersioningResponse) Validate(formats strfmt.Registry) error

Validate validates this bucket versioning response

type BulkUserGroups

type BulkUserGroups struct {

	// groups
	// Required: true
	Groups []string `json:"groups"`

	// users
	// Required: true
	Users []string `json:"users"`
}

BulkUserGroups bulk user groups

swagger:model bulkUserGroups

func (*BulkUserGroups) ContextValidate

func (m *BulkUserGroups) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this bulk user groups based on context it is used

func (*BulkUserGroups) MarshalBinary

func (m *BulkUserGroups) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*BulkUserGroups) UnmarshalBinary

func (m *BulkUserGroups) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*BulkUserGroups) Validate

func (m *BulkUserGroups) Validate(formats strfmt.Registry) error

Validate validates this bulk user groups

type CertificateInfo

type CertificateInfo struct {

	// domains
	Domains []string `json:"domains"`

	// expiry
	Expiry string `json:"expiry,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// serial number
	SerialNumber string `json:"serialNumber,omitempty"`
}

CertificateInfo certificate info

swagger:model certificateInfo

func (*CertificateInfo) ContextValidate

func (m *CertificateInfo) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this certificate info based on context it is used

func (*CertificateInfo) MarshalBinary

func (m *CertificateInfo) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*CertificateInfo) UnmarshalBinary

func (m *CertificateInfo) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*CertificateInfo) Validate

func (m *CertificateInfo) Validate(formats strfmt.Registry) error

Validate validates this certificate info

type ChangeUserPasswordRequest

type ChangeUserPasswordRequest struct {

	// new secret key
	// Required: true
	NewSecretKey *string `json:"newSecretKey"`

	// selected user
	// Required: true
	SelectedUser *string `json:"selectedUser"`
}

ChangeUserPasswordRequest change user password request

swagger:model changeUserPasswordRequest

func (*ChangeUserPasswordRequest) ContextValidate

func (m *ChangeUserPasswordRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this change user password request based on context it is used

func (*ChangeUserPasswordRequest) MarshalBinary

func (m *ChangeUserPasswordRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ChangeUserPasswordRequest) UnmarshalBinary

func (m *ChangeUserPasswordRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ChangeUserPasswordRequest) Validate

func (m *ChangeUserPasswordRequest) Validate(formats strfmt.Registry) error

Validate validates this change user password request

type ConfigDescription

type ConfigDescription struct {

	// description
	Description string `json:"description,omitempty"`

	// key
	Key string `json:"key,omitempty"`
}

ConfigDescription config description

swagger:model configDescription

func (*ConfigDescription) ContextValidate

func (m *ConfigDescription) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this config description based on context it is used

func (*ConfigDescription) MarshalBinary

func (m *ConfigDescription) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ConfigDescription) UnmarshalBinary

func (m *ConfigDescription) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ConfigDescription) Validate

func (m *ConfigDescription) Validate(formats strfmt.Registry) error

Validate validates this config description

type Configuration

type Configuration struct {

	// key values
	KeyValues []*ConfigurationKV `json:"key_values"`

	// name
	Name string `json:"name,omitempty"`
}

Configuration configuration

swagger:model configuration

func (*Configuration) ContextValidate

func (m *Configuration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this configuration based on the context it is used

func (*Configuration) MarshalBinary

func (m *Configuration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Configuration) UnmarshalBinary

func (m *Configuration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Configuration) Validate

func (m *Configuration) Validate(formats strfmt.Registry) error

Validate validates this configuration

type ConfigurationKV

type ConfigurationKV struct {

	// key
	Key string `json:"key,omitempty"`

	// value
	Value string `json:"value,omitempty"`
}

ConfigurationKV configuration k v

swagger:model configurationKV

func (*ConfigurationKV) ContextValidate

func (m *ConfigurationKV) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this configuration k v based on context it is used

func (*ConfigurationKV) MarshalBinary

func (m *ConfigurationKV) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ConfigurationKV) UnmarshalBinary

func (m *ConfigurationKV) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ConfigurationKV) Validate

func (m *ConfigurationKV) Validate(formats strfmt.Registry) error

Validate validates this configuration k v

type ConfigureTenantRequest

type ConfigureTenantRequest struct {

	// prometheus enabled
	PrometheusEnabled bool `json:"prometheusEnabled,omitempty"`
}

ConfigureTenantRequest configure tenant request

swagger:model configureTenantRequest

func (*ConfigureTenantRequest) ContextValidate

func (m *ConfigureTenantRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this configure tenant request based on context it is used

func (*ConfigureTenantRequest) MarshalBinary

func (m *ConfigureTenantRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ConfigureTenantRequest) UnmarshalBinary

func (m *ConfigureTenantRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ConfigureTenantRequest) Validate

func (m *ConfigureTenantRequest) Validate(formats strfmt.Registry) error

Validate validates this configure tenant request

type CreateRemoteBucket

type CreateRemoteBucket struct {

	// access key
	// Required: true
	// Min Length: 3
	AccessKey *string `json:"accessKey"`

	// bandwidth
	Bandwidth int64 `json:"bandwidth,omitempty"`

	// health check period
	HealthCheckPeriod int32 `json:"healthCheckPeriod,omitempty"`

	// region
	Region string `json:"region,omitempty"`

	// secret key
	// Required: true
	// Min Length: 8
	SecretKey *string `json:"secretKey"`

	// source bucket
	// Required: true
	SourceBucket *string `json:"sourceBucket"`

	// sync mode
	// Enum: [async sync]
	SyncMode *string `json:"syncMode,omitempty"`

	// target bucket
	// Required: true
	TargetBucket *string `json:"targetBucket"`

	// target URL
	// Required: true
	TargetURL *string `json:"targetURL"`
}

CreateRemoteBucket create remote bucket

swagger:model createRemoteBucket

func (*CreateRemoteBucket) ContextValidate

func (m *CreateRemoteBucket) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this create remote bucket based on context it is used

func (*CreateRemoteBucket) MarshalBinary

func (m *CreateRemoteBucket) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*CreateRemoteBucket) UnmarshalBinary

func (m *CreateRemoteBucket) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*CreateRemoteBucket) Validate

func (m *CreateRemoteBucket) Validate(formats strfmt.Registry) error

Validate validates this create remote bucket

type CreateTenantRequest

type CreateTenantRequest struct {

	// access key
	AccessKey string `json:"access_key,omitempty"`

	// annotations
	Annotations map[string]string `json:"annotations,omitempty"`

	// enable console
	EnableConsole *bool `json:"enable_console,omitempty"`

	// enable prometheus
	EnablePrometheus *bool `json:"enable_prometheus,omitempty"`

	// enable tls
	EnableTLS *bool `json:"enable_tls,omitempty"`

	// encryption
	Encryption *EncryptionConfiguration `json:"encryption,omitempty"`

	// erasure coding parity
	ErasureCodingParity int64 `json:"erasureCodingParity,omitempty"`

	// expose console
	ExposeConsole bool `json:"expose_console,omitempty"`

	// expose minio
	ExposeMinio bool `json:"expose_minio,omitempty"`

	// idp
	Idp *IdpConfiguration `json:"idp,omitempty"`

	// image
	Image string `json:"image,omitempty"`

	// image pull secret
	ImagePullSecret string `json:"image_pull_secret,omitempty"`

	// image registry
	ImageRegistry *ImageRegistry `json:"image_registry,omitempty"`

	// labels
	Labels map[string]string `json:"labels,omitempty"`

	// log search configuration
	LogSearchConfiguration *LogSearchConfiguration `json:"logSearchConfiguration,omitempty"`

	// mounth path
	MounthPath string `json:"mounth_path,omitempty"`

	// name
	// Required: true
	// Pattern: ^[a-z0-9-]{3,63}$
	Name *string `json:"name"`

	// namespace
	// Required: true
	Namespace *string `json:"namespace"`

	// pools
	// Required: true
	Pools []*Pool `json:"pools"`

	// prometheus configuration
	PrometheusConfiguration *PrometheusConfiguration `json:"prometheusConfiguration,omitempty"`

	// secret key
	SecretKey string `json:"secret_key,omitempty"`

	// tls
	TLS *TLSConfiguration `json:"tls,omitempty"`
}

CreateTenantRequest create tenant request

swagger:model createTenantRequest

func (*CreateTenantRequest) ContextValidate

func (m *CreateTenantRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this create tenant request based on the context it is used

func (*CreateTenantRequest) MarshalBinary

func (m *CreateTenantRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*CreateTenantRequest) UnmarshalBinary

func (m *CreateTenantRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*CreateTenantRequest) Validate

func (m *CreateTenantRequest) Validate(formats strfmt.Registry) error

Validate validates this create tenant request

type CreateTenantResponse

type CreateTenantResponse struct {

	// console
	Console []*TenantResponseItem `json:"console"`

	// external ID p
	ExternalIDP bool `json:"externalIDP,omitempty"`
}

CreateTenantResponse create tenant response

swagger:model createTenantResponse

func (*CreateTenantResponse) ContextValidate

func (m *CreateTenantResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this create tenant response based on the context it is used

func (*CreateTenantResponse) MarshalBinary

func (m *CreateTenantResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*CreateTenantResponse) UnmarshalBinary

func (m *CreateTenantResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*CreateTenantResponse) Validate

func (m *CreateTenantResponse) Validate(formats strfmt.Registry) error

Validate validates this create tenant response

type CsiFormatErrorResponse

type CsiFormatErrorResponse struct {

	// drive
	Drive string `json:"drive,omitempty"`

	// error
	Error string `json:"error,omitempty"`

	// node
	Node string `json:"node,omitempty"`
}

CsiFormatErrorResponse csi format error response

swagger:model csiFormatErrorResponse

func (*CsiFormatErrorResponse) ContextValidate

func (m *CsiFormatErrorResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this csi format error response based on context it is used

func (*CsiFormatErrorResponse) MarshalBinary

func (m *CsiFormatErrorResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*CsiFormatErrorResponse) UnmarshalBinary

func (m *CsiFormatErrorResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*CsiFormatErrorResponse) Validate

func (m *CsiFormatErrorResponse) Validate(formats strfmt.Registry) error

Validate validates this csi format error response

type DeleteFile

type DeleteFile struct {

	// path
	Path string `json:"path,omitempty"`

	// recursive
	Recursive bool `json:"recursive,omitempty"`

	// version ID
	VersionID string `json:"versionID,omitempty"`
}

DeleteFile delete file

swagger:model deleteFile

func (*DeleteFile) ContextValidate

func (m *DeleteFile) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this delete file based on context it is used

func (*DeleteFile) MarshalBinary

func (m *DeleteFile) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DeleteFile) UnmarshalBinary

func (m *DeleteFile) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DeleteFile) Validate

func (m *DeleteFile) Validate(formats strfmt.Registry) error

Validate validates this delete file

type DeleteTenantRequest

type DeleteTenantRequest struct {

	// delete pvcs
	DeletePvcs bool `json:"delete_pvcs,omitempty"`
}

DeleteTenantRequest delete tenant request

swagger:model deleteTenantRequest

func (*DeleteTenantRequest) ContextValidate

func (m *DeleteTenantRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this delete tenant request based on context it is used

func (*DeleteTenantRequest) MarshalBinary

func (m *DeleteTenantRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DeleteTenantRequest) UnmarshalBinary

func (m *DeleteTenantRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DeleteTenantRequest) Validate

func (m *DeleteTenantRequest) Validate(formats strfmt.Registry) error

Validate validates this delete tenant request

type DirectCSIDriveInfo

type DirectCSIDriveInfo struct {

	// allocated
	Allocated int64 `json:"allocated,omitempty"`

	// capacity
	Capacity int64 `json:"capacity,omitempty"`

	// drive
	Drive string `json:"drive,omitempty"`

	// message
	Message string `json:"message,omitempty"`

	// node
	Node string `json:"node,omitempty"`

	// status
	Status string `json:"status,omitempty"`

	// volumes
	Volumes int64 `json:"volumes,omitempty"`
}

DirectCSIDriveInfo direct c s i drive info

swagger:model directCSIDriveInfo

func (*DirectCSIDriveInfo) ContextValidate

func (m *DirectCSIDriveInfo) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this direct c s i drive info based on context it is used

func (*DirectCSIDriveInfo) MarshalBinary

func (m *DirectCSIDriveInfo) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DirectCSIDriveInfo) UnmarshalBinary

func (m *DirectCSIDriveInfo) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DirectCSIDriveInfo) Validate

func (m *DirectCSIDriveInfo) Validate(formats strfmt.Registry) error

Validate validates this direct c s i drive info

type DirectCSIVolumeInfo

type DirectCSIVolumeInfo struct {

	// capacity
	Capacity int64 `json:"capacity,omitempty"`

	// drive
	Drive string `json:"drive,omitempty"`

	// node
	Node string `json:"node,omitempty"`

	// volume
	Volume string `json:"volume,omitempty"`
}

DirectCSIVolumeInfo direct c s i volume info

swagger:model directCSIVolumeInfo

func (*DirectCSIVolumeInfo) ContextValidate

func (m *DirectCSIVolumeInfo) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this direct c s i volume info based on context it is used

func (*DirectCSIVolumeInfo) MarshalBinary

func (m *DirectCSIVolumeInfo) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*DirectCSIVolumeInfo) UnmarshalBinary

func (m *DirectCSIVolumeInfo) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*DirectCSIVolumeInfo) Validate

func (m *DirectCSIVolumeInfo) Validate(formats strfmt.Registry) error

Validate validates this direct c s i volume info

type EncryptionConfiguration

type EncryptionConfiguration struct {
	MetadataFields

	// aws
	Aws *AwsConfiguration `json:"aws,omitempty"`

	// azure
	Azure *AzureConfiguration `json:"azure,omitempty"`

	// client
	Client *KeyPairConfiguration `json:"client,omitempty"`

	// gcp
	Gcp *GcpConfiguration `json:"gcp,omitempty"`

	// gemalto
	Gemalto *GemaltoConfiguration `json:"gemalto,omitempty"`

	// image
	Image string `json:"image,omitempty"`

	// replicas
	Replicas string `json:"replicas,omitempty"`

	// security context
	SecurityContext *SecurityContext `json:"securityContext,omitempty"`

	// server
	Server *KeyPairConfiguration `json:"server,omitempty"`

	// vault
	Vault *VaultConfiguration `json:"vault,omitempty"`
}

EncryptionConfiguration encryption configuration

swagger:model encryptionConfiguration

func (*EncryptionConfiguration) ContextValidate

func (m *EncryptionConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this encryption configuration based on the context it is used

func (*EncryptionConfiguration) MarshalBinary

func (m *EncryptionConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (EncryptionConfiguration) MarshalJSON

func (m EncryptionConfiguration) MarshalJSON() ([]byte, error)

MarshalJSON marshals this object to a JSON structure

func (*EncryptionConfiguration) UnmarshalBinary

func (m *EncryptionConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*EncryptionConfiguration) UnmarshalJSON

func (m *EncryptionConfiguration) UnmarshalJSON(raw []byte) error

UnmarshalJSON unmarshals this object from a JSON structure

func (*EncryptionConfiguration) Validate

func (m *EncryptionConfiguration) Validate(formats strfmt.Registry) error

Validate validates this encryption configuration

type Error

type Error struct {

	// code
	Code int32 `json:"code,omitempty"`

	// detailed message
	// Required: true
	DetailedMessage *string `json:"detailedMessage"`

	// message
	// Required: true
	Message *string `json:"message"`
}

Error error

swagger:model error

func (*Error) ContextValidate

func (m *Error) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this error based on context it is used

func (*Error) MarshalBinary

func (m *Error) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Error) UnmarshalBinary

func (m *Error) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Error) Validate

func (m *Error) Validate(formats strfmt.Registry) error

Validate validates this error

type EventListElement

type EventListElement struct {

	// event type
	EventType string `json:"event_type,omitempty"`

	// last seen
	LastSeen int64 `json:"last_seen,omitempty"`

	// message
	Message string `json:"message,omitempty"`

	// namespace
	Namespace string `json:"namespace,omitempty"`

	// object
	Object string `json:"object,omitempty"`

	// reason
	Reason string `json:"reason,omitempty"`
}

EventListElement event list element

swagger:model eventListElement

func (*EventListElement) ContextValidate

func (m *EventListElement) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this event list element based on context it is used

func (*EventListElement) MarshalBinary

func (m *EventListElement) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*EventListElement) UnmarshalBinary

func (m *EventListElement) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*EventListElement) Validate

func (m *EventListElement) Validate(formats strfmt.Registry) error

Validate validates this event list element

type EventListWrapper

type EventListWrapper []*EventListElement

EventListWrapper event list wrapper

swagger:model eventListWrapper

func (EventListWrapper) ContextValidate

func (m EventListWrapper) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this event list wrapper based on the context it is used

func (EventListWrapper) Validate

func (m EventListWrapper) Validate(formats strfmt.Registry) error

Validate validates this event list wrapper

type ExpirationResponse

type ExpirationResponse struct {

	// date
	Date string `json:"date,omitempty"`

	// days
	Days int64 `json:"days,omitempty"`

	// delete marker
	DeleteMarker bool `json:"delete_marker,omitempty"`
}

ExpirationResponse expiration response

swagger:model expirationResponse

func (*ExpirationResponse) ContextValidate

func (m *ExpirationResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this expiration response based on context it is used

func (*ExpirationResponse) MarshalBinary

func (m *ExpirationResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ExpirationResponse) UnmarshalBinary

func (m *ExpirationResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ExpirationResponse) Validate

func (m *ExpirationResponse) Validate(formats strfmt.Registry) error

Validate validates this expiration response

type FormatConfiguration

type FormatConfiguration struct {

	// drives
	// Required: true
	Drives []string `json:"drives"`

	// force
	// Required: true
	Force *bool `json:"force"`
}

FormatConfiguration format configuration

swagger:model formatConfiguration

func (*FormatConfiguration) ContextValidate

func (m *FormatConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this format configuration based on context it is used

func (*FormatConfiguration) MarshalBinary

func (m *FormatConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FormatConfiguration) UnmarshalBinary

func (m *FormatConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FormatConfiguration) Validate

func (m *FormatConfiguration) Validate(formats strfmt.Registry) error

Validate validates this format configuration

type FormatDirectCSIDrivesResponse

type FormatDirectCSIDrivesResponse struct {

	// format issues list
	FormatIssuesList []*CsiFormatErrorResponse `json:"formatIssuesList"`
}

FormatDirectCSIDrivesResponse format direct c s i drives response

swagger:model formatDirectCSIDrivesResponse

func (*FormatDirectCSIDrivesResponse) ContextValidate

func (m *FormatDirectCSIDrivesResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this format direct c s i drives response based on the context it is used

func (*FormatDirectCSIDrivesResponse) MarshalBinary

func (m *FormatDirectCSIDrivesResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*FormatDirectCSIDrivesResponse) UnmarshalBinary

func (m *FormatDirectCSIDrivesResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*FormatDirectCSIDrivesResponse) Validate

func (m *FormatDirectCSIDrivesResponse) Validate(formats strfmt.Registry) error

Validate validates this format direct c s i drives response

type GcpConfiguration

type GcpConfiguration struct {

	// secretmanager
	// Required: true
	Secretmanager *GcpConfigurationSecretmanager `json:"secretmanager"`
}

GcpConfiguration gcp configuration

swagger:model gcpConfiguration

func (*GcpConfiguration) ContextValidate

func (m *GcpConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this gcp configuration based on the context it is used

func (*GcpConfiguration) MarshalBinary

func (m *GcpConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GcpConfiguration) UnmarshalBinary

func (m *GcpConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GcpConfiguration) Validate

func (m *GcpConfiguration) Validate(formats strfmt.Registry) error

Validate validates this gcp configuration

type GcpConfigurationSecretmanager

type GcpConfigurationSecretmanager struct {

	// credentials
	Credentials *GcpConfigurationSecretmanagerCredentials `json:"credentials,omitempty"`

	// endpoint
	Endpoint string `json:"endpoint,omitempty"`

	// project id
	// Required: true
	ProjectID *string `json:"project_id"`
}

GcpConfigurationSecretmanager gcp configuration secretmanager

swagger:model GcpConfigurationSecretmanager

func (*GcpConfigurationSecretmanager) ContextValidate

func (m *GcpConfigurationSecretmanager) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this gcp configuration secretmanager based on the context it is used

func (*GcpConfigurationSecretmanager) MarshalBinary

func (m *GcpConfigurationSecretmanager) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GcpConfigurationSecretmanager) UnmarshalBinary

func (m *GcpConfigurationSecretmanager) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GcpConfigurationSecretmanager) Validate

func (m *GcpConfigurationSecretmanager) Validate(formats strfmt.Registry) error

Validate validates this gcp configuration secretmanager

type GcpConfigurationSecretmanagerCredentials

type GcpConfigurationSecretmanagerCredentials struct {

	// client email
	ClientEmail string `json:"client_email,omitempty"`

	// client id
	ClientID string `json:"client_id,omitempty"`

	// private key
	PrivateKey string `json:"private_key,omitempty"`

	// private key id
	PrivateKeyID string `json:"private_key_id,omitempty"`
}

GcpConfigurationSecretmanagerCredentials gcp configuration secretmanager credentials

swagger:model GcpConfigurationSecretmanagerCredentials

func (*GcpConfigurationSecretmanagerCredentials) ContextValidate

ContextValidate validates this gcp configuration secretmanager credentials based on context it is used

func (*GcpConfigurationSecretmanagerCredentials) MarshalBinary

func (m *GcpConfigurationSecretmanagerCredentials) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GcpConfigurationSecretmanagerCredentials) UnmarshalBinary

func (m *GcpConfigurationSecretmanagerCredentials) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GcpConfigurationSecretmanagerCredentials) Validate

Validate validates this gcp configuration secretmanager credentials

type GemaltoConfiguration

type GemaltoConfiguration struct {

	// keysecure
	// Required: true
	Keysecure *GemaltoConfigurationKeysecure `json:"keysecure"`
}

GemaltoConfiguration gemalto configuration

swagger:model gemaltoConfiguration

func (*GemaltoConfiguration) ContextValidate

func (m *GemaltoConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this gemalto configuration based on the context it is used

func (*GemaltoConfiguration) MarshalBinary

func (m *GemaltoConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GemaltoConfiguration) UnmarshalBinary

func (m *GemaltoConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GemaltoConfiguration) Validate

func (m *GemaltoConfiguration) Validate(formats strfmt.Registry) error

Validate validates this gemalto configuration

type GemaltoConfigurationKeysecure

type GemaltoConfigurationKeysecure struct {

	// credentials
	// Required: true
	Credentials *GemaltoConfigurationKeysecureCredentials `json:"credentials"`

	// endpoint
	// Required: true
	Endpoint *string `json:"endpoint"`

	// tls
	TLS *GemaltoConfigurationKeysecureTLS `json:"tls,omitempty"`
}

GemaltoConfigurationKeysecure gemalto configuration keysecure

swagger:model GemaltoConfigurationKeysecure

func (*GemaltoConfigurationKeysecure) ContextValidate

func (m *GemaltoConfigurationKeysecure) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this gemalto configuration keysecure based on the context it is used

func (*GemaltoConfigurationKeysecure) MarshalBinary

func (m *GemaltoConfigurationKeysecure) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GemaltoConfigurationKeysecure) UnmarshalBinary

func (m *GemaltoConfigurationKeysecure) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GemaltoConfigurationKeysecure) Validate

func (m *GemaltoConfigurationKeysecure) Validate(formats strfmt.Registry) error

Validate validates this gemalto configuration keysecure

type GemaltoConfigurationKeysecureCredentials

type GemaltoConfigurationKeysecureCredentials struct {

	// domain
	// Required: true
	Domain *string `json:"domain"`

	// retry
	Retry int64 `json:"retry,omitempty"`

	// token
	// Required: true
	Token *string `json:"token"`
}

GemaltoConfigurationKeysecureCredentials gemalto configuration keysecure credentials

swagger:model GemaltoConfigurationKeysecureCredentials

func (*GemaltoConfigurationKeysecureCredentials) ContextValidate

ContextValidate validates this gemalto configuration keysecure credentials based on context it is used

func (*GemaltoConfigurationKeysecureCredentials) MarshalBinary

func (m *GemaltoConfigurationKeysecureCredentials) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GemaltoConfigurationKeysecureCredentials) UnmarshalBinary

func (m *GemaltoConfigurationKeysecureCredentials) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GemaltoConfigurationKeysecureCredentials) Validate

Validate validates this gemalto configuration keysecure credentials

type GemaltoConfigurationKeysecureTLS

type GemaltoConfigurationKeysecureTLS struct {

	// ca
	// Required: true
	Ca *string `json:"ca"`
}

GemaltoConfigurationKeysecureTLS gemalto configuration keysecure TLS

swagger:model GemaltoConfigurationKeysecureTLS

func (*GemaltoConfigurationKeysecureTLS) ContextValidate

func (m *GemaltoConfigurationKeysecureTLS) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this gemalto configuration keysecure TLS based on context it is used

func (*GemaltoConfigurationKeysecureTLS) MarshalBinary

func (m *GemaltoConfigurationKeysecureTLS) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GemaltoConfigurationKeysecureTLS) UnmarshalBinary

func (m *GemaltoConfigurationKeysecureTLS) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GemaltoConfigurationKeysecureTLS) Validate

Validate validates this gemalto configuration keysecure TLS

type GetBucketRetentionConfig

type GetBucketRetentionConfig struct {

	// mode
	Mode ObjectRetentionMode `json:"mode,omitempty"`

	// unit
	Unit ObjectRetentionUnit `json:"unit,omitempty"`

	// validity
	Validity int32 `json:"validity,omitempty"`
}

GetBucketRetentionConfig get bucket retention config

swagger:model getBucketRetentionConfig

func (*GetBucketRetentionConfig) ContextValidate

func (m *GetBucketRetentionConfig) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get bucket retention config based on the context it is used

func (*GetBucketRetentionConfig) MarshalBinary

func (m *GetBucketRetentionConfig) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetBucketRetentionConfig) UnmarshalBinary

func (m *GetBucketRetentionConfig) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetBucketRetentionConfig) Validate

func (m *GetBucketRetentionConfig) Validate(formats strfmt.Registry) error

Validate validates this get bucket retention config

type GetDirectCSIDriveListResponse

type GetDirectCSIDriveListResponse struct {

	// drives
	Drives []*DirectCSIDriveInfo `json:"drives"`
}

GetDirectCSIDriveListResponse get direct c s i drive list response

swagger:model getDirectCSIDriveListResponse

func (*GetDirectCSIDriveListResponse) ContextValidate

func (m *GetDirectCSIDriveListResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get direct c s i drive list response based on the context it is used

func (*GetDirectCSIDriveListResponse) MarshalBinary

func (m *GetDirectCSIDriveListResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetDirectCSIDriveListResponse) UnmarshalBinary

func (m *GetDirectCSIDriveListResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetDirectCSIDriveListResponse) Validate

func (m *GetDirectCSIDriveListResponse) Validate(formats strfmt.Registry) error

Validate validates this get direct c s i drive list response

type GetDirectCSIVolumeListResponse

type GetDirectCSIVolumeListResponse struct {

	// volumes
	Volumes []*DirectCSIVolumeInfo `json:"volumes"`
}

GetDirectCSIVolumeListResponse get direct c s i volume list response

swagger:model getDirectCSIVolumeListResponse

func (*GetDirectCSIVolumeListResponse) ContextValidate

func (m *GetDirectCSIVolumeListResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get direct c s i volume list response based on the context it is used

func (*GetDirectCSIVolumeListResponse) MarshalBinary

func (m *GetDirectCSIVolumeListResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetDirectCSIVolumeListResponse) UnmarshalBinary

func (m *GetDirectCSIVolumeListResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetDirectCSIVolumeListResponse) Validate

func (m *GetDirectCSIVolumeListResponse) Validate(formats strfmt.Registry) error

Validate validates this get direct c s i volume list response

type Group

type Group struct {

	// members
	Members []string `json:"members"`

	// name
	Name string `json:"name,omitempty"`

	// policy
	Policy string `json:"policy,omitempty"`

	// status
	Status string `json:"status,omitempty"`
}

Group group

swagger:model group

func (*Group) ContextValidate

func (m *Group) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this group based on context it is used

func (*Group) MarshalBinary

func (m *Group) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Group) UnmarshalBinary

func (m *Group) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Group) Validate

func (m *Group) Validate(formats strfmt.Registry) error

Validate validates this group

type IamEntity

type IamEntity string

IamEntity iam entity

swagger:model iamEntity

func (IamEntity) ContextValidate

func (m IamEntity) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this iam entity based on context it is used

func (IamEntity) Validate

func (m IamEntity) Validate(formats strfmt.Registry) error

Validate validates this iam entity

type IamPolicy

type IamPolicy struct {

	// statement
	Statement []*IamPolicyStatement `json:"statement"`

	// version
	Version string `json:"version,omitempty"`
}

IamPolicy iam policy

swagger:model iamPolicy

func (*IamPolicy) ContextValidate

func (m *IamPolicy) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this iam policy based on the context it is used

func (*IamPolicy) MarshalBinary

func (m *IamPolicy) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*IamPolicy) UnmarshalBinary

func (m *IamPolicy) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*IamPolicy) Validate

func (m *IamPolicy) Validate(formats strfmt.Registry) error

Validate validates this iam policy

type IamPolicyStatement

type IamPolicyStatement struct {

	// action
	Action []string `json:"action"`

	// condition
	Condition map[string]interface{} `json:"condition,omitempty"`

	// effect
	Effect string `json:"effect,omitempty"`

	// resource
	Resource []string `json:"resource"`
}

IamPolicyStatement iam policy statement

swagger:model iamPolicyStatement

func (*IamPolicyStatement) ContextValidate

func (m *IamPolicyStatement) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this iam policy statement based on context it is used

func (*IamPolicyStatement) MarshalBinary

func (m *IamPolicyStatement) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*IamPolicyStatement) UnmarshalBinary

func (m *IamPolicyStatement) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*IamPolicyStatement) Validate

func (m *IamPolicyStatement) Validate(formats strfmt.Registry) error

Validate validates this iam policy statement

type IdpConfiguration

type IdpConfiguration struct {

	// active directory
	ActiveDirectory *IdpConfigurationActiveDirectory `json:"active_directory,omitempty"`

	// keys
	Keys []*IdpConfigurationKeysItems0 `json:"keys"`

	// oidc
	Oidc *IdpConfigurationOidc `json:"oidc,omitempty"`
}

IdpConfiguration idp configuration

swagger:model idpConfiguration

func (*IdpConfiguration) ContextValidate

func (m *IdpConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this idp configuration based on the context it is used

func (*IdpConfiguration) MarshalBinary

func (m *IdpConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*IdpConfiguration) UnmarshalBinary

func (m *IdpConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*IdpConfiguration) Validate

func (m *IdpConfiguration) Validate(formats strfmt.Registry) error

Validate validates this idp configuration

type IdpConfigurationActiveDirectory

type IdpConfigurationActiveDirectory struct {

	// group name attribute
	GroupNameAttribute string `json:"group_name_attribute,omitempty"`

	// group search base dn
	GroupSearchBaseDn string `json:"group_search_base_dn,omitempty"`

	// group search filter
	GroupSearchFilter string `json:"group_search_filter,omitempty"`

	// lookup bind dn
	LookupBindDn string `json:"lookup_bind_dn,omitempty"`

	// lookup bind password
	LookupBindPassword string `json:"lookup_bind_password,omitempty"`

	// server insecure
	ServerInsecure bool `json:"server_insecure,omitempty"`

	// server start tls
	ServerStartTLS bool `json:"server_start_tls,omitempty"`

	// skip tls verification
	SkipTLSVerification bool `json:"skip_tls_verification,omitempty"`

	// url
	// Required: true
	URL *string `json:"url"`

	// user dn search base dn
	UserDnSearchBaseDn string `json:"user_dn_search_base_dn,omitempty"`

	// user dn search filter
	UserDnSearchFilter string `json:"user_dn_search_filter,omitempty"`

	// user dns
	UserDNS []string `json:"user_dns"`

	// username format
	UsernameFormat string `json:"username_format,omitempty"`

	// username search filter
	UsernameSearchFilter string `json:"username_search_filter,omitempty"`
}

IdpConfigurationActiveDirectory idp configuration active directory

swagger:model IdpConfigurationActiveDirectory

func (*IdpConfigurationActiveDirectory) ContextValidate

func (m *IdpConfigurationActiveDirectory) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this idp configuration active directory based on context it is used

func (*IdpConfigurationActiveDirectory) MarshalBinary

func (m *IdpConfigurationActiveDirectory) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*IdpConfigurationActiveDirectory) UnmarshalBinary

func (m *IdpConfigurationActiveDirectory) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*IdpConfigurationActiveDirectory) Validate

Validate validates this idp configuration active directory

type IdpConfigurationKeysItems0

type IdpConfigurationKeysItems0 struct {

	// access key
	// Required: true
	AccessKey *string `json:"access_key"`

	// secret key
	// Required: true
	SecretKey *string `json:"secret_key"`
}

IdpConfigurationKeysItems0 idp configuration keys items0

swagger:model IdpConfigurationKeysItems0

func (*IdpConfigurationKeysItems0) ContextValidate

func (m *IdpConfigurationKeysItems0) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this idp configuration keys items0 based on context it is used

func (*IdpConfigurationKeysItems0) MarshalBinary

func (m *IdpConfigurationKeysItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*IdpConfigurationKeysItems0) UnmarshalBinary

func (m *IdpConfigurationKeysItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*IdpConfigurationKeysItems0) Validate

func (m *IdpConfigurationKeysItems0) Validate(formats strfmt.Registry) error

Validate validates this idp configuration keys items0

type IdpConfigurationOidc

type IdpConfigurationOidc struct {

	// callback url
	CallbackURL string `json:"callback_url,omitempty"`

	// claim name
	// Required: true
	ClaimName *string `json:"claim_name"`

	// client id
	// Required: true
	ClientID *string `json:"client_id"`

	// configuration url
	// Required: true
	ConfigurationURL *string `json:"configuration_url"`

	// scopes
	Scopes string `json:"scopes,omitempty"`

	// secret id
	// Required: true
	SecretID *string `json:"secret_id"`
}

IdpConfigurationOidc idp configuration oidc

swagger:model IdpConfigurationOidc

func (*IdpConfigurationOidc) ContextValidate

func (m *IdpConfigurationOidc) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this idp configuration oidc based on context it is used

func (*IdpConfigurationOidc) MarshalBinary

func (m *IdpConfigurationOidc) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*IdpConfigurationOidc) UnmarshalBinary

func (m *IdpConfigurationOidc) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*IdpConfigurationOidc) Validate

func (m *IdpConfigurationOidc) Validate(formats strfmt.Registry) error

Validate validates this idp configuration oidc

type ImageRegistry

type ImageRegistry struct {

	// password
	// Required: true
	Password *string `json:"password"`

	// registry
	// Required: true
	Registry *string `json:"registry"`

	// username
	// Required: true
	Username *string `json:"username"`
}

ImageRegistry image registry

swagger:model imageRegistry

func (*ImageRegistry) ContextValidate

func (m *ImageRegistry) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this image registry based on context it is used

func (*ImageRegistry) MarshalBinary

func (m *ImageRegistry) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ImageRegistry) UnmarshalBinary

func (m *ImageRegistry) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ImageRegistry) Validate

func (m *ImageRegistry) Validate(formats strfmt.Registry) error

Validate validates this image registry

type KeyPairConfiguration

type KeyPairConfiguration struct {

	// crt
	// Required: true
	Crt *string `json:"crt"`

	// key
	// Required: true
	Key *string `json:"key"`
}

KeyPairConfiguration key pair configuration

swagger:model keyPairConfiguration

func (*KeyPairConfiguration) ContextValidate

func (m *KeyPairConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this key pair configuration based on context it is used

func (*KeyPairConfiguration) MarshalBinary

func (m *KeyPairConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*KeyPairConfiguration) UnmarshalBinary

func (m *KeyPairConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*KeyPairConfiguration) Validate

func (m *KeyPairConfiguration) Validate(formats strfmt.Registry) error

Validate validates this key pair configuration

type Label

type Label struct {

	// key
	Key string `json:"key,omitempty"`

	// value
	Value string `json:"value,omitempty"`
}

Label label

swagger:model label

func (*Label) ContextValidate

func (m *Label) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this label based on context it is used

func (*Label) MarshalBinary

func (m *Label) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Label) UnmarshalBinary

func (m *Label) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Label) Validate

func (m *Label) Validate(formats strfmt.Registry) error

Validate validates this label

type License

type License struct {

	// account id
	AccountID int64 `json:"account_id,omitempty"`

	// email
	Email string `json:"email,omitempty"`

	// expires at
	ExpiresAt string `json:"expires_at,omitempty"`

	// organization
	Organization string `json:"organization,omitempty"`

	// plan
	Plan string `json:"plan,omitempty"`

	// storage capacity
	StorageCapacity int64 `json:"storage_capacity,omitempty"`
}

License license

swagger:model license

func (*License) ContextValidate

func (m *License) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this license based on context it is used

func (*License) MarshalBinary

func (m *License) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*License) UnmarshalBinary

func (m *License) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*License) Validate

func (m *License) Validate(formats strfmt.Registry) error

Validate validates this license

type LifecycleTag

type LifecycleTag struct {

	// key
	Key string `json:"key,omitempty"`

	// value
	Value string `json:"value,omitempty"`
}

LifecycleTag lifecycle tag

swagger:model lifecycleTag

func (*LifecycleTag) ContextValidate

func (m *LifecycleTag) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this lifecycle tag based on context it is used

func (*LifecycleTag) MarshalBinary

func (m *LifecycleTag) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LifecycleTag) UnmarshalBinary

func (m *LifecycleTag) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LifecycleTag) Validate

func (m *LifecycleTag) Validate(formats strfmt.Registry) error

Validate validates this lifecycle tag

type ListAccessRulesResponse

type ListAccessRulesResponse struct {

	// list of policies
	AccessRules []*AccessRule `json:"accessRules"`

	// total number of policies
	Total int64 `json:"total,omitempty"`
}

ListAccessRulesResponse list access rules response

swagger:model listAccessRulesResponse

func (*ListAccessRulesResponse) ContextValidate

func (m *ListAccessRulesResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list access rules response based on the context it is used

func (*ListAccessRulesResponse) MarshalBinary

func (m *ListAccessRulesResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListAccessRulesResponse) UnmarshalBinary

func (m *ListAccessRulesResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListAccessRulesResponse) Validate

func (m *ListAccessRulesResponse) Validate(formats strfmt.Registry) error

Validate validates this list access rules response

type ListBucketEventsResponse

type ListBucketEventsResponse struct {

	// events
	Events []*NotificationConfig `json:"events"`

	// total number of bucket events
	Total int64 `json:"total,omitempty"`
}

ListBucketEventsResponse list bucket events response

swagger:model listBucketEventsResponse

func (*ListBucketEventsResponse) ContextValidate

func (m *ListBucketEventsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list bucket events response based on the context it is used

func (*ListBucketEventsResponse) MarshalBinary

func (m *ListBucketEventsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListBucketEventsResponse) UnmarshalBinary

func (m *ListBucketEventsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListBucketEventsResponse) Validate

func (m *ListBucketEventsResponse) Validate(formats strfmt.Registry) error

Validate validates this list bucket events response

type ListBucketsResponse

type ListBucketsResponse struct {

	// list of resulting buckets
	Buckets []*Bucket `json:"buckets"`

	// number of buckets accessible to the user
	Total int64 `json:"total,omitempty"`
}

ListBucketsResponse list buckets response

swagger:model listBucketsResponse

func (*ListBucketsResponse) ContextValidate

func (m *ListBucketsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list buckets response based on the context it is used

func (*ListBucketsResponse) MarshalBinary

func (m *ListBucketsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListBucketsResponse) UnmarshalBinary

func (m *ListBucketsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListBucketsResponse) Validate

func (m *ListBucketsResponse) Validate(formats strfmt.Registry) error

Validate validates this list buckets response

type ListConfigResponse

type ListConfigResponse struct {

	// configurations
	Configurations []*ConfigDescription `json:"configurations"`

	// total number of configurations
	Total int64 `json:"total,omitempty"`
}

ListConfigResponse list config response

swagger:model listConfigResponse

func (*ListConfigResponse) ContextValidate

func (m *ListConfigResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list config response based on the context it is used

func (*ListConfigResponse) MarshalBinary

func (m *ListConfigResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListConfigResponse) UnmarshalBinary

func (m *ListConfigResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListConfigResponse) Validate

func (m *ListConfigResponse) Validate(formats strfmt.Registry) error

Validate validates this list config response

type ListExternalBucketsParams

type ListExternalBucketsParams struct {

	// access key
	// Required: true
	// Min Length: 3
	AccessKey *string `json:"accessKey"`

	// region
	Region string `json:"region,omitempty"`

	// secret key
	// Required: true
	// Min Length: 8
	SecretKey *string `json:"secretKey"`

	// target URL
	// Required: true
	TargetURL *string `json:"targetURL"`

	// use TLS
	// Required: true
	UseTLS *bool `json:"useTLS"`
}

ListExternalBucketsParams list external buckets params

swagger:model listExternalBucketsParams

func (*ListExternalBucketsParams) ContextValidate

func (m *ListExternalBucketsParams) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this list external buckets params based on context it is used

func (*ListExternalBucketsParams) MarshalBinary

func (m *ListExternalBucketsParams) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListExternalBucketsParams) UnmarshalBinary

func (m *ListExternalBucketsParams) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListExternalBucketsParams) Validate

func (m *ListExternalBucketsParams) Validate(formats strfmt.Registry) error

Validate validates this list external buckets params

type ListGroupsResponse

type ListGroupsResponse struct {

	// list of groups
	Groups []string `json:"groups"`

	// total number of groups
	Total int64 `json:"total,omitempty"`
}

ListGroupsResponse list groups response

swagger:model listGroupsResponse

func (*ListGroupsResponse) ContextValidate

func (m *ListGroupsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this list groups response based on context it is used

func (*ListGroupsResponse) MarshalBinary

func (m *ListGroupsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListGroupsResponse) UnmarshalBinary

func (m *ListGroupsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListGroupsResponse) Validate

func (m *ListGroupsResponse) Validate(formats strfmt.Registry) error

Validate validates this list groups response

type ListObjectsResponse

type ListObjectsResponse struct {

	// list of resulting objects
	Objects []*BucketObject `json:"objects"`

	// number of objects
	Total int64 `json:"total,omitempty"`
}

ListObjectsResponse list objects response

swagger:model listObjectsResponse

func (*ListObjectsResponse) ContextValidate

func (m *ListObjectsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list objects response based on the context it is used

func (*ListObjectsResponse) MarshalBinary

func (m *ListObjectsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListObjectsResponse) UnmarshalBinary

func (m *ListObjectsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListObjectsResponse) Validate

func (m *ListObjectsResponse) Validate(formats strfmt.Registry) error

Validate validates this list objects response

type ListPVCsResponse

type ListPVCsResponse struct {

	// pvcs
	Pvcs []*PvcsListResponse `json:"pvcs"`
}

ListPVCsResponse list p v cs response

swagger:model listPVCsResponse

func (*ListPVCsResponse) ContextValidate

func (m *ListPVCsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list p v cs response based on the context it is used

func (*ListPVCsResponse) MarshalBinary

func (m *ListPVCsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListPVCsResponse) UnmarshalBinary

func (m *ListPVCsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListPVCsResponse) Validate

func (m *ListPVCsResponse) Validate(formats strfmt.Registry) error

Validate validates this list p v cs response

type ListPoliciesResponse

type ListPoliciesResponse struct {

	// list of policies
	Policies []*Policy `json:"policies"`

	// total number of policies
	Total int64 `json:"total,omitempty"`
}

ListPoliciesResponse list policies response

swagger:model listPoliciesResponse

func (*ListPoliciesResponse) ContextValidate

func (m *ListPoliciesResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list policies response based on the context it is used

func (*ListPoliciesResponse) MarshalBinary

func (m *ListPoliciesResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListPoliciesResponse) UnmarshalBinary

func (m *ListPoliciesResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListPoliciesResponse) Validate

func (m *ListPoliciesResponse) Validate(formats strfmt.Registry) error

Validate validates this list policies response

type ListRemoteBucketsResponse

type ListRemoteBucketsResponse struct {

	// list of remote buckets
	Buckets []*RemoteBucket `json:"buckets"`

	// number of remote buckets accessible to user
	Total int64 `json:"total,omitempty"`
}

ListRemoteBucketsResponse list remote buckets response

swagger:model listRemoteBucketsResponse

func (*ListRemoteBucketsResponse) ContextValidate

func (m *ListRemoteBucketsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list remote buckets response based on the context it is used

func (*ListRemoteBucketsResponse) MarshalBinary

func (m *ListRemoteBucketsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListRemoteBucketsResponse) UnmarshalBinary

func (m *ListRemoteBucketsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListRemoteBucketsResponse) Validate

func (m *ListRemoteBucketsResponse) Validate(formats strfmt.Registry) error

Validate validates this list remote buckets response

type ListTenantsResponse

type ListTenantsResponse struct {

	// list of resulting tenants
	Tenants []*TenantList `json:"tenants"`

	// number of tenants accessible to tenant user
	Total int64 `json:"total,omitempty"`
}

ListTenantsResponse list tenants response

swagger:model listTenantsResponse

func (*ListTenantsResponse) ContextValidate

func (m *ListTenantsResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list tenants response based on the context it is used

func (*ListTenantsResponse) MarshalBinary

func (m *ListTenantsResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListTenantsResponse) UnmarshalBinary

func (m *ListTenantsResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListTenantsResponse) Validate

func (m *ListTenantsResponse) Validate(formats strfmt.Registry) error

Validate validates this list tenants response

type ListUsersResponse

type ListUsersResponse struct {

	// list of resulting users
	Users []*User `json:"users"`
}

ListUsersResponse list users response

swagger:model listUsersResponse

func (*ListUsersResponse) ContextValidate

func (m *ListUsersResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this list users response based on the context it is used

func (*ListUsersResponse) MarshalBinary

func (m *ListUsersResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ListUsersResponse) UnmarshalBinary

func (m *ListUsersResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ListUsersResponse) Validate

func (m *ListUsersResponse) Validate(formats strfmt.Registry) error

Validate validates this list users response

type LogSearchConfiguration

type LogSearchConfiguration struct {

	// image
	Image string `json:"image,omitempty"`

	// postgres image
	PostgresImage string `json:"postgres_image,omitempty"`

	// postgres init image
	PostgresInitImage string `json:"postgres_init_image,omitempty"`

	// postgres security context
	PostgresSecurityContext *SecurityContext `json:"postgres_securityContext,omitempty"`

	// security context
	SecurityContext *SecurityContext `json:"securityContext,omitempty"`

	// storage class
	StorageClass string `json:"storageClass,omitempty"`

	// storage size
	StorageSize *float64 `json:"storageSize,omitempty"`
}

LogSearchConfiguration log search configuration

swagger:model logSearchConfiguration

func (*LogSearchConfiguration) ContextValidate

func (m *LogSearchConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this log search configuration based on the context it is used

func (*LogSearchConfiguration) MarshalBinary

func (m *LogSearchConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LogSearchConfiguration) UnmarshalBinary

func (m *LogSearchConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LogSearchConfiguration) Validate

func (m *LogSearchConfiguration) Validate(formats strfmt.Registry) error

Validate validates this log search configuration

type LogSearchResponse

type LogSearchResponse struct {

	// list of log search responses
	Results interface{} `json:"results,omitempty"`
}

LogSearchResponse log search response

swagger:model logSearchResponse

func (*LogSearchResponse) ContextValidate

func (m *LogSearchResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this log search response based on context it is used

func (*LogSearchResponse) MarshalBinary

func (m *LogSearchResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LogSearchResponse) UnmarshalBinary

func (m *LogSearchResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LogSearchResponse) Validate

func (m *LogSearchResponse) Validate(formats strfmt.Registry) error

Validate validates this log search response

type LoginDetails

type LoginDetails struct {

	// login strategy
	// Enum: [form redirect service-account]
	LoginStrategy string `json:"loginStrategy,omitempty"`

	// redirect
	Redirect string `json:"redirect,omitempty"`
}

LoginDetails login details

swagger:model loginDetails

func (*LoginDetails) ContextValidate

func (m *LoginDetails) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this login details based on context it is used

func (*LoginDetails) MarshalBinary

func (m *LoginDetails) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LoginDetails) UnmarshalBinary

func (m *LoginDetails) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LoginDetails) Validate

func (m *LoginDetails) Validate(formats strfmt.Registry) error

Validate validates this login details

type LoginOauth2AuthRequest

type LoginOauth2AuthRequest struct {

	// code
	// Required: true
	Code *string `json:"code"`

	// state
	// Required: true
	State *string `json:"state"`
}

LoginOauth2AuthRequest login oauth2 auth request

swagger:model loginOauth2AuthRequest

func (*LoginOauth2AuthRequest) ContextValidate

func (m *LoginOauth2AuthRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this login oauth2 auth request based on context it is used

func (*LoginOauth2AuthRequest) MarshalBinary

func (m *LoginOauth2AuthRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LoginOauth2AuthRequest) UnmarshalBinary

func (m *LoginOauth2AuthRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LoginOauth2AuthRequest) Validate

func (m *LoginOauth2AuthRequest) Validate(formats strfmt.Registry) error

Validate validates this login oauth2 auth request

type LoginOperatorRequest

type LoginOperatorRequest struct {

	// jwt
	// Required: true
	Jwt *string `json:"jwt"`
}

LoginOperatorRequest login operator request

swagger:model loginOperatorRequest

func (*LoginOperatorRequest) ContextValidate

func (m *LoginOperatorRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this login operator request based on context it is used

func (*LoginOperatorRequest) MarshalBinary

func (m *LoginOperatorRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LoginOperatorRequest) UnmarshalBinary

func (m *LoginOperatorRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LoginOperatorRequest) Validate

func (m *LoginOperatorRequest) Validate(formats strfmt.Registry) error

Validate validates this login operator request

type LoginRequest

type LoginRequest struct {

	// access key
	// Required: true
	AccessKey *string `json:"accessKey"`

	// secret key
	// Required: true
	SecretKey *string `json:"secretKey"`
}

LoginRequest login request

swagger:model loginRequest

func (*LoginRequest) ContextValidate

func (m *LoginRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this login request based on context it is used

func (*LoginRequest) MarshalBinary

func (m *LoginRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LoginRequest) UnmarshalBinary

func (m *LoginRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LoginRequest) Validate

func (m *LoginRequest) Validate(formats strfmt.Registry) error

Validate validates this login request

type LoginResponse

type LoginResponse struct {

	// session Id
	SessionID string `json:"sessionId,omitempty"`
}

LoginResponse login response

swagger:model loginResponse

func (*LoginResponse) ContextValidate

func (m *LoginResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this login response based on context it is used

func (*LoginResponse) MarshalBinary

func (m *LoginResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*LoginResponse) UnmarshalBinary

func (m *LoginResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*LoginResponse) Validate

func (m *LoginResponse) Validate(formats strfmt.Registry) error

Validate validates this login response

type MakeBucketRequest

type MakeBucketRequest struct {

	// locking
	Locking bool `json:"locking,omitempty"`

	// name
	// Required: true
	Name *string `json:"name"`

	// quota
	Quota *SetBucketQuota `json:"quota,omitempty"`

	// retention
	Retention *PutBucketRetentionRequest `json:"retention,omitempty"`

	// versioning
	Versioning bool `json:"versioning,omitempty"`
}

MakeBucketRequest make bucket request

swagger:model makeBucketRequest

func (*MakeBucketRequest) ContextValidate

func (m *MakeBucketRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this make bucket request based on the context it is used

func (*MakeBucketRequest) MarshalBinary

func (m *MakeBucketRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MakeBucketRequest) UnmarshalBinary

func (m *MakeBucketRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MakeBucketRequest) Validate

func (m *MakeBucketRequest) Validate(formats strfmt.Registry) error

Validate validates this make bucket request

type MaxAllocatableMemResponse

type MaxAllocatableMemResponse struct {

	// max memory
	MaxMemory int64 `json:"max_memory,omitempty"`
}

MaxAllocatableMemResponse max allocatable mem response

swagger:model maxAllocatableMemResponse

func (*MaxAllocatableMemResponse) ContextValidate

func (m *MaxAllocatableMemResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this max allocatable mem response based on context it is used

func (*MaxAllocatableMemResponse) MarshalBinary

func (m *MaxAllocatableMemResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MaxAllocatableMemResponse) UnmarshalBinary

func (m *MaxAllocatableMemResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MaxAllocatableMemResponse) Validate

func (m *MaxAllocatableMemResponse) Validate(formats strfmt.Registry) error

Validate validates this max allocatable mem response

type Metadata

type Metadata struct {

	// object metadata
	ObjectMetadata interface{} `json:"objectMetadata,omitempty"`
}

Metadata metadata

swagger:model metadata

func (*Metadata) ContextValidate

func (m *Metadata) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this metadata based on context it is used

func (*Metadata) MarshalBinary

func (m *Metadata) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Metadata) UnmarshalBinary

func (m *Metadata) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Metadata) Validate

func (m *Metadata) Validate(formats strfmt.Registry) error

Validate validates this metadata

type MetadataFields

type MetadataFields struct {

	// annotations
	Annotations map[string]string `json:"annotations,omitempty"`

	// labels
	Labels map[string]string `json:"labels,omitempty"`

	// node selector
	NodeSelector map[string]string `json:"node_selector,omitempty"`
}

MetadataFields metadata fields

swagger:model metadataFields

func (*MetadataFields) ContextValidate

func (m *MetadataFields) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this metadata fields based on context it is used

func (*MetadataFields) MarshalBinary

func (m *MetadataFields) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MetadataFields) UnmarshalBinary

func (m *MetadataFields) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MetadataFields) Validate

func (m *MetadataFields) Validate(formats strfmt.Registry) error

Validate validates this metadata fields

type MultiBucketReplication

type MultiBucketReplication struct {

	// access key
	// Required: true
	// Min Length: 3
	AccessKey *string `json:"accessKey"`

	// bandwidth
	Bandwidth int64 `json:"bandwidth,omitempty"`

	// buckets relation
	// Required: true
	BucketsRelation []*MultiBucketsRelation `json:"bucketsRelation"`

	// health check period
	HealthCheckPeriod int32 `json:"healthCheckPeriod,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// priority
	Priority int32 `json:"priority,omitempty"`

	// region
	Region string `json:"region,omitempty"`

	// replicate delete markers
	ReplicateDeleteMarkers bool `json:"replicateDeleteMarkers,omitempty"`

	// replicate deletes
	ReplicateDeletes bool `json:"replicateDeletes,omitempty"`

	// replicate metadata
	ReplicateMetadata bool `json:"replicateMetadata,omitempty"`

	// secret key
	// Required: true
	// Min Length: 8
	SecretKey *string `json:"secretKey"`

	// storage class
	StorageClass string `json:"storageClass,omitempty"`

	// sync mode
	// Enum: [async sync]
	SyncMode *string `json:"syncMode,omitempty"`

	// tags
	Tags string `json:"tags,omitempty"`

	// target URL
	// Required: true
	TargetURL *string `json:"targetURL"`
}

MultiBucketReplication multi bucket replication

swagger:model multiBucketReplication

func (*MultiBucketReplication) ContextValidate

func (m *MultiBucketReplication) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this multi bucket replication based on the context it is used

func (*MultiBucketReplication) MarshalBinary

func (m *MultiBucketReplication) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MultiBucketReplication) UnmarshalBinary

func (m *MultiBucketReplication) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MultiBucketReplication) Validate

func (m *MultiBucketReplication) Validate(formats strfmt.Registry) error

Validate validates this multi bucket replication

type MultiBucketReplicationEdit

type MultiBucketReplicationEdit struct {

	// arn
	Arn string `json:"arn,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// priority
	Priority int32 `json:"priority,omitempty"`

	// replicate delete markers
	ReplicateDeleteMarkers bool `json:"replicateDeleteMarkers,omitempty"`

	// replicate deletes
	ReplicateDeletes bool `json:"replicateDeletes,omitempty"`

	// replicate existing objects
	ReplicateExistingObjects bool `json:"replicateExistingObjects,omitempty"`

	// replicate metadata
	ReplicateMetadata bool `json:"replicateMetadata,omitempty"`

	// rule state
	RuleState bool `json:"ruleState,omitempty"`

	// storage class
	StorageClass string `json:"storageClass,omitempty"`

	// tags
	Tags string `json:"tags,omitempty"`
}

MultiBucketReplicationEdit multi bucket replication edit

swagger:model multiBucketReplicationEdit

func (*MultiBucketReplicationEdit) ContextValidate

func (m *MultiBucketReplicationEdit) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this multi bucket replication edit based on context it is used

func (*MultiBucketReplicationEdit) MarshalBinary

func (m *MultiBucketReplicationEdit) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MultiBucketReplicationEdit) UnmarshalBinary

func (m *MultiBucketReplicationEdit) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MultiBucketReplicationEdit) Validate

func (m *MultiBucketReplicationEdit) Validate(formats strfmt.Registry) error

Validate validates this multi bucket replication edit

type MultiBucketResponseItem

type MultiBucketResponseItem struct {

	// error string
	ErrorString string `json:"errorString,omitempty"`

	// origin bucket
	OriginBucket string `json:"originBucket,omitempty"`

	// target bucket
	TargetBucket string `json:"targetBucket,omitempty"`
}

MultiBucketResponseItem multi bucket response item

swagger:model multiBucketResponseItem

func (*MultiBucketResponseItem) ContextValidate

func (m *MultiBucketResponseItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this multi bucket response item based on context it is used

func (*MultiBucketResponseItem) MarshalBinary

func (m *MultiBucketResponseItem) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MultiBucketResponseItem) UnmarshalBinary

func (m *MultiBucketResponseItem) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MultiBucketResponseItem) Validate

func (m *MultiBucketResponseItem) Validate(formats strfmt.Registry) error

Validate validates this multi bucket response item

type MultiBucketResponseState

type MultiBucketResponseState struct {

	// replication state
	ReplicationState []*MultiBucketResponseItem `json:"replicationState"`
}

MultiBucketResponseState multi bucket response state

swagger:model multiBucketResponseState

func (*MultiBucketResponseState) ContextValidate

func (m *MultiBucketResponseState) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this multi bucket response state based on the context it is used

func (*MultiBucketResponseState) MarshalBinary

func (m *MultiBucketResponseState) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MultiBucketResponseState) UnmarshalBinary

func (m *MultiBucketResponseState) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MultiBucketResponseState) Validate

func (m *MultiBucketResponseState) Validate(formats strfmt.Registry) error

Validate validates this multi bucket response state

type MultiBucketsRelation

type MultiBucketsRelation struct {

	// destination bucket
	DestinationBucket string `json:"destinationBucket,omitempty"`

	// origin bucket
	OriginBucket string `json:"originBucket,omitempty"`
}

MultiBucketsRelation multi buckets relation

swagger:model multiBucketsRelation

func (*MultiBucketsRelation) ContextValidate

func (m *MultiBucketsRelation) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this multi buckets relation based on context it is used

func (*MultiBucketsRelation) MarshalBinary

func (m *MultiBucketsRelation) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*MultiBucketsRelation) UnmarshalBinary

func (m *MultiBucketsRelation) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*MultiBucketsRelation) Validate

func (m *MultiBucketsRelation) Validate(formats strfmt.Registry) error

Validate validates this multi buckets relation

type Namespace

type Namespace struct {

	// name
	// Required: true
	Name *string `json:"name"`
}

Namespace namespace

swagger:model namespace

func (*Namespace) ContextValidate

func (m *Namespace) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this namespace based on context it is used

func (*Namespace) MarshalBinary

func (m *Namespace) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Namespace) UnmarshalBinary

func (m *Namespace) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Namespace) Validate

func (m *Namespace) Validate(formats strfmt.Registry) error

Validate validates this namespace

type NodeLabels

type NodeLabels map[string][]string

NodeLabels node labels

swagger:model nodeLabels

func (NodeLabels) ContextValidate

func (m NodeLabels) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this node labels based on context it is used

func (NodeLabels) Validate

func (m NodeLabels) Validate(formats strfmt.Registry) error

Validate validates this node labels

type NodeMaxAllocatableResources

type NodeMaxAllocatableResources struct {

	// max allocatable cpu
	MaxAllocatableCPU int64 `json:"max_allocatable_cpu,omitempty"`

	// max allocatable mem
	MaxAllocatableMem int64 `json:"max_allocatable_mem,omitempty"`
}

NodeMaxAllocatableResources node max allocatable resources

swagger:model nodeMaxAllocatableResources

func (*NodeMaxAllocatableResources) ContextValidate

func (m *NodeMaxAllocatableResources) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this node max allocatable resources based on context it is used

func (*NodeMaxAllocatableResources) MarshalBinary

func (m *NodeMaxAllocatableResources) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NodeMaxAllocatableResources) UnmarshalBinary

func (m *NodeMaxAllocatableResources) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NodeMaxAllocatableResources) Validate

func (m *NodeMaxAllocatableResources) Validate(formats strfmt.Registry) error

Validate validates this node max allocatable resources

type NodeSelector

type NodeSelector struct {

	// key
	Key string `json:"key,omitempty"`

	// value
	Value string `json:"value,omitempty"`
}

NodeSelector node selector

swagger:model nodeSelector

func (*NodeSelector) ContextValidate

func (m *NodeSelector) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this node selector based on context it is used

func (*NodeSelector) MarshalBinary

func (m *NodeSelector) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NodeSelector) UnmarshalBinary

func (m *NodeSelector) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NodeSelector) Validate

func (m *NodeSelector) Validate(formats strfmt.Registry) error

Validate validates this node selector

type NodeSelectorTerm

type NodeSelectorTerm struct {

	// A list of node selector requirements by node's labels.
	MatchExpressions []*NodeSelectorTermMatchExpressionsItems0 `json:"matchExpressions"`

	// A list of node selector requirements by node's fields.
	MatchFields []*NodeSelectorTermMatchFieldsItems0 `json:"matchFields"`
}

NodeSelectorTerm A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.

swagger:model nodeSelectorTerm

func (*NodeSelectorTerm) ContextValidate

func (m *NodeSelectorTerm) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this node selector term based on the context it is used

func (*NodeSelectorTerm) MarshalBinary

func (m *NodeSelectorTerm) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NodeSelectorTerm) UnmarshalBinary

func (m *NodeSelectorTerm) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NodeSelectorTerm) Validate

func (m *NodeSelectorTerm) Validate(formats strfmt.Registry) error

Validate validates this node selector term

type NodeSelectorTermMatchExpressionsItems0

type NodeSelectorTermMatchExpressionsItems0 struct {

	// The label key that the selector applies to.
	// Required: true
	Key *string `json:"key"`

	// Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
	// Required: true
	Operator *string `json:"operator"`

	// An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.
	Values []string `json:"values"`
}

NodeSelectorTermMatchExpressionsItems0 A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

swagger:model NodeSelectorTermMatchExpressionsItems0

func (*NodeSelectorTermMatchExpressionsItems0) ContextValidate

ContextValidate validates this node selector term match expressions items0 based on context it is used

func (*NodeSelectorTermMatchExpressionsItems0) MarshalBinary

func (m *NodeSelectorTermMatchExpressionsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NodeSelectorTermMatchExpressionsItems0) UnmarshalBinary

func (m *NodeSelectorTermMatchExpressionsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NodeSelectorTermMatchExpressionsItems0) Validate

Validate validates this node selector term match expressions items0

type NodeSelectorTermMatchFieldsItems0

type NodeSelectorTermMatchFieldsItems0 struct {

	// The label key that the selector applies to.
	// Required: true
	Key *string `json:"key"`

	// Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.
	// Required: true
	Operator *string `json:"operator"`

	// An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.
	Values []string `json:"values"`
}

NodeSelectorTermMatchFieldsItems0 A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

swagger:model NodeSelectorTermMatchFieldsItems0

func (*NodeSelectorTermMatchFieldsItems0) ContextValidate

func (m *NodeSelectorTermMatchFieldsItems0) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this node selector term match fields items0 based on context it is used

func (*NodeSelectorTermMatchFieldsItems0) MarshalBinary

func (m *NodeSelectorTermMatchFieldsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NodeSelectorTermMatchFieldsItems0) UnmarshalBinary

func (m *NodeSelectorTermMatchFieldsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NodeSelectorTermMatchFieldsItems0) Validate

Validate validates this node selector term match fields items0

type NofiticationService

type NofiticationService string

NofiticationService nofitication service

swagger:model nofiticationService

const (

	// NofiticationServiceWebhook captures enum value "webhook"
	NofiticationServiceWebhook NofiticationService = "webhook"

	// NofiticationServiceAmqp captures enum value "amqp"
	NofiticationServiceAmqp NofiticationService = "amqp"

	// NofiticationServiceKafka captures enum value "kafka"
	NofiticationServiceKafka NofiticationService = "kafka"

	// NofiticationServiceMqtt captures enum value "mqtt"
	NofiticationServiceMqtt NofiticationService = "mqtt"

	// NofiticationServiceNats captures enum value "nats"
	NofiticationServiceNats NofiticationService = "nats"

	// NofiticationServiceNsq captures enum value "nsq"
	NofiticationServiceNsq NofiticationService = "nsq"

	// NofiticationServiceMysql captures enum value "mysql"
	NofiticationServiceMysql NofiticationService = "mysql"

	// NofiticationServicePostgres captures enum value "postgres"
	NofiticationServicePostgres NofiticationService = "postgres"

	// NofiticationServiceElasticsearch captures enum value "elasticsearch"
	NofiticationServiceElasticsearch NofiticationService = "elasticsearch"

	// NofiticationServiceRedis captures enum value "redis"
	NofiticationServiceRedis NofiticationService = "redis"
)

func NewNofiticationService

func NewNofiticationService(value NofiticationService) *NofiticationService

func (NofiticationService) ContextValidate

func (m NofiticationService) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this nofitication service based on context it is used

func (NofiticationService) Pointer

Pointer returns a pointer to a freshly-allocated NofiticationService.

func (NofiticationService) Validate

func (m NofiticationService) Validate(formats strfmt.Registry) error

Validate validates this nofitication service

type NotifEndpointResponse

type NotifEndpointResponse struct {

	// notification endpoints
	NotificationEndpoints []*NotificationEndpointItem `json:"notification_endpoints"`
}

NotifEndpointResponse notif endpoint response

swagger:model notifEndpointResponse

func (*NotifEndpointResponse) ContextValidate

func (m *NotifEndpointResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this notif endpoint response based on the context it is used

func (*NotifEndpointResponse) MarshalBinary

func (m *NotifEndpointResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NotifEndpointResponse) UnmarshalBinary

func (m *NotifEndpointResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NotifEndpointResponse) Validate

func (m *NotifEndpointResponse) Validate(formats strfmt.Registry) error

Validate validates this notif endpoint response

type NotificationConfig

type NotificationConfig struct {

	// arn
	// Required: true
	Arn *string `json:"arn"`

	// filter specific type of event. Defaults to all event (default: '[put,delete,get]')
	Events []NotificationEventType `json:"events"`

	// id
	ID string `json:"id,omitempty"`

	// filter event associated to the specified prefix
	Prefix string `json:"prefix,omitempty"`

	// filter event associated to the specified suffix
	Suffix string `json:"suffix,omitempty"`
}

NotificationConfig notification config

swagger:model notificationConfig

func (*NotificationConfig) ContextValidate

func (m *NotificationConfig) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this notification config based on the context it is used

func (*NotificationConfig) MarshalBinary

func (m *NotificationConfig) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NotificationConfig) UnmarshalBinary

func (m *NotificationConfig) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NotificationConfig) Validate

func (m *NotificationConfig) Validate(formats strfmt.Registry) error

Validate validates this notification config

type NotificationDeleteRequest

type NotificationDeleteRequest struct {

	// filter specific type of event. Defaults to all event (default: '[put,delete,get]')
	// Required: true
	Events []NotificationEventType `json:"events"`

	// filter event associated to the specified prefix
	// Required: true
	Prefix *string `json:"prefix"`

	// filter event associated to the specified suffix
	// Required: true
	Suffix *string `json:"suffix"`
}

NotificationDeleteRequest notification delete request

swagger:model notificationDeleteRequest

func (*NotificationDeleteRequest) ContextValidate

func (m *NotificationDeleteRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this notification delete request based on the context it is used

func (*NotificationDeleteRequest) MarshalBinary

func (m *NotificationDeleteRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NotificationDeleteRequest) UnmarshalBinary

func (m *NotificationDeleteRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NotificationDeleteRequest) Validate

func (m *NotificationDeleteRequest) Validate(formats strfmt.Registry) error

Validate validates this notification delete request

type NotificationEndpoint

type NotificationEndpoint struct {

	// account id
	// Required: true
	AccountID *string `json:"account_id"`

	// properties
	// Required: true
	Properties map[string]string `json:"properties"`

	// service
	// Required: true
	Service *NofiticationService `json:"service"`
}

NotificationEndpoint notification endpoint

swagger:model notificationEndpoint

func (*NotificationEndpoint) ContextValidate

func (m *NotificationEndpoint) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this notification endpoint based on the context it is used

func (*NotificationEndpoint) MarshalBinary

func (m *NotificationEndpoint) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NotificationEndpoint) UnmarshalBinary

func (m *NotificationEndpoint) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NotificationEndpoint) Validate

func (m *NotificationEndpoint) Validate(formats strfmt.Registry) error

Validate validates this notification endpoint

type NotificationEndpointItem

type NotificationEndpointItem struct {

	// account id
	AccountID string `json:"account_id,omitempty"`

	// service
	Service NofiticationService `json:"service,omitempty"`

	// status
	Status string `json:"status,omitempty"`
}

NotificationEndpointItem notification endpoint item

swagger:model notificationEndpointItem

func (*NotificationEndpointItem) ContextValidate

func (m *NotificationEndpointItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this notification endpoint item based on the context it is used

func (*NotificationEndpointItem) MarshalBinary

func (m *NotificationEndpointItem) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*NotificationEndpointItem) UnmarshalBinary

func (m *NotificationEndpointItem) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*NotificationEndpointItem) Validate

func (m *NotificationEndpointItem) Validate(formats strfmt.Registry) error

Validate validates this notification endpoint item

type NotificationEventType

type NotificationEventType string

NotificationEventType notification event type

swagger:model notificationEventType

const (

	// NotificationEventTypePut captures enum value "put"
	NotificationEventTypePut NotificationEventType = "put"

	// NotificationEventTypeDelete captures enum value "delete"
	NotificationEventTypeDelete NotificationEventType = "delete"

	// NotificationEventTypeGet captures enum value "get"
	NotificationEventTypeGet NotificationEventType = "get"
)

func NewNotificationEventType

func NewNotificationEventType(value NotificationEventType) *NotificationEventType

func (NotificationEventType) ContextValidate

func (m NotificationEventType) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this notification event type based on context it is used

func (NotificationEventType) Pointer

Pointer returns a pointer to a freshly-allocated NotificationEventType.

func (NotificationEventType) Validate

func (m NotificationEventType) Validate(formats strfmt.Registry) error

Validate validates this notification event type

type ObjectBucketLifecycle

type ObjectBucketLifecycle struct {

	// expiration
	Expiration *ExpirationResponse `json:"expiration,omitempty"`

	// id
	ID string `json:"id,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// status
	Status string `json:"status,omitempty"`

	// tags
	Tags []*LifecycleTag `json:"tags"`

	// transition
	Transition *TransitionResponse `json:"transition,omitempty"`
}

ObjectBucketLifecycle object bucket lifecycle

swagger:model objectBucketLifecycle

func (*ObjectBucketLifecycle) ContextValidate

func (m *ObjectBucketLifecycle) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this object bucket lifecycle based on the context it is used

func (*ObjectBucketLifecycle) MarshalBinary

func (m *ObjectBucketLifecycle) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ObjectBucketLifecycle) UnmarshalBinary

func (m *ObjectBucketLifecycle) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ObjectBucketLifecycle) Validate

func (m *ObjectBucketLifecycle) Validate(formats strfmt.Registry) error

Validate validates this object bucket lifecycle

type ObjectLegalHoldStatus

type ObjectLegalHoldStatus string

ObjectLegalHoldStatus object legal hold status

swagger:model objectLegalHoldStatus

const (

	// ObjectLegalHoldStatusEnabled captures enum value "enabled"
	ObjectLegalHoldStatusEnabled ObjectLegalHoldStatus = "enabled"

	// ObjectLegalHoldStatusDisabled captures enum value "disabled"
	ObjectLegalHoldStatusDisabled ObjectLegalHoldStatus = "disabled"
)

func NewObjectLegalHoldStatus

func NewObjectLegalHoldStatus(value ObjectLegalHoldStatus) *ObjectLegalHoldStatus

func (ObjectLegalHoldStatus) ContextValidate

func (m ObjectLegalHoldStatus) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this object legal hold status based on context it is used

func (ObjectLegalHoldStatus) Pointer

Pointer returns a pointer to a freshly-allocated ObjectLegalHoldStatus.

func (ObjectLegalHoldStatus) Validate

func (m ObjectLegalHoldStatus) Validate(formats strfmt.Registry) error

Validate validates this object legal hold status

type ObjectRetentionMode

type ObjectRetentionMode string

ObjectRetentionMode object retention mode

swagger:model objectRetentionMode

const (

	// ObjectRetentionModeGovernance captures enum value "governance"
	ObjectRetentionModeGovernance ObjectRetentionMode = "governance"

	// ObjectRetentionModeCompliance captures enum value "compliance"
	ObjectRetentionModeCompliance ObjectRetentionMode = "compliance"
)

func NewObjectRetentionMode

func NewObjectRetentionMode(value ObjectRetentionMode) *ObjectRetentionMode

func (ObjectRetentionMode) ContextValidate

func (m ObjectRetentionMode) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this object retention mode based on context it is used

func (ObjectRetentionMode) Pointer

Pointer returns a pointer to a freshly-allocated ObjectRetentionMode.

func (ObjectRetentionMode) Validate

func (m ObjectRetentionMode) Validate(formats strfmt.Registry) error

Validate validates this object retention mode

type ObjectRetentionUnit

type ObjectRetentionUnit string

ObjectRetentionUnit object retention unit

swagger:model objectRetentionUnit

const (

	// ObjectRetentionUnitDays captures enum value "days"
	ObjectRetentionUnitDays ObjectRetentionUnit = "days"

	// ObjectRetentionUnitYears captures enum value "years"
	ObjectRetentionUnitYears ObjectRetentionUnit = "years"
)

func NewObjectRetentionUnit

func NewObjectRetentionUnit(value ObjectRetentionUnit) *ObjectRetentionUnit

func (ObjectRetentionUnit) ContextValidate

func (m ObjectRetentionUnit) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this object retention unit based on context it is used

func (ObjectRetentionUnit) Pointer

Pointer returns a pointer to a freshly-allocated ObjectRetentionUnit.

func (ObjectRetentionUnit) Validate

func (m ObjectRetentionUnit) Validate(formats strfmt.Registry) error

Validate validates this object retention unit

type OperatorSessionResponse

type OperatorSessionResponse struct {

	// features
	Features []string `json:"features"`

	// operator
	Operator bool `json:"operator,omitempty"`

	// permissions
	Permissions map[string][]string `json:"permissions,omitempty"`

	// status
	// Enum: [ok]
	Status string `json:"status,omitempty"`
}

OperatorSessionResponse operator session response

swagger:model operatorSessionResponse

func (*OperatorSessionResponse) ContextValidate

func (m *OperatorSessionResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this operator session response based on context it is used

func (*OperatorSessionResponse) MarshalBinary

func (m *OperatorSessionResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*OperatorSessionResponse) UnmarshalBinary

func (m *OperatorSessionResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*OperatorSessionResponse) Validate

func (m *OperatorSessionResponse) Validate(formats strfmt.Registry) error

Validate validates this operator session response

type ParityResponse

type ParityResponse []string

ParityResponse parity response

swagger:model parityResponse

func (ParityResponse) ContextValidate

func (m ParityResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this parity response based on context it is used

func (ParityResponse) Validate

func (m ParityResponse) Validate(formats strfmt.Registry) error

Validate validates this parity response

type PodAffinityTerm

type PodAffinityTerm struct {

	// label selector
	LabelSelector *PodAffinityTermLabelSelector `json:"labelSelector,omitempty"`

	// namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means "this pod's namespace"
	Namespaces []string `json:"namespaces"`

	// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. Empty topologyKey is not allowed.
	// Required: true
	TopologyKey *string `json:"topologyKey"`
}

PodAffinityTerm Required. A pod affinity term, associated with the corresponding weight.

swagger:model podAffinityTerm

func (*PodAffinityTerm) ContextValidate

func (m *PodAffinityTerm) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pod affinity term based on the context it is used

func (*PodAffinityTerm) MarshalBinary

func (m *PodAffinityTerm) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PodAffinityTerm) UnmarshalBinary

func (m *PodAffinityTerm) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PodAffinityTerm) Validate

func (m *PodAffinityTerm) Validate(formats strfmt.Registry) error

Validate validates this pod affinity term

type PodAffinityTermLabelSelector

type PodAffinityTermLabelSelector struct {

	// matchExpressions is a list of label selector requirements. The requirements are ANDed.
	MatchExpressions []*PodAffinityTermLabelSelectorMatchExpressionsItems0 `json:"matchExpressions"`

	// matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
	MatchLabels map[string]string `json:"matchLabels,omitempty"`
}

PodAffinityTermLabelSelector A label query over a set of resources, in this case pods.

swagger:model PodAffinityTermLabelSelector

func (*PodAffinityTermLabelSelector) ContextValidate

func (m *PodAffinityTermLabelSelector) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pod affinity term label selector based on the context it is used

func (*PodAffinityTermLabelSelector) MarshalBinary

func (m *PodAffinityTermLabelSelector) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PodAffinityTermLabelSelector) UnmarshalBinary

func (m *PodAffinityTermLabelSelector) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PodAffinityTermLabelSelector) Validate

func (m *PodAffinityTermLabelSelector) Validate(formats strfmt.Registry) error

Validate validates this pod affinity term label selector

type PodAffinityTermLabelSelectorMatchExpressionsItems0

type PodAffinityTermLabelSelectorMatchExpressionsItems0 struct {

	// key is the label key that the selector applies to.
	// Required: true
	Key *string `json:"key"`

	// operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
	// Required: true
	Operator *string `json:"operator"`

	// values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
	Values []string `json:"values"`
}

PodAffinityTermLabelSelectorMatchExpressionsItems0 A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

swagger:model PodAffinityTermLabelSelectorMatchExpressionsItems0

func (*PodAffinityTermLabelSelectorMatchExpressionsItems0) ContextValidate

ContextValidate validates this pod affinity term label selector match expressions items0 based on context it is used

func (*PodAffinityTermLabelSelectorMatchExpressionsItems0) MarshalBinary

MarshalBinary interface implementation

func (*PodAffinityTermLabelSelectorMatchExpressionsItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*PodAffinityTermLabelSelectorMatchExpressionsItems0) Validate

Validate validates this pod affinity term label selector match expressions items0

type Policy

type Policy struct {

	// name
	Name string `json:"name,omitempty"`

	// policy
	Policy string `json:"policy,omitempty"`
}

Policy policy

swagger:model policy

func (*Policy) ContextValidate

func (m *Policy) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this policy based on context it is used

func (*Policy) MarshalBinary

func (m *Policy) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Policy) UnmarshalBinary

func (m *Policy) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Policy) Validate

func (m *Policy) Validate(formats strfmt.Registry) error

Validate validates this policy

type PolicyArgs

type PolicyArgs struct {

	// action
	Action string `json:"action,omitempty"`

	// bucket name
	BucketName string `json:"bucket_name,omitempty"`

	// id
	ID string `json:"id,omitempty"`
}

PolicyArgs policy args

swagger:model policyArgs

func (*PolicyArgs) ContextValidate

func (m *PolicyArgs) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this policy args based on context it is used

func (*PolicyArgs) MarshalBinary

func (m *PolicyArgs) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PolicyArgs) UnmarshalBinary

func (m *PolicyArgs) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PolicyArgs) Validate

func (m *PolicyArgs) Validate(formats strfmt.Registry) error

Validate validates this policy args

type PolicyEntity

type PolicyEntity string

PolicyEntity policy entity

swagger:model policyEntity

const (

	// PolicyEntityUser captures enum value "user"
	PolicyEntityUser PolicyEntity = "user"

	// PolicyEntityGroup captures enum value "group"
	PolicyEntityGroup PolicyEntity = "group"
)

func NewPolicyEntity

func NewPolicyEntity(value PolicyEntity) *PolicyEntity

func (PolicyEntity) ContextValidate

func (m PolicyEntity) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this policy entity based on context it is used

func (PolicyEntity) Pointer

func (m PolicyEntity) Pointer() *PolicyEntity

Pointer returns a pointer to a freshly-allocated PolicyEntity.

func (PolicyEntity) Validate

func (m PolicyEntity) Validate(formats strfmt.Registry) error

Validate validates this policy entity

type Pool

type Pool struct {

	// affinity
	Affinity *PoolAffinity `json:"affinity,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/
	NodeSelector map[string]string `json:"node_selector,omitempty"`

	// resources
	Resources *PoolResources `json:"resources,omitempty"`

	// security context
	SecurityContext *SecurityContext `json:"securityContext,omitempty"`

	// servers
	// Required: true
	Servers *int64 `json:"servers"`

	// tolerations
	Tolerations PoolTolerations `json:"tolerations,omitempty"`

	// volume configuration
	// Required: true
	VolumeConfiguration *PoolVolumeConfiguration `json:"volume_configuration"`

	// volumes per server
	// Required: true
	VolumesPerServer *int32 `json:"volumes_per_server"`
}

Pool pool

swagger:model pool

func (*Pool) ContextValidate

func (m *Pool) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool based on the context it is used

func (*Pool) MarshalBinary

func (m *Pool) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Pool) UnmarshalBinary

func (m *Pool) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Pool) Validate

func (m *Pool) Validate(formats strfmt.Registry) error

Validate validates this pool

type PoolAffinity

type PoolAffinity struct {

	// node affinity
	NodeAffinity *PoolAffinityNodeAffinity `json:"nodeAffinity,omitempty"`

	// pod affinity
	PodAffinity *PoolAffinityPodAffinity `json:"podAffinity,omitempty"`

	// pod anti affinity
	PodAntiAffinity *PoolAffinityPodAntiAffinity `json:"podAntiAffinity,omitempty"`
}

PoolAffinity If specified, affinity will define the pod's scheduling constraints

swagger:model poolAffinity

func (*PoolAffinity) ContextValidate

func (m *PoolAffinity) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool affinity based on the context it is used

func (*PoolAffinity) MarshalBinary

func (m *PoolAffinity) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolAffinity) UnmarshalBinary

func (m *PoolAffinity) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolAffinity) Validate

func (m *PoolAffinity) Validate(formats strfmt.Registry) error

Validate validates this pool affinity

type PoolAffinityNodeAffinity

type PoolAffinityNodeAffinity struct {

	// The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.
	PreferredDuringSchedulingIgnoredDuringExecution []*PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 `json:"preferredDuringSchedulingIgnoredDuringExecution"`

	// required during scheduling ignored during execution
	RequiredDuringSchedulingIgnoredDuringExecution *PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution `json:"requiredDuringSchedulingIgnoredDuringExecution,omitempty"`
}

PoolAffinityNodeAffinity Describes node affinity scheduling rules for the pod.

swagger:model PoolAffinityNodeAffinity

func (*PoolAffinityNodeAffinity) ContextValidate

func (m *PoolAffinityNodeAffinity) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool affinity node affinity based on the context it is used

func (*PoolAffinityNodeAffinity) MarshalBinary

func (m *PoolAffinityNodeAffinity) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolAffinityNodeAffinity) UnmarshalBinary

func (m *PoolAffinityNodeAffinity) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolAffinityNodeAffinity) Validate

func (m *PoolAffinityNodeAffinity) Validate(formats strfmt.Registry) error

Validate validates this pool affinity node affinity

type PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0

type PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 struct {

	// A node selector term, associated with the corresponding weight.
	// Required: true
	Preference *NodeSelectorTerm `json:"preference"`

	// Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.
	// Required: true
	Weight *int32 `json:"weight"`
}

PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).

swagger:model PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0

func (*PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) ContextValidate

ContextValidate validate this pool affinity node affinity preferred during scheduling ignored during execution items0 based on the context it is used

func (*PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) MarshalBinary

MarshalBinary interface implementation

func (*PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*PoolAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) Validate

Validate validates this pool affinity node affinity preferred during scheduling ignored during execution items0

type PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution

type PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution struct {

	// Required. A list of node selector terms. The terms are ORed.
	// Required: true
	NodeSelectorTerms []*NodeSelectorTerm `json:"nodeSelectorTerms"`
}

PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.

swagger:model PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution

func (*PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution) ContextValidate

ContextValidate validate this pool affinity node affinity required during scheduling ignored during execution based on the context it is used

func (*PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution) MarshalBinary

MarshalBinary interface implementation

func (*PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution) UnmarshalBinary

UnmarshalBinary interface implementation

func (*PoolAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution) Validate

Validate validates this pool affinity node affinity required during scheduling ignored during execution

type PoolAffinityPodAffinity

type PoolAffinityPodAffinity struct {

	// The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
	PreferredDuringSchedulingIgnoredDuringExecution []*PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 `json:"preferredDuringSchedulingIgnoredDuringExecution"`

	// If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
	RequiredDuringSchedulingIgnoredDuringExecution []*PodAffinityTerm `json:"requiredDuringSchedulingIgnoredDuringExecution"`
}

PoolAffinityPodAffinity Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, pool, etc. as some other pod(s)).

swagger:model PoolAffinityPodAffinity

func (*PoolAffinityPodAffinity) ContextValidate

func (m *PoolAffinityPodAffinity) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool affinity pod affinity based on the context it is used

func (*PoolAffinityPodAffinity) MarshalBinary

func (m *PoolAffinityPodAffinity) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolAffinityPodAffinity) UnmarshalBinary

func (m *PoolAffinityPodAffinity) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolAffinityPodAffinity) Validate

func (m *PoolAffinityPodAffinity) Validate(formats strfmt.Registry) error

Validate validates this pool affinity pod affinity

type PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0

type PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 struct {

	// pod affinity term
	// Required: true
	PodAffinityTerm *PodAffinityTerm `json:"podAffinityTerm"`

	// weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
	// Required: true
	Weight *int32 `json:"weight"`
}

PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

swagger:model PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0

func (*PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) ContextValidate

ContextValidate validate this pool affinity pod affinity preferred during scheduling ignored during execution items0 based on the context it is used

func (*PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) MarshalBinary

MarshalBinary interface implementation

func (*PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*PoolAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) Validate

Validate validates this pool affinity pod affinity preferred during scheduling ignored during execution items0

type PoolAffinityPodAntiAffinity

type PoolAffinityPodAntiAffinity struct {

	// The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.
	PreferredDuringSchedulingIgnoredDuringExecution []*PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 `json:"preferredDuringSchedulingIgnoredDuringExecution"`

	// If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.
	RequiredDuringSchedulingIgnoredDuringExecution []*PodAffinityTerm `json:"requiredDuringSchedulingIgnoredDuringExecution"`
}

PoolAffinityPodAntiAffinity Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, pool, etc. as some other pod(s)).

swagger:model PoolAffinityPodAntiAffinity

func (*PoolAffinityPodAntiAffinity) ContextValidate

func (m *PoolAffinityPodAntiAffinity) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool affinity pod anti affinity based on the context it is used

func (*PoolAffinityPodAntiAffinity) MarshalBinary

func (m *PoolAffinityPodAntiAffinity) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolAffinityPodAntiAffinity) UnmarshalBinary

func (m *PoolAffinityPodAntiAffinity) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolAffinityPodAntiAffinity) Validate

func (m *PoolAffinityPodAntiAffinity) Validate(formats strfmt.Registry) error

Validate validates this pool affinity pod anti affinity

type PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0

type PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 struct {

	// pod affinity term
	// Required: true
	PodAffinityTerm *PodAffinityTerm `json:"podAffinityTerm"`

	// weight associated with matching the corresponding podAffinityTerm, in the range 1-100.
	// Required: true
	Weight *int32 `json:"weight"`
}

PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0 The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)

swagger:model PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0

func (*PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) ContextValidate

ContextValidate validate this pool affinity pod anti affinity preferred during scheduling ignored during execution items0 based on the context it is used

func (*PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) MarshalBinary

MarshalBinary interface implementation

func (*PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*PoolAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionItems0) Validate

Validate validates this pool affinity pod anti affinity preferred during scheduling ignored during execution items0

type PoolResources

type PoolResources struct {

	// Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
	Limits map[string]int64 `json:"limits,omitempty"`

	// Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/
	Requests map[string]int64 `json:"requests,omitempty"`
}

PoolResources If provided, use these requests and limit for cpu/memory resource allocation

swagger:model poolResources

func (*PoolResources) ContextValidate

func (m *PoolResources) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this pool resources based on context it is used

func (*PoolResources) MarshalBinary

func (m *PoolResources) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolResources) UnmarshalBinary

func (m *PoolResources) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolResources) Validate

func (m *PoolResources) Validate(formats strfmt.Registry) error

Validate validates this pool resources

type PoolTolerationSeconds

type PoolTolerationSeconds struct {

	// seconds
	// Required: true
	Seconds *int64 `json:"seconds"`
}

PoolTolerationSeconds TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.

swagger:model poolTolerationSeconds

func (*PoolTolerationSeconds) ContextValidate

func (m *PoolTolerationSeconds) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this pool toleration seconds based on context it is used

func (*PoolTolerationSeconds) MarshalBinary

func (m *PoolTolerationSeconds) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolTolerationSeconds) UnmarshalBinary

func (m *PoolTolerationSeconds) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolTolerationSeconds) Validate

func (m *PoolTolerationSeconds) Validate(formats strfmt.Registry) error

Validate validates this pool toleration seconds

type PoolTolerations

type PoolTolerations []*PoolTolerationsItems0

PoolTolerations Tolerations allows users to set entries like effect, key, operator, value.

swagger:model poolTolerations

func (PoolTolerations) ContextValidate

func (m PoolTolerations) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool tolerations based on the context it is used

func (PoolTolerations) Validate

func (m PoolTolerations) Validate(formats strfmt.Registry) error

Validate validates this pool tolerations

type PoolTolerationsItems0

type PoolTolerationsItems0 struct {

	// Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.
	Effect string `json:"effect,omitempty"`

	// Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.
	Key string `json:"key,omitempty"`

	// Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.
	Operator string `json:"operator,omitempty"`

	// toleration seconds
	TolerationSeconds *PoolTolerationSeconds `json:"tolerationSeconds,omitempty"`

	// Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.
	Value string `json:"value,omitempty"`
}

PoolTolerationsItems0 The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.

swagger:model PoolTolerationsItems0

func (*PoolTolerationsItems0) ContextValidate

func (m *PoolTolerationsItems0) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool tolerations items0 based on the context it is used

func (*PoolTolerationsItems0) MarshalBinary

func (m *PoolTolerationsItems0) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolTolerationsItems0) UnmarshalBinary

func (m *PoolTolerationsItems0) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolTolerationsItems0) Validate

func (m *PoolTolerationsItems0) Validate(formats strfmt.Registry) error

Validate validates this pool tolerations items0

type PoolUpdateRequest

type PoolUpdateRequest struct {

	// pools
	// Required: true
	Pools []*Pool `json:"pools"`
}

PoolUpdateRequest pool update request

swagger:model poolUpdateRequest

func (*PoolUpdateRequest) ContextValidate

func (m *PoolUpdateRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this pool update request based on the context it is used

func (*PoolUpdateRequest) MarshalBinary

func (m *PoolUpdateRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolUpdateRequest) UnmarshalBinary

func (m *PoolUpdateRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolUpdateRequest) Validate

func (m *PoolUpdateRequest) Validate(formats strfmt.Registry) error

Validate validates this pool update request

type PoolVolumeConfiguration

type PoolVolumeConfiguration struct {

	// annotations
	Annotations map[string]string `json:"annotations,omitempty"`

	// labels
	Labels map[string]string `json:"labels,omitempty"`

	// size
	// Required: true
	Size *int64 `json:"size"`

	// storage class name
	StorageClassName string `json:"storage_class_name,omitempty"`
}

PoolVolumeConfiguration pool volume configuration

swagger:model PoolVolumeConfiguration

func (*PoolVolumeConfiguration) ContextValidate

func (m *PoolVolumeConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this pool volume configuration based on context it is used

func (*PoolVolumeConfiguration) MarshalBinary

func (m *PoolVolumeConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PoolVolumeConfiguration) UnmarshalBinary

func (m *PoolVolumeConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PoolVolumeConfiguration) Validate

func (m *PoolVolumeConfiguration) Validate(formats strfmt.Registry) error

Validate validates this pool volume configuration

type PrefixAccessPair

type PrefixAccessPair struct {

	// access
	Access string `json:"access,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`
}

PrefixAccessPair prefix access pair

swagger:model prefixAccessPair

func (*PrefixAccessPair) ContextValidate

func (m *PrefixAccessPair) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this prefix access pair based on context it is used

func (*PrefixAccessPair) MarshalBinary

func (m *PrefixAccessPair) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PrefixAccessPair) UnmarshalBinary

func (m *PrefixAccessPair) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PrefixAccessPair) Validate

func (m *PrefixAccessPair) Validate(formats strfmt.Registry) error

Validate validates this prefix access pair

type PrefixWrapper

type PrefixWrapper struct {

	// prefix
	Prefix string `json:"prefix,omitempty"`
}

PrefixWrapper prefix wrapper

swagger:model prefixWrapper

func (*PrefixWrapper) ContextValidate

func (m *PrefixWrapper) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this prefix wrapper based on context it is used

func (*PrefixWrapper) MarshalBinary

func (m *PrefixWrapper) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PrefixWrapper) UnmarshalBinary

func (m *PrefixWrapper) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PrefixWrapper) Validate

func (m *PrefixWrapper) Validate(formats strfmt.Registry) error

Validate validates this prefix wrapper

type Principal

type Principal struct {

	// s t s access key ID
	STSAccessKeyID string `json:"STSAccessKeyID,omitempty"`

	// s t s secret access key
	STSSecretAccessKey string `json:"STSSecretAccessKey,omitempty"`

	// s t s session token
	STSSessionToken string `json:"STSSessionToken,omitempty"`

	// account access key
	AccountAccessKey string `json:"accountAccessKey,omitempty"`
}

Principal principal

swagger:model principal

func (*Principal) ContextValidate

func (m *Principal) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this principal based on context it is used

func (*Principal) MarshalBinary

func (m *Principal) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Principal) UnmarshalBinary

func (m *Principal) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Principal) Validate

func (m *Principal) Validate(formats strfmt.Registry) error

Validate validates this principal

type ProfilerType

type ProfilerType string

ProfilerType profiler type

swagger:model profilerType

const (

	// ProfilerTypeCPU captures enum value "cpu"
	ProfilerTypeCPU ProfilerType = "cpu"

	// ProfilerTypeMem captures enum value "mem"
	ProfilerTypeMem ProfilerType = "mem"

	// ProfilerTypeBlock captures enum value "block"
	ProfilerTypeBlock ProfilerType = "block"

	// ProfilerTypeMutex captures enum value "mutex"
	ProfilerTypeMutex ProfilerType = "mutex"

	// ProfilerTypeTrace captures enum value "trace"
	ProfilerTypeTrace ProfilerType = "trace"

	// ProfilerTypeThreads captures enum value "threads"
	ProfilerTypeThreads ProfilerType = "threads"

	// ProfilerTypeGoroutines captures enum value "goroutines"
	ProfilerTypeGoroutines ProfilerType = "goroutines"
)

func NewProfilerType

func NewProfilerType(value ProfilerType) *ProfilerType

func (ProfilerType) ContextValidate

func (m ProfilerType) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this profiler type based on context it is used

func (ProfilerType) Pointer

func (m ProfilerType) Pointer() *ProfilerType

Pointer returns a pointer to a freshly-allocated ProfilerType.

func (ProfilerType) Validate

func (m ProfilerType) Validate(formats strfmt.Registry) error

Validate validates this profiler type

type ProfilingStartRequest

type ProfilingStartRequest struct {

	// type
	// Required: true
	Type *ProfilerType `json:"type"`
}

ProfilingStartRequest profiling start request

swagger:model profilingStartRequest

func (*ProfilingStartRequest) ContextValidate

func (m *ProfilingStartRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this profiling start request based on the context it is used

func (*ProfilingStartRequest) MarshalBinary

func (m *ProfilingStartRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ProfilingStartRequest) UnmarshalBinary

func (m *ProfilingStartRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ProfilingStartRequest) Validate

func (m *ProfilingStartRequest) Validate(formats strfmt.Registry) error

Validate validates this profiling start request

type PrometheusConfiguration

type PrometheusConfiguration struct {

	// image
	Image string `json:"image,omitempty"`

	// init image
	InitImage string `json:"init_image,omitempty"`

	// security context
	SecurityContext *SecurityContext `json:"securityContext,omitempty"`

	// sidecar image
	SidecarImage string `json:"sidecar_image,omitempty"`

	// storage class
	StorageClass string `json:"storageClass,omitempty"`

	// storage size
	StorageSize *float64 `json:"storageSize,omitempty"`
}

PrometheusConfiguration prometheus configuration

swagger:model prometheusConfiguration

func (*PrometheusConfiguration) ContextValidate

func (m *PrometheusConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this prometheus configuration based on the context it is used

func (*PrometheusConfiguration) MarshalBinary

func (m *PrometheusConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PrometheusConfiguration) UnmarshalBinary

func (m *PrometheusConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PrometheusConfiguration) Validate

func (m *PrometheusConfiguration) Validate(formats strfmt.Registry) error

Validate validates this prometheus configuration

type PutBucketRetentionRequest

type PutBucketRetentionRequest struct {

	// mode
	// Required: true
	Mode *ObjectRetentionMode `json:"mode"`

	// unit
	// Required: true
	Unit *ObjectRetentionUnit `json:"unit"`

	// validity
	// Required: true
	Validity *int32 `json:"validity"`
}

PutBucketRetentionRequest put bucket retention request

swagger:model putBucketRetentionRequest

func (*PutBucketRetentionRequest) ContextValidate

func (m *PutBucketRetentionRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this put bucket retention request based on the context it is used

func (*PutBucketRetentionRequest) MarshalBinary

func (m *PutBucketRetentionRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PutBucketRetentionRequest) UnmarshalBinary

func (m *PutBucketRetentionRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PutBucketRetentionRequest) Validate

func (m *PutBucketRetentionRequest) Validate(formats strfmt.Registry) error

Validate validates this put bucket retention request

type PutBucketTagsRequest

type PutBucketTagsRequest struct {

	// tags
	Tags map[string]string `json:"tags,omitempty"`
}

PutBucketTagsRequest put bucket tags request

swagger:model putBucketTagsRequest

func (*PutBucketTagsRequest) ContextValidate

func (m *PutBucketTagsRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this put bucket tags request based on context it is used

func (*PutBucketTagsRequest) MarshalBinary

func (m *PutBucketTagsRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PutBucketTagsRequest) UnmarshalBinary

func (m *PutBucketTagsRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PutBucketTagsRequest) Validate

func (m *PutBucketTagsRequest) Validate(formats strfmt.Registry) error

Validate validates this put bucket tags request

type PutObjectLegalHoldRequest

type PutObjectLegalHoldRequest struct {

	// status
	// Required: true
	Status *ObjectLegalHoldStatus `json:"status"`
}

PutObjectLegalHoldRequest put object legal hold request

swagger:model putObjectLegalHoldRequest

func (*PutObjectLegalHoldRequest) ContextValidate

func (m *PutObjectLegalHoldRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this put object legal hold request based on the context it is used

func (*PutObjectLegalHoldRequest) MarshalBinary

func (m *PutObjectLegalHoldRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PutObjectLegalHoldRequest) UnmarshalBinary

func (m *PutObjectLegalHoldRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PutObjectLegalHoldRequest) Validate

func (m *PutObjectLegalHoldRequest) Validate(formats strfmt.Registry) error

Validate validates this put object legal hold request

type PutObjectRetentionRequest

type PutObjectRetentionRequest struct {

	// expires
	// Required: true
	Expires *string `json:"expires"`

	// governance bypass
	GovernanceBypass bool `json:"governance_bypass,omitempty"`

	// mode
	// Required: true
	Mode *ObjectRetentionMode `json:"mode"`
}

PutObjectRetentionRequest put object retention request

swagger:model putObjectRetentionRequest

func (*PutObjectRetentionRequest) ContextValidate

func (m *PutObjectRetentionRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this put object retention request based on the context it is used

func (*PutObjectRetentionRequest) MarshalBinary

func (m *PutObjectRetentionRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PutObjectRetentionRequest) UnmarshalBinary

func (m *PutObjectRetentionRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PutObjectRetentionRequest) Validate

func (m *PutObjectRetentionRequest) Validate(formats strfmt.Registry) error

Validate validates this put object retention request

type PutObjectTagsRequest

type PutObjectTagsRequest struct {

	// tags
	Tags map[string]string `json:"tags,omitempty"`
}

PutObjectTagsRequest put object tags request

swagger:model putObjectTagsRequest

func (*PutObjectTagsRequest) ContextValidate

func (m *PutObjectTagsRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this put object tags request based on context it is used

func (*PutObjectTagsRequest) MarshalBinary

func (m *PutObjectTagsRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PutObjectTagsRequest) UnmarshalBinary

func (m *PutObjectTagsRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PutObjectTagsRequest) Validate

func (m *PutObjectTagsRequest) Validate(formats strfmt.Registry) error

Validate validates this put object tags request

type PvcsListResponse

type PvcsListResponse struct {

	// age
	Age string `json:"age,omitempty"`

	// capacity
	Capacity string `json:"capacity,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// namespace
	Namespace string `json:"namespace,omitempty"`

	// status
	Status string `json:"status,omitempty"`

	// storage class
	StorageClass string `json:"storageClass,omitempty"`

	// tenant
	Tenant string `json:"tenant,omitempty"`

	// volume
	Volume string `json:"volume,omitempty"`
}

PvcsListResponse pvcs list response

swagger:model pvcsListResponse

func (*PvcsListResponse) ContextValidate

func (m *PvcsListResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this pvcs list response based on context it is used

func (*PvcsListResponse) MarshalBinary

func (m *PvcsListResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PvcsListResponse) UnmarshalBinary

func (m *PvcsListResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PvcsListResponse) Validate

func (m *PvcsListResponse) Validate(formats strfmt.Registry) error

Validate validates this pvcs list response

type RemoteBucket

type RemoteBucket struct {

	// access key
	// Required: true
	// Min Length: 3
	AccessKey *string `json:"accessKey"`

	// bandwidth
	Bandwidth int64 `json:"bandwidth,omitempty"`

	// health check period
	HealthCheckPeriod int64 `json:"healthCheckPeriod,omitempty"`

	// remote a r n
	// Required: true
	RemoteARN *string `json:"remoteARN"`

	// secret key
	// Min Length: 8
	SecretKey string `json:"secretKey,omitempty"`

	// service
	// Enum: [replication]
	Service string `json:"service,omitempty"`

	// source bucket
	// Required: true
	SourceBucket *string `json:"sourceBucket"`

	// status
	Status string `json:"status,omitempty"`

	// sync mode
	SyncMode string `json:"syncMode,omitempty"`

	// target bucket
	TargetBucket string `json:"targetBucket,omitempty"`

	// target URL
	TargetURL string `json:"targetURL,omitempty"`
}

RemoteBucket remote bucket

swagger:model remoteBucket

func (*RemoteBucket) ContextValidate

func (m *RemoteBucket) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this remote bucket based on context it is used

func (*RemoteBucket) MarshalBinary

func (m *RemoteBucket) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RemoteBucket) UnmarshalBinary

func (m *RemoteBucket) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RemoteBucket) Validate

func (m *RemoteBucket) Validate(formats strfmt.Registry) error

Validate validates this remote bucket

type ResourceQuota

type ResourceQuota struct {

	// elements
	Elements []*ResourceQuotaElement `json:"elements"`

	// name
	Name string `json:"name,omitempty"`
}

ResourceQuota resource quota

swagger:model resourceQuota

func (*ResourceQuota) ContextValidate

func (m *ResourceQuota) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this resource quota based on the context it is used

func (*ResourceQuota) MarshalBinary

func (m *ResourceQuota) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ResourceQuota) UnmarshalBinary

func (m *ResourceQuota) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ResourceQuota) Validate

func (m *ResourceQuota) Validate(formats strfmt.Registry) error

Validate validates this resource quota

type ResourceQuotaElement

type ResourceQuotaElement struct {

	// hard
	Hard int64 `json:"hard,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// used
	Used int64 `json:"used,omitempty"`
}

ResourceQuotaElement resource quota element

swagger:model resourceQuotaElement

func (*ResourceQuotaElement) ContextValidate

func (m *ResourceQuotaElement) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this resource quota element based on context it is used

func (*ResourceQuotaElement) MarshalBinary

func (m *ResourceQuotaElement) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ResourceQuotaElement) UnmarshalBinary

func (m *ResourceQuotaElement) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ResourceQuotaElement) Validate

func (m *ResourceQuotaElement) Validate(formats strfmt.Registry) error

Validate validates this resource quota element

type ResultTarget

type ResultTarget struct {

	// legend format
	LegendFormat string `json:"legendFormat,omitempty"`

	// result
	Result []*WidgetResult `json:"result"`

	// result type
	ResultType string `json:"resultType,omitempty"`
}

ResultTarget result target

swagger:model resultTarget

func (*ResultTarget) ContextValidate

func (m *ResultTarget) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this result target based on the context it is used

func (*ResultTarget) MarshalBinary

func (m *ResultTarget) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ResultTarget) UnmarshalBinary

func (m *ResultTarget) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ResultTarget) Validate

func (m *ResultTarget) Validate(formats strfmt.Registry) error

Validate validates this result target

type RewindItem

type RewindItem struct {

	// action
	Action string `json:"action,omitempty"`

	// delete flag
	DeleteFlag bool `json:"delete_flag,omitempty"`

	// last modified
	LastModified string `json:"last_modified,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// size
	Size int64 `json:"size,omitempty"`

	// version id
	VersionID string `json:"version_id,omitempty"`
}

RewindItem rewind item

swagger:model rewindItem

func (*RewindItem) ContextValidate

func (m *RewindItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this rewind item based on context it is used

func (*RewindItem) MarshalBinary

func (m *RewindItem) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RewindItem) UnmarshalBinary

func (m *RewindItem) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RewindItem) Validate

func (m *RewindItem) Validate(formats strfmt.Registry) error

Validate validates this rewind item

type RewindResponse

type RewindResponse struct {

	// objects
	Objects []*RewindItem `json:"objects"`
}

RewindResponse rewind response

swagger:model rewindResponse

func (*RewindResponse) ContextValidate

func (m *RewindResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this rewind response based on the context it is used

func (*RewindResponse) MarshalBinary

func (m *RewindResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*RewindResponse) UnmarshalBinary

func (m *RewindResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*RewindResponse) Validate

func (m *RewindResponse) Validate(formats strfmt.Registry) error

Validate validates this rewind response

type SecurityContext

type SecurityContext struct {

	// fs group
	// Required: true
	FsGroup *string `json:"fsGroup"`

	// run as group
	// Required: true
	RunAsGroup *string `json:"runAsGroup"`

	// run as non root
	// Required: true
	RunAsNonRoot *bool `json:"runAsNonRoot"`

	// run as user
	// Required: true
	RunAsUser *string `json:"runAsUser"`
}

SecurityContext security context

swagger:model securityContext

func (*SecurityContext) ContextValidate

func (m *SecurityContext) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this security context based on context it is used

func (*SecurityContext) MarshalBinary

func (m *SecurityContext) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SecurityContext) UnmarshalBinary

func (m *SecurityContext) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SecurityContext) Validate

func (m *SecurityContext) Validate(formats strfmt.Registry) error

Validate validates this security context

type ServerDrives

type ServerDrives struct {

	// available space
	AvailableSpace int64 `json:"availableSpace,omitempty"`

	// drive path
	DrivePath string `json:"drivePath,omitempty"`

	// endpoint
	Endpoint string `json:"endpoint,omitempty"`

	// healing
	Healing bool `json:"healing,omitempty"`

	// model
	Model string `json:"model,omitempty"`

	// root disk
	RootDisk bool `json:"rootDisk,omitempty"`

	// state
	State string `json:"state,omitempty"`

	// total space
	TotalSpace int64 `json:"totalSpace,omitempty"`

	// used space
	UsedSpace int64 `json:"usedSpace,omitempty"`

	// uuid
	UUID string `json:"uuid,omitempty"`
}

ServerDrives server drives

swagger:model serverDrives

func (*ServerDrives) ContextValidate

func (m *ServerDrives) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this server drives based on context it is used

func (*ServerDrives) MarshalBinary

func (m *ServerDrives) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ServerDrives) UnmarshalBinary

func (m *ServerDrives) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ServerDrives) Validate

func (m *ServerDrives) Validate(formats strfmt.Registry) error

Validate validates this server drives

type ServerProperties

type ServerProperties struct {

	// commit ID
	CommitID string `json:"commitID,omitempty"`

	// drives
	Drives []*ServerDrives `json:"drives"`

	// endpoint
	Endpoint string `json:"endpoint,omitempty"`

	// network
	Network map[string]string `json:"network,omitempty"`

	// pool number
	PoolNumber int64 `json:"poolNumber,omitempty"`

	// state
	State string `json:"state,omitempty"`

	// uptime
	Uptime int64 `json:"uptime,omitempty"`

	// version
	Version string `json:"version,omitempty"`
}

ServerProperties server properties

swagger:model serverProperties

func (*ServerProperties) ContextValidate

func (m *ServerProperties) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this server properties based on the context it is used

func (*ServerProperties) MarshalBinary

func (m *ServerProperties) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ServerProperties) UnmarshalBinary

func (m *ServerProperties) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ServerProperties) Validate

func (m *ServerProperties) Validate(formats strfmt.Registry) error

Validate validates this server properties

type ServiceAccountCreds

type ServiceAccountCreds struct {

	// access key
	AccessKey string `json:"accessKey,omitempty"`

	// secret key
	SecretKey string `json:"secretKey,omitempty"`
}

ServiceAccountCreds service account creds

swagger:model serviceAccountCreds

func (*ServiceAccountCreds) ContextValidate

func (m *ServiceAccountCreds) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this service account creds based on context it is used

func (*ServiceAccountCreds) MarshalBinary

func (m *ServiceAccountCreds) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ServiceAccountCreds) UnmarshalBinary

func (m *ServiceAccountCreds) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ServiceAccountCreds) Validate

func (m *ServiceAccountCreds) Validate(formats strfmt.Registry) error

Validate validates this service account creds

type ServiceAccountRequest

type ServiceAccountRequest struct {

	// policy to be applied to the Service Account if any
	Policy string `json:"policy,omitempty"`
}

ServiceAccountRequest service account request

swagger:model serviceAccountRequest

func (*ServiceAccountRequest) ContextValidate

func (m *ServiceAccountRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this service account request based on context it is used

func (*ServiceAccountRequest) MarshalBinary

func (m *ServiceAccountRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ServiceAccountRequest) UnmarshalBinary

func (m *ServiceAccountRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ServiceAccountRequest) Validate

func (m *ServiceAccountRequest) Validate(formats strfmt.Registry) error

Validate validates this service account request

type ServiceAccountRequestCreds

type ServiceAccountRequestCreds struct {

	// access key
	AccessKey string `json:"accessKey,omitempty"`

	// policy to be applied to the Service Account if any
	Policy string `json:"policy,omitempty"`

	// secret key
	SecretKey string `json:"secretKey,omitempty"`
}

ServiceAccountRequestCreds service account request creds

swagger:model serviceAccountRequestCreds

func (*ServiceAccountRequestCreds) ContextValidate

func (m *ServiceAccountRequestCreds) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this service account request creds based on context it is used

func (*ServiceAccountRequestCreds) MarshalBinary

func (m *ServiceAccountRequestCreds) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ServiceAccountRequestCreds) UnmarshalBinary

func (m *ServiceAccountRequestCreds) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ServiceAccountRequestCreds) Validate

func (m *ServiceAccountRequestCreds) Validate(formats strfmt.Registry) error

Validate validates this service account request creds

type ServiceAccounts

type ServiceAccounts []string

ServiceAccounts service accounts

swagger:model serviceAccounts

func (ServiceAccounts) ContextValidate

func (m ServiceAccounts) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this service accounts based on context it is used

func (ServiceAccounts) Validate

func (m ServiceAccounts) Validate(formats strfmt.Registry) error

Validate validates this service accounts

type SessionResponse

type SessionResponse struct {

	// distributed mode
	DistributedMode bool `json:"distributedMode,omitempty"`

	// features
	Features []string `json:"features"`

	// operator
	Operator bool `json:"operator,omitempty"`

	// permissions
	Permissions map[string][]string `json:"permissions,omitempty"`

	// status
	// Enum: [ok]
	Status string `json:"status,omitempty"`
}

SessionResponse session response

swagger:model sessionResponse

func (*SessionResponse) ContextValidate

func (m *SessionResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this session response based on context it is used

func (*SessionResponse) MarshalBinary

func (m *SessionResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SessionResponse) UnmarshalBinary

func (m *SessionResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SessionResponse) Validate

func (m *SessionResponse) Validate(formats strfmt.Registry) error

Validate validates this session response

type SetBucketPolicyRequest

type SetBucketPolicyRequest struct {

	// access
	// Required: true
	Access *BucketAccess `json:"access"`

	// definition
	Definition string `json:"definition,omitempty"`
}

SetBucketPolicyRequest set bucket policy request

swagger:model setBucketPolicyRequest

func (*SetBucketPolicyRequest) ContextValidate

func (m *SetBucketPolicyRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this set bucket policy request based on the context it is used

func (*SetBucketPolicyRequest) MarshalBinary

func (m *SetBucketPolicyRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetBucketPolicyRequest) UnmarshalBinary

func (m *SetBucketPolicyRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetBucketPolicyRequest) Validate

func (m *SetBucketPolicyRequest) Validate(formats strfmt.Registry) error

Validate validates this set bucket policy request

type SetBucketQuota

type SetBucketQuota struct {

	// amount
	Amount int64 `json:"amount,omitempty"`

	// enabled
	// Required: true
	Enabled *bool `json:"enabled"`

	// quota type
	// Enum: [fifo hard]
	QuotaType string `json:"quota_type,omitempty"`
}

SetBucketQuota set bucket quota

swagger:model setBucketQuota

func (*SetBucketQuota) ContextValidate

func (m *SetBucketQuota) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this set bucket quota based on context it is used

func (*SetBucketQuota) MarshalBinary

func (m *SetBucketQuota) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetBucketQuota) UnmarshalBinary

func (m *SetBucketQuota) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetBucketQuota) Validate

func (m *SetBucketQuota) Validate(formats strfmt.Registry) error

Validate validates this set bucket quota

type SetBucketVersioning

type SetBucketVersioning struct {

	// versioning
	Versioning bool `json:"versioning,omitempty"`
}

SetBucketVersioning set bucket versioning

swagger:model setBucketVersioning

func (*SetBucketVersioning) ContextValidate

func (m *SetBucketVersioning) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this set bucket versioning based on context it is used

func (*SetBucketVersioning) MarshalBinary

func (m *SetBucketVersioning) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetBucketVersioning) UnmarshalBinary

func (m *SetBucketVersioning) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetBucketVersioning) Validate

func (m *SetBucketVersioning) Validate(formats strfmt.Registry) error

Validate validates this set bucket versioning

type SetConfigRequest

type SetConfigRequest struct {

	// Used if configuration is an event notification's target
	ArnResourceID string `json:"arn_resource_id,omitempty"`

	// key values
	// Required: true
	// Min Items: 1
	KeyValues []*ConfigurationKV `json:"key_values"`
}

SetConfigRequest set config request

swagger:model setConfigRequest

func (*SetConfigRequest) ContextValidate

func (m *SetConfigRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this set config request based on the context it is used

func (*SetConfigRequest) MarshalBinary

func (m *SetConfigRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetConfigRequest) UnmarshalBinary

func (m *SetConfigRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetConfigRequest) Validate

func (m *SetConfigRequest) Validate(formats strfmt.Registry) error

Validate validates this set config request

type SetConfigResponse

type SetConfigResponse struct {

	// Returns wheter server needs to restart to apply changes or not
	Restart bool `json:"restart,omitempty"`
}

SetConfigResponse set config response

swagger:model setConfigResponse

func (*SetConfigResponse) ContextValidate

func (m *SetConfigResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this set config response based on context it is used

func (*SetConfigResponse) MarshalBinary

func (m *SetConfigResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetConfigResponse) UnmarshalBinary

func (m *SetConfigResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetConfigResponse) Validate

func (m *SetConfigResponse) Validate(formats strfmt.Registry) error

Validate validates this set config response

type SetNotificationEndpointResponse

type SetNotificationEndpointResponse struct {

	// account id
	// Required: true
	AccountID *string `json:"account_id"`

	// properties
	// Required: true
	Properties map[string]string `json:"properties"`

	// restart
	Restart bool `json:"restart,omitempty"`

	// service
	// Required: true
	Service *NofiticationService `json:"service"`
}

SetNotificationEndpointResponse set notification endpoint response

swagger:model setNotificationEndpointResponse

func (*SetNotificationEndpointResponse) ContextValidate

func (m *SetNotificationEndpointResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this set notification endpoint response based on the context it is used

func (*SetNotificationEndpointResponse) MarshalBinary

func (m *SetNotificationEndpointResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetNotificationEndpointResponse) UnmarshalBinary

func (m *SetNotificationEndpointResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetNotificationEndpointResponse) Validate

Validate validates this set notification endpoint response

type SetPolicyMultipleNameRequest

type SetPolicyMultipleNameRequest struct {

	// groups
	Groups []IamEntity `json:"groups"`

	// name
	Name []string `json:"name"`

	// users
	Users []IamEntity `json:"users"`
}

SetPolicyMultipleNameRequest set policy multiple name request

swagger:model setPolicyMultipleNameRequest

func (*SetPolicyMultipleNameRequest) ContextValidate

func (m *SetPolicyMultipleNameRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this set policy multiple name request based on the context it is used

func (*SetPolicyMultipleNameRequest) MarshalBinary

func (m *SetPolicyMultipleNameRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetPolicyMultipleNameRequest) UnmarshalBinary

func (m *SetPolicyMultipleNameRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetPolicyMultipleNameRequest) Validate

func (m *SetPolicyMultipleNameRequest) Validate(formats strfmt.Registry) error

Validate validates this set policy multiple name request

type SetPolicyNameRequest

type SetPolicyNameRequest struct {

	// entity name
	// Required: true
	EntityName *string `json:"entityName"`

	// entity type
	// Required: true
	EntityType *PolicyEntity `json:"entityType"`

	// name
	// Required: true
	Name []string `json:"name"`
}

SetPolicyNameRequest set policy name request

swagger:model setPolicyNameRequest

func (*SetPolicyNameRequest) ContextValidate

func (m *SetPolicyNameRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this set policy name request based on the context it is used

func (*SetPolicyNameRequest) MarshalBinary

func (m *SetPolicyNameRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetPolicyNameRequest) UnmarshalBinary

func (m *SetPolicyNameRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetPolicyNameRequest) Validate

func (m *SetPolicyNameRequest) Validate(formats strfmt.Registry) error

Validate validates this set policy name request

type SetPolicyRequest

type SetPolicyRequest struct {

	// entity name
	// Required: true
	EntityName *string `json:"entityName"`

	// entity type
	// Required: true
	EntityType *PolicyEntity `json:"entityType"`
}

SetPolicyRequest set policy request

swagger:model setPolicyRequest

func (*SetPolicyRequest) ContextValidate

func (m *SetPolicyRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this set policy request based on the context it is used

func (*SetPolicyRequest) MarshalBinary

func (m *SetPolicyRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SetPolicyRequest) UnmarshalBinary

func (m *SetPolicyRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SetPolicyRequest) Validate

func (m *SetPolicyRequest) Validate(formats strfmt.Registry) error

Validate validates this set policy request

type StartProfilingItem

type StartProfilingItem struct {

	// error
	Error string `json:"error,omitempty"`

	// node name
	NodeName string `json:"nodeName,omitempty"`

	// success
	Success bool `json:"success,omitempty"`
}

StartProfilingItem start profiling item

swagger:model startProfilingItem

func (*StartProfilingItem) ContextValidate

func (m *StartProfilingItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this start profiling item based on context it is used

func (*StartProfilingItem) MarshalBinary

func (m *StartProfilingItem) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*StartProfilingItem) UnmarshalBinary

func (m *StartProfilingItem) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*StartProfilingItem) Validate

func (m *StartProfilingItem) Validate(formats strfmt.Registry) error

Validate validates this start profiling item

type StartProfilingList

type StartProfilingList struct {

	// start results
	StartResults []*StartProfilingItem `json:"startResults"`

	// number of start results
	Total int64 `json:"total,omitempty"`
}

StartProfilingList start profiling list

swagger:model startProfilingList

func (*StartProfilingList) ContextValidate

func (m *StartProfilingList) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this start profiling list based on the context it is used

func (*StartProfilingList) MarshalBinary

func (m *StartProfilingList) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*StartProfilingList) UnmarshalBinary

func (m *StartProfilingList) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*StartProfilingList) Validate

func (m *StartProfilingList) Validate(formats strfmt.Registry) error

Validate validates this start profiling list

type SubnetLoginMFARequest

type SubnetLoginMFARequest struct {

	// mfa token
	// Required: true
	MfaToken *string `json:"mfa_token"`

	// otp
	// Required: true
	Otp *string `json:"otp"`

	// proxy
	Proxy string `json:"proxy,omitempty"`

	// username
	// Required: true
	Username *string `json:"username"`
}

SubnetLoginMFARequest subnet login m f a request

swagger:model subnetLoginMFARequest

func (*SubnetLoginMFARequest) ContextValidate

func (m *SubnetLoginMFARequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this subnet login m f a request based on context it is used

func (*SubnetLoginMFARequest) MarshalBinary

func (m *SubnetLoginMFARequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SubnetLoginMFARequest) UnmarshalBinary

func (m *SubnetLoginMFARequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SubnetLoginMFARequest) Validate

func (m *SubnetLoginMFARequest) Validate(formats strfmt.Registry) error

Validate validates this subnet login m f a request

type SubnetLoginRequest

type SubnetLoginRequest struct {

	// api key
	APIKey string `json:"apiKey,omitempty"`

	// password
	Password string `json:"password,omitempty"`

	// proxy
	Proxy string `json:"proxy,omitempty"`

	// username
	Username string `json:"username,omitempty"`
}

SubnetLoginRequest subnet login request

swagger:model subnetLoginRequest

func (*SubnetLoginRequest) ContextValidate

func (m *SubnetLoginRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this subnet login request based on context it is used

func (*SubnetLoginRequest) MarshalBinary

func (m *SubnetLoginRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SubnetLoginRequest) UnmarshalBinary

func (m *SubnetLoginRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SubnetLoginRequest) Validate

func (m *SubnetLoginRequest) Validate(formats strfmt.Registry) error

Validate validates this subnet login request

type SubnetLoginResponse

type SubnetLoginResponse struct {

	// access token
	AccessToken string `json:"access_token,omitempty"`

	// mfa token
	MfaToken string `json:"mfa_token,omitempty"`

	// organizations
	Organizations []*SubnetOrganization `json:"organizations"`

	// registered
	Registered bool `json:"registered,omitempty"`
}

SubnetLoginResponse subnet login response

swagger:model subnetLoginResponse

func (*SubnetLoginResponse) ContextValidate

func (m *SubnetLoginResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this subnet login response based on the context it is used

func (*SubnetLoginResponse) MarshalBinary

func (m *SubnetLoginResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SubnetLoginResponse) UnmarshalBinary

func (m *SubnetLoginResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SubnetLoginResponse) Validate

func (m *SubnetLoginResponse) Validate(formats strfmt.Registry) error

Validate validates this subnet login response

type SubnetOrganization

type SubnetOrganization struct {

	// account Id
	AccountID int64 `json:"accountId,omitempty"`

	// company
	Company string `json:"company,omitempty"`

	// is account owner
	IsAccountOwner bool `json:"isAccountOwner,omitempty"`

	// short name
	ShortName string `json:"shortName,omitempty"`

	// subscription status
	SubscriptionStatus string `json:"subscriptionStatus,omitempty"`

	// user Id
	UserID int64 `json:"userId,omitempty"`
}

SubnetOrganization subnet organization

swagger:model subnetOrganization

func (*SubnetOrganization) ContextValidate

func (m *SubnetOrganization) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this subnet organization based on context it is used

func (*SubnetOrganization) MarshalBinary

func (m *SubnetOrganization) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SubnetOrganization) UnmarshalBinary

func (m *SubnetOrganization) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SubnetOrganization) Validate

func (m *SubnetOrganization) Validate(formats strfmt.Registry) error

Validate validates this subnet organization

type SubnetRegTokenResponse

type SubnetRegTokenResponse struct {

	// reg token
	RegToken string `json:"regToken,omitempty"`
}

SubnetRegTokenResponse subnet reg token response

swagger:model SubnetRegTokenResponse

func (*SubnetRegTokenResponse) ContextValidate

func (m *SubnetRegTokenResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this subnet reg token response based on context it is used

func (*SubnetRegTokenResponse) MarshalBinary

func (m *SubnetRegTokenResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SubnetRegTokenResponse) UnmarshalBinary

func (m *SubnetRegTokenResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SubnetRegTokenResponse) Validate

func (m *SubnetRegTokenResponse) Validate(formats strfmt.Registry) error

Validate validates this subnet reg token response

type SubnetRegisterRequest

type SubnetRegisterRequest struct {

	// account id
	// Required: true
	AccountID *string `json:"account_id"`

	// proxy
	Proxy string `json:"proxy,omitempty"`

	// token
	// Required: true
	Token *string `json:"token"`
}

SubnetRegisterRequest subnet register request

swagger:model subnetRegisterRequest

func (*SubnetRegisterRequest) ContextValidate

func (m *SubnetRegisterRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this subnet register request based on context it is used

func (*SubnetRegisterRequest) MarshalBinary

func (m *SubnetRegisterRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SubnetRegisterRequest) UnmarshalBinary

func (m *SubnetRegisterRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SubnetRegisterRequest) Validate

func (m *SubnetRegisterRequest) Validate(formats strfmt.Registry) error

Validate validates this subnet register request

type SubscriptionValidateRequest

type SubscriptionValidateRequest struct {

	// email
	Email string `json:"email,omitempty"`

	// license
	License string `json:"license,omitempty"`

	// password
	Password string `json:"password,omitempty"`
}

SubscriptionValidateRequest subscription validate request

swagger:model subscriptionValidateRequest

func (*SubscriptionValidateRequest) ContextValidate

func (m *SubscriptionValidateRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this subscription validate request based on context it is used

func (*SubscriptionValidateRequest) MarshalBinary

func (m *SubscriptionValidateRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*SubscriptionValidateRequest) UnmarshalBinary

func (m *SubscriptionValidateRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*SubscriptionValidateRequest) Validate

func (m *SubscriptionValidateRequest) Validate(formats strfmt.Registry) error

Validate validates this subscription validate request

type TLSConfiguration

type TLSConfiguration struct {

	// ca certificates
	CaCertificates []string `json:"ca_certificates"`

	// minio
	Minio []*KeyPairConfiguration `json:"minio"`
}

TLSConfiguration tls configuration

swagger:model tlsConfiguration

func (*TLSConfiguration) ContextValidate

func (m *TLSConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tls configuration based on the context it is used

func (*TLSConfiguration) MarshalBinary

func (m *TLSConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TLSConfiguration) UnmarshalBinary

func (m *TLSConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TLSConfiguration) Validate

func (m *TLSConfiguration) Validate(formats strfmt.Registry) error

Validate validates this tls configuration

type Tenant

type Tenant struct {

	// creation date
	CreationDate string `json:"creation_date,omitempty"`

	// current state
	CurrentState string `json:"currentState,omitempty"`

	// deletion date
	DeletionDate string `json:"deletion_date,omitempty"`

	// enable prometheus
	EnablePrometheus bool `json:"enable_prometheus,omitempty"`

	// encryption enabled
	EncryptionEnabled bool `json:"encryptionEnabled,omitempty"`

	// endpoints
	Endpoints *TenantEndpoints `json:"endpoints,omitempty"`

	// idp ad enabled
	IdpAdEnabled bool `json:"idpAdEnabled,omitempty"`

	// idp oidc enabled
	IdpOidcEnabled bool `json:"idpOidcEnabled,omitempty"`

	// image
	Image string `json:"image,omitempty"`

	// log enabled
	LogEnabled bool `json:"logEnabled,omitempty"`

	// minio TLS
	MinioTLS bool `json:"minioTLS,omitempty"`

	// monitoring enabled
	MonitoringEnabled bool `json:"monitoringEnabled,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// namespace
	Namespace string `json:"namespace,omitempty"`

	// pools
	Pools []*Pool `json:"pools"`

	// status
	Status *TenantStatus `json:"status,omitempty"`

	// subnet license
	SubnetLicense *License `json:"subnet_license,omitempty"`

	// total size
	TotalSize int64 `json:"total_size,omitempty"`
}

Tenant tenant

swagger:model tenant

func (*Tenant) ContextValidate

func (m *Tenant) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tenant based on the context it is used

func (*Tenant) MarshalBinary

func (m *Tenant) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Tenant) UnmarshalBinary

func (m *Tenant) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Tenant) Validate

func (m *Tenant) Validate(formats strfmt.Registry) error

Validate validates this tenant

type TenantEndpoints

type TenantEndpoints struct {

	// console
	Console string `json:"console,omitempty"`

	// minio
	Minio string `json:"minio,omitempty"`
}

TenantEndpoints tenant endpoints

swagger:model TenantEndpoints

func (*TenantEndpoints) ContextValidate

func (m *TenantEndpoints) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tenant endpoints based on context it is used

func (*TenantEndpoints) MarshalBinary

func (m *TenantEndpoints) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantEndpoints) UnmarshalBinary

func (m *TenantEndpoints) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantEndpoints) Validate

func (m *TenantEndpoints) Validate(formats strfmt.Registry) error

Validate validates this tenant endpoints

type TenantList

type TenantList struct {

	// capacity
	Capacity int64 `json:"capacity,omitempty"`

	// capacity raw
	CapacityRaw int64 `json:"capacity_raw,omitempty"`

	// capacity raw usage
	CapacityRawUsage int64 `json:"capacity_raw_usage,omitempty"`

	// capacity usage
	CapacityUsage int64 `json:"capacity_usage,omitempty"`

	// creation date
	CreationDate string `json:"creation_date,omitempty"`

	// current state
	CurrentState string `json:"currentState,omitempty"`

	// deletion date
	DeletionDate string `json:"deletion_date,omitempty"`

	// health status
	HealthStatus string `json:"health_status,omitempty"`

	// instance count
	InstanceCount int64 `json:"instance_count,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// namespace
	Namespace string `json:"namespace,omitempty"`

	// pool count
	PoolCount int64 `json:"pool_count,omitempty"`

	// total size
	TotalSize int64 `json:"total_size,omitempty"`

	// volume count
	VolumeCount int64 `json:"volume_count,omitempty"`
}

TenantList tenant list

swagger:model tenantList

func (*TenantList) ContextValidate

func (m *TenantList) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tenant list based on context it is used

func (*TenantList) MarshalBinary

func (m *TenantList) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantList) UnmarshalBinary

func (m *TenantList) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantList) Validate

func (m *TenantList) Validate(formats strfmt.Registry) error

Validate validates this tenant list

type TenantLogs

type TenantLogs struct {

	// annotations
	Annotations []*Annotation `json:"annotations"`

	// db annotations
	DbAnnotations []*Annotation `json:"dbAnnotations"`

	// db image
	DbImage string `json:"dbImage,omitempty"`

	// db labels
	DbLabels []*Label `json:"dbLabels"`

	// db node selector
	DbNodeSelector []*NodeSelector `json:"dbNodeSelector"`

	// db service account name
	DbServiceAccountName string `json:"dbServiceAccountName,omitempty"`

	// disabled
	Disabled bool `json:"disabled,omitempty"`

	// disk capacity g b
	DiskCapacityGB string `json:"diskCapacityGB,omitempty"`

	// image
	Image string `json:"image,omitempty"`

	// labels
	Labels []*Label `json:"labels"`

	// node selector
	NodeSelector []*NodeSelector `json:"nodeSelector"`

	// service account name
	ServiceAccountName string `json:"serviceAccountName,omitempty"`
}

TenantLogs tenant logs

swagger:model tenantLogs

func (*TenantLogs) ContextValidate

func (m *TenantLogs) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tenant logs based on the context it is used

func (*TenantLogs) MarshalBinary

func (m *TenantLogs) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantLogs) UnmarshalBinary

func (m *TenantLogs) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantLogs) Validate

func (m *TenantLogs) Validate(formats strfmt.Registry) error

Validate validates this tenant logs

type TenantMonitoringInfo

type TenantMonitoringInfo struct {

	// annotations
	Annotations []*Annotation `json:"annotations"`

	// disk capacity g b
	DiskCapacityGB string `json:"diskCapacityGB,omitempty"`

	// image
	Image string `json:"image,omitempty"`

	// init image
	InitImage string `json:"initImage,omitempty"`

	// labels
	Labels []*Label `json:"labels"`

	// monitoring CPU request
	MonitoringCPURequest string `json:"monitoringCPURequest,omitempty"`

	// monitoring mem request
	MonitoringMemRequest string `json:"monitoringMemRequest,omitempty"`

	// node selector
	NodeSelector []*NodeSelector `json:"nodeSelector"`

	// prometheus enabled
	PrometheusEnabled bool `json:"prometheusEnabled,omitempty"`

	// service account name
	ServiceAccountName string `json:"serviceAccountName,omitempty"`

	// sidecar image
	SidecarImage string `json:"sidecarImage,omitempty"`

	// storage class name
	StorageClassName string `json:"storageClassName,omitempty"`

	// toggle
	Toggle bool `json:"toggle,omitempty"`
}

TenantMonitoringInfo tenant monitoring info

swagger:model tenantMonitoringInfo

func (*TenantMonitoringInfo) ContextValidate

func (m *TenantMonitoringInfo) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tenant monitoring info based on the context it is used

func (*TenantMonitoringInfo) MarshalBinary

func (m *TenantMonitoringInfo) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantMonitoringInfo) UnmarshalBinary

func (m *TenantMonitoringInfo) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantMonitoringInfo) Validate

func (m *TenantMonitoringInfo) Validate(formats strfmt.Registry) error

Validate validates this tenant monitoring info

type TenantPod

type TenantPod struct {

	// name
	// Required: true
	Name *string `json:"name"`

	// node
	Node string `json:"node,omitempty"`

	// pod IP
	PodIP string `json:"podIP,omitempty"`

	// restarts
	Restarts int64 `json:"restarts,omitempty"`

	// status
	Status string `json:"status,omitempty"`

	// time created
	TimeCreated int64 `json:"timeCreated,omitempty"`
}

TenantPod tenant pod

swagger:model tenantPod

func (*TenantPod) ContextValidate

func (m *TenantPod) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tenant pod based on context it is used

func (*TenantPod) MarshalBinary

func (m *TenantPod) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantPod) UnmarshalBinary

func (m *TenantPod) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantPod) Validate

func (m *TenantPod) Validate(formats strfmt.Registry) error

Validate validates this tenant pod

type TenantResponseItem

type TenantResponseItem struct {

	// access key
	AccessKey string `json:"access_key,omitempty"`

	// secret key
	SecretKey string `json:"secret_key,omitempty"`
}

TenantResponseItem tenant response item

swagger:model tenantResponseItem

func (*TenantResponseItem) ContextValidate

func (m *TenantResponseItem) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tenant response item based on context it is used

func (*TenantResponseItem) MarshalBinary

func (m *TenantResponseItem) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantResponseItem) UnmarshalBinary

func (m *TenantResponseItem) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantResponseItem) Validate

func (m *TenantResponseItem) Validate(formats strfmt.Registry) error

Validate validates this tenant response item

type TenantSecurityResponse

type TenantSecurityResponse struct {

	// auto cert
	AutoCert bool `json:"autoCert,omitempty"`

	// custom certificates
	CustomCertificates *TenantSecurityResponseCustomCertificates `json:"customCertificates,omitempty"`
}

TenantSecurityResponse tenant security response

swagger:model tenantSecurityResponse

func (*TenantSecurityResponse) ContextValidate

func (m *TenantSecurityResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tenant security response based on the context it is used

func (*TenantSecurityResponse) MarshalBinary

func (m *TenantSecurityResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantSecurityResponse) UnmarshalBinary

func (m *TenantSecurityResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantSecurityResponse) Validate

func (m *TenantSecurityResponse) Validate(formats strfmt.Registry) error

Validate validates this tenant security response

type TenantSecurityResponseCustomCertificates

type TenantSecurityResponseCustomCertificates struct {

	// minio
	Minio []*CertificateInfo `json:"minio"`

	// minio c as
	MinioCAs []*CertificateInfo `json:"minioCAs"`
}

TenantSecurityResponseCustomCertificates tenant security response custom certificates

swagger:model TenantSecurityResponseCustomCertificates

func (*TenantSecurityResponseCustomCertificates) ContextValidate

ContextValidate validate this tenant security response custom certificates based on the context it is used

func (*TenantSecurityResponseCustomCertificates) MarshalBinary

func (m *TenantSecurityResponseCustomCertificates) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantSecurityResponseCustomCertificates) UnmarshalBinary

func (m *TenantSecurityResponseCustomCertificates) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantSecurityResponseCustomCertificates) Validate

Validate validates this tenant security response custom certificates

type TenantStatus

type TenantStatus struct {

	// drives healing
	DrivesHealing int32 `json:"drives_healing,omitempty"`

	// drives offline
	DrivesOffline int32 `json:"drives_offline,omitempty"`

	// drives online
	DrivesOnline int32 `json:"drives_online,omitempty"`

	// health status
	HealthStatus string `json:"health_status,omitempty"`

	// usage
	Usage *TenantStatusUsage `json:"usage,omitempty"`

	// write quorum
	WriteQuorum int32 `json:"write_quorum,omitempty"`
}

TenantStatus tenant status

swagger:model tenantStatus

func (*TenantStatus) ContextValidate

func (m *TenantStatus) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tenant status based on the context it is used

func (*TenantStatus) MarshalBinary

func (m *TenantStatus) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantStatus) UnmarshalBinary

func (m *TenantStatus) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantStatus) Validate

func (m *TenantStatus) Validate(formats strfmt.Registry) error

Validate validates this tenant status

type TenantStatusUsage

type TenantStatusUsage struct {

	// capacity
	Capacity int64 `json:"capacity,omitempty"`

	// capacity usage
	CapacityUsage int64 `json:"capacity_usage,omitempty"`

	// raw
	Raw int64 `json:"raw,omitempty"`

	// raw usage
	RawUsage int64 `json:"raw_usage,omitempty"`
}

TenantStatusUsage tenant status usage

swagger:model TenantStatusUsage

func (*TenantStatusUsage) ContextValidate

func (m *TenantStatusUsage) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tenant status usage based on context it is used

func (*TenantStatusUsage) MarshalBinary

func (m *TenantStatusUsage) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantStatusUsage) UnmarshalBinary

func (m *TenantStatusUsage) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantStatusUsage) Validate

func (m *TenantStatusUsage) Validate(formats strfmt.Registry) error

Validate validates this tenant status usage

type TenantUsage

type TenantUsage struct {

	// disk used
	DiskUsed int64 `json:"disk_used,omitempty"`

	// used
	Used int64 `json:"used,omitempty"`
}

TenantUsage tenant usage

swagger:model tenantUsage

func (*TenantUsage) ContextValidate

func (m *TenantUsage) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tenant usage based on context it is used

func (*TenantUsage) MarshalBinary

func (m *TenantUsage) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantUsage) UnmarshalBinary

func (m *TenantUsage) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantUsage) Validate

func (m *TenantUsage) Validate(formats strfmt.Registry) error

Validate validates this tenant usage

type TenantYAML

type TenantYAML struct {

	// yaml
	Yaml string `json:"yaml,omitempty"`
}

TenantYAML tenant y a m l

swagger:model tenantYAML

func (*TenantYAML) ContextValidate

func (m *TenantYAML) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tenant y a m l based on context it is used

func (*TenantYAML) MarshalBinary

func (m *TenantYAML) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TenantYAML) UnmarshalBinary

func (m *TenantYAML) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TenantYAML) Validate

func (m *TenantYAML) Validate(formats strfmt.Registry) error

Validate validates this tenant y a m l

type Tier

type Tier struct {

	// azure
	Azure *TierAzure `json:"azure,omitempty"`

	// gcs
	Gcs *TierGcs `json:"gcs,omitempty"`

	// s3
	S3 *TierS3 `json:"s3,omitempty"`

	// type
	// Enum: [s3 gcs azure unsupported]
	Type string `json:"type,omitempty"`
}

Tier tier

swagger:model tier

func (*Tier) ContextValidate

func (m *Tier) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tier based on the context it is used

func (*Tier) MarshalBinary

func (m *Tier) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Tier) UnmarshalBinary

func (m *Tier) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Tier) Validate

func (m *Tier) Validate(formats strfmt.Registry) error

Validate validates this tier

type TierAzure

type TierAzure struct {

	// accountkey
	Accountkey string `json:"accountkey,omitempty"`

	// accountname
	Accountname string `json:"accountname,omitempty"`

	// bucket
	Bucket string `json:"bucket,omitempty"`

	// endpoint
	Endpoint string `json:"endpoint,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// region
	Region string `json:"region,omitempty"`
}

TierAzure tier azure

swagger:model tier_azure

func (*TierAzure) ContextValidate

func (m *TierAzure) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tier azure based on context it is used

func (*TierAzure) MarshalBinary

func (m *TierAzure) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TierAzure) UnmarshalBinary

func (m *TierAzure) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TierAzure) Validate

func (m *TierAzure) Validate(formats strfmt.Registry) error

Validate validates this tier azure

type TierCredentialsRequest

type TierCredentialsRequest struct {

	// access key
	AccessKey string `json:"access_key,omitempty"`

	// a base64 encoded value
	Creds string `json:"creds,omitempty"`

	// secret key
	SecretKey string `json:"secret_key,omitempty"`
}

TierCredentialsRequest tier credentials request

swagger:model tierCredentialsRequest

func (*TierCredentialsRequest) ContextValidate

func (m *TierCredentialsRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tier credentials request based on context it is used

func (*TierCredentialsRequest) MarshalBinary

func (m *TierCredentialsRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TierCredentialsRequest) UnmarshalBinary

func (m *TierCredentialsRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TierCredentialsRequest) Validate

func (m *TierCredentialsRequest) Validate(formats strfmt.Registry) error

Validate validates this tier credentials request

type TierGcs

type TierGcs struct {

	// bucket
	Bucket string `json:"bucket,omitempty"`

	// creds
	Creds string `json:"creds,omitempty"`

	// endpoint
	Endpoint string `json:"endpoint,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// region
	Region string `json:"region,omitempty"`
}

TierGcs tier gcs

swagger:model tier_gcs

func (*TierGcs) ContextValidate

func (m *TierGcs) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tier gcs based on context it is used

func (*TierGcs) MarshalBinary

func (m *TierGcs) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TierGcs) UnmarshalBinary

func (m *TierGcs) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TierGcs) Validate

func (m *TierGcs) Validate(formats strfmt.Registry) error

Validate validates this tier gcs

type TierListResponse

type TierListResponse struct {

	// items
	Items []*Tier `json:"items"`
}

TierListResponse tier list response

swagger:model tierListResponse

func (*TierListResponse) ContextValidate

func (m *TierListResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this tier list response based on the context it is used

func (*TierListResponse) MarshalBinary

func (m *TierListResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TierListResponse) UnmarshalBinary

func (m *TierListResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TierListResponse) Validate

func (m *TierListResponse) Validate(formats strfmt.Registry) error

Validate validates this tier list response

type TierS3

type TierS3 struct {

	// accesskey
	Accesskey string `json:"accesskey,omitempty"`

	// bucket
	Bucket string `json:"bucket,omitempty"`

	// endpoint
	Endpoint string `json:"endpoint,omitempty"`

	// name
	Name string `json:"name,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// region
	Region string `json:"region,omitempty"`

	// secretkey
	Secretkey string `json:"secretkey,omitempty"`

	// storageclass
	Storageclass string `json:"storageclass,omitempty"`
}

TierS3 tier s3

swagger:model tier_s3

func (*TierS3) ContextValidate

func (m *TierS3) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this tier s3 based on context it is used

func (*TierS3) MarshalBinary

func (m *TierS3) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TierS3) UnmarshalBinary

func (m *TierS3) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TierS3) Validate

func (m *TierS3) Validate(formats strfmt.Registry) error

Validate validates this tier s3

type TransitionResponse

type TransitionResponse struct {

	// date
	Date string `json:"date,omitempty"`

	// days
	Days int64 `json:"days,omitempty"`

	// storage class
	StorageClass string `json:"storage_class,omitempty"`
}

TransitionResponse transition response

swagger:model transitionResponse

func (*TransitionResponse) ContextValidate

func (m *TransitionResponse) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this transition response based on context it is used

func (*TransitionResponse) MarshalBinary

func (m *TransitionResponse) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*TransitionResponse) UnmarshalBinary

func (m *TransitionResponse) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*TransitionResponse) Validate

func (m *TransitionResponse) Validate(formats strfmt.Registry) error

Validate validates this transition response

type UpdateBucketLifecycle

type UpdateBucketLifecycle struct {

	// disable
	Disable bool `json:"disable,omitempty"`

	// tags
	Tags string `json:"tags,omitempty"`
}

UpdateBucketLifecycle update bucket lifecycle

swagger:model updateBucketLifecycle

func (*UpdateBucketLifecycle) ContextValidate

func (m *UpdateBucketLifecycle) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this update bucket lifecycle based on context it is used

func (*UpdateBucketLifecycle) MarshalBinary

func (m *UpdateBucketLifecycle) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*UpdateBucketLifecycle) UnmarshalBinary

func (m *UpdateBucketLifecycle) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*UpdateBucketLifecycle) Validate

func (m *UpdateBucketLifecycle) Validate(formats strfmt.Registry) error

Validate validates this update bucket lifecycle

type UpdateGroupRequest

type UpdateGroupRequest struct {

	// members
	// Required: true
	Members []string `json:"members"`

	// status
	// Required: true
	Status *string `json:"status"`
}

UpdateGroupRequest update group request

swagger:model updateGroupRequest

func (*UpdateGroupRequest) ContextValidate

func (m *UpdateGroupRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this update group request based on context it is used

func (*UpdateGroupRequest) MarshalBinary

func (m *UpdateGroupRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*UpdateGroupRequest) UnmarshalBinary

func (m *UpdateGroupRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*UpdateGroupRequest) Validate

func (m *UpdateGroupRequest) Validate(formats strfmt.Registry) error

Validate validates this update group request

type UpdateTenantRequest

type UpdateTenantRequest struct {

	// enable prometheus
	EnablePrometheus bool `json:"enable_prometheus,omitempty"`

	// image
	// Pattern: ^((.*?)/(.*?):(.+))$
	Image string `json:"image,omitempty"`

	// image pull secret
	ImagePullSecret string `json:"image_pull_secret,omitempty"`

	// image registry
	ImageRegistry *ImageRegistry `json:"image_registry,omitempty"`
}

UpdateTenantRequest update tenant request

swagger:model updateTenantRequest

func (*UpdateTenantRequest) ContextValidate

func (m *UpdateTenantRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this update tenant request based on the context it is used

func (*UpdateTenantRequest) MarshalBinary

func (m *UpdateTenantRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*UpdateTenantRequest) UnmarshalBinary

func (m *UpdateTenantRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*UpdateTenantRequest) Validate

func (m *UpdateTenantRequest) Validate(formats strfmt.Registry) error

Validate validates this update tenant request

type UpdateTenantSecurityRequest

type UpdateTenantSecurityRequest struct {

	// auto cert
	AutoCert bool `json:"autoCert,omitempty"`

	// custom certificates
	CustomCertificates *UpdateTenantSecurityRequestCustomCertificates `json:"customCertificates,omitempty"`
}

UpdateTenantSecurityRequest update tenant security request

swagger:model updateTenantSecurityRequest

func (*UpdateTenantSecurityRequest) ContextValidate

func (m *UpdateTenantSecurityRequest) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this update tenant security request based on the context it is used

func (*UpdateTenantSecurityRequest) MarshalBinary

func (m *UpdateTenantSecurityRequest) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*UpdateTenantSecurityRequest) UnmarshalBinary

func (m *UpdateTenantSecurityRequest) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*UpdateTenantSecurityRequest) Validate

func (m *UpdateTenantSecurityRequest) Validate(formats strfmt.Registry) error

Validate validates this update tenant security request

type UpdateTenantSecurityRequestCustomCertificates

type UpdateTenantSecurityRequestCustomCertificates struct {

	// minio
	Minio []*KeyPairConfiguration `json:"minio"`

	// minio c as
	MinioCAs []string `json:"minioCAs"`

	// secrets to be deleted
	SecretsToBeDeleted []string `json:"secretsToBeDeleted"`
}

UpdateTenantSecurityRequestCustomCertificates update tenant security request custom certificates

swagger:model UpdateTenantSecurityRequestCustomCertificates

func (*UpdateTenantSecurityRequestCustomCertificates) ContextValidate

ContextValidate validate this update tenant security request custom certificates based on the context it is used

func (*UpdateTenantSecurityRequestCustomCertificates) MarshalBinary

MarshalBinary interface implementation

func (*UpdateTenantSecurityRequestCustomCertificates) UnmarshalBinary

UnmarshalBinary interface implementation

func (*UpdateTenantSecurityRequestCustomCertificates) Validate

Validate validates this update tenant security request custom certificates

type UpdateUser

type UpdateUser struct {

	// groups
	// Required: true
	Groups []string `json:"groups"`

	// status
	// Required: true
	Status *string `json:"status"`
}

UpdateUser update user

swagger:model updateUser

func (*UpdateUser) ContextValidate

func (m *UpdateUser) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this update user based on context it is used

func (*UpdateUser) MarshalBinary

func (m *UpdateUser) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*UpdateUser) UnmarshalBinary

func (m *UpdateUser) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*UpdateUser) Validate

func (m *UpdateUser) Validate(formats strfmt.Registry) error

Validate validates this update user

type UpdateUserGroups

type UpdateUserGroups struct {

	// groups
	// Required: true
	Groups []string `json:"groups"`
}

UpdateUserGroups update user groups

swagger:model updateUserGroups

func (*UpdateUserGroups) ContextValidate

func (m *UpdateUserGroups) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this update user groups based on context it is used

func (*UpdateUserGroups) MarshalBinary

func (m *UpdateUserGroups) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*UpdateUserGroups) UnmarshalBinary

func (m *UpdateUserGroups) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*UpdateUserGroups) Validate

func (m *UpdateUserGroups) Validate(formats strfmt.Registry) error

Validate validates this update user groups

type User

type User struct {

	// access key
	AccessKey string `json:"accessKey,omitempty"`

	// has policy
	HasPolicy bool `json:"hasPolicy,omitempty"`

	// member of
	MemberOf []string `json:"memberOf"`

	// policy
	Policy []string `json:"policy"`

	// status
	Status string `json:"status,omitempty"`
}

User user

swagger:model user

func (*User) ContextValidate

func (m *User) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this user based on context it is used

func (*User) MarshalBinary

func (m *User) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*User) UnmarshalBinary

func (m *User) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*User) Validate

func (m *User) Validate(formats strfmt.Registry) error

Validate validates this user

type VaultConfiguration

type VaultConfiguration struct {

	// approle
	// Required: true
	Approle *VaultConfigurationApprole `json:"approle"`

	// endpoint
	// Required: true
	Endpoint *string `json:"endpoint"`

	// engine
	Engine string `json:"engine,omitempty"`

	// namespace
	Namespace string `json:"namespace,omitempty"`

	// prefix
	Prefix string `json:"prefix,omitempty"`

	// status
	Status *VaultConfigurationStatus `json:"status,omitempty"`

	// tls
	TLS *VaultConfigurationTLS `json:"tls,omitempty"`
}

VaultConfiguration vault configuration

swagger:model vaultConfiguration

func (*VaultConfiguration) ContextValidate

func (m *VaultConfiguration) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this vault configuration based on the context it is used

func (*VaultConfiguration) MarshalBinary

func (m *VaultConfiguration) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*VaultConfiguration) UnmarshalBinary

func (m *VaultConfiguration) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*VaultConfiguration) Validate

func (m *VaultConfiguration) Validate(formats strfmt.Registry) error

Validate validates this vault configuration

type VaultConfigurationApprole

type VaultConfigurationApprole struct {

	// engine
	Engine string `json:"engine,omitempty"`

	// id
	// Required: true
	ID *string `json:"id"`

	// retry
	Retry int64 `json:"retry,omitempty"`

	// secret
	// Required: true
	Secret *string `json:"secret"`
}

VaultConfigurationApprole vault configuration approle

swagger:model VaultConfigurationApprole

func (*VaultConfigurationApprole) ContextValidate

func (m *VaultConfigurationApprole) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this vault configuration approle based on context it is used

func (*VaultConfigurationApprole) MarshalBinary

func (m *VaultConfigurationApprole) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*VaultConfigurationApprole) UnmarshalBinary

func (m *VaultConfigurationApprole) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*VaultConfigurationApprole) Validate

func (m *VaultConfigurationApprole) Validate(formats strfmt.Registry) error

Validate validates this vault configuration approle

type VaultConfigurationStatus

type VaultConfigurationStatus struct {

	// ping
	Ping int64 `json:"ping,omitempty"`
}

VaultConfigurationStatus vault configuration status

swagger:model VaultConfigurationStatus

func (*VaultConfigurationStatus) ContextValidate

func (m *VaultConfigurationStatus) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this vault configuration status based on context it is used

func (*VaultConfigurationStatus) MarshalBinary

func (m *VaultConfigurationStatus) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*VaultConfigurationStatus) UnmarshalBinary

func (m *VaultConfigurationStatus) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*VaultConfigurationStatus) Validate

func (m *VaultConfigurationStatus) Validate(formats strfmt.Registry) error

Validate validates this vault configuration status

type VaultConfigurationTLS

type VaultConfigurationTLS struct {

	// ca
	Ca string `json:"ca,omitempty"`

	// crt
	Crt string `json:"crt,omitempty"`

	// key
	Key string `json:"key,omitempty"`
}

VaultConfigurationTLS vault configuration TLS

swagger:model VaultConfigurationTLS

func (*VaultConfigurationTLS) ContextValidate

func (m *VaultConfigurationTLS) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this vault configuration TLS based on context it is used

func (*VaultConfigurationTLS) MarshalBinary

func (m *VaultConfigurationTLS) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*VaultConfigurationTLS) UnmarshalBinary

func (m *VaultConfigurationTLS) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*VaultConfigurationTLS) Validate

func (m *VaultConfigurationTLS) Validate(formats strfmt.Registry) error

Validate validates this vault configuration TLS

type Widget

type Widget struct {

	// id
	ID int32 `json:"id,omitempty"`

	// options
	Options *WidgetOptions `json:"options,omitempty"`

	// targets
	Targets []*ResultTarget `json:"targets"`

	// title
	Title string `json:"title,omitempty"`

	// type
	Type string `json:"type,omitempty"`
}

Widget widget

swagger:model widget

func (*Widget) ContextValidate

func (m *Widget) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this widget based on the context it is used

func (*Widget) MarshalBinary

func (m *Widget) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*Widget) UnmarshalBinary

func (m *Widget) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*Widget) Validate

func (m *Widget) Validate(formats strfmt.Registry) error

Validate validates this widget

type WidgetDetails

type WidgetDetails struct {

	// id
	ID int32 `json:"id,omitempty"`

	// options
	Options *WidgetDetailsOptions `json:"options,omitempty"`

	// targets
	Targets []*ResultTarget `json:"targets"`

	// title
	Title string `json:"title,omitempty"`

	// type
	Type string `json:"type,omitempty"`
}

WidgetDetails widget details

swagger:model widgetDetails

func (*WidgetDetails) ContextValidate

func (m *WidgetDetails) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this widget details based on the context it is used

func (*WidgetDetails) MarshalBinary

func (m *WidgetDetails) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*WidgetDetails) UnmarshalBinary

func (m *WidgetDetails) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*WidgetDetails) Validate

func (m *WidgetDetails) Validate(formats strfmt.Registry) error

Validate validates this widget details

type WidgetDetailsOptions

type WidgetDetailsOptions struct {

	// reduce options
	ReduceOptions *WidgetDetailsOptionsReduceOptions `json:"reduceOptions,omitempty"`
}

WidgetDetailsOptions widget details options

swagger:model WidgetDetailsOptions

func (*WidgetDetailsOptions) ContextValidate

func (m *WidgetDetailsOptions) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this widget details options based on the context it is used

func (*WidgetDetailsOptions) MarshalBinary

func (m *WidgetDetailsOptions) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*WidgetDetailsOptions) UnmarshalBinary

func (m *WidgetDetailsOptions) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*WidgetDetailsOptions) Validate

func (m *WidgetDetailsOptions) Validate(formats strfmt.Registry) error

Validate validates this widget details options

type WidgetDetailsOptionsReduceOptions

type WidgetDetailsOptionsReduceOptions struct {

	// calcs
	Calcs []string `json:"calcs"`
}

WidgetDetailsOptionsReduceOptions widget details options reduce options

swagger:model WidgetDetailsOptionsReduceOptions

func (*WidgetDetailsOptionsReduceOptions) ContextValidate

func (m *WidgetDetailsOptionsReduceOptions) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this widget details options reduce options based on context it is used

func (*WidgetDetailsOptionsReduceOptions) MarshalBinary

func (m *WidgetDetailsOptionsReduceOptions) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*WidgetDetailsOptionsReduceOptions) UnmarshalBinary

func (m *WidgetDetailsOptionsReduceOptions) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*WidgetDetailsOptionsReduceOptions) Validate

Validate validates this widget details options reduce options

type WidgetOptions

type WidgetOptions struct {

	// reduce options
	ReduceOptions *WidgetOptionsReduceOptions `json:"reduceOptions,omitempty"`
}

WidgetOptions widget options

swagger:model WidgetOptions

func (*WidgetOptions) ContextValidate

func (m *WidgetOptions) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this widget options based on the context it is used

func (*WidgetOptions) MarshalBinary

func (m *WidgetOptions) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*WidgetOptions) UnmarshalBinary

func (m *WidgetOptions) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*WidgetOptions) Validate

func (m *WidgetOptions) Validate(formats strfmt.Registry) error

Validate validates this widget options

type WidgetOptionsReduceOptions

type WidgetOptionsReduceOptions struct {

	// calcs
	Calcs []string `json:"calcs"`
}

WidgetOptionsReduceOptions widget options reduce options

swagger:model WidgetOptionsReduceOptions

func (*WidgetOptionsReduceOptions) ContextValidate

func (m *WidgetOptionsReduceOptions) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this widget options reduce options based on context it is used

func (*WidgetOptionsReduceOptions) MarshalBinary

func (m *WidgetOptionsReduceOptions) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*WidgetOptionsReduceOptions) UnmarshalBinary

func (m *WidgetOptionsReduceOptions) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*WidgetOptionsReduceOptions) Validate

func (m *WidgetOptionsReduceOptions) Validate(formats strfmt.Registry) error

Validate validates this widget options reduce options

type WidgetResult

type WidgetResult struct {

	// metric
	Metric map[string]string `json:"metric,omitempty"`

	// values
	Values []interface{} `json:"values"`
}

WidgetResult widget result

swagger:model widgetResult

func (*WidgetResult) ContextValidate

func (m *WidgetResult) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this widget result based on context it is used

func (*WidgetResult) MarshalBinary

func (m *WidgetResult) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*WidgetResult) UnmarshalBinary

func (m *WidgetResult) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*WidgetResult) Validate

func (m *WidgetResult) Validate(formats strfmt.Registry) error

Validate validates this widget result

Source Files

Jump to

Keyboard shortcuts

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