deploymentv1alpha1

package
v1.69.1 Latest Latest
Warning

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

Go to latest
Published: Nov 8, 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 AWSACMCertificate added in v1.53.0

type AWSACMCertificate struct {
	Id  string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Arn string `protobuf:"bytes,2,opt,name=arn,proto3" json:"arn,omitempty"`
	// The domain name for the certificate, for example: 'www.example.com'
	DomainName           string `protobuf:"bytes,3,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"`
	ValidationCnameName  string `protobuf:"bytes,4,opt,name=validation_cname_name,json=validationCnameName,proto3" json:"validation_cname_name,omitempty"`
	ValidationCnameValue string `protobuf:"bytes,5,opt,name=validation_cname_value,json=validationCnameValue,proto3" json:"validation_cname_value,omitempty"`
	Status               string `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*AWSACMCertificate) Descriptor deprecated added in v1.53.0

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

Deprecated: Use AWSACMCertificate.ProtoReflect.Descriptor instead.

func (*AWSACMCertificate) GetArn added in v1.53.0

func (x *AWSACMCertificate) GetArn() string

func (*AWSACMCertificate) GetDomainName added in v1.53.0

func (x *AWSACMCertificate) GetDomainName() string

func (*AWSACMCertificate) GetId added in v1.53.0

func (x *AWSACMCertificate) GetId() string

func (*AWSACMCertificate) GetStatus added in v1.53.0

func (x *AWSACMCertificate) GetStatus() string

func (*AWSACMCertificate) GetValidationCnameName added in v1.53.0

func (x *AWSACMCertificate) GetValidationCnameName() string

func (*AWSACMCertificate) GetValidationCnameValue added in v1.53.0

func (x *AWSACMCertificate) GetValidationCnameValue() string

func (*AWSACMCertificate) ProtoMessage added in v1.53.0

func (*AWSACMCertificate) ProtoMessage()

func (*AWSACMCertificate) ProtoReflect added in v1.53.0

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

func (*AWSACMCertificate) Reset added in v1.53.0

func (x *AWSACMCertificate) Reset()

func (*AWSACMCertificate) String added in v1.53.0

func (x *AWSACMCertificate) String() string

func (*AWSACMCertificate) Validate added in v1.53.0

func (m *AWSACMCertificate) Validate() error

Validate checks the field values on AWSACMCertificate 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 (*AWSACMCertificate) ValidateAll added in v1.53.0

func (m *AWSACMCertificate) ValidateAll() error

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

type AWSACMCertificateMultiError added in v1.53.0

type AWSACMCertificateMultiError []error

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

func (AWSACMCertificateMultiError) AllErrors added in v1.53.0

func (m AWSACMCertificateMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AWSACMCertificateMultiError) Error added in v1.53.0

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

type AWSACMCertificateValidationError added in v1.53.0

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

AWSACMCertificateValidationError is the validation error returned by AWSACMCertificate.Validate if the designated constraints aren't met.

func (AWSACMCertificateValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (AWSACMCertificateValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (AWSACMCertificateValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (AWSACMCertificateValidationError) Field added in v1.53.0

Field function returns field value.

func (AWSACMCertificateValidationError) Key added in v1.53.0

Key function returns key value.

func (AWSACMCertificateValidationError) Reason added in v1.53.0

Reason function returns reason value.

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"`
	// The default app URL associated with the deployment.
	// Will be in the form 'console.abc123.commonfate.app'.
	// Does not include the URL scheme.
	DefaultAppDomain string `protobuf:"bytes,4,opt,name=default_app_domain,json=defaultAppDomain,proto3" json:"default_app_domain,omitempty"`
	// contains filtered or unexported fields
}

func (*Deployment) Descriptor deprecated

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

Deprecated: Use Deployment.ProtoReflect.Descriptor instead.

func (*Deployment) GetDefaultAppDomain added in v1.53.0

func (x *Deployment) GetDefaultAppDomain() string

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 DeregisterAWSACMCertificateRequest added in v1.53.0

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

func (*DeregisterAWSACMCertificateRequest) Descriptor deprecated added in v1.53.0

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

Deprecated: Use DeregisterAWSACMCertificateRequest.ProtoReflect.Descriptor instead.

func (*DeregisterAWSACMCertificateRequest) GetId added in v1.53.0

func (*DeregisterAWSACMCertificateRequest) ProtoMessage added in v1.53.0

func (*DeregisterAWSACMCertificateRequest) ProtoMessage()

func (*DeregisterAWSACMCertificateRequest) ProtoReflect added in v1.53.0

