deploymentv1alpha1

package
v1.36.0 Latest Latest
Warning

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

Go to latest
Published: May 24, 2024 License: MIT Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	DNSRecordType_name = map[int32]string{
		0: "DNS_RECORD_TYPE_UNSPECIFIED",
		1: "DNS_RECORD_TYPE_TXT",
		2: "DNS_RECORD_TYPE_CNAME",
	}
	DNSRecordType_value = map[string]int32{
		"DNS_RECORD_TYPE_UNSPECIFIED": 0,
		"DNS_RECORD_TYPE_TXT":         1,
		"DNS_RECORD_TYPE_CNAME":       2,
	}
)

Enum value maps for DNSRecordType.

View Source
var File_commonfate_factory_deployment_v1alpha1_deployment_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type CreateDNSRecordRequest

type CreateDNSRecordRequest struct {
	Name   string        `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type   DNSRecordType `protobuf:"varint,2,opt,name=type,proto3,enum=commonfate.factory.deployment.v1alpha1.DNSRecordType" json:"type,omitempty"`
	Values []string      `protobuf:"bytes,3,rep,name=values,proto3" json:"values,omitempty"`
	// The base DNS name associated with the deployment.
	// e.g. 'commonfate.app'.
	DnsZoneName string `protobuf:"bytes,4,opt,name=dns_zone_name,json=dnsZoneName,proto3" json:"dns_zone_name,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateDNSRecordRequest) Descriptor deprecated

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

Deprecated: Use CreateDNSRecordRequest.ProtoReflect.Descriptor instead.

func (*CreateDNSRecordRequest) GetDnsZoneName

func (x *CreateDNSRecordRequest) GetDnsZoneName() string

func (*CreateDNSRecordRequest) GetName

func (x *CreateDNSRecordRequest) GetName() string

func (*CreateDNSRecordRequest) GetType

func (*CreateDNSRecordRequest) GetValues

func (x *CreateDNSRecordRequest) GetValues() []string

func (*CreateDNSRecordRequest) ProtoMessage

func (*CreateDNSRecordRequest) ProtoMessage()

func (*CreateDNSRecordRequest) ProtoReflect

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

func (*CreateDNSRecordRequest) Reset

func (x *CreateDNSRecordRequest) Reset()

func (*CreateDNSRecordRequest) String

func (x *CreateDNSRecordRequest) String() string

func (*CreateDNSRecordRequest) Validate

func (m *CreateDNSRecordRequest) Validate() error

Validate checks the field values on CreateDNSRecordRequest 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 (*CreateDNSRecordRequest) ValidateAll

func (m *CreateDNSRecordRequest) ValidateAll() error

ValidateAll checks the field values on CreateDNSRecordRequest 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 CreateDNSRecordRequestMultiError, or nil if none found.

type CreateDNSRecordRequestMultiError

type CreateDNSRecordRequestMultiError []error

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

func (CreateDNSRecordRequestMultiError) AllErrors

func (m CreateDNSRecordRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateDNSRecordRequestMultiError) Error

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

type CreateDNSRecordRequestValidationError

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

CreateDNSRecordRequestValidationError is the validation error returned by CreateDNSRecordRequest.Validate if the designated constraints aren't met.

func (CreateDNSRecordRequestValidationError) Cause

Cause function returns cause value.

func (CreateDNSRecordRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateDNSRecordRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateDNSRecordRequestValidationError) Field

Field function returns field value.

func (CreateDNSRecordRequestValidationError) Key

Key function returns key value.

func (CreateDNSRecordRequestValidationError) Reason

Reason function returns reason value.

type CreateDNSRecordResponse

type CreateDNSRecordResponse struct {
	Created *DNSRecord `protobuf:"bytes,1,opt,name=created,proto3" json:"created,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateDNSRecordResponse) Descriptor deprecated

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

Deprecated: Use CreateDNSRecordResponse.ProtoReflect.Descriptor instead.

func (*CreateDNSRecordResponse) GetCreated

func (x *CreateDNSRecordResponse) GetCreated() *DNSRecord

func (*CreateDNSRecordResponse) ProtoMessage

func (*CreateDNSRecordResponse) ProtoMessage()

func (*CreateDNSRecordResponse) ProtoReflect

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

func (*CreateDNSRecordResponse) Reset

func (x *CreateDNSRecordResponse) Reset()

func (*CreateDNSRecordResponse) String

func (x *CreateDNSRecordResponse) String() string

func (*CreateDNSRecordResponse) Validate

func (m *CreateDNSRecordResponse) Validate() error

Validate checks the field values on CreateDNSRecordResponse 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 (*CreateDNSRecordResponse) ValidateAll

func (m *CreateDNSRecordResponse) ValidateAll() error

ValidateAll checks the field values on CreateDNSRecordResponse 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 CreateDNSRecordResponseMultiError, or nil if none found.

type CreateDNSRecordResponseMultiError

type CreateDNSRecordResponseMultiError []error

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

func (CreateDNSRecordResponseMultiError) AllErrors

func (m CreateDNSRecordResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateDNSRecordResponseMultiError) Error

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

type CreateDNSRecordResponseValidationError

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

CreateDNSRecordResponseValidationError is the validation error returned by CreateDNSRecordResponse.Validate if the designated constraints aren't met.

func (CreateDNSRecordResponseValidationError) Cause

Cause function returns cause value.

func (CreateDNSRecordResponseValidationError) Error

Error satisfies the builtin error interface

func (CreateDNSRecordResponseValidationError) ErrorName

ErrorName returns error name.

func (CreateDNSRecordResponseValidationError) Field

Field function returns field value.

func (CreateDNSRecordResponseValidationError) Key

Key function returns key value.

func (CreateDNSRecordResponseValidationError) Reason

Reason function returns reason value.

type DNSRecord

type DNSRecord struct {
	Id     string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name   string        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Type   DNSRecordType `protobuf:"varint,3,opt,name=type,proto3,enum=commonfate.factory.deployment.v1alpha1.DNSRecordType" json:"type,omitempty"`
	Values []string      `protobuf:"bytes,4,rep,name=values,proto3" json:"values,omitempty"`
	// The base DNS name associated with the deployment.
	// e.g. 'commonfate.app'.
	DnsZoneName string `protobuf:"bytes,5,opt,name=dns_zone_name,json=dnsZoneName,proto3" json:"dns_zone_name,omitempty"`
	// contains filtered or unexported fields
}

func (*DNSRecord) Descriptor deprecated

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

Deprecated: Use DNSRecord.ProtoReflect.Descriptor instead.

func (*DNSRecord) GetDnsZoneName

func (x *DNSRecord) GetDnsZoneName() string

func (*DNSRecord) GetId

func (x *DNSRecord) GetId() string

func (*DNSRecord) GetName

func (x *DNSRecord) GetName() string

func (*DNSRecord) GetType

func (x *DNSRecord) GetType() DNSRecordType

func (*DNSRecord) GetValues

func (x *DNSRecord) GetValues() []string

func (*DNSRecord) ProtoMessage

func (*DNSRecord) ProtoMessage()

func (*DNSRecord) ProtoReflect

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

func (*DNSRecord) Reset

func (x *DNSRecord) Reset()

func (*DNSRecord) String

func (x *DNSRecord) String() string

func (*DNSRecord) Validate

func (m *DNSRecord) Validate() error

Validate checks the field values on DNSRecord 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 (*DNSRecord) ValidateAll

func (m *DNSRecord) ValidateAll() error

ValidateAll checks the field values on DNSRecord 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 DNSRecordMultiError, or nil if none found.

type DNSRecordMultiError

type DNSRecordMultiError []error

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

func (DNSRecordMultiError) AllErrors

func (m DNSRecordMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DNSRecordMultiError) Error

func (m DNSRecordMultiError) Error() string

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

type DNSRecordType

type DNSRecordType int32
const (
	DNSRecordType_DNS_RECORD_TYPE_UNSPECIFIED DNSRecordType = 0
	DNSRecordType_DNS_RECORD_TYPE_TXT         DNSRecordType = 1
	DNSRecordType_DNS_RECORD_TYPE_CNAME       DNSRecordType = 2
)

func (DNSRecordType) Descriptor

func (DNSRecordType) Enum

func (x DNSRecordType) Enum() *DNSRecordType

func (DNSRecordType) EnumDescriptor deprecated

func (DNSRecordType) EnumDescriptor() ([]byte, []int)

Deprecated: Use DNSRecordType.Descriptor instead.

func (DNSRecordType) Number

func (DNSRecordType) String

func (x DNSRecordType) String() string

func (DNSRecordType) Type

type DNSRecordValidationError

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

DNSRecordValidationError is the validation error returned by DNSRecord.Validate if the designated constraints aren't met.

func (DNSRecordValidationError) Cause

func (e DNSRecordValidationError) Cause() error

Cause function returns cause value.

func (DNSRecordValidationError) Error

func (e DNSRecordValidationError) Error() string

Error satisfies the builtin error interface

func (DNSRecordValidationError) ErrorName

func (e DNSRecordValidationError) ErrorName() string

ErrorName returns error name.

func (DNSRecordValidationError) Field

func (e DNSRecordValidationError) Field() string

Field function returns field value.

func (DNSRecordValidationError) Key

Key function returns key value.

func (DNSRecordValidationError) Reason

func (e DNSRecordValidationError) Reason() string

Reason function returns reason value.

type DeleteDNSRecordRequest

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

func (*DeleteDNSRecordRequest) Descriptor deprecated

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

Deprecated: Use DeleteDNSRecordRequest.ProtoReflect.Descriptor instead.

func (*DeleteDNSRecordRequest) GetId

func (x *DeleteDNSRecordRequest) GetId() string

func (*DeleteDNSRecordRequest) ProtoMessage

func (*DeleteDNSRecordRequest) ProtoMessage()

func (*DeleteDNSRecordRequest) ProtoReflect

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

func (*DeleteDNSRecordRequest) Reset

func (x *DeleteDNSRecordRequest) Reset()

func (*DeleteDNSRecordRequest) String

func (x *DeleteDNSRecordRequest) String() string

func (*DeleteDNSRecordRequest) Validate

func (m *DeleteDNSRecordRequest) Validate() error

Validate checks the field values on DeleteDNSRecordRequest 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 (*DeleteDNSRecordRequest) ValidateAll

func (m *DeleteDNSRecordRequest) ValidateAll() error

ValidateAll checks the field values on DeleteDNSRecordRequest 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 DeleteDNSRecordRequestMultiError, or nil if none found.

type DeleteDNSRecordRequestMultiError

type DeleteDNSRecordRequestMultiError []error

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

func (DeleteDNSRecordRequestMultiError) AllErrors

func (m DeleteDNSRecordRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteDNSRecordRequestMultiError) Error

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

type DeleteDNSRecordRequestValidationError

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

DeleteDNSRecordRequestValidationError is the validation error returned by DeleteDNSRecordRequest.Validate if the designated constraints aren't met.

func (DeleteDNSRecordRequestValidationError) Cause

Cause function returns cause value.

func (DeleteDNSRecordRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteDNSRecordRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteDNSRecordRequestValidationError) Field

Field function returns field value.

func (DeleteDNSRecordRequestValidationError) Key

Key function returns key value.

func (DeleteDNSRecordRequestValidationError) Reason

Reason function returns reason value.

type DeleteDNSRecordResponse

type DeleteDNSRecordResponse struct {
	Deleted *DNSRecord `protobuf:"bytes,1,opt,name=deleted,proto3" json:"deleted,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteDNSRecordResponse) Descriptor deprecated

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

Deprecated: Use DeleteDNSRecordResponse.ProtoReflect.Descriptor instead.

func (*DeleteDNSRecordResponse) GetDeleted

func (x *DeleteDNSRecordResponse) GetDeleted() *DNSRecord

func (*DeleteDNSRecordResponse) ProtoMessage

func (*DeleteDNSRecordResponse) ProtoMessage()

func (*DeleteDNSRecordResponse) ProtoReflect

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

func (*DeleteDNSRecordResponse) Reset

func (x *DeleteDNSRecordResponse) Reset()

func (*DeleteDNSRecordResponse) String

func (x *DeleteDNSRecordResponse) String() string

func (*DeleteDNSRecordResponse) Validate

func (m *DeleteDNSRecordResponse) Validate() error

Validate checks the field values on DeleteDNSRecordResponse 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 (*DeleteDNSRecordResponse) ValidateAll

func (m *DeleteDNSRecordResponse) ValidateAll() error

ValidateAll checks the field values on DeleteDNSRecordResponse 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 DeleteDNSRecordResponseMultiError, or nil if none found.

type DeleteDNSRecordResponseMultiError

type DeleteDNSRecordResponseMultiError []error

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

func (DeleteDNSRecordResponseMultiError) AllErrors

func (m DeleteDNSRecordResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteDNSRecordResponseMultiError) Error

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

type DeleteDNSRecordResponseValidationError

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

DeleteDNSRecordResponseValidationError is the validation error returned by DeleteDNSRecordResponse.Validate if the designated constraints aren't met.

func (DeleteDNSRecordResponseValidationError) Cause

Cause function returns cause value.

func (DeleteDNSRecordResponseValidationError) Error

Error satisfies the builtin error interface

func (DeleteDNSRecordResponseValidationError) ErrorName

ErrorName returns error name.

func (DeleteDNSRecordResponseValidationError) Field

Field function returns field value.

func (DeleteDNSRecordResponseValidationError) Key

Key function returns key value.

func (DeleteDNSRecordResponseValidationError) Reason

Reason function returns reason value.

type Deployment

type Deployment struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// The default DNS subdomain associated with the deployment.
	// Currently this is the deployment ID.
	DefaultSubdomain string `protobuf:"bytes,2,opt,name=default_subdomain,json=defaultSubdomain,proto3" json:"default_subdomain,omitempty"`
	// The base DNS name associated with the deployment.
	// e.g. 'commonfate.app'.
	DnsZoneName string `protobuf:"bytes,3,opt,name=dns_zone_name,json=dnsZoneName,proto3" json:"dns_zone_name,omitempty"`
	// contains filtered or unexported fields
}

func (*Deployment) Descriptor deprecated

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

Deprecated: Use Deployment.ProtoReflect.Descriptor instead.

func (*Deployment) GetDefaultSubdomain

func (x *Deployment) GetDefaultSubdomain() string

func (*Deployment) GetDnsZoneName

func (x *Deployment) GetDnsZoneName() string

func (*Deployment) GetId

func (x *Deployment) GetId() string

func (*Deployment) ProtoMessage

func (*Deployment) ProtoMessage()

func (*Deployment) ProtoReflect

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

func (*Deployment) Reset

func (x *Deployment) Reset()

func (*Deployment) String

func (x *Deployment) String() string

func (*Deployment) Validate

func (m *Deployment) Validate() error

Validate checks the field values on Deployment 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 (*Deployment) ValidateAll

func (m *Deployment) ValidateAll() error

ValidateAll checks the field values on Deployment 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 DeploymentMultiError, or nil if none found.

type DeploymentMultiError

type DeploymentMultiError []error

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

func (DeploymentMultiError) AllErrors

func (m DeploymentMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeploymentMultiError) Error

func (m DeploymentMultiError) Error() string

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

type DeploymentValidationError

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

DeploymentValidationError is the validation error returned by Deployment.Validate if the designated constraints aren't met.

func (DeploymentValidationError) Cause

func (e DeploymentValidationError) Cause() error

Cause function returns cause value.

func (DeploymentValidationError) Error

Error satisfies the builtin error interface

func (DeploymentValidationError) ErrorName

func (e DeploymentValidationError) ErrorName() string

ErrorName returns error name.

func (DeploymentValidationError) Field

Field function returns field value.

func (DeploymentValidationError) Key

Key function returns key value.

func (DeploymentValidationError) Reason

func (e DeploymentValidationError) Reason() string

Reason function returns reason value.

type GetDNSRecordRequest

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

func (*GetDNSRecordRequest) Descriptor deprecated

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

Deprecated: Use GetDNSRecordRequest.ProtoReflect.Descriptor instead.

func (*GetDNSRecordRequest) GetId

func (x *GetDNSRecordRequest) GetId() string

func (*GetDNSRecordRequest) ProtoMessage

func (*GetDNSRecordRequest) ProtoMessage()

func (*GetDNSRecordRequest) ProtoReflect

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

func (*GetDNSRecordRequest) Reset

func (x *GetDNSRecordRequest) Reset()

func (*GetDNSRecordRequest) String

func (x *GetDNSRecordRequest) String() string

func (*GetDNSRecordRequest) Validate

func (m *GetDNSRecordRequest) Validate() error

Validate checks the field values on GetDNSRecordRequest 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 (*GetDNSRecordRequest) ValidateAll

func (m *GetDNSRecordRequest) ValidateAll() error

ValidateAll checks the field values on GetDNSRecordRequest 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 GetDNSRecordRequestMultiError, or nil if none found.

type GetDNSRecordRequestMultiError

type GetDNSRecordRequestMultiError []error

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

func (GetDNSRecordRequestMultiError) AllErrors

func (m GetDNSRecordRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDNSRecordRequestMultiError) Error

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

type GetDNSRecordRequestValidationError

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

GetDNSRecordRequestValidationError is the validation error returned by GetDNSRecordRequest.Validate if the designated constraints aren't met.

func (GetDNSRecordRequestValidationError) Cause

Cause function returns cause value.

func (GetDNSRecordRequestValidationError) Error

Error satisfies the builtin error interface

func (GetDNSRecordRequestValidationError) ErrorName

ErrorName returns error name.

func (GetDNSRecordRequestValidationError) Field

Field function returns field value.

func (GetDNSRecordRequestValidationError) Key

Key function returns key value.

func (GetDNSRecordRequestValidationError) Reason

Reason function returns reason value.

type GetDNSRecordResponse

type GetDNSRecordResponse struct {
	Record *DNSRecord `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDNSRecordResponse) Descriptor deprecated

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

Deprecated: Use GetDNSRecordResponse.ProtoReflect.Descriptor instead.

func (*GetDNSRecordResponse) GetRecord

func (x *GetDNSRecordResponse) GetRecord() *DNSRecord

func (*GetDNSRecordResponse) ProtoMessage

func (*GetDNSRecordResponse) ProtoMessage()

func (*GetDNSRecordResponse) ProtoReflect

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

func (*GetDNSRecordResponse) Reset

func (x *GetDNSRecordResponse) Reset()

func (*GetDNSRecordResponse) String

func (x *GetDNSRecordResponse) String() string

func (*GetDNSRecordResponse) Validate

func (m *GetDNSRecordResponse) Validate() error

Validate checks the field values on GetDNSRecordResponse 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 (*GetDNSRecordResponse) ValidateAll

func (m *GetDNSRecordResponse) ValidateAll() error

ValidateAll checks the field values on GetDNSRecordResponse 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 GetDNSRecordResponseMultiError, or nil if none found.

type GetDNSRecordResponseMultiError

type GetDNSRecordResponseMultiError []error

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

func (GetDNSRecordResponseMultiError) AllErrors

func (m GetDNSRecordResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDNSRecordResponseMultiError) Error

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

type GetDNSRecordResponseValidationError

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

GetDNSRecordResponseValidationError is the validation error returned by GetDNSRecordResponse.Validate if the designated constraints aren't met.

func (GetDNSRecordResponseValidationError) Cause

Cause function returns cause value.

func (GetDNSRecordResponseValidationError) Error

Error satisfies the builtin error interface

func (GetDNSRecordResponseValidationError) ErrorName

ErrorName returns error name.

func (GetDNSRecordResponseValidationError) Field

Field function returns field value.

func (GetDNSRecordResponseValidationError) Key

Key function returns key value.

func (GetDNSRecordResponseValidationError) Reason

Reason function returns reason value.

type GetDeploymentRequest

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

func (*GetDeploymentRequest) Descriptor deprecated

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

Deprecated: Use GetDeploymentRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentRequest) ProtoMessage

func (*GetDeploymentRequest) ProtoMessage()

func (*GetDeploymentRequest) ProtoReflect

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

func (*GetDeploymentRequest) Reset

func (x *GetDeploymentRequest) Reset()

func (*GetDeploymentRequest) String

func (x *GetDeploymentRequest) String() string

func (*GetDeploymentRequest) Validate

func (m *GetDeploymentRequest) Validate() error

Validate checks the field values on GetDeploymentRequest 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 (*GetDeploymentRequest) ValidateAll

func (m *GetDeploymentRequest) ValidateAll() error

ValidateAll checks the field values on GetDeploymentRequest 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 GetDeploymentRequestMultiError, or nil if none found.

type GetDeploymentRequestMultiError

type GetDeploymentRequestMultiError []error

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

func (GetDeploymentRequestMultiError) AllErrors

func (m GetDeploymentRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDeploymentRequestMultiError) Error

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

type GetDeploymentRequestValidationError

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

GetDeploymentRequestValidationError is the validation error returned by GetDeploymentRequest.Validate if the designated constraints aren't met.

func (GetDeploymentRequestValidationError) Cause

Cause function returns cause value.

func (GetDeploymentRequestValidationError) Error

Error satisfies the builtin error interface

func (GetDeploymentRequestValidationError) ErrorName

ErrorName returns error name.

func (GetDeploymentRequestValidationError) Field

Field function returns field value.

func (GetDeploymentRequestValidationError) Key

Key function returns key value.

func (GetDeploymentRequestValidationError) Reason

Reason function returns reason value.

type GetDeploymentResponse

type GetDeploymentResponse struct {
	Deployment *Deployment `protobuf:"bytes,1,opt,name=deployment,proto3" json:"deployment,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentResponse) Descriptor deprecated

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

Deprecated: Use GetDeploymentResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentResponse) GetDeployment

func (x *GetDeploymentResponse) GetDeployment() *Deployment

func (*GetDeploymentResponse) ProtoMessage

func (*GetDeploymentResponse) ProtoMessage()

func (*GetDeploymentResponse) ProtoReflect

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

func (*GetDeploymentResponse) Reset

func (x *GetDeploymentResponse) Reset()

func (*GetDeploymentResponse) String

func (x *GetDeploymentResponse) String() string

func (*GetDeploymentResponse) Validate

func (m *GetDeploymentResponse) Validate() error

Validate checks the field values on GetDeploymentResponse 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 (*GetDeploymentResponse) ValidateAll

func (m *GetDeploymentResponse) ValidateAll() error

ValidateAll checks the field values on GetDeploymentResponse 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 GetDeploymentResponseMultiError, or nil if none found.

type GetDeploymentResponseMultiError

type GetDeploymentResponseMultiError []error

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

func (GetDeploymentResponseMultiError) AllErrors

func (m GetDeploymentResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetDeploymentResponseMultiError) Error

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

type GetDeploymentResponseValidationError

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

GetDeploymentResponseValidationError is the validation error returned by GetDeploymentResponse.Validate if the designated constraints aren't met.

func (GetDeploymentResponseValidationError) Cause

Cause function returns cause value.

func (GetDeploymentResponseValidationError) Error

Error satisfies the builtin error interface

func (GetDeploymentResponseValidationError) ErrorName

ErrorName returns error name.

func (GetDeploymentResponseValidationError) Field

Field function returns field value.

func (GetDeploymentResponseValidationError) Key

Key function returns key value.

func (GetDeploymentResponseValidationError) Reason

Reason function returns reason value.

type UpdateDNSRecordRequest

type UpdateDNSRecordRequest struct {
	Id     string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Values []string `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateDNSRecordRequest) Descriptor deprecated

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

Deprecated: Use UpdateDNSRecordRequest.ProtoReflect.Descriptor instead.

func (*UpdateDNSRecordRequest) GetId

func (x *UpdateDNSRecordRequest) GetId() string

func (*UpdateDNSRecordRequest) GetValues

func (x *UpdateDNSRecordRequest) GetValues() []string

func (*UpdateDNSRecordRequest) ProtoMessage

func (*UpdateDNSRecordRequest) ProtoMessage()

func (*UpdateDNSRecordRequest) ProtoReflect

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

func (*UpdateDNSRecordRequest) Reset

func (x *UpdateDNSRecordRequest) Reset()

func (*UpdateDNSRecordRequest) String

func (x *UpdateDNSRecordRequest) String() string

func (*UpdateDNSRecordRequest) Validate

func (m *UpdateDNSRecordRequest) Validate() error

Validate checks the field values on UpdateDNSRecordRequest 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 (*UpdateDNSRecordRequest) ValidateAll

func (m *UpdateDNSRecordRequest) ValidateAll() error

ValidateAll checks the field values on UpdateDNSRecordRequest 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 UpdateDNSRecordRequestMultiError, or nil if none found.

type UpdateDNSRecordRequestMultiError

type UpdateDNSRecordRequestMultiError []error

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

func (UpdateDNSRecordRequestMultiError) AllErrors

func (m UpdateDNSRecordRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateDNSRecordRequestMultiError) Error

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

type UpdateDNSRecordRequestValidationError

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

UpdateDNSRecordRequestValidationError is the validation error returned by UpdateDNSRecordRequest.Validate if the designated constraints aren't met.

func (UpdateDNSRecordRequestValidationError) Cause

Cause function returns cause value.

func (UpdateDNSRecordRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateDNSRecordRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateDNSRecordRequestValidationError) Field

Field function returns field value.

func (UpdateDNSRecordRequestValidationError) Key

Key function returns key value.

func (UpdateDNSRecordRequestValidationError) Reason

Reason function returns reason value.

type UpdateDNSRecordResponse

type UpdateDNSRecordResponse struct {
	Updated *DNSRecord `protobuf:"bytes,1,opt,name=updated,proto3" json:"updated,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateDNSRecordResponse) Descriptor deprecated

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

Deprecated: Use UpdateDNSRecordResponse.ProtoReflect.Descriptor instead.

func (*UpdateDNSRecordResponse) GetUpdated

func (x *UpdateDNSRecordResponse) GetUpdated() *DNSRecord

func (*UpdateDNSRecordResponse) ProtoMessage

func (*UpdateDNSRecordResponse) ProtoMessage()

func (*UpdateDNSRecordResponse) ProtoReflect

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

func (*UpdateDNSRecordResponse) Reset

func (x *UpdateDNSRecordResponse) Reset()

func (*UpdateDNSRecordResponse) String

func (x *UpdateDNSRecordResponse) String() string

func (*UpdateDNSRecordResponse) Validate

func (m *UpdateDNSRecordResponse) Validate() error

Validate checks the field values on UpdateDNSRecordResponse 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 (*UpdateDNSRecordResponse) ValidateAll

func (m *UpdateDNSRecordResponse) ValidateAll() error

ValidateAll checks the field values on UpdateDNSRecordResponse 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 UpdateDNSRecordResponseMultiError, or nil if none found.

type UpdateDNSRecordResponseMultiError

type UpdateDNSRecordResponseMultiError []error

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

func (UpdateDNSRecordResponseMultiError) AllErrors

func (m UpdateDNSRecordResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateDNSRecordResponseMultiError) Error

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

type UpdateDNSRecordResponseValidationError

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

UpdateDNSRecordResponseValidationError is the validation error returned by UpdateDNSRecordResponse.Validate if the designated constraints aren't met.

func (UpdateDNSRecordResponseValidationError) Cause

Cause function returns cause value.

func (UpdateDNSRecordResponseValidationError) Error

Error satisfies the builtin error interface

func (UpdateDNSRecordResponseValidationError) ErrorName

ErrorName returns error name.

func (UpdateDNSRecordResponseValidationError) Field

Field function returns field value.

func (UpdateDNSRecordResponseValidationError) Key

Key function returns key value.

func (UpdateDNSRecordResponseValidationError) Reason

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