adminv1

package
v0.9.2 Latest Latest
Warning

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

Go to latest
Published: Apr 5, 2024 License: MIT Imports: 20 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_admin_v1_cluster_proto protoreflect.FileDescriptor
View Source
var File_admin_v1_machine_proto protoreflect.FileDescriptor
View Source
var File_admin_v1_payment_proto protoreflect.FileDescriptor
View Source
var File_admin_v1_storage_proto protoreflect.FileDescriptor
View Source
var File_admin_v1_tenant_proto protoreflect.FileDescriptor
View Source
var File_admin_v1_token_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ClusterHealth

type ClusterHealth struct {

	// State of the cluster
	State string `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
	// NumDegradedVolumes is the number of degraded volumes
	NumDegradedVolumes uint32 `protobuf:"varint,2,opt,name=num_degraded_volumes,json=numDegradedVolumes,proto3" json:"num_degraded_volumes,omitempty"`
	// NumReadonlyVolumes is the number of read only volumes
	NumReadOnlyVolumes uint32 `protobuf:"varint,3,opt,name=num_read_only_volumes,json=numReadOnlyVolumes,proto3" json:"num_read_only_volumes,omitempty"`
	// NumNotAvailableVolumes is the number of not available volumes
	NumNotAvailableVolumes uint32 `` /* 132-byte string literal not displayed */
	// NumInactiveVolumes is the number of inactive volumes
	NumInactiveNodes uint32 `protobuf:"varint,5,opt,name=num_inactive_nodes,json=numInactiveNodes,proto3" json:"num_inactive_nodes,omitempty"`
	// contains filtered or unexported fields
}

ClusterHealth the health of the cluster

func (*ClusterHealth) Descriptor deprecated

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

Deprecated: Use ClusterHealth.ProtoReflect.Descriptor instead.

func (*ClusterHealth) GetNumDegradedVolumes

func (x *ClusterHealth) GetNumDegradedVolumes() uint32

func (*ClusterHealth) GetNumInactiveNodes

func (x *ClusterHealth) GetNumInactiveNodes() uint32

func (*ClusterHealth) GetNumNotAvailableVolumes

func (x *ClusterHealth) GetNumNotAvailableVolumes() uint32

func (*ClusterHealth) GetNumReadOnlyVolumes

func (x *ClusterHealth) GetNumReadOnlyVolumes() uint32

func (*ClusterHealth) GetState

func (x *ClusterHealth) GetState() string

func (*ClusterHealth) ProtoMessage

func (*ClusterHealth) ProtoMessage()

func (*ClusterHealth) ProtoReflect

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

func (*ClusterHealth) Reset

func (x *ClusterHealth) Reset()

func (*ClusterHealth) String

func (x *ClusterHealth) String() string

func (*ClusterHealth) Validate

func (m *ClusterHealth) Validate() error

Validate checks the field values on ClusterHealth with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterHealth) ValidateAll

func (m *ClusterHealth) ValidateAll() error

ValidateAll checks the field values on ClusterHealth with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterHealthMultiError, or nil if none found.

type ClusterHealthMultiError

type ClusterHealthMultiError []error

ClusterHealthMultiError is an error wrapping multiple validation errors returned by ClusterHealth.ValidateAll() if the designated constraints aren't met.

func (ClusterHealthMultiError) AllErrors

func (m ClusterHealthMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterHealthMultiError) Error

func (m ClusterHealthMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ClusterHealthValidationError

type ClusterHealthValidationError struct {
	// contains filtered or unexported fields
}

ClusterHealthValidationError is the validation error returned by ClusterHealth.Validate if the designated constraints aren't met.

func (ClusterHealthValidationError) Cause

Cause function returns cause value.

func (ClusterHealthValidationError) Error

Error satisfies the builtin error interface

func (ClusterHealthValidationError) ErrorName

func (e ClusterHealthValidationError) ErrorName() string

ErrorName returns error name.

func (ClusterHealthValidationError) Field

Field function returns field value.

func (ClusterHealthValidationError) Key

Key function returns key value.

func (ClusterHealthValidationError) Reason

Reason function returns reason value.

type ClusterServiceCredentialsRequest

type ClusterServiceCredentialsRequest struct {

	// Uuid of the cluster
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// WithVpn if set VPN details are returned
	WithVpn bool `protobuf:"varint,2,opt,name=with_vpn,json=withVpn,proto3" json:"with_vpn,omitempty"`
	// WithSsh if set ssh access credentials are returned
	WithSsh bool `protobuf:"varint,3,opt,name=with_ssh,json=withSsh,proto3" json:"with_ssh,omitempty"`
	// Expiration defines the duration after which the kubernetes token is not valid anymore
	Expiration *durationpb.Duration `protobuf:"bytes,4,opt,name=expiration,proto3,oneof" json:"expiration,omitempty"`
	// contains filtered or unexported fields
}

ClusterServiceCredentialsRequest is the request payload for the cluster credentials request

func (*ClusterServiceCredentialsRequest) Descriptor deprecated

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

Deprecated: Use ClusterServiceCredentialsRequest.ProtoReflect.Descriptor instead.

func (*ClusterServiceCredentialsRequest) GetExpiration

func (*ClusterServiceCredentialsRequest) GetUuid

func (*ClusterServiceCredentialsRequest) GetWithSsh

func (x *ClusterServiceCredentialsRequest) GetWithSsh() bool

func (*ClusterServiceCredentialsRequest) GetWithVpn

func (x *ClusterServiceCredentialsRequest) GetWithVpn() bool

func (*ClusterServiceCredentialsRequest) ProtoMessage

func (*ClusterServiceCredentialsRequest) ProtoMessage()

func (*ClusterServiceCredentialsRequest) ProtoReflect

func (*ClusterServiceCredentialsRequest) Reset

func (*ClusterServiceCredentialsRequest) String

func (*ClusterServiceCredentialsRequest) Validate

Validate checks the field values on ClusterServiceCredentialsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterServiceCredentialsRequest) ValidateAll

func (m *ClusterServiceCredentialsRequest) ValidateAll() error

ValidateAll checks the field values on ClusterServiceCredentialsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterServiceCredentialsRequestMultiError, or nil if none found.

type ClusterServiceCredentialsRequestMultiError

type ClusterServiceCredentialsRequestMultiError []error

ClusterServiceCredentialsRequestMultiError is an error wrapping multiple validation errors returned by ClusterServiceCredentialsRequest.ValidateAll() if the designated constraints aren't met.

func (ClusterServiceCredentialsRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ClusterServiceCredentialsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterServiceCredentialsRequestValidationError

type ClusterServiceCredentialsRequestValidationError struct {
	// contains filtered or unexported fields
}

ClusterServiceCredentialsRequestValidationError is the validation error returned by ClusterServiceCredentialsRequest.Validate if the designated constraints aren't met.

func (ClusterServiceCredentialsRequestValidationError) Cause

Cause function returns cause value.

func (ClusterServiceCredentialsRequestValidationError) Error

Error satisfies the builtin error interface

func (ClusterServiceCredentialsRequestValidationError) ErrorName

ErrorName returns error name.

func (ClusterServiceCredentialsRequestValidationError) Field

Field function returns field value.

func (ClusterServiceCredentialsRequestValidationError) Key

Key function returns key value.

func (ClusterServiceCredentialsRequestValidationError) Reason

Reason function returns reason value.

type ClusterServiceCredentialsResponse

type ClusterServiceCredentialsResponse struct {

	// Kubeconfig is the access token for the kubernetes api of this cluster
	Kubeconfig string `protobuf:"bytes,1,opt,name=kubeconfig,proto3" json:"kubeconfig,omitempty"`
	// SshKeypair is the keypair to access the firewall of the cluster with ssh
	SshKeypair *SSHKeyPair `protobuf:"bytes,2,opt,name=ssh_keypair,json=sshKeypair,proto3" json:"ssh_keypair,omitempty"`
	// Vpn are the VPN access details
	Vpn *VPN `protobuf:"bytes,3,opt,name=vpn,proto3" json:"vpn,omitempty"`
	// contains filtered or unexported fields
}

ClusterServiceCredentialsResponse is the response payload for the cluster credentials request

func (*ClusterServiceCredentialsResponse) Descriptor deprecated

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

Deprecated: Use ClusterServiceCredentialsResponse.ProtoReflect.Descriptor instead.

func (*ClusterServiceCredentialsResponse) GetKubeconfig

func (x *ClusterServiceCredentialsResponse) GetKubeconfig() string

func (*ClusterServiceCredentialsResponse) GetSshKeypair

func (x *ClusterServiceCredentialsResponse) GetSshKeypair() *SSHKeyPair

func (*ClusterServiceCredentialsResponse) GetVpn

func (*ClusterServiceCredentialsResponse) ProtoMessage

func (*ClusterServiceCredentialsResponse) ProtoMessage()

func (*ClusterServiceCredentialsResponse) ProtoReflect

func (*ClusterServiceCredentialsResponse) Reset

func (*ClusterServiceCredentialsResponse) String

func (*ClusterServiceCredentialsResponse) Validate

Validate checks the field values on ClusterServiceCredentialsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterServiceCredentialsResponse) ValidateAll

func (m *ClusterServiceCredentialsResponse) ValidateAll() error

ValidateAll checks the field values on ClusterServiceCredentialsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterServiceCredentialsResponseMultiError, or nil if none found.

type ClusterServiceCredentialsResponseMultiError

type ClusterServiceCredentialsResponseMultiError []error

ClusterServiceCredentialsResponseMultiError is an error wrapping multiple validation errors returned by ClusterServiceCredentialsResponse.ValidateAll() if the designated constraints aren't met.

func (ClusterServiceCredentialsResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ClusterServiceCredentialsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterServiceCredentialsResponseValidationError

type ClusterServiceCredentialsResponseValidationError struct {
	// contains filtered or unexported fields
}

ClusterServiceCredentialsResponseValidationError is the validation error returned by ClusterServiceCredentialsResponse.Validate if the designated constraints aren't met.

func (ClusterServiceCredentialsResponseValidationError) Cause

Cause function returns cause value.

func (ClusterServiceCredentialsResponseValidationError) Error

Error satisfies the builtin error interface

func (ClusterServiceCredentialsResponseValidationError) ErrorName

ErrorName returns error name.

func (ClusterServiceCredentialsResponseValidationError) Field

Field function returns field value.

func (ClusterServiceCredentialsResponseValidationError) Key

Key function returns key value.

func (ClusterServiceCredentialsResponseValidationError) Reason

Reason function returns reason value.

type ClusterServiceGetRequest

type ClusterServiceGetRequest struct {

	// Uuid of the cluster to get
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// WithMachines if set to true machines of all worker groups are also returned
	WithMachines bool `protobuf:"varint,2,opt,name=with_machines,json=withMachines,proto3" json:"with_machines,omitempty"`
	// contains filtered or unexported fields
}

ClusterServiceGetRequest is the request payload for the cluster get request

func (*ClusterServiceGetRequest) Descriptor deprecated

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

Deprecated: Use ClusterServiceGetRequest.ProtoReflect.Descriptor instead.

func (*ClusterServiceGetRequest) GetUuid

func (x *ClusterServiceGetRequest) GetUuid() string

func (*ClusterServiceGetRequest) GetWithMachines

func (x *ClusterServiceGetRequest) GetWithMachines() bool

func (*ClusterServiceGetRequest) ProtoMessage

func (*ClusterServiceGetRequest) ProtoMessage()

func (*ClusterServiceGetRequest) ProtoReflect

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

func (*ClusterServiceGetRequest) Reset

func (x *ClusterServiceGetRequest) Reset()

func (*ClusterServiceGetRequest) String

func (x *ClusterServiceGetRequest) String() string

func (*ClusterServiceGetRequest) Validate

func (m *ClusterServiceGetRequest) Validate() error

Validate checks the field values on ClusterServiceGetRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterServiceGetRequest) ValidateAll

func (m *ClusterServiceGetRequest) ValidateAll() error

ValidateAll checks the field values on ClusterServiceGetRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterServiceGetRequestMultiError, or nil if none found.

type ClusterServiceGetRequestMultiError

type ClusterServiceGetRequestMultiError []error

ClusterServiceGetRequestMultiError is an error wrapping multiple validation errors returned by ClusterServiceGetRequest.ValidateAll() if the designated constraints aren't met.

func (ClusterServiceGetRequestMultiError) AllErrors

func (m ClusterServiceGetRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterServiceGetRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterServiceGetRequestValidationError

type ClusterServiceGetRequestValidationError struct {
	// contains filtered or unexported fields
}

ClusterServiceGetRequestValidationError is the validation error returned by ClusterServiceGetRequest.Validate if the designated constraints aren't met.

func (ClusterServiceGetRequestValidationError) Cause

Cause function returns cause value.

func (ClusterServiceGetRequestValidationError) Error

Error satisfies the builtin error interface

func (ClusterServiceGetRequestValidationError) ErrorName

ErrorName returns error name.

func (ClusterServiceGetRequestValidationError) Field

Field function returns field value.

func (ClusterServiceGetRequestValidationError) Key

Key function returns key value.

func (ClusterServiceGetRequestValidationError) Reason

Reason function returns reason value.

type ClusterServiceGetResponse

type ClusterServiceGetResponse struct {

	// Cluster is the cluster
	Cluster *v1.Cluster `protobuf:"bytes,1,opt,name=cluster,proto3" json:"cluster,omitempty"`
	// Machines is a list of all machines in all worker groups
	Machines []*Machine `protobuf:"bytes,2,rep,name=machines,proto3" json:"machines,omitempty"`
	// contains filtered or unexported fields
}

ClusterServiceGetResponse is the response payload for the cluster get request

func (*ClusterServiceGetResponse) Descriptor deprecated

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

Deprecated: Use ClusterServiceGetResponse.ProtoReflect.Descriptor instead.

func (*ClusterServiceGetResponse) GetCluster

func (x *ClusterServiceGetResponse) GetCluster() *v1.Cluster

func (*ClusterServiceGetResponse) GetMachines

func (x *ClusterServiceGetResponse) GetMachines() []*Machine

func (*ClusterServiceGetResponse) ProtoMessage

func (*ClusterServiceGetResponse) ProtoMessage()

func (*ClusterServiceGetResponse) ProtoReflect

func (*ClusterServiceGetResponse) Reset

func (x *ClusterServiceGetResponse) Reset()

func (*ClusterServiceGetResponse) String

func (x *ClusterServiceGetResponse) String() string

func (*ClusterServiceGetResponse) Validate

func (m *ClusterServiceGetResponse) Validate() error

Validate checks the field values on ClusterServiceGetResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterServiceGetResponse) ValidateAll

func (m *ClusterServiceGetResponse) ValidateAll() error

ValidateAll checks the field values on ClusterServiceGetResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterServiceGetResponseMultiError, or nil if none found.

type ClusterServiceGetResponseMultiError

type ClusterServiceGetResponseMultiError []error

ClusterServiceGetResponseMultiError is an error wrapping multiple validation errors returned by ClusterServiceGetResponse.ValidateAll() if the designated constraints aren't met.

func (ClusterServiceGetResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ClusterServiceGetResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterServiceGetResponseValidationError

type ClusterServiceGetResponseValidationError struct {
	// contains filtered or unexported fields
}

ClusterServiceGetResponseValidationError is the validation error returned by ClusterServiceGetResponse.Validate if the designated constraints aren't met.

func (ClusterServiceGetResponseValidationError) Cause

Cause function returns cause value.

func (ClusterServiceGetResponseValidationError) Error

Error satisfies the builtin error interface

func (ClusterServiceGetResponseValidationError) ErrorName

ErrorName returns error name.

func (ClusterServiceGetResponseValidationError) Field

Field function returns field value.

func (ClusterServiceGetResponseValidationError) Key

Key function returns key value.

func (ClusterServiceGetResponseValidationError) Reason

Reason function returns reason value.

type ClusterServiceListRequest

type ClusterServiceListRequest struct {

	// Uuid of the cluster
	Uuid *string `protobuf:"bytes,1,opt,name=uuid,proto3,oneof" json:"uuid,omitempty"`
	// Project of the cluster
	Project *string `protobuf:"bytes,2,opt,name=project,proto3,oneof" json:"project,omitempty"`
	// Tenant of the cluster
	Tenant *string `protobuf:"bytes,3,opt,name=tenant,proto3,oneof" json:"tenant,omitempty"`
	// Partition of the cluster
	Partition *string `protobuf:"bytes,4,opt,name=partition,proto3,oneof" json:"partition,omitempty"`
	// Seed of the cluster
	Seed *string `protobuf:"bytes,5,opt,name=seed,proto3,oneof" json:"seed,omitempty"`
	// Name of the cluster
	Name *string `protobuf:"bytes,6,opt,name=name,proto3,oneof" json:"name,omitempty"`
	// Purpose of the cluster
	Purpose *string `protobuf:"bytes,7,opt,name=purpose,proto3,oneof" json:"purpose,omitempty"`
	// Labels of the cluster
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

ClusterServiceListRequest is the request payload for the cluster list request

func (*ClusterServiceListRequest) Descriptor deprecated

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

Deprecated: Use ClusterServiceListRequest.ProtoReflect.Descriptor instead.

func (*ClusterServiceListRequest) GetLabels

func (x *ClusterServiceListRequest) GetLabels() map[string]string

func (*ClusterServiceListRequest) GetName

func (x *ClusterServiceListRequest) GetName() string

func (*ClusterServiceListRequest) GetPartition

func (x *ClusterServiceListRequest) GetPartition() string

func (*ClusterServiceListRequest) GetProject

func (x *ClusterServiceListRequest) GetProject() string

func (*ClusterServiceListRequest) GetPurpose

func (x *ClusterServiceListRequest) GetPurpose() string

func (*ClusterServiceListRequest) GetSeed

func (x *ClusterServiceListRequest) GetSeed() string

func (*ClusterServiceListRequest) GetTenant

func (x *ClusterServiceListRequest) GetTenant() string

func (*ClusterServiceListRequest) GetUuid

func (x *ClusterServiceListRequest) GetUuid() string

func (*ClusterServiceListRequest) ProtoMessage

func (*ClusterServiceListRequest) ProtoMessage()

func (*ClusterServiceListRequest) ProtoReflect

func (*ClusterServiceListRequest) Reset

func (x *ClusterServiceListRequest) Reset()

func (*ClusterServiceListRequest) String

func (x *ClusterServiceListRequest) String() string

func (*ClusterServiceListRequest) Validate

func (m *ClusterServiceListRequest) Validate() error

Validate checks the field values on ClusterServiceListRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterServiceListRequest) ValidateAll

func (m *ClusterServiceListRequest) ValidateAll() error

ValidateAll checks the field values on ClusterServiceListRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterServiceListRequestMultiError, or nil if none found.

type ClusterServiceListRequestMultiError

type ClusterServiceListRequestMultiError []error

ClusterServiceListRequestMultiError is an error wrapping multiple validation errors returned by ClusterServiceListRequest.ValidateAll() if the designated constraints aren't met.

func (ClusterServiceListRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ClusterServiceListRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterServiceListRequestValidationError

type ClusterServiceListRequestValidationError struct {
	// contains filtered or unexported fields
}

ClusterServiceListRequestValidationError is the validation error returned by ClusterServiceListRequest.Validate if the designated constraints aren't met.

func (ClusterServiceListRequestValidationError) Cause

Cause function returns cause value.

func (ClusterServiceListRequestValidationError) Error

Error satisfies the builtin error interface

func (ClusterServiceListRequestValidationError) ErrorName

ErrorName returns error name.

func (ClusterServiceListRequestValidationError) Field

Field function returns field value.

func (ClusterServiceListRequestValidationError) Key

Key function returns key value.

func (ClusterServiceListRequestValidationError) Reason

Reason function returns reason value.

type ClusterServiceListResponse

type ClusterServiceListResponse struct {

	// Clusters is the list of clusters
	Clusters []*v1.Cluster `protobuf:"bytes,1,rep,name=clusters,proto3" json:"clusters,omitempty"`
	// contains filtered or unexported fields
}

ClusterServiceListResponse is the response payload for the cluster list request

func (*ClusterServiceListResponse) Descriptor deprecated

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

Deprecated: Use ClusterServiceListResponse.ProtoReflect.Descriptor instead.

func (*ClusterServiceListResponse) GetClusters

func (x *ClusterServiceListResponse) GetClusters() []*v1.Cluster

func (*ClusterServiceListResponse) ProtoMessage

func (*ClusterServiceListResponse) ProtoMessage()

func (*ClusterServiceListResponse) ProtoReflect

func (*ClusterServiceListResponse) Reset

func (x *ClusterServiceListResponse) Reset()

func (*ClusterServiceListResponse) String

func (x *ClusterServiceListResponse) String() string

func (*ClusterServiceListResponse) Validate

func (m *ClusterServiceListResponse) Validate() error

Validate checks the field values on ClusterServiceListResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterServiceListResponse) ValidateAll

func (m *ClusterServiceListResponse) ValidateAll() error

ValidateAll checks the field values on ClusterServiceListResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterServiceListResponseMultiError, or nil if none found.

type ClusterServiceListResponseMultiError

type ClusterServiceListResponseMultiError []error

ClusterServiceListResponseMultiError is an error wrapping multiple validation errors returned by ClusterServiceListResponse.ValidateAll() if the designated constraints aren't met.

func (ClusterServiceListResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ClusterServiceListResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterServiceListResponseValidationError

type ClusterServiceListResponseValidationError struct {
	// contains filtered or unexported fields
}

ClusterServiceListResponseValidationError is the validation error returned by ClusterServiceListResponse.Validate if the designated constraints aren't met.

func (ClusterServiceListResponseValidationError) Cause

Cause function returns cause value.

func (ClusterServiceListResponseValidationError) Error

Error satisfies the builtin error interface

func (ClusterServiceListResponseValidationError) ErrorName

ErrorName returns error name.

func (ClusterServiceListResponseValidationError) Field

Field function returns field value.

func (ClusterServiceListResponseValidationError) Key

Key function returns key value.

func (ClusterServiceListResponseValidationError) Reason

Reason function returns reason value.

type ClusterStatisticsApi

type ClusterStatisticsApi struct {

	// Installed Physical Storage
	//
	// All installed SSDs capacities over all servers in cluster, given in bytes.
	InstalledPhysicalStorage uint64 `` /* 136-byte string literal not displayed */
	// Total Attached Physical Storage
	//
	// Sum of all managed and healthy SSDs capacities, given in bytes.
	ManagedPhysicalStorage uint64 `` /* 130-byte string literal not displayed */
	// Effective Physical Storage
	//
	// Effective Physical storage excluding overhead of OVP and Parity, given in bytes.
	EffectivePhysicalStorage uint64 `` /* 136-byte string literal not displayed */
	// Logical Storage
	//
	// Sum of capacities of all allocated volumes, given in bytes.
	LogicalStorage uint64 `protobuf:"varint,4,opt,name=logical_storage,json=logicalStorage,proto3" json:"logical_storage,omitempty"`
	// Logical Used Storage
	//
	// Logical storage space used by all volumes (n of LBAs x 4096), given in bytes.
	LogicalUsedStorage uint64 `protobuf:"varint,5,opt,name=logical_used_storage,json=logicalUsedStorage,proto3" json:"logical_used_storage,omitempty"`
	// Physical Used Storage Excluding Parity
	//
	// Physical storage space occupied by all volumes (data only), given in bytes.
	PhysicalUsedStorage uint64 `protobuf:"varint,6,opt,name=physical_used_storage,json=physicalUsedStorage,proto3" json:"physical_used_storage,omitempty"`
	// Physical Used Storage
	//
	// Physical storage space occupied by all data including Parity overhead when EC enabled (physical n*disks/(n*disks -1)), given in bytes.
	PhysicalUsedStorageIncludingParity uint64 `` /* 170-byte string literal not displayed */
	// Free Physical Storage
	//
	// Free storage before entering to read-only mode , given in bytes.
	FreePhysicalStorage uint64 `protobuf:"varint,8,opt,name=free_physical_storage,json=freePhysicalStorage,proto3" json:"free_physical_storage,omitempty"`
	// Estimated Free Logical Storage
	//
	// Estimated free storage before entering to read-only mode assuming current compression ratio, given in bytes.
	EstimatedFreeLogicalStorage uint64 `` /* 147-byte string literal not displayed */
	// Estimated Total Available Logical Storage
	//
	// Estimate of total available logical storage based on current compression ratio (effective * compression)
	EstimatedLogicalStorage uint64 `` /* 134-byte string literal not displayed */
	// compression ratio
	//
	// compression ratio logicalUsedStorage/physicalUsedStorage
	CompressionRatio float64 `protobuf:"fixed64,11,opt,name=compression_ratio,json=compressionRatio,proto3" json:"compression_ratio,omitempty"`
	// contains filtered or unexported fields
}

ClusterStatisticsApi detailed statistics of the storage cluster

func (*ClusterStatisticsApi) Descriptor deprecated

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

Deprecated: Use ClusterStatisticsApi.ProtoReflect.Descriptor instead.

func (*ClusterStatisticsApi) GetCompressionRatio

func (x *ClusterStatisticsApi) GetCompressionRatio() float64

func (*ClusterStatisticsApi) GetEffectivePhysicalStorage

func (x *ClusterStatisticsApi) GetEffectivePhysicalStorage() uint64

func (*ClusterStatisticsApi) GetEstimatedFreeLogicalStorage

func (x *ClusterStatisticsApi) GetEstimatedFreeLogicalStorage() uint64

func (*ClusterStatisticsApi) GetEstimatedLogicalStorage

func (x *ClusterStatisticsApi) GetEstimatedLogicalStorage() uint64

func (*ClusterStatisticsApi) GetFreePhysicalStorage

func (x *ClusterStatisticsApi) GetFreePhysicalStorage() uint64

func (*ClusterStatisticsApi) GetInstalledPhysicalStorage

func (x *ClusterStatisticsApi) GetInstalledPhysicalStorage() uint64

func (*ClusterStatisticsApi) GetLogicalStorage

func (x *ClusterStatisticsApi) GetLogicalStorage() uint64

func (*ClusterStatisticsApi) GetLogicalUsedStorage

func (x *ClusterStatisticsApi) GetLogicalUsedStorage() uint64

func (*ClusterStatisticsApi) GetManagedPhysicalStorage

func (x *ClusterStatisticsApi) GetManagedPhysicalStorage() uint64

func (*ClusterStatisticsApi) GetPhysicalUsedStorage

func (x *ClusterStatisticsApi) GetPhysicalUsedStorage() uint64

func (*ClusterStatisticsApi) GetPhysicalUsedStorageIncludingParity

func (x *ClusterStatisticsApi) GetPhysicalUsedStorageIncludingParity() uint64

func (*ClusterStatisticsApi) ProtoMessage

func (*ClusterStatisticsApi) ProtoMessage()

func (*ClusterStatisticsApi) ProtoReflect

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

func (*ClusterStatisticsApi) Reset

func (x *ClusterStatisticsApi) Reset()

func (*ClusterStatisticsApi) String

func (x *ClusterStatisticsApi) String() string

func (*ClusterStatisticsApi) Validate

func (m *ClusterStatisticsApi) Validate() error

Validate checks the field values on ClusterStatisticsApi with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ClusterStatisticsApi) ValidateAll

func (m *ClusterStatisticsApi) ValidateAll() error

ValidateAll checks the field values on ClusterStatisticsApi with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ClusterStatisticsApiMultiError, or nil if none found.

type ClusterStatisticsApiMultiError

type ClusterStatisticsApiMultiError []error

ClusterStatisticsApiMultiError is an error wrapping multiple validation errors returned by ClusterStatisticsApi.ValidateAll() if the designated constraints aren't met.

func (ClusterStatisticsApiMultiError) AllErrors

func (m ClusterStatisticsApiMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ClusterStatisticsApiMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ClusterStatisticsApiValidationError

type ClusterStatisticsApiValidationError struct {
	// contains filtered or unexported fields
}

ClusterStatisticsApiValidationError is the validation error returned by ClusterStatisticsApi.Validate if the designated constraints aren't met.

func (ClusterStatisticsApiValidationError) Cause

Cause function returns cause value.

func (ClusterStatisticsApiValidationError) Error

Error satisfies the builtin error interface

func (ClusterStatisticsApiValidationError) ErrorName

ErrorName returns error name.

func (ClusterStatisticsApiValidationError) Field

Field function returns field value.

func (ClusterStatisticsApiValidationError) Key

Key function returns key value.

func (ClusterStatisticsApiValidationError) Reason

Reason function returns reason value.

type Machine

type Machine struct {

	// Uuid of this machine
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// Name of the machine
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// Description of the machine
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// Project this machine belongs to
	Project string `protobuf:"bytes,4,opt,name=project,proto3" json:"project,omitempty"`
	// Image which is installed on this machine
	Image string `protobuf:"bytes,5,opt,name=image,proto3" json:"image,omitempty"`
	// Size of this machine
	Size string `protobuf:"bytes,6,opt,name=size,proto3" json:"size,omitempty"`
	// MachineNetworks is a list of networks this machine is connected to
	MachineNetworks []*MachineNetwork `protobuf:"bytes,7,rep,name=machine_networks,json=machineNetworks,proto3" json:"machine_networks,omitempty"`
	// Hostname of this machine
	Hostname string `protobuf:"bytes,8,opt,name=hostname,proto3" json:"hostname,omitempty"`
	// UserDate which are used for bootstrapping
	UserData string `protobuf:"bytes,9,opt,name=user_data,json=userData,proto3" json:"user_data,omitempty"`
	// Role of this machine, can be either machine or firewall
	Role string `protobuf:"bytes,10,opt,name=role,proto3" json:"role,omitempty"`
	// Creator is the user who ordered this machine
	Creator string `protobuf:"bytes,11,opt,name=creator,proto3" json:"creator,omitempty"`
	// Created is the date when this machine was created
	Created *timestamppb.Timestamp `protobuf:"bytes,12,opt,name=created,proto3" json:"created,omitempty"`
	// Partition where this machine resides
	Partition string `protobuf:"bytes,13,opt,name=partition,proto3" json:"partition,omitempty"`
	// Rack where this machine resides
	Rack string `protobuf:"bytes,14,opt,name=rack,proto3" json:"rack,omitempty"`
	// State of this machine
	State string `protobuf:"bytes,15,opt,name=state,proto3" json:"state,omitempty"`
	// Liveliness of this machine
	Liveliness string `protobuf:"bytes,16,opt,name=liveliness,proto3" json:"liveliness,omitempty"`
	// Tags put on this machine
	Tags []string `protobuf:"bytes,17,rep,name=tags,proto3" json:"tags,omitempty"`
	// Vpn details for this machine if any
	Vpn *VPN `protobuf:"bytes,18,opt,name=vpn,proto3" json:"vpn,omitempty"`
	// contains filtered or unexported fields
}

Machine is a metal-api machine

func (*Machine) Descriptor deprecated

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

Deprecated: Use Machine.ProtoReflect.Descriptor instead.

func (*Machine) GetCreated

func (x *Machine) GetCreated() *timestamppb.Timestamp

func (*Machine) GetCreator

func (x *Machine) GetCreator() string

func (*Machine) GetDescription

func (x *Machine) GetDescription() string

func (*Machine) GetHostname

func (x *Machine) GetHostname() string

func (*Machine) GetImage

func (x *Machine) GetImage() string

func (*Machine) GetLiveliness

func (x *Machine) GetLiveliness() string

func (*Machine) GetMachineNetworks

func (x *Machine) GetMachineNetworks() []*MachineNetwork

func (*Machine) GetName

func (x *Machine) GetName() string

func (*Machine) GetPartition

func (x *Machine) GetPartition() string

func (*Machine) GetProject

func (x *Machine) GetProject() string

func (*Machine) GetRack

func (x *Machine) GetRack() string

func (*Machine) GetRole

func (x *Machine) GetRole() string

func (*Machine) GetSize

func (x *Machine) GetSize() string

func (*Machine) GetState

func (x *Machine) GetState() string

func (*Machine) GetTags

func (x *Machine) GetTags() []string

func (*Machine) GetUserData

func (x *Machine) GetUserData() string

func (*Machine) GetUuid

func (x *Machine) GetUuid() string

func (*Machine) GetVpn

func (x *Machine) GetVpn() *VPN

func (*Machine) ProtoMessage

func (*Machine) ProtoMessage()

func (*Machine) ProtoReflect

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

func (*Machine) Reset

func (x *Machine) Reset()

func (*Machine) String

func (x *Machine) String() string

func (*Machine) Validate

func (m *Machine) Validate() error

Validate checks the field values on Machine with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Machine) ValidateAll

func (m *Machine) ValidateAll() error

ValidateAll checks the field values on Machine with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MachineMultiError, or nil if none found.

type MachineMultiError

type MachineMultiError []error

MachineMultiError is an error wrapping multiple validation errors returned by Machine.ValidateAll() if the designated constraints aren't met.

func (MachineMultiError) AllErrors

func (m MachineMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MachineMultiError) Error

func (m MachineMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type MachineNetwork

type MachineNetwork struct {

	// Network is the uuid of this network
	Network string `protobuf:"bytes,1,opt,name=network,proto3" json:"network,omitempty"`
	// Prefixes available in this network
	Prefixes []string `protobuf:"bytes,2,rep,name=prefixes,proto3" json:"prefixes,omitempty"`
	// Ips attached for the machine in this network
	Ips []string `protobuf:"bytes,3,rep,name=ips,proto3" json:"ips,omitempty"`
	// DestinationPrefixes define for which prefixes destination routes are defined
	DestinationPrefixes []string `protobuf:"bytes,4,rep,name=destination_prefixes,json=destinationPrefixes,proto3" json:"destination_prefixes,omitempty"`
	// NetworkType of this network
	NetworkType string `protobuf:"bytes,5,opt,name=network_type,json=networkType,proto3" json:"network_type,omitempty"`
	// Vrf is the VRF number of this network
	Vrf uint32 `protobuf:"varint,6,opt,name=vrf,proto3" json:"vrf,omitempty"`
	// Asn is the ASN number of this machine in this network
	Asn int64 `protobuf:"varint,7,opt,name=asn,proto3" json:"asn,omitempty"`
	// contains filtered or unexported fields
}

MachineNetwork describes the details of the network connectivity of a machine

func (*MachineNetwork) Descriptor deprecated

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

Deprecated: Use MachineNetwork.ProtoReflect.Descriptor instead.

func (*MachineNetwork) GetAsn

func (x *MachineNetwork) GetAsn() int64

func (*MachineNetwork) GetDestinationPrefixes

func (x *MachineNetwork) GetDestinationPrefixes() []string

func (*MachineNetwork) GetIps

func (x *MachineNetwork) GetIps() []string

func (*MachineNetwork) GetNetwork

func (x *MachineNetwork) GetNetwork() string

func (*MachineNetwork) GetNetworkType

func (x *MachineNetwork) GetNetworkType() string

func (*MachineNetwork) GetPrefixes

func (x *MachineNetwork) GetPrefixes() []string

func (*MachineNetwork) GetVrf

func (x *MachineNetwork) GetVrf() uint32

func (*MachineNetwork) ProtoMessage

func (*MachineNetwork) ProtoMessage()

func (*MachineNetwork) ProtoReflect

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

func (*MachineNetwork) Reset

func (x *MachineNetwork) Reset()

func (*MachineNetwork) String

func (x *MachineNetwork) String() string

func (*MachineNetwork) Validate

func (m *MachineNetwork) Validate() error

Validate checks the field values on MachineNetwork with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*MachineNetwork) ValidateAll

func (m *MachineNetwork) ValidateAll() error

ValidateAll checks the field values on MachineNetwork with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in MachineNetworkMultiError, or nil if none found.

type MachineNetworkMultiError

type MachineNetworkMultiError []error

MachineNetworkMultiError is an error wrapping multiple validation errors returned by MachineNetwork.ValidateAll() if the designated constraints aren't met.

func (MachineNetworkMultiError) AllErrors

func (m MachineNetworkMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (MachineNetworkMultiError) Error

func (m MachineNetworkMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type MachineNetworkValidationError

type MachineNetworkValidationError struct {
	// contains filtered or unexported fields
}

MachineNetworkValidationError is the validation error returned by MachineNetwork.Validate if the designated constraints aren't met.

func (MachineNetworkValidationError) Cause

Cause function returns cause value.

func (MachineNetworkValidationError) Error

Error satisfies the builtin error interface

func (MachineNetworkValidationError) ErrorName

func (e MachineNetworkValidationError) ErrorName() string

ErrorName returns error name.

func (MachineNetworkValidationError) Field

Field function returns field value.

func (MachineNetworkValidationError) Key

Key function returns key value.

func (MachineNetworkValidationError) Reason

Reason function returns reason value.

type MachineValidationError

type MachineValidationError struct {
	// contains filtered or unexported fields
}

MachineValidationError is the validation error returned by Machine.Validate if the designated constraints aren't met.

func (MachineValidationError) Cause

func (e MachineValidationError) Cause() error

Cause function returns cause value.

func (MachineValidationError) Error

func (e MachineValidationError) Error() string

Error satisfies the builtin error interface

func (MachineValidationError) ErrorName

func (e MachineValidationError) ErrorName() string

ErrorName returns error name.

func (MachineValidationError) Field

func (e MachineValidationError) Field() string

Field function returns field value.

func (MachineValidationError) Key

func (e MachineValidationError) Key() bool

Key function returns key value.

func (MachineValidationError) Reason

func (e MachineValidationError) Reason() string

Reason function returns reason value.

type PaymentServiceAddBalanceToCustomerRequest

type PaymentServiceAddBalanceToCustomerRequest struct {

	// Customer is the customer
	Customer *v1.PaymentCustomer `protobuf:"bytes,1,opt,name=customer,proto3" json:"customer,omitempty"`
	// BalanceToAdd is the balance which should be added to the customer
	BalanceToAdd int64 `protobuf:"varint,2,opt,name=balance_to_add,json=balanceToAdd,proto3" json:"balance_to_add,omitempty"`
	// contains filtered or unexported fields
}

PaymentServiceAddBalanceToCustomerRequest is the request payload for the balance to customer request

func (*PaymentServiceAddBalanceToCustomerRequest) Descriptor deprecated

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

Deprecated: Use PaymentServiceAddBalanceToCustomerRequest.ProtoReflect.Descriptor instead.

func (*PaymentServiceAddBalanceToCustomerRequest) GetBalanceToAdd

func (x *PaymentServiceAddBalanceToCustomerRequest) GetBalanceToAdd() int64

func (*PaymentServiceAddBalanceToCustomerRequest) GetCustomer

func (*PaymentServiceAddBalanceToCustomerRequest) ProtoMessage

func (*PaymentServiceAddBalanceToCustomerRequest) ProtoReflect

func (*PaymentServiceAddBalanceToCustomerRequest) Reset

func (*PaymentServiceAddBalanceToCustomerRequest) String

func (*PaymentServiceAddBalanceToCustomerRequest) Validate

Validate checks the field values on PaymentServiceAddBalanceToCustomerRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaymentServiceAddBalanceToCustomerRequest) ValidateAll

ValidateAll checks the field values on PaymentServiceAddBalanceToCustomerRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaymentServiceAddBalanceToCustomerRequestMultiError, or nil if none found.

type PaymentServiceAddBalanceToCustomerRequestMultiError

type PaymentServiceAddBalanceToCustomerRequestMultiError []error

PaymentServiceAddBalanceToCustomerRequestMultiError is an error wrapping multiple validation errors returned by PaymentServiceAddBalanceToCustomerRequest.ValidateAll() if the designated constraints aren't met.

func (PaymentServiceAddBalanceToCustomerRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (PaymentServiceAddBalanceToCustomerRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type PaymentServiceAddBalanceToCustomerRequestValidationError

type PaymentServiceAddBalanceToCustomerRequestValidationError struct {
	// contains filtered or unexported fields
}

PaymentServiceAddBalanceToCustomerRequestValidationError is the validation error returned by PaymentServiceAddBalanceToCustomerRequest.Validate if the designated constraints aren't met.

func (PaymentServiceAddBalanceToCustomerRequestValidationError) Cause

Cause function returns cause value.

func (PaymentServiceAddBalanceToCustomerRequestValidationError) Error

Error satisfies the builtin error interface

func (PaymentServiceAddBalanceToCustomerRequestValidationError) ErrorName

ErrorName returns error name.

func (PaymentServiceAddBalanceToCustomerRequestValidationError) Field

Field function returns field value.

func (PaymentServiceAddBalanceToCustomerRequestValidationError) Key

Key function returns key value.

func (PaymentServiceAddBalanceToCustomerRequestValidationError) Reason

Reason function returns reason value.

type PaymentServiceAddBalanceToCustomerResponse

type PaymentServiceAddBalanceToCustomerResponse struct {

	// Customer is the customer
	Customer *v1.PaymentCustomer `protobuf:"bytes,1,opt,name=customer,proto3" json:"customer,omitempty"`
	// contains filtered or unexported fields
}

PaymentServiceAddBalanceToCustomerResponse is the response payload for the balance to customer request

func (*PaymentServiceAddBalanceToCustomerResponse) Descriptor deprecated

Deprecated: Use PaymentServiceAddBalanceToCustomerResponse.ProtoReflect.Descriptor instead.

func (*PaymentServiceAddBalanceToCustomerResponse) GetCustomer

func (*PaymentServiceAddBalanceToCustomerResponse) ProtoMessage

func (*PaymentServiceAddBalanceToCustomerResponse) ProtoReflect

func (*PaymentServiceAddBalanceToCustomerResponse) Reset

func (*PaymentServiceAddBalanceToCustomerResponse) String

func (*PaymentServiceAddBalanceToCustomerResponse) Validate

Validate checks the field values on PaymentServiceAddBalanceToCustomerResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaymentServiceAddBalanceToCustomerResponse) ValidateAll

ValidateAll checks the field values on PaymentServiceAddBalanceToCustomerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaymentServiceAddBalanceToCustomerResponseMultiError, or nil if none found.

type PaymentServiceAddBalanceToCustomerResponseMultiError

type PaymentServiceAddBalanceToCustomerResponseMultiError []error

PaymentServiceAddBalanceToCustomerResponseMultiError is an error wrapping multiple validation errors returned by PaymentServiceAddBalanceToCustomerResponse.ValidateAll() if the designated constraints aren't met.

func (PaymentServiceAddBalanceToCustomerResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (PaymentServiceAddBalanceToCustomerResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type PaymentServiceAddBalanceToCustomerResponseValidationError

type PaymentServiceAddBalanceToCustomerResponseValidationError struct {
	// contains filtered or unexported fields
}

PaymentServiceAddBalanceToCustomerResponseValidationError is the validation error returned by PaymentServiceAddBalanceToCustomerResponse.Validate if the designated constraints aren't met.

func (PaymentServiceAddBalanceToCustomerResponseValidationError) Cause

Cause function returns cause value.

func (PaymentServiceAddBalanceToCustomerResponseValidationError) Error

Error satisfies the builtin error interface

func (PaymentServiceAddBalanceToCustomerResponseValidationError) ErrorName

ErrorName returns error name.

func (PaymentServiceAddBalanceToCustomerResponseValidationError) Field

Field function returns field value.

func (PaymentServiceAddBalanceToCustomerResponseValidationError) Key

Key function returns key value.

func (PaymentServiceAddBalanceToCustomerResponseValidationError) Reason

Reason function returns reason value.

type PaymentServiceAddCouponToCustomerRequest

type PaymentServiceAddCouponToCustomerRequest struct {

	// Customer is the customer
	Customer *v1.PaymentCustomer `protobuf:"bytes,1,opt,name=customer,proto3" json:"customer,omitempty"`
	// CouponId is the id of the coupon which should be granted to the customer
	CouponId string `protobuf:"bytes,2,opt,name=coupon_id,json=couponId,proto3" json:"coupon_id,omitempty"`
	// contains filtered or unexported fields
}

PaymentServiceAddCouponToCustomerRequest is the request payload for the coupons add to customer request

func (*PaymentServiceAddCouponToCustomerRequest) Descriptor deprecated

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

Deprecated: Use PaymentServiceAddCouponToCustomerRequest.ProtoReflect.Descriptor instead.

func (*PaymentServiceAddCouponToCustomerRequest) GetCouponId

func (*PaymentServiceAddCouponToCustomerRequest) GetCustomer

func (*PaymentServiceAddCouponToCustomerRequest) ProtoMessage

func (*PaymentServiceAddCouponToCustomerRequest) ProtoReflect

func (*PaymentServiceAddCouponToCustomerRequest) Reset

func (*PaymentServiceAddCouponToCustomerRequest) String

func (*PaymentServiceAddCouponToCustomerRequest) Validate

Validate checks the field values on PaymentServiceAddCouponToCustomerRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaymentServiceAddCouponToCustomerRequest) ValidateAll

ValidateAll checks the field values on PaymentServiceAddCouponToCustomerRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaymentServiceAddCouponToCustomerRequestMultiError, or nil if none found.

type PaymentServiceAddCouponToCustomerRequestMultiError

type PaymentServiceAddCouponToCustomerRequestMultiError []error

PaymentServiceAddCouponToCustomerRequestMultiError is an error wrapping multiple validation errors returned by PaymentServiceAddCouponToCustomerRequest.ValidateAll() if the designated constraints aren't met.

func (PaymentServiceAddCouponToCustomerRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (PaymentServiceAddCouponToCustomerRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type PaymentServiceAddCouponToCustomerRequestValidationError

type PaymentServiceAddCouponToCustomerRequestValidationError struct {
	// contains filtered or unexported fields
}

PaymentServiceAddCouponToCustomerRequestValidationError is the validation error returned by PaymentServiceAddCouponToCustomerRequest.Validate if the designated constraints aren't met.

func (PaymentServiceAddCouponToCustomerRequestValidationError) Cause

Cause function returns cause value.

func (PaymentServiceAddCouponToCustomerRequestValidationError) Error

Error satisfies the builtin error interface

func (PaymentServiceAddCouponToCustomerRequestValidationError) ErrorName

ErrorName returns error name.

func (PaymentServiceAddCouponToCustomerRequestValidationError) Field

Field function returns field value.

func (PaymentServiceAddCouponToCustomerRequestValidationError) Key

Key function returns key value.

func (PaymentServiceAddCouponToCustomerRequestValidationError) Reason

Reason function returns reason value.

type PaymentServiceAddCouponToCustomerResponse

type PaymentServiceAddCouponToCustomerResponse struct {

	// Customer is the customer
	Customer *v1.PaymentCustomer `protobuf:"bytes,1,opt,name=customer,proto3" json:"customer,omitempty"`
	// contains filtered or unexported fields
}

PaymentServiceAddCouponToCustomerResponse is the response payload for the coupons add to customer request

func (*PaymentServiceAddCouponToCustomerResponse) Descriptor deprecated

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

Deprecated: Use PaymentServiceAddCouponToCustomerResponse.ProtoReflect.Descriptor instead.

func (*PaymentServiceAddCouponToCustomerResponse) GetCustomer

func (*PaymentServiceAddCouponToCustomerResponse) ProtoMessage

func (*PaymentServiceAddCouponToCustomerResponse) ProtoReflect

func (*PaymentServiceAddCouponToCustomerResponse) Reset

func (*PaymentServiceAddCouponToCustomerResponse) String

func (*PaymentServiceAddCouponToCustomerResponse) Validate

Validate checks the field values on PaymentServiceAddCouponToCustomerResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaymentServiceAddCouponToCustomerResponse) ValidateAll

ValidateAll checks the field values on PaymentServiceAddCouponToCustomerResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaymentServiceAddCouponToCustomerResponseMultiError, or nil if none found.

type PaymentServiceAddCouponToCustomerResponseMultiError

type PaymentServiceAddCouponToCustomerResponseMultiError []error

PaymentServiceAddCouponToCustomerResponseMultiError is an error wrapping multiple validation errors returned by PaymentServiceAddCouponToCustomerResponse.ValidateAll() if the designated constraints aren't met.

func (PaymentServiceAddCouponToCustomerResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (PaymentServiceAddCouponToCustomerResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type PaymentServiceAddCouponToCustomerResponseValidationError

type PaymentServiceAddCouponToCustomerResponseValidationError struct {
	// contains filtered or unexported fields
}

PaymentServiceAddCouponToCustomerResponseValidationError is the validation error returned by PaymentServiceAddCouponToCustomerResponse.Validate if the designated constraints aren't met.

func (PaymentServiceAddCouponToCustomerResponseValidationError) Cause

Cause function returns cause value.

func (PaymentServiceAddCouponToCustomerResponseValidationError) Error

Error satisfies the builtin error interface

func (PaymentServiceAddCouponToCustomerResponseValidationError) ErrorName

ErrorName returns error name.

func (PaymentServiceAddCouponToCustomerResponseValidationError) Field

Field function returns field value.

func (PaymentServiceAddCouponToCustomerResponseValidationError) Key

Key function returns key value.

func (PaymentServiceAddCouponToCustomerResponseValidationError) Reason

Reason function returns reason value.

type PaymentServiceListCouponsRequest

type PaymentServiceListCouponsRequest struct {
	// contains filtered or unexported fields
}

PaymentServiceListCouponsRequest is the request payload for the coupons list request

func (*PaymentServiceListCouponsRequest) Descriptor deprecated

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

Deprecated: Use PaymentServiceListCouponsRequest.ProtoReflect.Descriptor instead.

func (*PaymentServiceListCouponsRequest) ProtoMessage

func (*PaymentServiceListCouponsRequest) ProtoMessage()

func (*PaymentServiceListCouponsRequest) ProtoReflect

func (*PaymentServiceListCouponsRequest) Reset

func (*PaymentServiceListCouponsRequest) String

func (*PaymentServiceListCouponsRequest) Validate

Validate checks the field values on PaymentServiceListCouponsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaymentServiceListCouponsRequest) ValidateAll

func (m *PaymentServiceListCouponsRequest) ValidateAll() error

ValidateAll checks the field values on PaymentServiceListCouponsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaymentServiceListCouponsRequestMultiError, or nil if none found.

type PaymentServiceListCouponsRequestMultiError

type PaymentServiceListCouponsRequestMultiError []error

PaymentServiceListCouponsRequestMultiError is an error wrapping multiple validation errors returned by PaymentServiceListCouponsRequest.ValidateAll() if the designated constraints aren't met.

func (PaymentServiceListCouponsRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (PaymentServiceListCouponsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type PaymentServiceListCouponsRequestValidationError

type PaymentServiceListCouponsRequestValidationError struct {
	// contains filtered or unexported fields
}

PaymentServiceListCouponsRequestValidationError is the validation error returned by PaymentServiceListCouponsRequest.Validate if the designated constraints aren't met.

func (PaymentServiceListCouponsRequestValidationError) Cause

Cause function returns cause value.

func (PaymentServiceListCouponsRequestValidationError) Error

Error satisfies the builtin error interface

func (PaymentServiceListCouponsRequestValidationError) ErrorName

ErrorName returns error name.

func (PaymentServiceListCouponsRequestValidationError) Field

Field function returns field value.

func (PaymentServiceListCouponsRequestValidationError) Key

Key function returns key value.

func (PaymentServiceListCouponsRequestValidationError) Reason

Reason function returns reason value.

type PaymentServiceListCouponsResponse

type PaymentServiceListCouponsResponse struct {

	// Coupons is the list of all coupons
	Coupons []*v1.Coupon `protobuf:"bytes,1,rep,name=coupons,proto3" json:"coupons,omitempty"`
	// contains filtered or unexported fields
}

PaymentServiceListCouponsResponse is the response payload for the coupons list request

func (*PaymentServiceListCouponsResponse) Descriptor deprecated

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

Deprecated: Use PaymentServiceListCouponsResponse.ProtoReflect.Descriptor instead.

func (*PaymentServiceListCouponsResponse) GetCoupons

func (x *PaymentServiceListCouponsResponse) GetCoupons() []*v1.Coupon

func (*PaymentServiceListCouponsResponse) ProtoMessage

func (*PaymentServiceListCouponsResponse) ProtoMessage()

func (*PaymentServiceListCouponsResponse) ProtoReflect

func (*PaymentServiceListCouponsResponse) Reset

func (*PaymentServiceListCouponsResponse) String

func (*PaymentServiceListCouponsResponse) Validate

Validate checks the field values on PaymentServiceListCouponsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PaymentServiceListCouponsResponse) ValidateAll

func (m *PaymentServiceListCouponsResponse) ValidateAll() error

ValidateAll checks the field values on PaymentServiceListCouponsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PaymentServiceListCouponsResponseMultiError, or nil if none found.

type PaymentServiceListCouponsResponseMultiError

type PaymentServiceListCouponsResponseMultiError []error

PaymentServiceListCouponsResponseMultiError is an error wrapping multiple validation errors returned by PaymentServiceListCouponsResponse.ValidateAll() if the designated constraints aren't met.

func (PaymentServiceListCouponsResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (PaymentServiceListCouponsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type PaymentServiceListCouponsResponseValidationError

type PaymentServiceListCouponsResponseValidationError struct {
	// contains filtered or unexported fields
}

PaymentServiceListCouponsResponseValidationError is the validation error returned by PaymentServiceListCouponsResponse.Validate if the designated constraints aren't met.

func (PaymentServiceListCouponsResponseValidationError) Cause

Cause function returns cause value.

func (PaymentServiceListCouponsResponseValidationError) Error

Error satisfies the builtin error interface

func (PaymentServiceListCouponsResponseValidationError) ErrorName

ErrorName returns error name.

func (PaymentServiceListCouponsResponseValidationError) Field

Field function returns field value.

func (PaymentServiceListCouponsResponseValidationError) Key

Key function returns key value.

func (PaymentServiceListCouponsResponseValidationError) Reason

Reason function returns reason value.

type SSHKeyPair

type SSHKeyPair struct {

	// Publickey is the public key
	Publickey []byte `protobuf:"bytes,1,opt,name=publickey,proto3" json:"publickey,omitempty"`
	// Privatekey is the private key
	Privatekey []byte `protobuf:"bytes,2,opt,name=privatekey,proto3" json:"privatekey,omitempty"`
	// contains filtered or unexported fields
}

SSHKeyPair details to access a firewall via ssh

func (*SSHKeyPair) Descriptor deprecated

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

Deprecated: Use SSHKeyPair.ProtoReflect.Descriptor instead.

func (*SSHKeyPair) GetPrivatekey

func (x *SSHKeyPair) GetPrivatekey() []byte

func (*SSHKeyPair) GetPublickey

func (x *SSHKeyPair) GetPublickey() []byte

func (*SSHKeyPair) ProtoMessage

func (*SSHKeyPair) ProtoMessage()

func (*SSHKeyPair) ProtoReflect

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

func (*SSHKeyPair) Reset

func (x *SSHKeyPair) Reset()

func (*SSHKeyPair) String

func (x *SSHKeyPair) String() string

func (*SSHKeyPair) Validate

func (m *SSHKeyPair) Validate() error

Validate checks the field values on SSHKeyPair with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SSHKeyPair) ValidateAll

func (m *SSHKeyPair) ValidateAll() error

ValidateAll checks the field values on SSHKeyPair with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SSHKeyPairMultiError, or nil if none found.

type SSHKeyPairMultiError

type SSHKeyPairMultiError []error

SSHKeyPairMultiError is an error wrapping multiple validation errors returned by SSHKeyPair.ValidateAll() if the designated constraints aren't met.

func (SSHKeyPairMultiError) AllErrors

func (m SSHKeyPairMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SSHKeyPairMultiError) Error

func (m SSHKeyPairMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type SSHKeyPairValidationError

type SSHKeyPairValidationError struct {
	// contains filtered or unexported fields
}

SSHKeyPairValidationError is the validation error returned by SSHKeyPair.Validate if the designated constraints aren't met.

func (SSHKeyPairValidationError) Cause

func (e SSHKeyPairValidationError) Cause() error

Cause function returns cause value.

func (SSHKeyPairValidationError) Error

Error satisfies the builtin error interface

func (SSHKeyPairValidationError) ErrorName

func (e SSHKeyPairValidationError) ErrorName() string

ErrorName returns error name.

func (SSHKeyPairValidationError) Field

Field function returns field value.

func (SSHKeyPairValidationError) Key

Key function returns key value.

func (SSHKeyPairValidationError) Reason

func (e SSHKeyPairValidationError) Reason() string

Reason function returns reason value.

type StorageClusterInfo

type StorageClusterInfo struct {

	// Partition where this storage system is present
	Partition string `protobuf:"bytes,1,opt,name=partition,proto3" json:"partition,omitempty"`
	// Uuid of this storage system
	Uuid string `protobuf:"bytes,2,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// SubsystemNqn is the subsystem nqn
	SubsystemNqn string `protobuf:"bytes,3,opt,name=subsystem_nqn,json=subsystemNqn,proto3" json:"subsystem_nqn,omitempty"`
	// CurrentMaxReplicas defines how many replicas a volume can have currently
	CurrentMaxReplicas uint32 `protobuf:"varint,4,opt,name=current_max_replicas,json=currentMaxReplicas,proto3" json:"current_max_replicas,omitempty"`
	// SupportedMaxReplicas defines how many replicas a volume can have at max
	SupportedMaxReplicas uint32 `protobuf:"varint,5,opt,name=supported_max_replicas,json=supportedMaxReplicas,proto3" json:"supported_max_replicas,omitempty"`
	// Statistics of the storage system
	Statistics *ClusterStatisticsApi `protobuf:"bytes,6,opt,name=statistics,proto3" json:"statistics,omitempty"`
	// Health of the storage system
	Health *ClusterHealth `protobuf:"bytes,7,opt,name=health,proto3" json:"health,omitempty"`
	// MinVersionInCluster is the minimum server version in this cluster
	MinVersionInCluster string `protobuf:"bytes,8,opt,name=min_version_in_cluster,json=minVersionInCluster,proto3" json:"min_version_in_cluster,omitempty"`
	// MinAllowedVersion is the minimum possible server version in this cluster
	MinAllowedVersion string `protobuf:"bytes,9,opt,name=min_allowed_version,json=minAllowedVersion,proto3" json:"min_allowed_version,omitempty"`
	// MaxAllowedVersion is the maximum possible server version in this cluster
	MaxAllowedVersion string `protobuf:"bytes,10,opt,name=max_allowed_version,json=maxAllowedVersion,proto3" json:"max_allowed_version,omitempty"`
	// ApiEndpoints is a list of ips of all api endpoints this cluster has
	ApiEndpoints []string `protobuf:"bytes,11,rep,name=api_endpoints,json=apiEndpoints,proto3" json:"api_endpoints,omitempty"`
	// DiscoveryEndpoints is a list of ips of all discovery endpoints this cluster has
	DiscoveryEndpoints []string `protobuf:"bytes,12,rep,name=discovery_endpoints,json=discoveryEndpoints,proto3" json:"discovery_endpoints,omitempty"`
	// Servers is a list of storage servers in this storage system
	Servers []*StorageServerInfo `protobuf:"bytes,13,rep,name=servers,proto3" json:"servers,omitempty"`
	// contains filtered or unexported fields
}