func (*DeregisterAWSACMCertificateRequest) Reset added in v1.53.0

func (*DeregisterAWSACMCertificateRequest) String added in v1.53.0

func (*DeregisterAWSACMCertificateRequest) Validate added in v1.53.0

Validate checks the field values on DeregisterAWSACMCertificateRequest 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 (*DeregisterAWSACMCertificateRequest) ValidateAll added in v1.53.0

func (m *DeregisterAWSACMCertificateRequest) ValidateAll() error

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

type DeregisterAWSACMCertificateRequestMultiError added in v1.53.0

type DeregisterAWSACMCertificateRequestMultiError []error

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

func (DeregisterAWSACMCertificateRequestMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (DeregisterAWSACMCertificateRequestMultiError) Error added in v1.53.0

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

type DeregisterAWSACMCertificateRequestValidationError added in v1.53.0

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

DeregisterAWSACMCertificateRequestValidationError is the validation error returned by DeregisterAWSACMCertificateRequest.Validate if the designated constraints aren't met.

func (DeregisterAWSACMCertificateRequestValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (DeregisterAWSACMCertificateRequestValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (DeregisterAWSACMCertificateRequestValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (DeregisterAWSACMCertificateRequestValidationError) Field added in v1.53.0

Field function returns field value.

func (DeregisterAWSACMCertificateRequestValidationError) Key added in v1.53.0

Key function returns key value.

func (DeregisterAWSACMCertificateRequestValidationError) Reason added in v1.53.0

Reason function returns reason value.

type DeregisterAWSACMCertificateResponse added in v1.53.0

type DeregisterAWSACMCertificateResponse struct {
	Deregistered *AWSACMCertificate `protobuf:"bytes,1,opt,name=deregistered,proto3" json:"deregistered,omitempty"`
	// contains filtered or unexported fields
}

func (*DeregisterAWSACMCertificateResponse) Descriptor deprecated added in v1.53.0

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

Deprecated: Use DeregisterAWSACMCertificateResponse.ProtoReflect.Descriptor instead.

func (*DeregisterAWSACMCertificateResponse) GetDeregistered added in v1.53.0

func (*DeregisterAWSACMCertificateResponse) ProtoMessage added in v1.53.0

func (*DeregisterAWSACMCertificateResponse) ProtoMessage()

func (*DeregisterAWSACMCertificateResponse) ProtoReflect added in v1.53.0

func (*DeregisterAWSACMCertificateResponse) Reset added in v1.53.0

func (*DeregisterAWSACMCertificateResponse) String added in v1.53.0

func (*DeregisterAWSACMCertificateResponse) Validate added in v1.53.0

Validate checks the field values on DeregisterAWSACMCertificateResponse 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 (*DeregisterAWSACMCertificateResponse) ValidateAll added in v1.53.0

func (m *DeregisterAWSACMCertificateResponse) ValidateAll() error

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

type DeregisterAWSACMCertificateResponseMultiError added in v1.53.0

type DeregisterAWSACMCertificateResponseMultiError []error

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

func (DeregisterAWSACMCertificateResponseMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (DeregisterAWSACMCertificateResponseMultiError) Error added in v1.53.0

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

type DeregisterAWSACMCertificateResponseValidationError added in v1.53.0

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

DeregisterAWSACMCertificateResponseValidationError is the validation error returned by DeregisterAWSACMCertificateResponse.Validate if the designated constraints aren't met.

func (DeregisterAWSACMCertificateResponseValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (DeregisterAWSACMCertificateResponseValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (DeregisterAWSACMCertificateResponseValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (DeregisterAWSACMCertificateResponseValidationError) Field added in v1.53.0

Field function returns field value.

func (DeregisterAWSACMCertificateResponseValidationError) Key added in v1.53.0

Key function returns key value.

func (DeregisterAWSACMCertificateResponseValidationError) Reason added in v1.53.0

Reason function returns reason value.

type GetAWSACMCertificateRequest added in v1.53.0

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

func (*GetAWSACMCertificateRequest) Descriptor deprecated added in v1.53.0

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

Deprecated: Use GetAWSACMCertificateRequest.ProtoReflect.Descriptor instead.

func (*GetAWSACMCertificateRequest) GetId added in v1.53.0

func (*GetAWSACMCertificateRequest) ProtoMessage added in v1.53.0

func (*GetAWSACMCertificateRequest) ProtoMessage()

func (*GetAWSACMCertificateRequest) ProtoReflect added in v1.53.0

func (*GetAWSACMCertificateRequest) Reset added in v1.53.0

func (x *GetAWSACMCertificateRequest) Reset()

func (*GetAWSACMCertificateRequest) String added in v1.53.0

func (x *GetAWSACMCertificateRequest) String() string

func (*GetAWSACMCertificateRequest) Validate added in v1.53.0

func (m *GetAWSACMCertificateRequest) Validate() error

Validate checks the field values on GetAWSACMCertificateRequest 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 (*GetAWSACMCertificateRequest) ValidateAll added in v1.53.0

func (m *GetAWSACMCertificateRequest) ValidateAll() error

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

type GetAWSACMCertificateRequestMultiError added in v1.53.0

type GetAWSACMCertificateRequestMultiError []error

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

func (GetAWSACMCertificateRequestMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (GetAWSACMCertificateRequestMultiError) Error added in v1.53.0

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

type GetAWSACMCertificateRequestValidationError added in v1.53.0

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

GetAWSACMCertificateRequestValidationError is the validation error returned by GetAWSACMCertificateRequest.Validate if the designated constraints aren't met.

func (GetAWSACMCertificateRequestValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (GetAWSACMCertificateRequestValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (GetAWSACMCertificateRequestValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (GetAWSACMCertificateRequestValidationError) Field added in v1.53.0

Field function returns field value.

func (GetAWSACMCertificateRequestValidationError) Key added in v1.53.0

Key function returns key value.

func (GetAWSACMCertificateRequestValidationError) Reason added in v1.53.0

Reason function returns reason value.

type GetAWSACMCertificateResponse added in v1.53.0

type GetAWSACMCertificateResponse struct {
	Certificate *AWSACMCertificate `protobuf:"bytes,1,opt,name=certificate,proto3" json:"certificate,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAWSACMCertificateResponse) Descriptor deprecated added in v1.53.0

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

Deprecated: Use GetAWSACMCertificateResponse.ProtoReflect.Descriptor instead.

func (*GetAWSACMCertificateResponse) GetCertificate added in v1.53.0

func (x *GetAWSACMCertificateResponse) GetCertificate() *AWSACMCertificate

func (*GetAWSACMCertificateResponse) ProtoMessage added in v1.53.0

func (*GetAWSACMCertificateResponse) ProtoMessage()

func (*GetAWSACMCertificateResponse) ProtoReflect added in v1.53.0

func (*GetAWSACMCertificateResponse) Reset added in v1.53.0

func (x *GetAWSACMCertificateResponse) Reset()

func (*GetAWSACMCertificateResponse) String added in v1.53.0

func (*GetAWSACMCertificateResponse) Validate added in v1.53.0

func (m *GetAWSACMCertificateResponse) Validate() error

Validate checks the field values on GetAWSACMCertificateResponse 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 (*GetAWSACMCertificateResponse) ValidateAll added in v1.53.0

func (m *GetAWSACMCertificateResponse) ValidateAll() error

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

type GetAWSACMCertificateResponseMultiError added in v1.53.0

type GetAWSACMCertificateResponseMultiError []error

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

func (GetAWSACMCertificateResponseMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (GetAWSACMCertificateResponseMultiError) Error added in v1.53.0

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

type GetAWSACMCertificateResponseValidationError added in v1.53.0

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

GetAWSACMCertificateResponseValidationError is the validation error returned by GetAWSACMCertificateResponse.Validate if the designated constraints aren't met.

func (GetAWSACMCertificateResponseValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (GetAWSACMCertificateResponseValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (GetAWSACMCertificateResponseValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (GetAWSACMCertificateResponseValidationError) Field added in v1.53.0

Field function returns field value.

func (GetAWSACMCertificateResponseValidationError) Key added in v1.53.0

Key function returns key value.

func (GetAWSACMCertificateResponseValidationError) Reason added in v1.53.0

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 GetTerraformOutputRequest added in v1.53.0

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

func (*GetTerraformOutputRequest) Descriptor deprecated added in v1.53.0

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

Deprecated: Use GetTerraformOutputRequest.ProtoReflect.Descriptor instead.

func (*GetTerraformOutputRequest) ProtoMessage added in v1.53.0

func (*GetTerraformOutputRequest) ProtoMessage()

func (*GetTerraformOutputRequest) ProtoReflect added in v1.53.0

func (*GetTerraformOutputRequest) Reset added in v1.53.0

func (x *GetTerraformOutputRequest) Reset()

func (*GetTerraformOutputRequest) String added in v1.53.0

func (x *GetTerraformOutputRequest) String() string

func (*GetTerraformOutputRequest) Validate added in v1.53.0

func (m *GetTerraformOutputRequest) Validate() error

Validate checks the field values on GetTerraformOutputRequest 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 (*GetTerraformOutputRequest) ValidateAll added in v1.53.0

func (m *GetTerraformOutputRequest) ValidateAll() error

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

type GetTerraformOutputRequestMultiError added in v1.53.0

type GetTerraformOutputRequestMultiError []error

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

func (GetTerraformOutputRequestMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (GetTerraformOutputRequestMultiError) Error added in v1.53.0

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

type GetTerraformOutputRequestValidationError added in v1.53.0

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

GetTerraformOutputRequestValidationError is the validation error returned by GetTerraformOutputRequest.Validate if the designated constraints aren't met.

func (GetTerraformOutputRequestValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (GetTerraformOutputRequestValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (GetTerraformOutputRequestValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (GetTerraformOutputRequestValidationError) Field added in v1.53.0

Field function returns field value.

func (GetTerraformOutputRequestValidationError) Key added in v1.53.0

Key function returns key value.

func (GetTerraformOutputRequestValidationError) Reason added in v1.53.0

Reason function returns reason value.

type GetTerraformOutputResponse added in v1.53.0

type GetTerraformOutputResponse struct {
	Output *TerraformOutput `protobuf:"bytes,1,opt,name=output,proto3" json:"output,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTerraformOutputResponse) Descriptor deprecated added in v1.53.0

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

Deprecated: Use GetTerraformOutputResponse.ProtoReflect.Descriptor instead.

func (*GetTerraformOutputResponse) GetOutput added in v1.53.0

func (*GetTerraformOutputResponse) ProtoMessage added in v1.53.0

func (*GetTerraformOutputResponse) ProtoMessage()

func (*GetTerraformOutputResponse) ProtoReflect added in v1.53.0

func (*GetTerraformOutputResponse) Reset added in v1.53.0

func (x *GetTerraformOutputResponse) Reset()

func (*GetTerraformOutputResponse) String added in v1.53.0

func (x *GetTerraformOutputResponse) String() string

func (*GetTerraformOutputResponse) Validate added in v1.53.0

func (m *GetTerraformOutputResponse) Validate() error

Validate checks the field values on GetTerraformOutputResponse 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 (*GetTerraformOutputResponse) ValidateAll added in v1.53.0

func (m *GetTerraformOutputResponse) ValidateAll() error

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

type GetTerraformOutputResponseMultiError added in v1.53.0

type GetTerraformOutputResponseMultiError []error

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

func (GetTerraformOutputResponseMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (GetTerraformOutputResponseMultiError) Error added in v1.53.0

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

type GetTerraformOutputResponseValidationError added in v1.53.0

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

GetTerraformOutputResponseValidationError is the validation error returned by GetTerraformOutputResponse.Validate if the designated constraints aren't met.

func (GetTerraformOutputResponseValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (GetTerraformOutputResponseValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (GetTerraformOutputResponseValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (GetTerraformOutputResponseValidationError) Field added in v1.53.0

Field function returns field value.

func (GetTerraformOutputResponseValidationError) Key added in v1.53.0

Key function returns key value.

func (GetTerraformOutputResponseValidationError) Reason added in v1.53.0

Reason function returns reason value.

type RegisterAWSACMCertificateRequest added in v1.53.0

type RegisterAWSACMCertificateRequest struct {
	Arn string `protobuf:"bytes,1,opt,name=arn,proto3" json:"arn,omitempty"`
	// The domain name for the certificate, for example: 'www.example.com'
	DomainName           string `protobuf:"bytes,2,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"`
	ValidationCnameName  string `protobuf:"bytes,3,opt,name=validation_cname_name,json=validationCnameName,proto3" json:"validation_cname_name,omitempty"`
	ValidationCnameValue string `protobuf:"bytes,4,opt,name=validation_cname_value,json=validationCnameValue,proto3" json:"validation_cname_value,omitempty"`
	Status               string `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterAWSACMCertificateRequest) Descriptor deprecated added in v1.53.0

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

Deprecated: Use RegisterAWSACMCertificateRequest.ProtoReflect.Descriptor instead.

func (*RegisterAWSACMCertificateRequest) GetArn added in v1.53.0

func (*RegisterAWSACMCertificateRequest) GetDomainName added in v1.53.0

func (x *RegisterAWSACMCertificateRequest) GetDomainName() string

func (*RegisterAWSACMCertificateRequest) GetStatus added in v1.53.0

func (*RegisterAWSACMCertificateRequest) GetValidationCnameName added in v1.53.0

func (x *RegisterAWSACMCertificateRequest) GetValidationCnameName() string

func (*RegisterAWSACMCertificateRequest) GetValidationCnameValue added in v1.53.0

func (x *RegisterAWSACMCertificateRequest) GetValidationCnameValue() string

func (*RegisterAWSACMCertificateRequest) ProtoMessage added in v1.53.0

func (*RegisterAWSACMCertificateRequest) ProtoMessage()

func (*RegisterAWSACMCertificateRequest) ProtoReflect added in v1.53.0

func (*RegisterAWSACMCertificateRequest) Reset added in v1.53.0

func (*RegisterAWSACMCertificateRequest) String added in v1.53.0

func (*RegisterAWSACMCertificateRequest) Validate added in v1.53.0

Validate checks the field values on RegisterAWSACMCertificateRequest 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 (*RegisterAWSACMCertificateRequest) ValidateAll added in v1.53.0

func (m *RegisterAWSACMCertificateRequest) ValidateAll() error

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

type RegisterAWSACMCertificateRequestMultiError added in v1.53.0

type RegisterAWSACMCertificateRequestMultiError []error

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

func (RegisterAWSACMCertificateRequestMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (RegisterAWSACMCertificateRequestMultiError) Error added in v1.53.0

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

type RegisterAWSACMCertificateRequestValidationError added in v1.53.0

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

RegisterAWSACMCertificateRequestValidationError is the validation error returned by RegisterAWSACMCertificateRequest.Validate if the designated constraints aren't met.

func (RegisterAWSACMCertificateRequestValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (RegisterAWSACMCertificateRequestValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (RegisterAWSACMCertificateRequestValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (RegisterAWSACMCertificateRequestValidationError) Field added in v1.53.0

Field function returns field value.

func (RegisterAWSACMCertificateRequestValidationError) Key added in v1.53.0

Key function returns key value.

func (RegisterAWSACMCertificateRequestValidationError) Reason added in v1.53.0

Reason function returns reason value.

type RegisterAWSACMCertificateResponse added in v1.53.0

type RegisterAWSACMCertificateResponse struct {
	Certificate *AWSACMCertificate `protobuf:"bytes,1,opt,name=certificate,proto3" json:"certificate,omitempty"`
	// contains filtered or unexported fields
}

func (*RegisterAWSACMCertificateResponse) Descriptor deprecated added in v1.53.0

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

Deprecated: Use RegisterAWSACMCertificateResponse.ProtoReflect.Descriptor instead.

func (*RegisterAWSACMCertificateResponse) GetCertificate added in v1.53.0

func (*RegisterAWSACMCertificateResponse) ProtoMessage added in v1.53.0

func (*RegisterAWSACMCertificateResponse) ProtoMessage()

func (*RegisterAWSACMCertificateResponse) ProtoReflect added in v1.53.0

func (*RegisterAWSACMCertificateResponse) Reset added in v1.53.0

func (*RegisterAWSACMCertificateResponse) String added in v1.53.0

func (*RegisterAWSACMCertificateResponse) Validate added in v1.53.0

Validate checks the field values on RegisterAWSACMCertificateResponse 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 (*RegisterAWSACMCertificateResponse) ValidateAll added in v1.53.0

func (m *RegisterAWSACMCertificateResponse) ValidateAll() error

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

type RegisterAWSACMCertificateResponseMultiError added in v1.53.0

type RegisterAWSACMCertificateResponseMultiError []error

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

func (RegisterAWSACMCertificateResponseMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (RegisterAWSACMCertificateResponseMultiError) Error added in v1.53.0

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

type RegisterAWSACMCertificateResponseValidationError added in v1.53.0

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

RegisterAWSACMCertificateResponseValidationError is the validation error returned by RegisterAWSACMCertificateResponse.Validate if the designated constraints aren't met.

func (RegisterAWSACMCertificateResponseValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (RegisterAWSACMCertificateResponseValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (RegisterAWSACMCertificateResponseValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (RegisterAWSACMCertificateResponseValidationError) Field added in v1.53.0

Field function returns field value.

func (RegisterAWSACMCertificateResponseValidationError) Key added in v1.53.0

Key function returns key value.

func (RegisterAWSACMCertificateResponseValidationError) Reason added in v1.53.0

Reason function returns reason value.

type SetTerraformOutputRequest added in v1.53.0

type SetTerraformOutputRequest struct {
	Output *TerraformOutput `protobuf:"bytes,1,opt,name=output,proto3" json:"output,omitempty"`
	// contains filtered or unexported fields
}

func (*SetTerraformOutputRequest) Descriptor deprecated added in v1.53.0

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

Deprecated: Use SetTerraformOutputRequest.ProtoReflect.Descriptor instead.

func (*SetTerraformOutputRequest) GetOutput added in v1.53.0

func (*SetTerraformOutputRequest) ProtoMessage added in v1.53.0

func (*SetTerraformOutputRequest) ProtoMessage()

func (*SetTerraformOutputRequest) ProtoReflect added in v1.53.0

func (*SetTerraformOutputRequest) Reset added in v1.53.0

func (x *SetTerraformOutputRequest) Reset()

func (*SetTerraformOutputRequest) String added in v1.53.0

func (x *SetTerraformOutputRequest) String() string

func (*SetTerraformOutputRequest) Validate added in v1.53.0

func (m *SetTerraformOutputRequest) Validate() error

Validate checks the field values on SetTerraformOutputRequest 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 (*SetTerraformOutputRequest) ValidateAll added in v1.53.0

func (m *SetTerraformOutputRequest) ValidateAll() error

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

type SetTerraformOutputRequestMultiError added in v1.53.0

type SetTerraformOutputRequestMultiError []error

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

func (SetTerraformOutputRequestMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (SetTerraformOutputRequestMultiError) Error added in v1.53.0

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

type SetTerraformOutputRequestValidationError added in v1.53.0

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

SetTerraformOutputRequestValidationError is the validation error returned by SetTerraformOutputRequest.Validate if the designated constraints aren't met.

func (SetTerraformOutputRequestValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (SetTerraformOutputRequestValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (SetTerraformOutputRequestValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (SetTerraformOutputRequestValidationError) Field added in v1.53.0

Field function returns field value.

func (SetTerraformOutputRequestValidationError) Key added in v1.53.0

Key function returns key value.

func (SetTerraformOutputRequestValidationError) Reason added in v1.53.0

Reason function returns reason value.

type SetTerraformOutputResponse added in v1.53.0

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

func (*SetTerraformOutputResponse) Descriptor deprecated added in v1.53.0

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

Deprecated: Use SetTerraformOutputResponse.ProtoReflect.Descriptor instead.

func (*SetTerraformOutputResponse) ProtoMessage added in v1.53.0

func (*SetTerraformOutputResponse) ProtoMessage()

func (*SetTerraformOutputResponse) ProtoReflect added in v1.53.0

func (*SetTerraformOutputResponse) Reset added in v1.53.0

func (x *SetTerraformOutputResponse) Reset()

func (*SetTerraformOutputResponse) String added in v1.53.0

func (x *SetTerraformOutputResponse) String() string

func (*SetTerraformOutputResponse) Validate added in v1.53.0

func (m *SetTerraformOutputResponse) Validate() error

Validate checks the field values on SetTerraformOutputResponse 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 (*SetTerraformOutputResponse) ValidateAll added in v1.53.0

func (m *SetTerraformOutputResponse) ValidateAll() error

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

type SetTerraformOutputResponseMultiError added in v1.53.0

type SetTerraformOutputResponseMultiError []error

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

func (SetTerraformOutputResponseMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (SetTerraformOutputResponseMultiError) Error added in v1.53.0

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

type SetTerraformOutputResponseValidationError added in v1.53.0

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

SetTerraformOutputResponseValidationError is the validation error returned by SetTerraformOutputResponse.Validate if the designated constraints aren't met.

func (SetTerraformOutputResponseValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (SetTerraformOutputResponseValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (SetTerraformOutputResponseValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (SetTerraformOutputResponseValidationError) Field added in v1.53.0

Field function returns field value.

func (SetTerraformOutputResponseValidationError) Key added in v1.53.0

Key function returns key value.

func (SetTerraformOutputResponseValidationError) Reason added in v1.53.0

Reason function returns reason value.

type TerraformOutput added in v1.53.0

type TerraformOutput struct {
	SamlSsoAcsUrl               string `protobuf:"bytes,1,opt,name=saml_sso_acs_url,json=samlSsoAcsUrl,proto3" json:"saml_sso_acs_url,omitempty"`
	SamlSsoEntityId             string `protobuf:"bytes,2,opt,name=saml_sso_entity_id,json=samlSsoEntityId,proto3" json:"saml_sso_entity_id,omitempty"`
	CognitoUserPoolId           string `protobuf:"bytes,3,opt,name=cognito_user_pool_id,json=cognitoUserPoolId,proto3" json:"cognito_user_pool_id,omitempty"`
	DnsCnameRecordForAppDomain  string `` /* 147-byte string literal not displayed */
	DnsCnameRecordForAuthDomain string `` /* 150-byte string literal not displayed */
	WebClientId                 string `protobuf:"bytes,6,opt,name=web_client_id,json=webClientId,proto3" json:"web_client_id,omitempty"`
	CliClientId                 string `protobuf:"bytes,7,opt,name=cli_client_id,json=cliClientId,proto3" json:"cli_client_id,omitempty"`
	TerraformClientId           string `protobuf:"bytes,8,opt,name=terraform_client_id,json=terraformClientId,proto3" json:"terraform_client_id,omitempty"`
	ReadOnlyClientId            string `protobuf:"bytes,9,opt,name=read_only_client_id,json=readOnlyClientId,proto3" json:"read_only_client_id,omitempty"`
	ProvisionerClientId         string `protobuf:"bytes,10,opt,name=provisioner_client_id,json=provisionerClientId,proto3" json:"provisioner_client_id,omitempty"`
	VpcId                       string `protobuf:"bytes,11,opt,name=vpc_id,json=vpcId,proto3" json:"vpc_id,omitempty"`
	// contains filtered or unexported fields
}

func (*TerraformOutput) Descriptor deprecated added in v1.53.0

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

Deprecated: Use TerraformOutput.ProtoReflect.Descriptor instead.

func (*TerraformOutput) GetCliClientId added in v1.53.0

func (x *TerraformOutput) GetCliClientId() string

func (*TerraformOutput) GetCognitoUserPoolId added in v1.53.0

func (x *TerraformOutput) GetCognitoUserPoolId() string

func (*TerraformOutput) GetDnsCnameRecordForAppDomain added in v1.53.0

func (x *TerraformOutput) GetDnsCnameRecordForAppDomain() string

func (*TerraformOutput) GetDnsCnameRecordForAuthDomain added in v1.53.0

func (x *TerraformOutput) GetDnsCnameRecordForAuthDomain() string

func (*TerraformOutput) GetProvisionerClientId added in v1.53.0

func (x *TerraformOutput) GetProvisionerClientId() string

func (*TerraformOutput) GetReadOnlyClientId added in v1.53.0

func (x *TerraformOutput) GetReadOnlyClientId() string

func (*TerraformOutput) GetSamlSsoAcsUrl added in v1.53.0

func (x *TerraformOutput) GetSamlSsoAcsUrl() string

func (*TerraformOutput) GetSamlSsoEntityId added in v1.53.0

func (x *TerraformOutput) GetSamlSsoEntityId() string

func (*TerraformOutput) GetTerraformClientId added in v1.53.0

func (x *TerraformOutput) GetTerraformClientId() string

func (*TerraformOutput) GetVpcId added in v1.53.0

func (x *TerraformOutput) GetVpcId() string

func (*TerraformOutput) GetWebClientId added in v1.53.0

func (x *TerraformOutput) GetWebClientId() string

func (*TerraformOutput) ProtoMessage added in v1.53.0

func (*TerraformOutput) ProtoMessage()

func (*TerraformOutput) ProtoReflect added in v1.53.0

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

func (*TerraformOutput) Reset added in v1.53.0

func (x *TerraformOutput) Reset()

func (*TerraformOutput) String added in v1.53.0

func (x *TerraformOutput) String() string

func (*TerraformOutput) Validate added in v1.53.0

func (m *TerraformOutput) Validate() error

Validate checks the field values on TerraformOutput 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 (*TerraformOutput) ValidateAll added in v1.53.0

func (m *TerraformOutput) ValidateAll() error

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

type TerraformOutputMultiError added in v1.53.0

type TerraformOutputMultiError []error

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

func (TerraformOutputMultiError) AllErrors added in v1.53.0

func (m TerraformOutputMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TerraformOutputMultiError) Error added in v1.53.0

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

type TerraformOutputValidationError added in v1.53.0

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

TerraformOutputValidationError is the validation error returned by TerraformOutput.Validate if the designated constraints aren't met.

func (TerraformOutputValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (TerraformOutputValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (TerraformOutputValidationError) ErrorName added in v1.53.0

func (e TerraformOutputValidationError) ErrorName() string

ErrorName returns error name.

func (TerraformOutputValidationError) Field added in v1.53.0

Field function returns field value.

func (TerraformOutputValidationError) Key added in v1.53.0

Key function returns key value.

func (TerraformOutputValidationError) Reason added in v1.53.0

Reason function returns reason value.

type UpdateAWSACMCertificateRequest added in v1.53.0

type UpdateAWSACMCertificateRequest struct {
	Certificate *AWSACMCertificate `protobuf:"bytes,1,opt,name=certificate,proto3" json:"certificate,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAWSACMCertificateRequest) Descriptor deprecated added in v1.53.0

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

Deprecated: Use UpdateAWSACMCertificateRequest.ProtoReflect.Descriptor instead.

func (*UpdateAWSACMCertificateRequest) GetCertificate added in v1.53.0

func (*UpdateAWSACMCertificateRequest) ProtoMessage added in v1.53.0

func (*UpdateAWSACMCertificateRequest) ProtoMessage()

func (*UpdateAWSACMCertificateRequest) ProtoReflect added in v1.53.0

func (*UpdateAWSACMCertificateRequest) Reset added in v1.53.0

func (x *UpdateAWSACMCertificateRequest) Reset()

func (*UpdateAWSACMCertificateRequest) String added in v1.53.0

func (*UpdateAWSACMCertificateRequest) Validate added in v1.53.0

func (m *UpdateAWSACMCertificateRequest) Validate() error

Validate checks the field values on UpdateAWSACMCertificateRequest 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 (*UpdateAWSACMCertificateRequest) ValidateAll added in v1.53.0

func (m *UpdateAWSACMCertificateRequest) ValidateAll() error

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

type UpdateAWSACMCertificateRequestMultiError added in v1.53.0

type UpdateAWSACMCertificateRequestMultiError []error

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

func (UpdateAWSACMCertificateRequestMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (UpdateAWSACMCertificateRequestMultiError) Error added in v1.53.0

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

type UpdateAWSACMCertificateRequestValidationError added in v1.53.0

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

UpdateAWSACMCertificateRequestValidationError is the validation error returned by UpdateAWSACMCertificateRequest.Validate if the designated constraints aren't met.

func (UpdateAWSACMCertificateRequestValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (UpdateAWSACMCertificateRequestValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (UpdateAWSACMCertificateRequestValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (UpdateAWSACMCertificateRequestValidationError) Field added in v1.53.0

Field function returns field value.

func (UpdateAWSACMCertificateRequestValidationError) Key added in v1.53.0

Key function returns key value.

func (UpdateAWSACMCertificateRequestValidationError) Reason added in v1.53.0

Reason function returns reason value.

type UpdateAWSACMCertificateResponse added in v1.53.0

type UpdateAWSACMCertificateResponse struct {
	Certificate *AWSACMCertificate `protobuf:"bytes,1,opt,name=certificate,proto3" json:"certificate,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAWSACMCertificateResponse) Descriptor deprecated added in v1.53.0

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

Deprecated: Use UpdateAWSACMCertificateResponse.ProtoReflect.Descriptor instead.

func (*UpdateAWSACMCertificateResponse) GetCertificate added in v1.53.0

func (*UpdateAWSACMCertificateResponse) ProtoMessage added in v1.53.0

func (*UpdateAWSACMCertificateResponse) ProtoMessage()

func (*UpdateAWSACMCertificateResponse) ProtoReflect added in v1.53.0

func (*UpdateAWSACMCertificateResponse) Reset added in v1.53.0

func (*UpdateAWSACMCertificateResponse) String added in v1.53.0

func (*UpdateAWSACMCertificateResponse) Validate added in v1.53.0

func (m *UpdateAWSACMCertificateResponse) Validate() error

Validate checks the field values on UpdateAWSACMCertificateResponse 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 (*UpdateAWSACMCertificateResponse) ValidateAll added in v1.53.0

func (m *UpdateAWSACMCertificateResponse) ValidateAll() error

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

type UpdateAWSACMCertificateResponseMultiError added in v1.53.0

type UpdateAWSACMCertificateResponseMultiError []error

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

func (UpdateAWSACMCertificateResponseMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (UpdateAWSACMCertificateResponseMultiError) Error added in v1.53.0

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

type UpdateAWSACMCertificateResponseValidationError added in v1.53.0

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

UpdateAWSACMCertificateResponseValidationError is the validation error returned by UpdateAWSACMCertificateResponse.Validate if the designated constraints aren't met.

func (UpdateAWSACMCertificateResponseValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (UpdateAWSACMCertificateResponseValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (UpdateAWSACMCertificateResponseValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (UpdateAWSACMCertificateResponseValidationError) Field added in v1.53.0

Field function returns field value.

func (UpdateAWSACMCertificateResponseValidationError) Key added in v1.53.0

Key function returns key value.

func (UpdateAWSACMCertificateResponseValidationError) Reason added in v1.53.0

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