StorageClusterInfo represents details about a storage system

func (*StorageClusterInfo) Descriptor deprecated

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

Deprecated: Use StorageClusterInfo.ProtoReflect.Descriptor instead.

func (*StorageClusterInfo) GetApiEndpoints

func (x *StorageClusterInfo) GetApiEndpoints() []string

func (*StorageClusterInfo) GetCurrentMaxReplicas

func (x *StorageClusterInfo) GetCurrentMaxReplicas() uint32

func (*StorageClusterInfo) GetDiscoveryEndpoints

func (x *StorageClusterInfo) GetDiscoveryEndpoints() []string

func (*StorageClusterInfo) GetHealth

func (x *StorageClusterInfo) GetHealth() *ClusterHealth

func (*StorageClusterInfo) GetMaxAllowedVersion

func (x *StorageClusterInfo) GetMaxAllowedVersion() string

func (*StorageClusterInfo) GetMinAllowedVersion

func (x *StorageClusterInfo) GetMinAllowedVersion() string

func (*StorageClusterInfo) GetMinVersionInCluster

func (x *StorageClusterInfo) GetMinVersionInCluster() string

func (*StorageClusterInfo) GetPartition

func (x *StorageClusterInfo) GetPartition() string

func (*StorageClusterInfo) GetServers

func (x *StorageClusterInfo) GetServers() []*StorageServerInfo

func (*StorageClusterInfo) GetStatistics

func (x *StorageClusterInfo) GetStatistics() *ClusterStatisticsApi

func (*StorageClusterInfo) GetSubsystemNqn

func (x *StorageClusterInfo) GetSubsystemNqn() string

func (*StorageClusterInfo) GetSupportedMaxReplicas

func (x *StorageClusterInfo) GetSupportedMaxReplicas() uint32

func (*StorageClusterInfo) GetUuid

func (x *StorageClusterInfo) GetUuid() string

func (*StorageClusterInfo) ProtoMessage

func (*StorageClusterInfo) ProtoMessage()

func (*StorageClusterInfo) ProtoReflect

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

func (*StorageClusterInfo) Reset

func (x *StorageClusterInfo) Reset()

func (*StorageClusterInfo) String

func (x *StorageClusterInfo) String() string

func (*StorageClusterInfo) Validate

func (m *StorageClusterInfo) Validate() error

Validate checks the field values on StorageClusterInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageClusterInfo) ValidateAll

func (m *StorageClusterInfo) ValidateAll() error

ValidateAll checks the field values on StorageClusterInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageClusterInfoMultiError, or nil if none found.

type StorageClusterInfoMultiError

type StorageClusterInfoMultiError []error

StorageClusterInfoMultiError is an error wrapping multiple validation errors returned by StorageClusterInfo.ValidateAll() if the designated constraints aren't met.

func (StorageClusterInfoMultiError) AllErrors

func (m StorageClusterInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StorageClusterInfoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageClusterInfoValidationError

type StorageClusterInfoValidationError struct {
	// contains filtered or unexported fields
}

StorageClusterInfoValidationError is the validation error returned by StorageClusterInfo.Validate if the designated constraints aren't met.

func (StorageClusterInfoValidationError) Cause

Cause function returns cause value.

func (StorageClusterInfoValidationError) Error

Error satisfies the builtin error interface

func (StorageClusterInfoValidationError) ErrorName

ErrorName returns error name.

func (StorageClusterInfoValidationError) Field

Field function returns field value.

func (StorageClusterInfoValidationError) Key

Key function returns key value.

func (StorageClusterInfoValidationError) Reason

Reason function returns reason value.

type StorageServerInfo

type StorageServerInfo struct {

	// Uuid of this server
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// Name of this server
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// RiskOfServiceLossState describes the risk of service loss
	RiskOfServiceLossState string `` /* 133-byte string literal not displayed */
	// State of this server
	State string `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"`
	// ServerEndpoints is a list of ips this server offers
	ServerEndpoints []string `protobuf:"bytes,5,rep,name=server_endpoints,json=serverEndpoints,proto3" json:"server_endpoints,omitempty"`
	// LightOsVersion is the version of the storage server version
	LightOsVersion string `protobuf:"bytes,6,opt,name=light_os_version,json=lightOsVersion,proto3" json:"light_os_version,omitempty"`
	// contains filtered or unexported fields
}

StorageServerInfo contains details about a single storage server

func (*StorageServerInfo) Descriptor deprecated

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

Deprecated: Use StorageServerInfo.ProtoReflect.Descriptor instead.

func (*StorageServerInfo) GetLightOsVersion

func (x *StorageServerInfo) GetLightOsVersion() string

func (*StorageServerInfo) GetName

func (x *StorageServerInfo) GetName() string

func (*StorageServerInfo) GetRiskOfServiceLossState

func (x *StorageServerInfo) GetRiskOfServiceLossState() string

func (*StorageServerInfo) GetServerEndpoints

func (x *StorageServerInfo) GetServerEndpoints() []string

func (*StorageServerInfo) GetState

func (x *StorageServerInfo) GetState() string

func (*StorageServerInfo) GetUuid

func (x *StorageServerInfo) GetUuid() string

func (*StorageServerInfo) ProtoMessage

func (*StorageServerInfo) ProtoMessage()

func (*StorageServerInfo) ProtoReflect

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

func (*StorageServerInfo) Reset

func (x *StorageServerInfo) Reset()

func (*StorageServerInfo) String

func (x *StorageServerInfo) String() string

func (*StorageServerInfo) Validate

func (m *StorageServerInfo) Validate() error

Validate checks the field values on StorageServerInfo with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageServerInfo) ValidateAll

func (m *StorageServerInfo) ValidateAll() error

ValidateAll checks the field values on StorageServerInfo with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageServerInfoMultiError, or nil if none found.

type StorageServerInfoMultiError

type StorageServerInfoMultiError []error

StorageServerInfoMultiError is an error wrapping multiple validation errors returned by StorageServerInfo.ValidateAll() if the designated constraints aren't met.

func (StorageServerInfoMultiError) AllErrors

func (m StorageServerInfoMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (StorageServerInfoMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageServerInfoValidationError

type StorageServerInfoValidationError struct {
	// contains filtered or unexported fields
}

StorageServerInfoValidationError is the validation error returned by StorageServerInfo.Validate if the designated constraints aren't met.

func (StorageServerInfoValidationError) Cause

Cause function returns cause value.

func (StorageServerInfoValidationError) Error

Error satisfies the builtin error interface

func (StorageServerInfoValidationError) ErrorName

ErrorName returns error name.

func (StorageServerInfoValidationError) Field

Field function returns field value.

func (StorageServerInfoValidationError) Key

Key function returns key value.

func (StorageServerInfoValidationError) Reason

Reason function returns reason value.

type StorageServiceClusterInfoRequest

type StorageServiceClusterInfoRequest struct {

	// Partition for which the cluster info should be returned
	Partition *string `protobuf:"bytes,1,opt,name=partition,proto3,oneof" json:"partition,omitempty"`
	// contains filtered or unexported fields
}

StorageServiceClusterInfoRequest is the request payload for the cluster info request

func (*StorageServiceClusterInfoRequest) Descriptor deprecated

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

Deprecated: Use StorageServiceClusterInfoRequest.ProtoReflect.Descriptor instead.

func (*StorageServiceClusterInfoRequest) GetPartition

func (x *StorageServiceClusterInfoRequest) GetPartition() string

func (*StorageServiceClusterInfoRequest) ProtoMessage

func (*StorageServiceClusterInfoRequest) ProtoMessage()

func (*StorageServiceClusterInfoRequest) ProtoReflect

func (*StorageServiceClusterInfoRequest) Reset

func (*StorageServiceClusterInfoRequest) String

func (*StorageServiceClusterInfoRequest) Validate

Validate checks the field values on StorageServiceClusterInfoRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageServiceClusterInfoRequest) ValidateAll

func (m *StorageServiceClusterInfoRequest) ValidateAll() error

ValidateAll checks the field values on StorageServiceClusterInfoRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageServiceClusterInfoRequestMultiError, or nil if none found.

type StorageServiceClusterInfoRequestMultiError

type StorageServiceClusterInfoRequestMultiError []error

StorageServiceClusterInfoRequestMultiError is an error wrapping multiple validation errors returned by StorageServiceClusterInfoRequest.ValidateAll() if the designated constraints aren't met.

func (StorageServiceClusterInfoRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StorageServiceClusterInfoRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageServiceClusterInfoRequestValidationError

type StorageServiceClusterInfoRequestValidationError struct {
	// contains filtered or unexported fields
}

StorageServiceClusterInfoRequestValidationError is the validation error returned by StorageServiceClusterInfoRequest.Validate if the designated constraints aren't met.

func (StorageServiceClusterInfoRequestValidationError) Cause

Cause function returns cause value.

func (StorageServiceClusterInfoRequestValidationError) Error

Error satisfies the builtin error interface

func (StorageServiceClusterInfoRequestValidationError) ErrorName

ErrorName returns error name.

func (StorageServiceClusterInfoRequestValidationError) Field

Field function returns field value.

func (StorageServiceClusterInfoRequestValidationError) Key

Key function returns key value.

func (StorageServiceClusterInfoRequestValidationError) Reason

Reason function returns reason value.

type StorageServiceClusterInfoResponse

type StorageServiceClusterInfoResponse struct {

	// Infos about the storage systems
	Infos []*StorageClusterInfo `protobuf:"bytes,1,rep,name=infos,proto3" json:"infos,omitempty"`
	// contains filtered or unexported fields
}

StorageServiceClusterInfoResponse is the response payload for the cluster info request

func (*StorageServiceClusterInfoResponse) Descriptor deprecated

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

Deprecated: Use StorageServiceClusterInfoResponse.ProtoReflect.Descriptor instead.

func (*StorageServiceClusterInfoResponse) GetInfos

func (*StorageServiceClusterInfoResponse) ProtoMessage

func (*StorageServiceClusterInfoResponse) ProtoMessage()

func (*StorageServiceClusterInfoResponse) ProtoReflect

func (*StorageServiceClusterInfoResponse) Reset

func (*StorageServiceClusterInfoResponse) String

func (*StorageServiceClusterInfoResponse) Validate

Validate checks the field values on StorageServiceClusterInfoResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageServiceClusterInfoResponse) ValidateAll

func (m *StorageServiceClusterInfoResponse) ValidateAll() error

ValidateAll checks the field values on StorageServiceClusterInfoResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageServiceClusterInfoResponseMultiError, or nil if none found.

type StorageServiceClusterInfoResponseMultiError

type StorageServiceClusterInfoResponseMultiError []error

StorageServiceClusterInfoResponseMultiError is an error wrapping multiple validation errors returned by StorageServiceClusterInfoResponse.ValidateAll() if the designated constraints aren't met.

func (StorageServiceClusterInfoResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StorageServiceClusterInfoResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageServiceClusterInfoResponseValidationError

type StorageServiceClusterInfoResponseValidationError struct {
	// contains filtered or unexported fields
}

StorageServiceClusterInfoResponseValidationError is the validation error returned by StorageServiceClusterInfoResponse.Validate if the designated constraints aren't met.

func (StorageServiceClusterInfoResponseValidationError) Cause

Cause function returns cause value.

func (StorageServiceClusterInfoResponseValidationError) Error

Error satisfies the builtin error interface

func (StorageServiceClusterInfoResponseValidationError) ErrorName

ErrorName returns error name.

func (StorageServiceClusterInfoResponseValidationError) Field

Field function returns field value.

func (StorageServiceClusterInfoResponseValidationError) Key

Key function returns key value.

func (StorageServiceClusterInfoResponseValidationError) Reason

Reason function returns reason value.

type StorageServiceListSnapshotsRequest

type StorageServiceListSnapshotsRequest struct {

	// Uuid is the uuid of the snapshot to list
	Uuid *string `protobuf:"bytes,1,opt,name=uuid,proto3,oneof" json:"uuid,omitempty"`
	// Project is the project of the snapshot to list
	Project *string `protobuf:"bytes,2,opt,name=project,proto3,oneof" json:"project,omitempty"`
	// Partition is the partition of the snapshot to list
	Partition *string `protobuf:"bytes,3,opt,name=partition,proto3,oneof" json:"partition,omitempty"`
	// Name is the name of the snapshot to list
	Name *string `protobuf:"bytes,4,opt,name=name,proto3,oneof" json:"name,omitempty"`
	// Tenant is the tenant of the snapshot to list
	Tenant *string `protobuf:"bytes,5,opt,name=tenant,proto3,oneof" json:"tenant,omitempty"`
	// contains filtered or unexported fields
}

StorageServiceListVolumesRequest is the request payload for the snapshot list request

func (*StorageServiceListSnapshotsRequest) Descriptor deprecated

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

Deprecated: Use StorageServiceListSnapshotsRequest.ProtoReflect.Descriptor instead.

func (*StorageServiceListSnapshotsRequest) GetName

func (*StorageServiceListSnapshotsRequest) GetPartition

func (x *StorageServiceListSnapshotsRequest) GetPartition() string

func (*StorageServiceListSnapshotsRequest) GetProject

func (*StorageServiceListSnapshotsRequest) GetTenant

func (*StorageServiceListSnapshotsRequest) GetUuid

func (*StorageServiceListSnapshotsRequest) ProtoMessage

func (*StorageServiceListSnapshotsRequest) ProtoMessage()

func (*StorageServiceListSnapshotsRequest) ProtoReflect

func (*StorageServiceListSnapshotsRequest) Reset

func (*StorageServiceListSnapshotsRequest) String

func (*StorageServiceListSnapshotsRequest) Validate

Validate checks the field values on StorageServiceListSnapshotsRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageServiceListSnapshotsRequest) ValidateAll

func (m *StorageServiceListSnapshotsRequest) ValidateAll() error

ValidateAll checks the field values on StorageServiceListSnapshotsRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageServiceListSnapshotsRequestMultiError, or nil if none found.

type StorageServiceListSnapshotsRequestMultiError

type StorageServiceListSnapshotsRequestMultiError []error

StorageServiceListSnapshotsRequestMultiError is an error wrapping multiple validation errors returned by StorageServiceListSnapshotsRequest.ValidateAll() if the designated constraints aren't met.

func (StorageServiceListSnapshotsRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StorageServiceListSnapshotsRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageServiceListSnapshotsRequestValidationError

type StorageServiceListSnapshotsRequestValidationError struct {
	// contains filtered or unexported fields
}

StorageServiceListSnapshotsRequestValidationError is the validation error returned by StorageServiceListSnapshotsRequest.Validate if the designated constraints aren't met.

func (StorageServiceListSnapshotsRequestValidationError) Cause

Cause function returns cause value.

func (StorageServiceListSnapshotsRequestValidationError) Error

Error satisfies the builtin error interface

func (StorageServiceListSnapshotsRequestValidationError) ErrorName

ErrorName returns error name.

func (StorageServiceListSnapshotsRequestValidationError) Field

Field function returns field value.

func (StorageServiceListSnapshotsRequestValidationError) Key

Key function returns key value.

func (StorageServiceListSnapshotsRequestValidationError) Reason

Reason function returns reason value.

type StorageServiceListSnapshotsResponse

type StorageServiceListSnapshotsResponse struct {

	// Snapshots is the list of snapshots
	Snapshots []*v1.Snapshot `protobuf:"bytes,1,rep,name=snapshots,proto3" json:"snapshots,omitempty"`
	// contains filtered or unexported fields
}

StorageServiceListSnapshotsResponse is the response payload for the snapshot list request

func (*StorageServiceListSnapshotsResponse) Descriptor deprecated

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

Deprecated: Use StorageServiceListSnapshotsResponse.ProtoReflect.Descriptor instead.

func (*StorageServiceListSnapshotsResponse) GetSnapshots

func (x *StorageServiceListSnapshotsResponse) GetSnapshots() []*v1.Snapshot

func (*StorageServiceListSnapshotsResponse) ProtoMessage

func (*StorageServiceListSnapshotsResponse) ProtoMessage()

func (*StorageServiceListSnapshotsResponse) ProtoReflect

func (*StorageServiceListSnapshotsResponse) Reset

func (*StorageServiceListSnapshotsResponse) String

func (*StorageServiceListSnapshotsResponse) Validate

Validate checks the field values on StorageServiceListSnapshotsResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageServiceListSnapshotsResponse) ValidateAll

func (m *StorageServiceListSnapshotsResponse) ValidateAll() error

ValidateAll checks the field values on StorageServiceListSnapshotsResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageServiceListSnapshotsResponseMultiError, or nil if none found.

type StorageServiceListSnapshotsResponseMultiError

type StorageServiceListSnapshotsResponseMultiError []error

StorageServiceListSnapshotsResponseMultiError is an error wrapping multiple validation errors returned by StorageServiceListSnapshotsResponse.ValidateAll() if the designated constraints aren't met.

func (StorageServiceListSnapshotsResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StorageServiceListSnapshotsResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageServiceListSnapshotsResponseValidationError

type StorageServiceListSnapshotsResponseValidationError struct {
	// contains filtered or unexported fields
}

StorageServiceListSnapshotsResponseValidationError is the validation error returned by StorageServiceListSnapshotsResponse.Validate if the designated constraints aren't met.

func (StorageServiceListSnapshotsResponseValidationError) Cause

Cause function returns cause value.

func (StorageServiceListSnapshotsResponseValidationError) Error

Error satisfies the builtin error interface

func (StorageServiceListSnapshotsResponseValidationError) ErrorName

ErrorName returns error name.

func (StorageServiceListSnapshotsResponseValidationError) Field

Field function returns field value.

func (StorageServiceListSnapshotsResponseValidationError) Key

Key function returns key value.

func (StorageServiceListSnapshotsResponseValidationError) Reason

Reason function returns reason value.

type StorageServiceListVolumesRequest

type StorageServiceListVolumesRequest struct {

	// Uuid is the uuid of the volume to list
	Uuid *string `protobuf:"bytes,1,opt,name=uuid,proto3,oneof" json:"uuid,omitempty"`
	// Project is the project of the volume to list
	Project *string `protobuf:"bytes,2,opt,name=project,proto3,oneof" json:"project,omitempty"`
	// Partition is the partition of the volume to list
	Partition *string `protobuf:"bytes,3,opt,name=partition,proto3,oneof" json:"partition,omitempty"`
	// Name is the name of the volume to list
	Name *string `protobuf:"bytes,4,opt,name=name,proto3,oneof" json:"name,omitempty"`
	// Tenant is the tenant of the volume to list
	Tenant *string `protobuf:"bytes,5,opt,name=tenant,proto3,oneof" json:"tenant,omitempty"`
	// contains filtered or unexported fields
}

StorageServiceListVolumesRequest is the request payload for the volume list request

func (*StorageServiceListVolumesRequest) Descriptor deprecated

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

Deprecated: Use StorageServiceListVolumesRequest.ProtoReflect.Descriptor instead.

func (*StorageServiceListVolumesRequest) GetName

func (*StorageServiceListVolumesRequest) GetPartition

func (x *StorageServiceListVolumesRequest) GetPartition() string

func (*StorageServiceListVolumesRequest) GetProject

func (x *StorageServiceListVolumesRequest) GetProject() string

func (*StorageServiceListVolumesRequest) GetTenant

func (*StorageServiceListVolumesRequest) GetUuid

func (*StorageServiceListVolumesRequest) ProtoMessage

func (*StorageServiceListVolumesRequest) ProtoMessage()

func (*StorageServiceListVolumesRequest) ProtoReflect

func (*StorageServiceListVolumesRequest) Reset

func (*StorageServiceListVolumesRequest) String

func (*StorageServiceListVolumesRequest) Validate

Validate checks the field values on StorageServiceListVolumesRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageServiceListVolumesRequest) ValidateAll

func (m *StorageServiceListVolumesRequest) ValidateAll() error

ValidateAll checks the field values on StorageServiceListVolumesRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageServiceListVolumesRequestMultiError, or nil if none found.

type StorageServiceListVolumesRequestMultiError

type StorageServiceListVolumesRequestMultiError []error

StorageServiceListVolumesRequestMultiError is an error wrapping multiple validation errors returned by StorageServiceListVolumesRequest.ValidateAll() if the designated constraints aren't met.

func (StorageServiceListVolumesRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StorageServiceListVolumesRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageServiceListVolumesRequestValidationError

type StorageServiceListVolumesRequestValidationError struct {
	// contains filtered or unexported fields
}

StorageServiceListVolumesRequestValidationError is the validation error returned by StorageServiceListVolumesRequest.Validate if the designated constraints aren't met.

func (StorageServiceListVolumesRequestValidationError) Cause

Cause function returns cause value.

func (StorageServiceListVolumesRequestValidationError) Error

Error satisfies the builtin error interface

func (StorageServiceListVolumesRequestValidationError) ErrorName

ErrorName returns error name.

func (StorageServiceListVolumesRequestValidationError) Field

Field function returns field value.

func (StorageServiceListVolumesRequestValidationError) Key

Key function returns key value.

func (StorageServiceListVolumesRequestValidationError) Reason

Reason function returns reason value.

type StorageServiceListVolumesResponse

type StorageServiceListVolumesResponse struct {

	// Volumes is the list of volumes
	Volumes []*v1.Volume `protobuf:"bytes,1,rep,name=volumes,proto3" json:"volumes,omitempty"`
	// contains filtered or unexported fields
}

StorageServiceListVolumesResponse is the response payload for the volume list request

func (*StorageServiceListVolumesResponse) Descriptor deprecated

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

Deprecated: Use StorageServiceListVolumesResponse.ProtoReflect.Descriptor instead.

func (*StorageServiceListVolumesResponse) GetVolumes

func (x *StorageServiceListVolumesResponse) GetVolumes() []*v1.Volume

func (*StorageServiceListVolumesResponse) ProtoMessage

func (*StorageServiceListVolumesResponse) ProtoMessage()

func (*StorageServiceListVolumesResponse) ProtoReflect

func (*StorageServiceListVolumesResponse) Reset

func (*StorageServiceListVolumesResponse) String

func (*StorageServiceListVolumesResponse) Validate

Validate checks the field values on StorageServiceListVolumesResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*StorageServiceListVolumesResponse) ValidateAll

func (m *StorageServiceListVolumesResponse) ValidateAll() error

ValidateAll checks the field values on StorageServiceListVolumesResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in StorageServiceListVolumesResponseMultiError, or nil if none found.

type StorageServiceListVolumesResponseMultiError

type StorageServiceListVolumesResponseMultiError []error

StorageServiceListVolumesResponseMultiError is an error wrapping multiple validation errors returned by StorageServiceListVolumesResponse.ValidateAll() if the designated constraints aren't met.

func (StorageServiceListVolumesResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (StorageServiceListVolumesResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type StorageServiceListVolumesResponseValidationError

type StorageServiceListVolumesResponseValidationError struct {
	// contains filtered or unexported fields
}

StorageServiceListVolumesResponseValidationError is the validation error returned by StorageServiceListVolumesResponse.Validate if the designated constraints aren't met.

func (StorageServiceListVolumesResponseValidationError) Cause

Cause function returns cause value.

func (StorageServiceListVolumesResponseValidationError) Error

Error satisfies the builtin error interface

func (StorageServiceListVolumesResponseValidationError) ErrorName

ErrorName returns error name.

func (StorageServiceListVolumesResponseValidationError) Field

Field function returns field value.

func (StorageServiceListVolumesResponseValidationError) Key

Key function returns key value.

func (StorageServiceListVolumesResponseValidationError) Reason

Reason function returns reason value.

type TenantServiceAdmitRequest

type TenantServiceAdmitRequest struct {

	// TenantId is the id of the tenant to admit
	TenantId string `protobuf:"bytes,1,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
	// CouponId is the id of the coupon this tenant should get
	CouponId *string `protobuf:"bytes,2,opt,name=coupon_id,json=couponId,proto3,oneof" json:"coupon_id,omitempty"`
	// BalanceToAdd is the amount of balance he should be granted
	BalanceToAdd *int64 `protobuf:"varint,3,opt,name=balance_to_add,json=balanceToAdd,proto3,oneof" json:"balance_to_add,omitempty"`
	// contains filtered or unexported fields
}

TenantServiceAdmitRequest is the request payload for a tenant admit request

func (*TenantServiceAdmitRequest) Descriptor deprecated

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

Deprecated: Use TenantServiceAdmitRequest.ProtoReflect.Descriptor instead.

func (*TenantServiceAdmitRequest) GetBalanceToAdd

func (x *TenantServiceAdmitRequest) GetBalanceToAdd() int64

func (*TenantServiceAdmitRequest) GetCouponId

func (x *TenantServiceAdmitRequest) GetCouponId() string

func (*TenantServiceAdmitRequest) GetTenantId

func (x *TenantServiceAdmitRequest) GetTenantId() string

func (*TenantServiceAdmitRequest) ProtoMessage

func (*TenantServiceAdmitRequest) ProtoMessage()

func (*TenantServiceAdmitRequest) ProtoReflect

func (*TenantServiceAdmitRequest) Reset

func (x *TenantServiceAdmitRequest) Reset()

func (*TenantServiceAdmitRequest) String

func (x *TenantServiceAdmitRequest) String() string

func (*TenantServiceAdmitRequest) Validate

func (m *TenantServiceAdmitRequest) Validate() error

Validate checks the field values on TenantServiceAdmitRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TenantServiceAdmitRequest) ValidateAll

func (m *TenantServiceAdmitRequest) ValidateAll() error

ValidateAll checks the field values on TenantServiceAdmitRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TenantServiceAdmitRequestMultiError, or nil if none found.

type TenantServiceAdmitRequestMultiError

type TenantServiceAdmitRequestMultiError []error

TenantServiceAdmitRequestMultiError is an error wrapping multiple validation errors returned by TenantServiceAdmitRequest.ValidateAll() if the designated constraints aren't met.

func (TenantServiceAdmitRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TenantServiceAdmitRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TenantServiceAdmitRequestValidationError

type TenantServiceAdmitRequestValidationError struct {
	// contains filtered or unexported fields
}

TenantServiceAdmitRequestValidationError is the validation error returned by TenantServiceAdmitRequest.Validate if the designated constraints aren't met.

func (TenantServiceAdmitRequestValidationError) Cause

Cause function returns cause value.

func (TenantServiceAdmitRequestValidationError) Error

Error satisfies the builtin error interface

func (TenantServiceAdmitRequestValidationError) ErrorName

ErrorName returns error name.

func (TenantServiceAdmitRequestValidationError) Field

Field function returns field value.

func (TenantServiceAdmitRequestValidationError) Key

Key function returns key value.

func (TenantServiceAdmitRequestValidationError) Reason

Reason function returns reason value.

type TenantServiceAdmitResponse

type TenantServiceAdmitResponse struct {

	// Tenant the tenant
	Tenant *v1.Tenant `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	// contains filtered or unexported fields
}

TenantServiceAdmitResponse is the response payload for a tenant admit request

func (*TenantServiceAdmitResponse) Descriptor deprecated

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

Deprecated: Use TenantServiceAdmitResponse.ProtoReflect.Descriptor instead.

func (*TenantServiceAdmitResponse) GetTenant

func (x *TenantServiceAdmitResponse) GetTenant() *v1.Tenant

func (*TenantServiceAdmitResponse) ProtoMessage

func (*TenantServiceAdmitResponse) ProtoMessage()

func (*TenantServiceAdmitResponse) ProtoReflect

func (*TenantServiceAdmitResponse) Reset

func (x *TenantServiceAdmitResponse) Reset()

func (*TenantServiceAdmitResponse) String

func (x *TenantServiceAdmitResponse) String() string

func (*TenantServiceAdmitResponse) Validate

func (m *TenantServiceAdmitResponse) Validate() error

Validate checks the field values on TenantServiceAdmitResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TenantServiceAdmitResponse) ValidateAll

func (m *TenantServiceAdmitResponse) ValidateAll() error

ValidateAll checks the field values on TenantServiceAdmitResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TenantServiceAdmitResponseMultiError, or nil if none found.

type TenantServiceAdmitResponseMultiError

type TenantServiceAdmitResponseMultiError []error

TenantServiceAdmitResponseMultiError is an error wrapping multiple validation errors returned by TenantServiceAdmitResponse.ValidateAll() if the designated constraints aren't met.

func (TenantServiceAdmitResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TenantServiceAdmitResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TenantServiceAdmitResponseValidationError

type TenantServiceAdmitResponseValidationError struct {
	// contains filtered or unexported fields
}

TenantServiceAdmitResponseValidationError is the validation error returned by TenantServiceAdmitResponse.Validate if the designated constraints aren't met.

func (TenantServiceAdmitResponseValidationError) Cause

Cause function returns cause value.

func (TenantServiceAdmitResponseValidationError) Error

Error satisfies the builtin error interface

func (TenantServiceAdmitResponseValidationError) ErrorName

ErrorName returns error name.

func (TenantServiceAdmitResponseValidationError) Field

Field function returns field value.

func (TenantServiceAdmitResponseValidationError) Key

Key function returns key value.

func (TenantServiceAdmitResponseValidationError) Reason

Reason function returns reason value.

type TenantServiceListRequest

type TenantServiceListRequest struct {

	// Login of the tenant to list
	Login *string `protobuf:"bytes,1,opt,name=login,proto3,oneof" json:"login,omitempty"`
	// Name of the tenant to list
	Name *string `protobuf:"bytes,2,opt,name=name,proto3,oneof" json:"name,omitempty"`
	// Email of the tenant to list
	Email *string `protobuf:"bytes,3,opt,name=email,proto3,oneof" json:"email,omitempty"`
	// OauthProvide of the tenant to list
	OauthProvider *v1.OAuthProvider `` /* 133-byte string literal not displayed */
	// Admitted on show admitted tenants
	Admitted *bool `protobuf:"varint,6,opt,name=admitted,proto3,oneof" json:"admitted,omitempty"`
	// Paging details for the list request
	Paging *v1.Paging `protobuf:"bytes,7,opt,name=paging,proto3" json:"paging,omitempty"`
	// Uuid of the tenant to list
	Uuid *string `protobuf:"bytes,8,opt,name=uuid,proto3,oneof" json:"uuid,omitempty"`
	// contains filtered or unexported fields
}

TenantServiceListRequest is the request payload for a tenant list request

func (*TenantServiceListRequest) Descriptor deprecated

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

Deprecated: Use TenantServiceListRequest.ProtoReflect.Descriptor instead.

func (*TenantServiceListRequest) GetAdmitted

func (x *TenantServiceListRequest) GetAdmitted() bool

func (*TenantServiceListRequest) GetEmail

func (x *TenantServiceListRequest) GetEmail() string

func (*TenantServiceListRequest) GetLogin

func (x *TenantServiceListRequest) GetLogin() string

func (*TenantServiceListRequest) GetName

func (x *TenantServiceListRequest) GetName() string

func (*TenantServiceListRequest) GetOauthProvider

func (x *TenantServiceListRequest) GetOauthProvider() v1.OAuthProvider

func (*TenantServiceListRequest) GetPaging

func (x *TenantServiceListRequest) GetPaging() *v1.Paging

func (*TenantServiceListRequest) GetUuid added in v0.9.0

func (x *TenantServiceListRequest) GetUuid() string

func (*TenantServiceListRequest) ProtoMessage

func (*TenantServiceListRequest) ProtoMessage()

func (*TenantServiceListRequest) ProtoReflect

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

func (*TenantServiceListRequest) Reset

func (x *TenantServiceListRequest) Reset()

func (*TenantServiceListRequest) String

func (x *TenantServiceListRequest) String() string

func (*TenantServiceListRequest) Validate

func (m *TenantServiceListRequest) Validate() error

Validate checks the field values on TenantServiceListRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TenantServiceListRequest) ValidateAll

func (m *TenantServiceListRequest) ValidateAll() error

ValidateAll checks the field values on TenantServiceListRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TenantServiceListRequestMultiError, or nil if none found.

type TenantServiceListRequestMultiError

type TenantServiceListRequestMultiError []error

TenantServiceListRequestMultiError is an error wrapping multiple validation errors returned by TenantServiceListRequest.ValidateAll() if the designated constraints aren't met.

func (TenantServiceListRequestMultiError) AllErrors

func (m TenantServiceListRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TenantServiceListRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TenantServiceListRequestValidationError

type TenantServiceListRequestValidationError struct {
	// contains filtered or unexported fields
}

TenantServiceListRequestValidationError is the validation error returned by TenantServiceListRequest.Validate if the designated constraints aren't met.

func (TenantServiceListRequestValidationError) Cause

Cause function returns cause value.

func (TenantServiceListRequestValidationError) Error

Error satisfies the builtin error interface

func (TenantServiceListRequestValidationError) ErrorName

ErrorName returns error name.

func (TenantServiceListRequestValidationError) Field

Field function returns field value.

func (TenantServiceListRequestValidationError) Key

Key function returns key value.

func (TenantServiceListRequestValidationError) Reason

Reason function returns reason value.

type TenantServiceListResponse

type TenantServiceListResponse struct {

	// Tenants are the list of tenants
	Tenants []*v1.Tenant `protobuf:"bytes,1,rep,name=tenants,proto3" json:"tenants,omitempty"`
	// NextPage is used for pagination, returns the next page to be fetched and must then be provided in the list request.
	NextPage *uint64 `protobuf:"varint,2,opt,name=next_page,json=nextPage,proto3,oneof" json:"next_page,omitempty"`
	// contains filtered or unexported fields
}

TenantServiceListResponse is the response payload for a tenant list request

func (*TenantServiceListResponse) Descriptor deprecated

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

Deprecated: Use TenantServiceListResponse.ProtoReflect.Descriptor instead.

func (*TenantServiceListResponse) GetNextPage

func (x *TenantServiceListResponse) GetNextPage() uint64

func (*TenantServiceListResponse) GetTenants

func (x *TenantServiceListResponse) GetTenants() []*v1.Tenant

func (*TenantServiceListResponse) ProtoMessage

func (*TenantServiceListResponse) ProtoMessage()

func (*TenantServiceListResponse) ProtoReflect

func (*TenantServiceListResponse) Reset

func (x *TenantServiceListResponse) Reset()

func (*TenantServiceListResponse) String

func (x *TenantServiceListResponse) String() string

func (*TenantServiceListResponse) Validate

func (m *TenantServiceListResponse) Validate() error

Validate checks the field values on TenantServiceListResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TenantServiceListResponse) ValidateAll

func (m *TenantServiceListResponse) ValidateAll() error

ValidateAll checks the field values on TenantServiceListResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TenantServiceListResponseMultiError, or nil if none found.

type TenantServiceListResponseMultiError

type TenantServiceListResponseMultiError []error

TenantServiceListResponseMultiError is an error wrapping multiple validation errors returned by TenantServiceListResponse.ValidateAll() if the designated constraints aren't met.

func (TenantServiceListResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TenantServiceListResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TenantServiceListResponseValidationError

type TenantServiceListResponseValidationError struct {
	// contains filtered or unexported fields
}

TenantServiceListResponseValidationError is the validation error returned by TenantServiceListResponse.Validate if the designated constraints aren't met.

func (TenantServiceListResponseValidationError) Cause

Cause function returns cause value.

func (TenantServiceListResponseValidationError) Error

Error satisfies the builtin error interface

func (TenantServiceListResponseValidationError) ErrorName

ErrorName returns error name.

func (TenantServiceListResponseValidationError) Field

Field function returns field value.

func (TenantServiceListResponseValidationError) Key

Key function returns key value.

func (TenantServiceListResponseValidationError) Reason

Reason function returns reason value.

type TenantServiceRevokeRequest

type TenantServiceRevokeRequest struct {

	// TenantId is the id of the tenant to revoke
	TenantId string `protobuf:"bytes,1,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
	// contains filtered or unexported fields
}

TenantServiceRevokeRequest is the request payload for a tenant revoke request

func (*TenantServiceRevokeRequest) Descriptor deprecated

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

Deprecated: Use TenantServiceRevokeRequest.ProtoReflect.Descriptor instead.

func (*TenantServiceRevokeRequest) GetTenantId

func (x *TenantServiceRevokeRequest) GetTenantId() string

func (*TenantServiceRevokeRequest) ProtoMessage

func (*TenantServiceRevokeRequest) ProtoMessage()

func (*TenantServiceRevokeRequest) ProtoReflect

func (*TenantServiceRevokeRequest) Reset

func (x *TenantServiceRevokeRequest) Reset()

func (*TenantServiceRevokeRequest) String

func (x *TenantServiceRevokeRequest) String() string

func (*TenantServiceRevokeRequest) Validate

func (m *TenantServiceRevokeRequest) Validate() error

Validate checks the field values on TenantServiceRevokeRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TenantServiceRevokeRequest) ValidateAll

func (m *TenantServiceRevokeRequest) ValidateAll() error

ValidateAll checks the field values on TenantServiceRevokeRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TenantServiceRevokeRequestMultiError, or nil if none found.

type TenantServiceRevokeRequestMultiError

type TenantServiceRevokeRequestMultiError []error

TenantServiceRevokeRequestMultiError is an error wrapping multiple validation errors returned by TenantServiceRevokeRequest.ValidateAll() if the designated constraints aren't met.

func (TenantServiceRevokeRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TenantServiceRevokeRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TenantServiceRevokeRequestValidationError

type TenantServiceRevokeRequestValidationError struct {
	// contains filtered or unexported fields
}

TenantServiceRevokeRequestValidationError is the validation error returned by TenantServiceRevokeRequest.Validate if the designated constraints aren't met.

func (TenantServiceRevokeRequestValidationError) Cause

Cause function returns cause value.

func (TenantServiceRevokeRequestValidationError) Error

Error satisfies the builtin error interface

func (TenantServiceRevokeRequestValidationError) ErrorName

ErrorName returns error name.

func (TenantServiceRevokeRequestValidationError) Field

Field function returns field value.

func (TenantServiceRevokeRequestValidationError) Key

Key function returns key value.

func (TenantServiceRevokeRequestValidationError) Reason

Reason function returns reason value.

type TenantServiceRevokeResponse

type TenantServiceRevokeResponse struct {

	// Tenant the tenant
	Tenant *v1.Tenant `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	// contains filtered or unexported fields
}

TenantServiceRevokeResponse is the response payload for a tenant revoke request

func (*TenantServiceRevokeResponse) Descriptor deprecated

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

Deprecated: Use TenantServiceRevokeResponse.ProtoReflect.Descriptor instead.

func (*TenantServiceRevokeResponse) GetTenant

func (x *TenantServiceRevokeResponse) GetTenant() *v1.Tenant

func (*TenantServiceRevokeResponse) ProtoMessage

func (*TenantServiceRevokeResponse) ProtoMessage()

func (*TenantServiceRevokeResponse) ProtoReflect

func (*TenantServiceRevokeResponse) Reset

func (x *TenantServiceRevokeResponse) Reset()

func (*TenantServiceRevokeResponse) String

func (x *TenantServiceRevokeResponse) String() string

func (*TenantServiceRevokeResponse) Validate

func (m *TenantServiceRevokeResponse) Validate() error

Validate checks the field values on TenantServiceRevokeResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TenantServiceRevokeResponse) ValidateAll

func (m *TenantServiceRevokeResponse) ValidateAll() error

ValidateAll checks the field values on TenantServiceRevokeResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TenantServiceRevokeResponseMultiError, or nil if none found.

type TenantServiceRevokeResponseMultiError

type TenantServiceRevokeResponseMultiError []error

TenantServiceRevokeResponseMultiError is an error wrapping multiple validation errors returned by TenantServiceRevokeResponse.ValidateAll() if the designated constraints aren't met.

func (TenantServiceRevokeResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TenantServiceRevokeResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TenantServiceRevokeResponseValidationError

type TenantServiceRevokeResponseValidationError struct {
	// contains filtered or unexported fields
}

TenantServiceRevokeResponseValidationError is the validation error returned by TenantServiceRevokeResponse.Validate if the designated constraints aren't met.

func (TenantServiceRevokeResponseValidationError) Cause

Cause function returns cause value.

func (TenantServiceRevokeResponseValidationError) Error

Error satisfies the builtin error interface

func (TenantServiceRevokeResponseValidationError) ErrorName

ErrorName returns error name.

func (TenantServiceRevokeResponseValidationError) Field

Field function returns field value.

func (TenantServiceRevokeResponseValidationError) Key

Key function returns key value.

func (TenantServiceRevokeResponseValidationError) Reason

Reason function returns reason value.

type TokenServiceListRequest

type TokenServiceListRequest struct {

	// UserId is the id of the user for which the tokens should be listed
	UserId *string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3,oneof" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

TokenServiceListRequest is the request payload for the token list request

func (*TokenServiceListRequest) Descriptor deprecated

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

Deprecated: Use TokenServiceListRequest.ProtoReflect.Descriptor instead.

func (*TokenServiceListRequest) GetUserId

func (x *TokenServiceListRequest) GetUserId() string

func (*TokenServiceListRequest) ProtoMessage

func (*TokenServiceListRequest) ProtoMessage()

func (*TokenServiceListRequest) ProtoReflect

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

func (*TokenServiceListRequest) Reset

func (x *TokenServiceListRequest) Reset()

func (*TokenServiceListRequest) String

func (x *TokenServiceListRequest) String() string

func (*TokenServiceListRequest) Validate

func (m *TokenServiceListRequest) Validate() error

Validate checks the field values on TokenServiceListRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TokenServiceListRequest) ValidateAll

func (m *TokenServiceListRequest) ValidateAll() error

ValidateAll checks the field values on TokenServiceListRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TokenServiceListRequestMultiError, or nil if none found.

type TokenServiceListRequestMultiError

type TokenServiceListRequestMultiError []error

TokenServiceListRequestMultiError is an error wrapping multiple validation errors returned by TokenServiceListRequest.ValidateAll() if the designated constraints aren't met.

func (TokenServiceListRequestMultiError) AllErrors

func (m TokenServiceListRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TokenServiceListRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TokenServiceListRequestValidationError

type TokenServiceListRequestValidationError struct {
	// contains filtered or unexported fields
}

TokenServiceListRequestValidationError is the validation error returned by TokenServiceListRequest.Validate if the designated constraints aren't met.

func (TokenServiceListRequestValidationError) Cause

Cause function returns cause value.

func (TokenServiceListRequestValidationError) Error

Error satisfies the builtin error interface

func (TokenServiceListRequestValidationError) ErrorName

ErrorName returns error name.

func (TokenServiceListRequestValidationError) Field

Field function returns field value.

func (TokenServiceListRequestValidationError) Key

Key function returns key value.

func (TokenServiceListRequestValidationError) Reason

Reason function returns reason value.

type TokenServiceListResponse

type TokenServiceListResponse struct {

	// Tokens is the list of tokens
	Tokens []*v1.Token `protobuf:"bytes,1,rep,name=tokens,proto3" json:"tokens,omitempty"`
	// contains filtered or unexported fields
}

TokenServiceListResponse is the response payload for the token list request

func (*TokenServiceListResponse) Descriptor deprecated

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

Deprecated: Use TokenServiceListResponse.ProtoReflect.Descriptor instead.

func (*TokenServiceListResponse) GetTokens

func (x *TokenServiceListResponse) GetTokens() []*v1.Token

func (*TokenServiceListResponse) ProtoMessage

func (*TokenServiceListResponse) ProtoMessage()

func (*TokenServiceListResponse) ProtoReflect

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

func (*TokenServiceListResponse) Reset

func (x *TokenServiceListResponse) Reset()

func (*TokenServiceListResponse) String

func (x *TokenServiceListResponse) String() string

func (*TokenServiceListResponse) Validate

func (m *TokenServiceListResponse) Validate() error

Validate checks the field values on TokenServiceListResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TokenServiceListResponse) ValidateAll

func (m *TokenServiceListResponse) ValidateAll() error

ValidateAll checks the field values on TokenServiceListResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TokenServiceListResponseMultiError, or nil if none found.

type TokenServiceListResponseMultiError

type TokenServiceListResponseMultiError []error

TokenServiceListResponseMultiError is an error wrapping multiple validation errors returned by TokenServiceListResponse.ValidateAll() if the designated constraints aren't met.

func (TokenServiceListResponseMultiError) AllErrors

func (m TokenServiceListResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TokenServiceListResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TokenServiceListResponseValidationError

type TokenServiceListResponseValidationError struct {
	// contains filtered or unexported fields
}

TokenServiceListResponseValidationError is the validation error returned by TokenServiceListResponse.Validate if the designated constraints aren't met.

func (TokenServiceListResponseValidationError) Cause

Cause function returns cause value.

func (TokenServiceListResponseValidationError) Error

Error satisfies the builtin error interface

func (TokenServiceListResponseValidationError) ErrorName

ErrorName returns error name.

func (TokenServiceListResponseValidationError) Field

Field function returns field value.

func (TokenServiceListResponseValidationError) Key

Key function returns key value.

func (TokenServiceListResponseValidationError) Reason

Reason function returns reason value.

type TokenServiceRevokeRequest

type TokenServiceRevokeRequest struct {

	// Uuid is the uuid of the token which should be revoked
	Uuid string `protobuf:"bytes,1,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// UserId is the id of the user for which the token should be revoked
	UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

TokenServiceRevokeRequest is the request payload for the token revoke request

func (*TokenServiceRevokeRequest) Descriptor deprecated

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

Deprecated: Use TokenServiceRevokeRequest.ProtoReflect.Descriptor instead.

func (*TokenServiceRevokeRequest) GetUserId

func (x *TokenServiceRevokeRequest) GetUserId() string

func (*TokenServiceRevokeRequest) GetUuid

func (x *TokenServiceRevokeRequest) GetUuid() string

func (*TokenServiceRevokeRequest) ProtoMessage

func (*TokenServiceRevokeRequest) ProtoMessage()

func (*TokenServiceRevokeRequest) ProtoReflect

func (*TokenServiceRevokeRequest) Reset

func (x *TokenServiceRevokeRequest) Reset()

func (*TokenServiceRevokeRequest) String

func (x *TokenServiceRevokeRequest) String() string

func (*TokenServiceRevokeRequest) Validate

func (m *TokenServiceRevokeRequest) Validate() error

Validate checks the field values on TokenServiceRevokeRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TokenServiceRevokeRequest) ValidateAll

func (m *TokenServiceRevokeRequest) ValidateAll() error

ValidateAll checks the field values on TokenServiceRevokeRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TokenServiceRevokeRequestMultiError, or nil if none found.

type TokenServiceRevokeRequestMultiError

type TokenServiceRevokeRequestMultiError []error

TokenServiceRevokeRequestMultiError is an error wrapping multiple validation errors returned by TokenServiceRevokeRequest.ValidateAll() if the designated constraints aren't met.

func (TokenServiceRevokeRequestMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TokenServiceRevokeRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TokenServiceRevokeRequestValidationError

type TokenServiceRevokeRequestValidationError struct {
	// contains filtered or unexported fields
}

TokenServiceRevokeRequestValidationError is the validation error returned by TokenServiceRevokeRequest.Validate if the designated constraints aren't met.

func (TokenServiceRevokeRequestValidationError) Cause

Cause function returns cause value.

func (TokenServiceRevokeRequestValidationError) Error

Error satisfies the builtin error interface

func (TokenServiceRevokeRequestValidationError) ErrorName

ErrorName returns error name.

func (TokenServiceRevokeRequestValidationError) Field

Field function returns field value.

func (TokenServiceRevokeRequestValidationError) Key

Key function returns key value.

func (TokenServiceRevokeRequestValidationError) Reason

Reason function returns reason value.

type TokenServiceRevokeResponse

type TokenServiceRevokeResponse struct {
	// contains filtered or unexported fields
}

TokenServiceRevokeResponse is the response payload for the token revoke request

func (*TokenServiceRevokeResponse) Descriptor deprecated

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

Deprecated: Use TokenServiceRevokeResponse.ProtoReflect.Descriptor instead.

func (*TokenServiceRevokeResponse) ProtoMessage

func (*TokenServiceRevokeResponse) ProtoMessage()

func (*TokenServiceRevokeResponse) ProtoReflect

func (*TokenServiceRevokeResponse) Reset

func (x *TokenServiceRevokeResponse) Reset()

func (*TokenServiceRevokeResponse) String

func (x *TokenServiceRevokeResponse) String() string

func (*TokenServiceRevokeResponse) Validate

func (m *TokenServiceRevokeResponse) Validate() error

Validate checks the field values on TokenServiceRevokeResponse with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*TokenServiceRevokeResponse) ValidateAll

func (m *TokenServiceRevokeResponse) ValidateAll() error

ValidateAll checks the field values on TokenServiceRevokeResponse with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in TokenServiceRevokeResponseMultiError, or nil if none found.

type TokenServiceRevokeResponseMultiError

type TokenServiceRevokeResponseMultiError []error

TokenServiceRevokeResponseMultiError is an error wrapping multiple validation errors returned by TokenServiceRevokeResponse.ValidateAll() if the designated constraints aren't met.

func (TokenServiceRevokeResponseMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (TokenServiceRevokeResponseMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TokenServiceRevokeResponseValidationError

type TokenServiceRevokeResponseValidationError struct {
	// contains filtered or unexported fields
}

TokenServiceRevokeResponseValidationError is the validation error returned by TokenServiceRevokeResponse.Validate if the designated constraints aren't met.

func (TokenServiceRevokeResponseValidationError) Cause

Cause function returns cause value.

func (TokenServiceRevokeResponseValidationError) Error

Error satisfies the builtin error interface

func (TokenServiceRevokeResponseValidationError) ErrorName

ErrorName returns error name.

func (TokenServiceRevokeResponseValidationError) Field

Field function returns field value.

func (TokenServiceRevokeResponseValidationError) Key

Key function returns key value.

func (TokenServiceRevokeResponseValidationError) Reason

Reason function returns reason value.

type VPN

type VPN struct {

	// Address is the ipv4 or ipv6 ip address of the machine in the VPN
	Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	// Authkey is the authentication key to join the network
	Authkey string `protobuf:"bytes,2,opt,name=authkey,proto3" json:"authkey,omitempty"`
	// contains filtered or unexported fields
}

VPN Details for a machine

func (*VPN) Descriptor deprecated

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

Deprecated: Use VPN.ProtoReflect.Descriptor instead.

func (*VPN) GetAddress

func (x *VPN) GetAddress() string

func (*VPN) GetAuthkey

func (x *VPN) GetAuthkey() string

func (*VPN) ProtoMessage

func (*VPN) ProtoMessage()

func (*VPN) ProtoReflect

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

func (*VPN) Reset

func (x *VPN) Reset()

func (*VPN) String

func (x *VPN) String() string

func (*VPN) Validate

func (m *VPN) Validate() error

Validate checks the field values on VPN with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*VPN) ValidateAll

func (m *VPN) ValidateAll() error

ValidateAll checks the field values on VPN with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in VPNMultiError, or nil if none found.

type VPNMultiError

type VPNMultiError []error

VPNMultiError is an error wrapping multiple validation errors returned by VPN.ValidateAll() if the designated constraints aren't met.

func (VPNMultiError) AllErrors

func (m VPNMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (VPNMultiError) Error

func (m VPNMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type VPNValidationError

type VPNValidationError struct {
	// contains filtered or unexported fields
}

VPNValidationError is the validation error returned by VPN.Validate if the designated constraints aren't met.

func (VPNValidationError) Cause

func (e VPNValidationError) Cause() error

Cause function returns cause value.

func (VPNValidationError) Error

func (e VPNValidationError) Error() string

Error satisfies the builtin error interface

func (VPNValidationError) ErrorName

func (e VPNValidationError) ErrorName() string

ErrorName returns error name.

func (VPNValidationError) Field

func (e VPNValidationError) Field() string

Field function returns field value.

func (VPNValidationError) Key

func (e VPNValidationError) Key() bool

Key function returns key value.

func (VPNValidationError) Reason

func (e VPNValidationError) Reason() string

Reason function returns reason value.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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