configv1alpha1

package
v1.71.0 Latest Latest
Warning

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

Go to latest
Published: Nov 25, 2024 License: MIT Imports: 21 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	DeploymentSecret_name = map[int32]string{
		0: "DEPLOYMENT_SECRET_UNSPECIFIED",
		1: "DEPLOYMENT_SECRET_TERRAFORM_OIDC_CLIENT_SECRET",
		2: "DEPLOYMENT_SECRET_READONLY_OIDC_CLIENT_SECRET",
		3: "DEPLOYMENT_SECRET_PROVISIONER_OIDC_CLIENT_SECRET",
	}
	DeploymentSecret_value = map[string]int32{
		"DEPLOYMENT_SECRET_UNSPECIFIED":                    0,
		"DEPLOYMENT_SECRET_TERRAFORM_OIDC_CLIENT_SECRET":   1,
		"DEPLOYMENT_SECRET_READONLY_OIDC_CLIENT_SECRET":    2,
		"DEPLOYMENT_SECRET_PROVISIONER_OIDC_CLIENT_SECRET": 3,
	}
)

Enum value maps for DeploymentSecret.

View Source
var File_commonfate_control_config_v1alpha1_access_workflow_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_availability_spec_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_aws_resource_scanner_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_deployment_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_gcp_role_group_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_idp_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_selector_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_slack_alert_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_config_v1alpha1_webhook_provisioner_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AWSResourceScanner added in v1.49.0

type AWSResourceScanner struct {
	Id            string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	IntegrationId string `protobuf:"bytes,2,opt,name=integration_id,json=integrationId,proto3" json:"integration_id,omitempty"`
	// AWS regions to scan for resources in.
	Regions []string `protobuf:"bytes,3,rep,name=regions,proto3" json:"regions,omitempty"`
	// Resource types to scan for. If empty, Common Fate
	// will attempt to scan for all supported AWS resource types.
	//
	// Resource types should adhere to the Cedar format,
	// for example 'AWS::S3::Bucket'.
	ResourceTypes []string `protobuf:"bytes,4,rep,name=resource_types,json=resourceTypes,proto3" json:"resource_types,omitempty"`
	// If provided, only resources in the specified account IDs will be scanned.
	FilterForAccountIds []string `protobuf:"bytes,5,rep,name=filter_for_account_ids,json=filterForAccountIds,proto3" json:"filter_for_account_ids,omitempty"`
	// The AWS role name to use for scanning resources. Defaults to 'common-fate-audit' if not provided.
	RoleName string `protobuf:"bytes,6,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"`
	// contains filtered or unexported fields
}

func (*AWSResourceScanner) Descriptor deprecated added in v1.49.0

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

Deprecated: Use AWSResourceScanner.ProtoReflect.Descriptor instead.

func (*AWSResourceScanner) GetFilterForAccountIds added in v1.49.0

func (x *AWSResourceScanner) GetFilterForAccountIds() []string

func (*AWSResourceScanner) GetId added in v1.49.0

func (x *AWSResourceScanner) GetId() string

func (*AWSResourceScanner) GetIntegrationId added in v1.49.0

func (x *AWSResourceScanner) GetIntegrationId() string

func (*AWSResourceScanner) GetRegions added in v1.49.0

func (x *AWSResourceScanner) GetRegions() []string

func (*AWSResourceScanner) GetResourceTypes added in v1.49.0

func (x *AWSResourceScanner) GetResourceTypes() []string

func (*AWSResourceScanner) GetRoleName added in v1.49.0

func (x *AWSResourceScanner) GetRoleName() string

func (*AWSResourceScanner) ProtoMessage added in v1.49.0

func (*AWSResourceScanner) ProtoMessage()

func (*AWSResourceScanner) ProtoReflect added in v1.49.0

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

func (*AWSResourceScanner) Reset added in v1.49.0

func (x *AWSResourceScanner) Reset()

func (*AWSResourceScanner) String added in v1.49.0

func (x *AWSResourceScanner) String() string

func (*AWSResourceScanner) Validate added in v1.49.0

func (m *AWSResourceScanner) Validate() error

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

func (m *AWSResourceScanner) ValidateAll() error

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

type AWSResourceScannerMultiError added in v1.49.0

type AWSResourceScannerMultiError []error

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

func (AWSResourceScannerMultiError) AllErrors added in v1.49.0

func (m AWSResourceScannerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AWSResourceScannerMultiError) Error added in v1.49.0

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

type AWSResourceScannerValidationError added in v1.49.0

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

AWSResourceScannerValidationError is the validation error returned by AWSResourceScanner.Validate if the designated constraints aren't met.

func (AWSResourceScannerValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (AWSResourceScannerValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (AWSResourceScannerValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (AWSResourceScannerValidationError) Field added in v1.49.0

Field function returns field value.

func (AWSResourceScannerValidationError) Key added in v1.49.0

Key function returns key value.

func (AWSResourceScannerValidationError) Reason added in v1.49.0

Reason function returns reason value.

type AccessWorkflow

type AccessWorkflow 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"`
	AccessDuration         *durationpb.Duration          `protobuf:"bytes,3,opt,name=access_duration,json=accessDuration,proto3" json:"access_duration,omitempty"`
	TryExtendAfter         *durationpb.Duration          `protobuf:"bytes,4,opt,name=try_extend_after,json=tryExtendAfter,proto3" json:"try_extend_after,omitempty"`
	Priority               int32                         `protobuf:"varint,5,opt,name=priority,proto3" json:"priority,omitempty"`
	ActivationExpiry       *durationpb.Duration          `protobuf:"bytes,6,opt,name=activation_expiry,json=activationExpiry,proto3" json:"activation_expiry,omitempty"`
	DefaultDuration        *durationpb.Duration          `protobuf:"bytes,7,opt,name=default_duration,json=defaultDuration,proto3" json:"default_duration,omitempty"`
	Validation             *ValidationConfig             `protobuf:"bytes,8,opt,name=validation,proto3" json:"validation,omitempty"`
	ExtensionConditions    *v1alpha1.ExtensionConditions `protobuf:"bytes,9,opt,name=extension_conditions,json=extensionConditions,proto3" json:"extension_conditions,omitempty"`
	RequestToApproveExpiry *durationpb.Duration          `` /* 132-byte string literal not displayed */
	RequestToActiveExpiry  *durationpb.Duration          `` /* 129-byte string literal not displayed */
	ApprovalSteps          []*ApprovalStep               `protobuf:"bytes,12,rep,name=approval_steps,json=approvalSteps,proto3" json:"approval_steps,omitempty"`
	// contains filtered or unexported fields
}

func (*AccessWorkflow) Descriptor deprecated

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

Deprecated: Use AccessWorkflow.ProtoReflect.Descriptor instead.

func (*AccessWorkflow) GetAccessDuration

func (x *AccessWorkflow) GetAccessDuration() *durationpb.Duration

func (*AccessWorkflow) GetActivationExpiry added in v1.25.0

func (x *AccessWorkflow) GetActivationExpiry() *durationpb.Duration

func (*AccessWorkflow) GetApprovalSteps added in v1.63.0

func (x *AccessWorkflow) GetApprovalSteps() []*ApprovalStep

func (*AccessWorkflow) GetDefaultDuration added in v1.31.0

func (x *AccessWorkflow) GetDefaultDuration() *durationpb.Duration

func (*AccessWorkflow) GetExtensionConditions added in v1.42.0

func (x *AccessWorkflow) GetExtensionConditions() *v1alpha1.ExtensionConditions

func (*AccessWorkflow) GetId

func (x *AccessWorkflow) GetId() string

func (*AccessWorkflow) GetName

func (x *AccessWorkflow) GetName() string

func (*AccessWorkflow) GetPriority

func (x *AccessWorkflow) GetPriority() int32

func (*AccessWorkflow) GetRequestToActiveExpiry added in v1.62.0

func (x *AccessWorkflow) GetRequestToActiveExpiry() *durationpb.Duration

func (*AccessWorkflow) GetRequestToApproveExpiry added in v1.62.0

func (x *AccessWorkflow) GetRequestToApproveExpiry() *durationpb.Duration

func (*AccessWorkflow) GetTryExtendAfter

func (x *AccessWorkflow) GetTryExtendAfter() *durationpb.Duration

func (*AccessWorkflow) GetValidation added in v1.33.0

func (x *AccessWorkflow) GetValidation() *ValidationConfig

func (*AccessWorkflow) ProtoMessage

func (*AccessWorkflow) ProtoMessage()

func (*AccessWorkflow) ProtoReflect

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

func (*AccessWorkflow) Reset

func (x *AccessWorkflow) Reset()

func (*AccessWorkflow) String

func (x *AccessWorkflow) String() string

func (*AccessWorkflow) Validate added in v1.32.1

func (m *AccessWorkflow) Validate() error

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

func (m *AccessWorkflow) ValidateAll() error

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

type AccessWorkflowMultiError added in v1.32.1

type AccessWorkflowMultiError []error

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

func (AccessWorkflowMultiError) AllErrors added in v1.32.1

func (m AccessWorkflowMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AccessWorkflowMultiError) Error added in v1.32.1

func (m AccessWorkflowMultiError) Error() string

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

type AccessWorkflowValidationError added in v1.32.1

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

AccessWorkflowValidationError is the validation error returned by AccessWorkflow.Validate if the designated constraints aren't met.

func (AccessWorkflowValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (AccessWorkflowValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (AccessWorkflowValidationError) ErrorName added in v1.32.1

func (e AccessWorkflowValidationError) ErrorName() string

ErrorName returns error name.

func (AccessWorkflowValidationError) Field added in v1.32.1

Field function returns field value.

func (AccessWorkflowValidationError) Key added in v1.32.1

Key function returns key value.

func (AccessWorkflowValidationError) Reason added in v1.32.1

Reason function returns reason value.

type ApprovalStep added in v1.63.0

type ApprovalStep struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	When string `protobuf:"bytes,2,opt,name=when,proto3" json:"when,omitempty"`
	// contains filtered or unexported fields
}

func (*ApprovalStep) Descriptor deprecated added in v1.63.0

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

Deprecated: Use ApprovalStep.ProtoReflect.Descriptor instead.

func (*ApprovalStep) GetName added in v1.63.0

func (x *ApprovalStep) GetName() string

func (*ApprovalStep) GetWhen added in v1.63.0

func (x *ApprovalStep) GetWhen() string

func (*ApprovalStep) ProtoMessage added in v1.63.0

func (*ApprovalStep) ProtoMessage()

func (*ApprovalStep) ProtoReflect added in v1.63.0

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

func (*ApprovalStep) Reset added in v1.63.0

func (x *ApprovalStep) Reset()

func (*ApprovalStep) String added in v1.63.0

func (x *ApprovalStep) String() string

func (*ApprovalStep) Validate added in v1.63.0

func (m *ApprovalStep) Validate() error

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

func (m *ApprovalStep) ValidateAll() error

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

type ApprovalStepMultiError added in v1.63.0

type ApprovalStepMultiError []error

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

func (ApprovalStepMultiError) AllErrors added in v1.63.0

func (m ApprovalStepMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApprovalStepMultiError) Error added in v1.63.0

func (m ApprovalStepMultiError) Error() string

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

type ApprovalStepValidationError added in v1.63.0

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

ApprovalStepValidationError is the validation error returned by ApprovalStep.Validate if the designated constraints aren't met.

func (ApprovalStepValidationError) Cause added in v1.63.0

Cause function returns cause value.

func (ApprovalStepValidationError) Error added in v1.63.0

Error satisfies the builtin error interface

func (ApprovalStepValidationError) ErrorName added in v1.63.0

func (e ApprovalStepValidationError) ErrorName() string

ErrorName returns error name.

func (ApprovalStepValidationError) Field added in v1.63.0

Field function returns field value.

func (ApprovalStepValidationError) Key added in v1.63.0

Key function returns key value.

func (ApprovalStepValidationError) Reason added in v1.63.0

Reason function returns reason value.

type AvailabilitySpec

type AvailabilitySpec struct {
	Id             string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	WorkflowId     string        `protobuf:"bytes,2,opt,name=workflow_id,json=workflowId,proto3" json:"workflow_id,omitempty"`
	Role           *v1alpha1.EID `protobuf:"bytes,3,opt,name=role,proto3" json:"role,omitempty"`
	Target         *v1alpha1.EID `protobuf:"bytes,4,opt,name=target,proto3" json:"target,omitempty"`
	IdentityDomain *v1alpha1.EID `protobuf:"bytes,6,opt,name=identity_domain,json=identityDomain,proto3" json:"identity_domain,omitempty"`
	RolePriority   *int64        `protobuf:"varint,7,opt,name=role_priority,json=rolePriority,proto3,oneof" json:"role_priority,omitempty"`
	// contains filtered or unexported fields
}

func (*AvailabilitySpec) Descriptor deprecated

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

Deprecated: Use AvailabilitySpec.ProtoReflect.Descriptor instead.

func (*AvailabilitySpec) GetId

func (x *AvailabilitySpec) GetId() string

func (*AvailabilitySpec) GetIdentityDomain

func (x *AvailabilitySpec) GetIdentityDomain() *v1alpha1.EID

func (*AvailabilitySpec) GetRole

func (x *AvailabilitySpec) GetRole() *v1alpha1.EID

func (*AvailabilitySpec) GetRolePriority added in v1.40.1

func (x *AvailabilitySpec) GetRolePriority() int64

func (*AvailabilitySpec) GetTarget

func (x *AvailabilitySpec) GetTarget() *v1alpha1.EID

func (*AvailabilitySpec) GetWorkflowId

func (x *AvailabilitySpec) GetWorkflowId() string

func (*AvailabilitySpec) ProtoMessage

func (*AvailabilitySpec) ProtoMessage()

func (*AvailabilitySpec) ProtoReflect

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

func (*AvailabilitySpec) Reset

func (x *AvailabilitySpec) Reset()

func (*AvailabilitySpec) String

func (x *AvailabilitySpec) String() string

func (*AvailabilitySpec) Validate added in v1.32.1

func (m *AvailabilitySpec) Validate() error

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

func (m *AvailabilitySpec) ValidateAll() error

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

type AvailabilitySpecMultiError added in v1.32.1

type AvailabilitySpecMultiError []error

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

func (AvailabilitySpecMultiError) AllErrors added in v1.32.1

func (m AvailabilitySpecMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AvailabilitySpecMultiError) Error added in v1.32.1

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

type AvailabilitySpecValidationError added in v1.32.1

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

AvailabilitySpecValidationError is the validation error returned by AvailabilitySpec.Validate if the designated constraints aren't met.

func (AvailabilitySpecValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (AvailabilitySpecValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (AvailabilitySpecValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (AvailabilitySpecValidationError) Field added in v1.32.1

Field function returns field value.

func (AvailabilitySpecValidationError) Key added in v1.32.1

Key function returns key value.

func (AvailabilitySpecValidationError) Reason added in v1.32.1

Reason function returns reason value.

type Capability

type Capability struct {
	TargetType  string        `protobuf:"bytes,1,opt,name=target_type,json=targetType,proto3" json:"target_type,omitempty"`
	RoleType    string        `protobuf:"bytes,2,opt,name=role_type,json=roleType,proto3" json:"role_type,omitempty"`
	BelongingTo *v1alpha1.EID `protobuf:"bytes,3,opt,name=belonging_to,json=belongingTo,proto3" json:"belonging_to,omitempty"`
	// contains filtered or unexported fields
}

func (*Capability) Descriptor deprecated

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

Deprecated: Use Capability.ProtoReflect.Descriptor instead.

func (*Capability) GetBelongingTo

func (x *Capability) GetBelongingTo() *v1alpha1.EID

func (*Capability) GetRoleType

func (x *Capability) GetRoleType() string

func (*Capability) GetTargetType

func (x *Capability) GetTargetType() string

func (*Capability) ProtoMessage

func (*Capability) ProtoMessage()

func (*Capability) ProtoReflect

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

func (*Capability) Reset

func (x *Capability) Reset()

func (*Capability) String

func (x *Capability) String() string

func (*Capability) Validate added in v1.32.1

func (m *Capability) Validate() error

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

func (m *Capability) ValidateAll() error

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

type CapabilityMultiError added in v1.32.1

type CapabilityMultiError []error

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

func (CapabilityMultiError) AllErrors added in v1.32.1

func (m CapabilityMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CapabilityMultiError) Error added in v1.32.1

func (m CapabilityMultiError) Error() string

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

type CapabilityValidationError added in v1.32.1

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

CapabilityValidationError is the validation error returned by Capability.Validate if the designated constraints aren't met.

func (CapabilityValidationError) Cause added in v1.32.1

func (e CapabilityValidationError) Cause() error

Cause function returns cause value.

func (CapabilityValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CapabilityValidationError) ErrorName added in v1.32.1

func (e CapabilityValidationError) ErrorName() string

ErrorName returns error name.

func (CapabilityValidationError) Field added in v1.32.1

Field function returns field value.

func (CapabilityValidationError) Key added in v1.32.1

Key function returns key value.

func (CapabilityValidationError) Reason added in v1.32.1

func (e CapabilityValidationError) Reason() string

Reason function returns reason value.

type CreateAWSResourceScannerRequest added in v1.49.0

type CreateAWSResourceScannerRequest struct {
	IntegrationId string `protobuf:"bytes,1,opt,name=integration_id,json=integrationId,proto3" json:"integration_id,omitempty"`
	// AWS regions to scan for resources in.
	Regions []string `protobuf:"bytes,2,rep,name=regions,proto3" json:"regions,omitempty"`
	// Resource types to scan for. If empty, Common Fate
	// will attempt to scan for all supported AWS resource types.
	//
	// Resource types should adhere to the Cedar format,
	// for example 'AWS::S3::Bucket'.
	ResourceTypes []string `protobuf:"bytes,3,rep,name=resource_types,json=resourceTypes,proto3" json:"resource_types,omitempty"`
	// If provided, only resources in the specified account IDs will be scanned.
	FilterForAccountIds []string `protobuf:"bytes,4,rep,name=filter_for_account_ids,json=filterForAccountIds,proto3" json:"filter_for_account_ids,omitempty"`
	// The AWS role name to use for scanning resources. Defaults to 'common-fate-audit' if not provided.
	RoleName string `protobuf:"bytes,5,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAWSResourceScannerRequest) Descriptor deprecated added in v1.49.0

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

Deprecated: Use CreateAWSResourceScannerRequest.ProtoReflect.Descriptor instead.

func (*CreateAWSResourceScannerRequest) GetFilterForAccountIds added in v1.49.0

func (x *CreateAWSResourceScannerRequest) GetFilterForAccountIds() []string

func (*CreateAWSResourceScannerRequest) GetIntegrationId added in v1.49.0

func (x *CreateAWSResourceScannerRequest) GetIntegrationId() string

func (*CreateAWSResourceScannerRequest) GetRegions added in v1.49.0

func (x *CreateAWSResourceScannerRequest) GetRegions() []string

func (*CreateAWSResourceScannerRequest) GetResourceTypes added in v1.49.0

func (x *CreateAWSResourceScannerRequest) GetResourceTypes() []string

func (*CreateAWSResourceScannerRequest) GetRoleName added in v1.49.0

func (x *CreateAWSResourceScannerRequest) GetRoleName() string

func (*CreateAWSResourceScannerRequest) ProtoMessage added in v1.49.0

func (*CreateAWSResourceScannerRequest) ProtoMessage()

func (*CreateAWSResourceScannerRequest) ProtoReflect added in v1.49.0

func (*CreateAWSResourceScannerRequest) Reset added in v1.49.0

func (*CreateAWSResourceScannerRequest) String added in v1.49.0

func (*CreateAWSResourceScannerRequest) Validate added in v1.49.0

func (m *CreateAWSResourceScannerRequest) Validate() error

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

func (m *CreateAWSResourceScannerRequest) ValidateAll() error

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

type CreateAWSResourceScannerRequestMultiError added in v1.49.0

type CreateAWSResourceScannerRequestMultiError []error

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

func (CreateAWSResourceScannerRequestMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (CreateAWSResourceScannerRequestMultiError) Error added in v1.49.0

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

type CreateAWSResourceScannerRequestValidationError added in v1.49.0

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

CreateAWSResourceScannerRequestValidationError is the validation error returned by CreateAWSResourceScannerRequest.Validate if the designated constraints aren't met.

func (CreateAWSResourceScannerRequestValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (CreateAWSResourceScannerRequestValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (CreateAWSResourceScannerRequestValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (CreateAWSResourceScannerRequestValidationError) Field added in v1.49.0

Field function returns field value.

func (CreateAWSResourceScannerRequestValidationError) Key added in v1.49.0

Key function returns key value.

func (CreateAWSResourceScannerRequestValidationError) Reason added in v1.49.0

Reason function returns reason value.

type CreateAWSResourceScannerResponse added in v1.49.0

type CreateAWSResourceScannerResponse struct {
	ResourceScanner *AWSResourceScanner `protobuf:"bytes,1,opt,name=resource_scanner,json=resourceScanner,proto3" json:"resource_scanner,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAWSResourceScannerResponse) Descriptor deprecated added in v1.49.0

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

Deprecated: Use CreateAWSResourceScannerResponse.ProtoReflect.Descriptor instead.

func (*CreateAWSResourceScannerResponse) GetResourceScanner added in v1.49.0

func (x *CreateAWSResourceScannerResponse) GetResourceScanner() *AWSResourceScanner

func (*CreateAWSResourceScannerResponse) ProtoMessage added in v1.49.0

func (*CreateAWSResourceScannerResponse) ProtoMessage()

func (*CreateAWSResourceScannerResponse) ProtoReflect added in v1.49.0

func (*CreateAWSResourceScannerResponse) Reset added in v1.49.0

func (*CreateAWSResourceScannerResponse) String added in v1.49.0

func (*CreateAWSResourceScannerResponse) Validate added in v1.49.0

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

func (m *CreateAWSResourceScannerResponse) ValidateAll() error

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

type CreateAWSResourceScannerResponseMultiError added in v1.49.0

type CreateAWSResourceScannerResponseMultiError []error

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

func (CreateAWSResourceScannerResponseMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (CreateAWSResourceScannerResponseMultiError) Error added in v1.49.0

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

type CreateAWSResourceScannerResponseValidationError added in v1.49.0

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

CreateAWSResourceScannerResponseValidationError is the validation error returned by CreateAWSResourceScannerResponse.Validate if the designated constraints aren't met.

func (CreateAWSResourceScannerResponseValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (CreateAWSResourceScannerResponseValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (CreateAWSResourceScannerResponseValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (CreateAWSResourceScannerResponseValidationError) Field added in v1.49.0

Field function returns field value.

func (CreateAWSResourceScannerResponseValidationError) Key added in v1.49.0

Key function returns key value.

func (CreateAWSResourceScannerResponseValidationError) Reason added in v1.49.0

Reason function returns reason value.

type CreateAccessWorkflowRequest

type CreateAccessWorkflowRequest struct {
	Name                   string                        `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	AccessDuration         *durationpb.Duration          `protobuf:"bytes,3,opt,name=access_duration,json=accessDuration,proto3" json:"access_duration,omitempty"`
	TryExtendAfter         *durationpb.Duration          `protobuf:"bytes,4,opt,name=try_extend_after,json=tryExtendAfter,proto3" json:"try_extend_after,omitempty"`
	Priority               int32                         `protobuf:"varint,5,opt,name=priority,proto3" json:"priority,omitempty"`
	ActivationExpiry       *durationpb.Duration          `protobuf:"bytes,6,opt,name=activation_expiry,json=activationExpiry,proto3" json:"activation_expiry,omitempty"`
	DefaultDuration        *durationpb.Duration          `protobuf:"bytes,7,opt,name=default_duration,json=defaultDuration,proto3" json:"default_duration,omitempty"`
	Validation             *ValidationConfig             `protobuf:"bytes,8,opt,name=validation,proto3" json:"validation,omitempty"`
	ExtensionConditions    *v1alpha1.ExtensionConditions `protobuf:"bytes,9,opt,name=extension_conditions,json=extensionConditions,proto3" json:"extension_conditions,omitempty"`
	RequestToApproveExpiry *durationpb.Duration          `` /* 132-byte string literal not displayed */
	RequestToActiveExpiry  *durationpb.Duration          `` /* 129-byte string literal not displayed */
	ApprovalSteps          []*ApprovalStep               `protobuf:"bytes,12,rep,name=approval_steps,json=approvalSteps,proto3" json:"approval_steps,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAccessWorkflowRequest) Descriptor deprecated

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

Deprecated: Use CreateAccessWorkflowRequest.ProtoReflect.Descriptor instead.

func (*CreateAccessWorkflowRequest) GetAccessDuration

func (x *CreateAccessWorkflowRequest) GetAccessDuration() *durationpb.Duration

func (*CreateAccessWorkflowRequest) GetActivationExpiry added in v1.25.0

func (x *CreateAccessWorkflowRequest) GetActivationExpiry() *durationpb.Duration

func (*CreateAccessWorkflowRequest) GetApprovalSteps added in v1.63.0

func (x *CreateAccessWorkflowRequest) GetApprovalSteps() []*ApprovalStep

func (*CreateAccessWorkflowRequest) GetDefaultDuration added in v1.31.0

func (x *CreateAccessWorkflowRequest) GetDefaultDuration() *durationpb.Duration

func (*CreateAccessWorkflowRequest) GetExtensionConditions added in v1.42.0

func (x *CreateAccessWorkflowRequest) GetExtensionConditions() *v1alpha1.ExtensionConditions

func (*CreateAccessWorkflowRequest) GetName

func (x *CreateAccessWorkflowRequest) GetName() string

func (*CreateAccessWorkflowRequest) GetPriority

func (x *CreateAccessWorkflowRequest) GetPriority() int32

func (*CreateAccessWorkflowRequest) GetRequestToActiveExpiry added in v1.62.0

func (x *CreateAccessWorkflowRequest) GetRequestToActiveExpiry() *durationpb.Duration

func (*CreateAccessWorkflowRequest) GetRequestToApproveExpiry added in v1.62.0

func (x *CreateAccessWorkflowRequest) GetRequestToApproveExpiry() *durationpb.Duration

func (*CreateAccessWorkflowRequest) GetTryExtendAfter

func (x *CreateAccessWorkflowRequest) GetTryExtendAfter() *durationpb.Duration

func (*CreateAccessWorkflowRequest) GetValidation added in v1.33.0

func (x *CreateAccessWorkflowRequest) GetValidation() *ValidationConfig

func (*CreateAccessWorkflowRequest) ProtoMessage

func (*CreateAccessWorkflowRequest) ProtoMessage()

func (*CreateAccessWorkflowRequest) ProtoReflect

func (*CreateAccessWorkflowRequest) Reset

func (x *CreateAccessWorkflowRequest) Reset()

func (*CreateAccessWorkflowRequest) String

func (x *CreateAccessWorkflowRequest) String() string

func (*CreateAccessWorkflowRequest) Validate added in v1.32.1

func (m *CreateAccessWorkflowRequest) Validate() error

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

func (m *CreateAccessWorkflowRequest) ValidateAll() error

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

type CreateAccessWorkflowRequestMultiError added in v1.32.1

type CreateAccessWorkflowRequestMultiError []error

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

func (CreateAccessWorkflowRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateAccessWorkflowRequestMultiError) Error added in v1.32.1

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

type CreateAccessWorkflowRequestValidationError added in v1.32.1

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

CreateAccessWorkflowRequestValidationError is the validation error returned by CreateAccessWorkflowRequest.Validate if the designated constraints aren't met.

func (CreateAccessWorkflowRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateAccessWorkflowRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateAccessWorkflowRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateAccessWorkflowRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateAccessWorkflowRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateAccessWorkflowRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateAccessWorkflowResponse

type CreateAccessWorkflowResponse struct {
	Workflow *AccessWorkflow `protobuf:"bytes,1,opt,name=workflow,proto3" json:"workflow,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAccessWorkflowResponse) Descriptor deprecated

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

Deprecated: Use CreateAccessWorkflowResponse.ProtoReflect.Descriptor instead.

func (*CreateAccessWorkflowResponse) GetWorkflow

func (x *CreateAccessWorkflowResponse) GetWorkflow() *AccessWorkflow

func (*CreateAccessWorkflowResponse) ProtoMessage

func (*CreateAccessWorkflowResponse) ProtoMessage()

func (*CreateAccessWorkflowResponse) ProtoReflect

func (*CreateAccessWorkflowResponse) Reset

func (x *CreateAccessWorkflowResponse) Reset()

func (*CreateAccessWorkflowResponse) String

func (*CreateAccessWorkflowResponse) Validate added in v1.32.1

func (m *CreateAccessWorkflowResponse) Validate() error

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

func (m *CreateAccessWorkflowResponse) ValidateAll() error

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

type CreateAccessWorkflowResponseMultiError added in v1.32.1

type CreateAccessWorkflowResponseMultiError []error

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

func (CreateAccessWorkflowResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateAccessWorkflowResponseMultiError) Error added in v1.32.1

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

type CreateAccessWorkflowResponseValidationError added in v1.32.1

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

CreateAccessWorkflowResponseValidationError is the validation error returned by CreateAccessWorkflowResponse.Validate if the designated constraints aren't met.

func (CreateAccessWorkflowResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateAccessWorkflowResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateAccessWorkflowResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateAccessWorkflowResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateAccessWorkflowResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateAccessWorkflowResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateAvailabilitySpecRequest

type CreateAvailabilitySpecRequest struct {
	WorkflowId     string        `protobuf:"bytes,1,opt,name=workflow_id,json=workflowId,proto3" json:"workflow_id,omitempty"`
	Role           *v1alpha1.EID `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
	Target         *v1alpha1.EID `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
	IdentityDomain *v1alpha1.EID `protobuf:"bytes,4,opt,name=identity_domain,json=identityDomain,proto3" json:"identity_domain,omitempty"`
	RolePriority   *int64        `protobuf:"varint,5,opt,name=role_priority,json=rolePriority,proto3,oneof" json:"role_priority,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAvailabilitySpecRequest) Descriptor deprecated

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

Deprecated: Use CreateAvailabilitySpecRequest.ProtoReflect.Descriptor instead.

func (*CreateAvailabilitySpecRequest) GetIdentityDomain

func (x *CreateAvailabilitySpecRequest) GetIdentityDomain() *v1alpha1.EID

func (*CreateAvailabilitySpecRequest) GetRole

func (*CreateAvailabilitySpecRequest) GetRolePriority added in v1.40.1

func (x *CreateAvailabilitySpecRequest) GetRolePriority() int64

func (*CreateAvailabilitySpecRequest) GetTarget

func (x *CreateAvailabilitySpecRequest) GetTarget() *v1alpha1.EID

func (*CreateAvailabilitySpecRequest) GetWorkflowId

func (x *CreateAvailabilitySpecRequest) GetWorkflowId() string

func (*CreateAvailabilitySpecRequest) ProtoMessage

func (*CreateAvailabilitySpecRequest) ProtoMessage()

func (*CreateAvailabilitySpecRequest) ProtoReflect

func (*CreateAvailabilitySpecRequest) Reset

func (x *CreateAvailabilitySpecRequest) Reset()

func (*CreateAvailabilitySpecRequest) String

func (*CreateAvailabilitySpecRequest) Validate added in v1.32.1

func (m *CreateAvailabilitySpecRequest) Validate() error

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

func (m *CreateAvailabilitySpecRequest) ValidateAll() error

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

type CreateAvailabilitySpecRequestMultiError added in v1.32.1

type CreateAvailabilitySpecRequestMultiError []error

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

func (CreateAvailabilitySpecRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateAvailabilitySpecRequestMultiError) Error added in v1.32.1

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

type CreateAvailabilitySpecRequestValidationError added in v1.32.1

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

CreateAvailabilitySpecRequestValidationError is the validation error returned by CreateAvailabilitySpecRequest.Validate if the designated constraints aren't met.

func (CreateAvailabilitySpecRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateAvailabilitySpecRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateAvailabilitySpecRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateAvailabilitySpecRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateAvailabilitySpecRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateAvailabilitySpecRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateAvailabilitySpecResponse

type CreateAvailabilitySpecResponse struct {
	AvailabilitySpec *AvailabilitySpec `protobuf:"bytes,1,opt,name=availability_spec,json=availabilitySpec,proto3" json:"availability_spec,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAvailabilitySpecResponse) Descriptor deprecated

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

Deprecated: Use CreateAvailabilitySpecResponse.ProtoReflect.Descriptor instead.

func (*CreateAvailabilitySpecResponse) GetAvailabilitySpec

func (x *CreateAvailabilitySpecResponse) GetAvailabilitySpec() *AvailabilitySpec

func (*CreateAvailabilitySpecResponse) ProtoMessage

func (*CreateAvailabilitySpecResponse) ProtoMessage()

func (*CreateAvailabilitySpecResponse) ProtoReflect

func (*CreateAvailabilitySpecResponse) Reset

func (x *CreateAvailabilitySpecResponse) Reset()

func (*CreateAvailabilitySpecResponse) String

func (*CreateAvailabilitySpecResponse) Validate added in v1.32.1

func (m *CreateAvailabilitySpecResponse) Validate() error

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

func (m *CreateAvailabilitySpecResponse) ValidateAll() error

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

type CreateAvailabilitySpecResponseMultiError added in v1.32.1

type CreateAvailabilitySpecResponseMultiError []error

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

func (CreateAvailabilitySpecResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateAvailabilitySpecResponseMultiError) Error added in v1.32.1

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

type CreateAvailabilitySpecResponseValidationError added in v1.32.1

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

CreateAvailabilitySpecResponseValidationError is the validation error returned by CreateAvailabilitySpecResponse.Validate if the designated constraints aren't met.

func (CreateAvailabilitySpecResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateAvailabilitySpecResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateAvailabilitySpecResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateAvailabilitySpecResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateAvailabilitySpecResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateAvailabilitySpecResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateGCPRoleGroupRequest added in v1.29.0

type CreateGCPRoleGroupRequest struct {
	Name           string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	OrganizationId string   `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	RoleIds        []string `protobuf:"bytes,3,rep,name=role_ids,json=roleIds,proto3" json:"role_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateGCPRoleGroupRequest) Descriptor deprecated added in v1.29.0

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

Deprecated: Use CreateGCPRoleGroupRequest.ProtoReflect.Descriptor instead.

func (*CreateGCPRoleGroupRequest) GetName added in v1.29.0

func (x *CreateGCPRoleGroupRequest) GetName() string

func (*CreateGCPRoleGroupRequest) GetOrganizationId added in v1.29.0

func (x *CreateGCPRoleGroupRequest) GetOrganizationId() string

func (*CreateGCPRoleGroupRequest) GetRoleIds added in v1.29.0

func (x *CreateGCPRoleGroupRequest) GetRoleIds() []string

func (*CreateGCPRoleGroupRequest) ProtoMessage added in v1.29.0

func (*CreateGCPRoleGroupRequest) ProtoMessage()

func (*CreateGCPRoleGroupRequest) ProtoReflect added in v1.29.0

func (*CreateGCPRoleGroupRequest) Reset added in v1.29.0

func (x *CreateGCPRoleGroupRequest) Reset()

func (*CreateGCPRoleGroupRequest) String added in v1.29.0

func (x *CreateGCPRoleGroupRequest) String() string

func (*CreateGCPRoleGroupRequest) Validate added in v1.32.1

func (m *CreateGCPRoleGroupRequest) Validate() error

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

func (m *CreateGCPRoleGroupRequest) ValidateAll() error

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

type CreateGCPRoleGroupRequestMultiError added in v1.32.1

type CreateGCPRoleGroupRequestMultiError []error

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

func (CreateGCPRoleGroupRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateGCPRoleGroupRequestMultiError) Error added in v1.32.1

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

type CreateGCPRoleGroupRequestValidationError added in v1.32.1

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

CreateGCPRoleGroupRequestValidationError is the validation error returned by CreateGCPRoleGroupRequest.Validate if the designated constraints aren't met.

func (CreateGCPRoleGroupRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateGCPRoleGroupRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateGCPRoleGroupRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateGCPRoleGroupRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateGCPRoleGroupRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateGCPRoleGroupRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateGCPRoleGroupResponse added in v1.29.0

type CreateGCPRoleGroupResponse struct {
	RoleGroup *GCPRoleGroup `protobuf:"bytes,1,opt,name=role_group,json=roleGroup,proto3" json:"role_group,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateGCPRoleGroupResponse) Descriptor deprecated added in v1.29.0

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

Deprecated: Use CreateGCPRoleGroupResponse.ProtoReflect.Descriptor instead.

func (*CreateGCPRoleGroupResponse) GetRoleGroup added in v1.29.0

func (x *CreateGCPRoleGroupResponse) GetRoleGroup() *GCPRoleGroup

func (*CreateGCPRoleGroupResponse) ProtoMessage added in v1.29.0

func (*CreateGCPRoleGroupResponse) ProtoMessage()

func (*CreateGCPRoleGroupResponse) ProtoReflect added in v1.29.0

func (*CreateGCPRoleGroupResponse) Reset added in v1.29.0

func (x *CreateGCPRoleGroupResponse) Reset()

func (*CreateGCPRoleGroupResponse) String added in v1.29.0

func (x *CreateGCPRoleGroupResponse) String() string

func (*CreateGCPRoleGroupResponse) Validate added in v1.32.1

func (m *CreateGCPRoleGroupResponse) Validate() error

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

func (m *CreateGCPRoleGroupResponse) ValidateAll() error

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

type CreateGCPRoleGroupResponseMultiError added in v1.32.1

type CreateGCPRoleGroupResponseMultiError []error

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

func (CreateGCPRoleGroupResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateGCPRoleGroupResponseMultiError) Error added in v1.32.1

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

type CreateGCPRoleGroupResponseValidationError added in v1.32.1

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

CreateGCPRoleGroupResponseValidationError is the validation error returned by CreateGCPRoleGroupResponse.Validate if the designated constraints aren't met.

func (CreateGCPRoleGroupResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateGCPRoleGroupResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateGCPRoleGroupResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateGCPRoleGroupResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateGCPRoleGroupResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateGCPRoleGroupResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateIDPRequest

type CreateIDPRequest struct {
	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateIDPRequest) Descriptor deprecated

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

Deprecated: Use CreateIDPRequest.ProtoReflect.Descriptor instead.

func (*CreateIDPRequest) GetNamespace

func (x *CreateIDPRequest) GetNamespace() string

func (*CreateIDPRequest) ProtoMessage

func (*CreateIDPRequest) ProtoMessage()

func (*CreateIDPRequest) ProtoReflect

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

func (*CreateIDPRequest) Reset

func (x *CreateIDPRequest) Reset()

func (*CreateIDPRequest) String

func (x *CreateIDPRequest) String() string

func (*CreateIDPRequest) Validate added in v1.32.1

func (m *CreateIDPRequest) Validate() error

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

func (m *CreateIDPRequest) ValidateAll() error

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

type CreateIDPRequestMultiError added in v1.32.1

type CreateIDPRequestMultiError []error

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

func (CreateIDPRequestMultiError) AllErrors added in v1.32.1

func (m CreateIDPRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateIDPRequestMultiError) Error added in v1.32.1

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

type CreateIDPRequestValidationError added in v1.32.1

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

CreateIDPRequestValidationError is the validation error returned by CreateIDPRequest.Validate if the designated constraints aren't met.

func (CreateIDPRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateIDPRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateIDPRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateIDPRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateIDPRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateIDPRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateIDPResponse

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

func (*CreateIDPResponse) Descriptor deprecated

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

Deprecated: Use CreateIDPResponse.ProtoReflect.Descriptor instead.

func (*CreateIDPResponse) GetId

func (x *CreateIDPResponse) GetId() string

func (*CreateIDPResponse) GetNamespace

func (x *CreateIDPResponse) GetNamespace() string

func (*CreateIDPResponse) ProtoMessage

func (*CreateIDPResponse) ProtoMessage()

func (*CreateIDPResponse) ProtoReflect

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

func (*CreateIDPResponse) Reset

func (x *CreateIDPResponse) Reset()

func (*CreateIDPResponse) String

func (x *CreateIDPResponse) String() string

func (*CreateIDPResponse) Validate added in v1.32.1

func (m *CreateIDPResponse) Validate() error

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

func (m *CreateIDPResponse) ValidateAll() error

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

type CreateIDPResponseMultiError added in v1.32.1

type CreateIDPResponseMultiError []error

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

func (CreateIDPResponseMultiError) AllErrors added in v1.32.1

func (m CreateIDPResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateIDPResponseMultiError) Error added in v1.32.1

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

type CreateIDPResponseValidationError added in v1.32.1

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

CreateIDPResponseValidationError is the validation error returned by CreateIDPResponse.Validate if the designated constraints aren't met.

func (CreateIDPResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateIDPResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateIDPResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateIDPResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateIDPResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateIDPResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateSelectorRequest

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

func (*CreateSelectorRequest) Descriptor deprecated

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

Deprecated: Use CreateSelectorRequest.ProtoReflect.Descriptor instead.

func (*CreateSelectorRequest) GetSelector

func (x *CreateSelectorRequest) GetSelector() *Selector

func (*CreateSelectorRequest) ProtoMessage

func (*CreateSelectorRequest) ProtoMessage()

func (*CreateSelectorRequest) ProtoReflect

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

func (*CreateSelectorRequest) Reset

func (x *CreateSelectorRequest) Reset()

func (*CreateSelectorRequest) String

func (x *CreateSelectorRequest) String() string

func (*CreateSelectorRequest) Validate added in v1.32.1

func (m *CreateSelectorRequest) Validate() error

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

func (m *CreateSelectorRequest) ValidateAll() error

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

type CreateSelectorRequestMultiError added in v1.32.1

type CreateSelectorRequestMultiError []error

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

func (CreateSelectorRequestMultiError) AllErrors added in v1.32.1

func (m CreateSelectorRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateSelectorRequestMultiError) Error added in v1.32.1

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

type CreateSelectorRequestValidationError added in v1.32.1

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

CreateSelectorRequestValidationError is the validation error returned by CreateSelectorRequest.Validate if the designated constraints aren't met.

func (CreateSelectorRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateSelectorRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateSelectorRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateSelectorRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateSelectorRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateSelectorRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateSelectorResponse

type CreateSelectorResponse struct {
	Selector    *Selector               `protobuf:"bytes,1,opt,name=selector,proto3" json:"selector,omitempty"`
	Diagnostics []*v1alpha11.Diagnostic `protobuf:"bytes,2,rep,name=diagnostics,proto3" json:"diagnostics,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateSelectorResponse) Descriptor deprecated

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

Deprecated: Use CreateSelectorResponse.ProtoReflect.Descriptor instead.

func (*CreateSelectorResponse) GetDiagnostics

func (x *CreateSelectorResponse) GetDiagnostics() []*v1alpha11.Diagnostic

func (*CreateSelectorResponse) GetSelector

func (x *CreateSelectorResponse) GetSelector() *Selector

func (*CreateSelectorResponse) ProtoMessage

func (*CreateSelectorResponse) ProtoMessage()

func (*CreateSelectorResponse) ProtoReflect

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

func (*CreateSelectorResponse) Reset

func (x *CreateSelectorResponse) Reset()

func (*CreateSelectorResponse) String

func (x *CreateSelectorResponse) String() string

func (*CreateSelectorResponse) Validate added in v1.32.1

func (m *CreateSelectorResponse) Validate() error

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

func (m *CreateSelectorResponse) ValidateAll() error

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

type CreateSelectorResponseMultiError added in v1.32.1

type CreateSelectorResponseMultiError []error

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

func (CreateSelectorResponseMultiError) AllErrors added in v1.32.1

func (m CreateSelectorResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateSelectorResponseMultiError) Error added in v1.32.1

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

type CreateSelectorResponseValidationError added in v1.32.1

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

CreateSelectorResponseValidationError is the validation error returned by CreateSelectorResponse.Validate if the designated constraints aren't met.

func (CreateSelectorResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateSelectorResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateSelectorResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateSelectorResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateSelectorResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateSelectorResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateSlackAlertRequest

type CreateSlackAlertRequest struct {
	WorkflowId                    string               `protobuf:"bytes,2,opt,name=workflow_id,json=workflowId,proto3" json:"workflow_id,omitempty"`
	SlackChannelId                string               `protobuf:"bytes,3,opt,name=slack_channel_id,json=slackChannelId,proto3" json:"slack_channel_id,omitempty"`
	SlackWorkspaceId              string               `protobuf:"bytes,4,opt,name=slack_workspace_id,json=slackWorkspaceId,proto3" json:"slack_workspace_id,omitempty"`
	IntegrationId                 *string              `protobuf:"bytes,5,opt,name=integration_id,json=integrationId,proto3,oneof" json:"integration_id,omitempty"`
	UseWebConsoleForApproveAction bool                 `` /* 157-byte string literal not displayed */
	SendDirectMessagesToApprovers bool                 `` /* 155-byte string literal not displayed */
	DisableInteractivityHandlers  bool                 `` /* 148-byte string literal not displayed */
	NotifyExpiryInSeconds         *durationpb.Duration `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*CreateSlackAlertRequest) Descriptor deprecated

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

Deprecated: Use CreateSlackAlertRequest.ProtoReflect.Descriptor instead.

func (*CreateSlackAlertRequest) GetDisableInteractivityHandlers added in v1.36.1

func (x *CreateSlackAlertRequest) GetDisableInteractivityHandlers() bool

func (*CreateSlackAlertRequest) GetIntegrationId added in v1.12.1

func (x *CreateSlackAlertRequest) GetIntegrationId() string

func (*CreateSlackAlertRequest) GetNotifyExpiryInSeconds added in v1.40.0

func (x *CreateSlackAlertRequest) GetNotifyExpiryInSeconds() *durationpb.Duration

func (*CreateSlackAlertRequest) GetSendDirectMessagesToApprovers added in v1.30.0

func (x *CreateSlackAlertRequest) GetSendDirectMessagesToApprovers() bool

func (*CreateSlackAlertRequest) GetSlackChannelId

func (x *CreateSlackAlertRequest) GetSlackChannelId() string

func (*CreateSlackAlertRequest) GetSlackWorkspaceId

func (x *CreateSlackAlertRequest) GetSlackWorkspaceId() string

func (*CreateSlackAlertRequest) GetUseWebConsoleForApproveAction added in v1.20.0

func (x *CreateSlackAlertRequest) GetUseWebConsoleForApproveAction() bool

func (*CreateSlackAlertRequest) GetWorkflowId

func (x *CreateSlackAlertRequest) GetWorkflowId() string

func (*CreateSlackAlertRequest) ProtoMessage

func (*CreateSlackAlertRequest) ProtoMessage()

func (*CreateSlackAlertRequest) ProtoReflect

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

func (*CreateSlackAlertRequest) Reset

func (x *CreateSlackAlertRequest) Reset()

func (*CreateSlackAlertRequest) String

func (x *CreateSlackAlertRequest) String() string

func (*CreateSlackAlertRequest) Validate added in v1.32.1

func (m *CreateSlackAlertRequest) Validate() error

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

func (m *CreateSlackAlertRequest) ValidateAll() error

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

type CreateSlackAlertRequestMultiError added in v1.32.1

type CreateSlackAlertRequestMultiError []error

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

func (CreateSlackAlertRequestMultiError) AllErrors added in v1.32.1

func (m CreateSlackAlertRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateSlackAlertRequestMultiError) Error added in v1.32.1

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

type CreateSlackAlertRequestValidationError added in v1.32.1

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

CreateSlackAlertRequestValidationError is the validation error returned by CreateSlackAlertRequest.Validate if the designated constraints aren't met.

func (CreateSlackAlertRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateSlackAlertRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateSlackAlertRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateSlackAlertRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateSlackAlertRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateSlackAlertRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateSlackAlertResponse

type CreateSlackAlertResponse struct {
	Alert *SlackAlert `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateSlackAlertResponse) Descriptor deprecated

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

Deprecated: Use CreateSlackAlertResponse.ProtoReflect.Descriptor instead.

func (*CreateSlackAlertResponse) GetAlert

func (x *CreateSlackAlertResponse) GetAlert() *SlackAlert

func (*CreateSlackAlertResponse) ProtoMessage

func (*CreateSlackAlertResponse) ProtoMessage()

func (*CreateSlackAlertResponse) ProtoReflect

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

func (*CreateSlackAlertResponse) Reset

func (x *CreateSlackAlertResponse) Reset()

func (*CreateSlackAlertResponse) String

func (x *CreateSlackAlertResponse) String() string

func (*CreateSlackAlertResponse) Validate added in v1.32.1

func (m *CreateSlackAlertResponse) Validate() error

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

func (m *CreateSlackAlertResponse) ValidateAll() error

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

type CreateSlackAlertResponseMultiError added in v1.32.1

type CreateSlackAlertResponseMultiError []error

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

func (CreateSlackAlertResponseMultiError) AllErrors added in v1.32.1

func (m CreateSlackAlertResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateSlackAlertResponseMultiError) Error added in v1.32.1

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

type CreateSlackAlertResponseValidationError added in v1.32.1

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

CreateSlackAlertResponseValidationError is the validation error returned by CreateSlackAlertResponse.Validate if the designated constraints aren't met.

func (CreateSlackAlertResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateSlackAlertResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateSlackAlertResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateSlackAlertResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateSlackAlertResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateSlackAlertResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateWebhookProvisionerRequest

type CreateWebhookProvisionerRequest struct {
	Url          string        `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Capabilities []*Capability `protobuf:"bytes,3,rep,name=capabilities,proto3" json:"capabilities,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateWebhookProvisionerRequest) Descriptor deprecated

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

Deprecated: Use CreateWebhookProvisionerRequest.ProtoReflect.Descriptor instead.

func (*CreateWebhookProvisionerRequest) GetCapabilities

func (x *CreateWebhookProvisionerRequest) GetCapabilities() []*Capability

func (*CreateWebhookProvisionerRequest) GetUrl

func (*CreateWebhookProvisionerRequest) ProtoMessage

func (*CreateWebhookProvisionerRequest) ProtoMessage()

func (*CreateWebhookProvisionerRequest) ProtoReflect

func (*CreateWebhookProvisionerRequest) Reset

func (*CreateWebhookProvisionerRequest) String

func (*CreateWebhookProvisionerRequest) Validate added in v1.32.1

func (m *CreateWebhookProvisionerRequest) Validate() error

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

func (m *CreateWebhookProvisionerRequest) ValidateAll() error

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

type CreateWebhookProvisionerRequestMultiError added in v1.32.1

type CreateWebhookProvisionerRequestMultiError []error

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

func (CreateWebhookProvisionerRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateWebhookProvisionerRequestMultiError) Error added in v1.32.1

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

type CreateWebhookProvisionerRequestValidationError added in v1.32.1

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

CreateWebhookProvisionerRequestValidationError is the validation error returned by CreateWebhookProvisionerRequest.Validate if the designated constraints aren't met.

func (CreateWebhookProvisionerRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateWebhookProvisionerRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateWebhookProvisionerRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateWebhookProvisionerRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateWebhookProvisionerRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateWebhookProvisionerRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateWebhookProvisionerResponse

type CreateWebhookProvisionerResponse struct {
	WebhookProvisioner *WebhookProvisioner     `protobuf:"bytes,1,opt,name=WebhookProvisioner,proto3" json:"WebhookProvisioner,omitempty"`
	Diagnostics        []*v1alpha11.Diagnostic `protobuf:"bytes,2,rep,name=diagnostics,proto3" json:"diagnostics,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateWebhookProvisionerResponse) Descriptor deprecated

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

Deprecated: Use CreateWebhookProvisionerResponse.ProtoReflect.Descriptor instead.

func (*CreateWebhookProvisionerResponse) GetDiagnostics

func (x *CreateWebhookProvisionerResponse) GetDiagnostics() []*v1alpha11.Diagnostic

func (*CreateWebhookProvisionerResponse) GetWebhookProvisioner

func (x *CreateWebhookProvisionerResponse) GetWebhookProvisioner() *WebhookProvisioner

func (*CreateWebhookProvisionerResponse) ProtoMessage

func (*CreateWebhookProvisionerResponse) ProtoMessage()

func (*CreateWebhookProvisionerResponse) ProtoReflect

func (*CreateWebhookProvisionerResponse) Reset

func (*CreateWebhookProvisionerResponse) String

func (*CreateWebhookProvisionerResponse) Validate added in v1.32.1

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

func (m *CreateWebhookProvisionerResponse) ValidateAll() error

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

type CreateWebhookProvisionerResponseMultiError added in v1.32.1

type CreateWebhookProvisionerResponseMultiError []error

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

func (CreateWebhookProvisionerResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateWebhookProvisionerResponseMultiError) Error added in v1.32.1

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

type CreateWebhookProvisionerResponseValidationError added in v1.32.1

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

CreateWebhookProvisionerResponseValidationError is the validation error returned by CreateWebhookProvisionerResponse.Validate if the designated constraints aren't met.

func (CreateWebhookProvisionerResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateWebhookProvisionerResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateWebhookProvisionerResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateWebhookProvisionerResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateWebhookProvisionerResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateWebhookProvisionerResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteAWSResourceScannerRequest added in v1.49.0

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

func (*DeleteAWSResourceScannerRequest) Descriptor deprecated added in v1.49.0

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

Deprecated: Use DeleteAWSResourceScannerRequest.ProtoReflect.Descriptor instead.

func (*DeleteAWSResourceScannerRequest) GetId added in v1.49.0

func (*DeleteAWSResourceScannerRequest) ProtoMessage added in v1.49.0

func (*DeleteAWSResourceScannerRequest) ProtoMessage()

func (*DeleteAWSResourceScannerRequest) ProtoReflect added in v1.49.0

func (*DeleteAWSResourceScannerRequest) Reset added in v1.49.0

func (*DeleteAWSResourceScannerRequest) String added in v1.49.0

func (*DeleteAWSResourceScannerRequest) Validate added in v1.49.0

func (m *DeleteAWSResourceScannerRequest) Validate() error

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

func (m *DeleteAWSResourceScannerRequest) ValidateAll() error

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

type DeleteAWSResourceScannerRequestMultiError added in v1.49.0

type DeleteAWSResourceScannerRequestMultiError []error

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

func (DeleteAWSResourceScannerRequestMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (DeleteAWSResourceScannerRequestMultiError) Error added in v1.49.0

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

type DeleteAWSResourceScannerRequestValidationError added in v1.49.0

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

DeleteAWSResourceScannerRequestValidationError is the validation error returned by DeleteAWSResourceScannerRequest.Validate if the designated constraints aren't met.

func (DeleteAWSResourceScannerRequestValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (DeleteAWSResourceScannerRequestValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (DeleteAWSResourceScannerRequestValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (DeleteAWSResourceScannerRequestValidationError) Field added in v1.49.0

Field function returns field value.

func (DeleteAWSResourceScannerRequestValidationError) Key added in v1.49.0

Key function returns key value.

func (DeleteAWSResourceScannerRequestValidationError) Reason added in v1.49.0

Reason function returns reason value.

type DeleteAWSResourceScannerResponse added in v1.49.0

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

func (*DeleteAWSResourceScannerResponse) Descriptor deprecated added in v1.49.0

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

Deprecated: Use DeleteAWSResourceScannerResponse.ProtoReflect.Descriptor instead.

func (*DeleteAWSResourceScannerResponse) GetId added in v1.49.0

func (*DeleteAWSResourceScannerResponse) ProtoMessage added in v1.49.0

func (*DeleteAWSResourceScannerResponse) ProtoMessage()

func (*DeleteAWSResourceScannerResponse) ProtoReflect added in v1.49.0

func (*DeleteAWSResourceScannerResponse) Reset added in v1.49.0

func (*DeleteAWSResourceScannerResponse) String added in v1.49.0

func (*DeleteAWSResourceScannerResponse) Validate added in v1.49.0

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

func (m *DeleteAWSResourceScannerResponse) ValidateAll() error

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

type DeleteAWSResourceScannerResponseMultiError added in v1.49.0

type DeleteAWSResourceScannerResponseMultiError []error

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

func (DeleteAWSResourceScannerResponseMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (DeleteAWSResourceScannerResponseMultiError) Error added in v1.49.0

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

type DeleteAWSResourceScannerResponseValidationError added in v1.49.0

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

DeleteAWSResourceScannerResponseValidationError is the validation error returned by DeleteAWSResourceScannerResponse.Validate if the designated constraints aren't met.

func (DeleteAWSResourceScannerResponseValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (DeleteAWSResourceScannerResponseValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (DeleteAWSResourceScannerResponseValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (DeleteAWSResourceScannerResponseValidationError) Field added in v1.49.0

Field function returns field value.

func (DeleteAWSResourceScannerResponseValidationError) Key added in v1.49.0

Key function returns key value.

func (DeleteAWSResourceScannerResponseValidationError) Reason added in v1.49.0

Reason function returns reason value.

type DeleteAccessWorkflowRequest

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

func (*DeleteAccessWorkflowRequest) Descriptor deprecated

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

Deprecated: Use DeleteAccessWorkflowRequest.ProtoReflect.Descriptor instead.

func (*DeleteAccessWorkflowRequest) GetId

func (*DeleteAccessWorkflowRequest) ProtoMessage

func (*DeleteAccessWorkflowRequest) ProtoMessage()

func (*DeleteAccessWorkflowRequest) ProtoReflect

func (*DeleteAccessWorkflowRequest) Reset

func (x *DeleteAccessWorkflowRequest) Reset()

func (*DeleteAccessWorkflowRequest) String

func (x *DeleteAccessWorkflowRequest) String() string

func (*DeleteAccessWorkflowRequest) Validate added in v1.32.1

func (m *DeleteAccessWorkflowRequest) Validate() error

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

func (m *DeleteAccessWorkflowRequest) ValidateAll() error

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

type DeleteAccessWorkflowRequestMultiError added in v1.32.1

type DeleteAccessWorkflowRequestMultiError []error

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

func (DeleteAccessWorkflowRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteAccessWorkflowRequestMultiError) Error added in v1.32.1

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

type DeleteAccessWorkflowRequestValidationError added in v1.32.1

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

DeleteAccessWorkflowRequestValidationError is the validation error returned by DeleteAccessWorkflowRequest.Validate if the designated constraints aren't met.

func (DeleteAccessWorkflowRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteAccessWorkflowRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteAccessWorkflowRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteAccessWorkflowRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteAccessWorkflowRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteAccessWorkflowRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteAccessWorkflowResponse

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

func (*DeleteAccessWorkflowResponse) Descriptor deprecated

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

Deprecated: Use DeleteAccessWorkflowResponse.ProtoReflect.Descriptor instead.

func (*DeleteAccessWorkflowResponse) GetId

func (*DeleteAccessWorkflowResponse) ProtoMessage

func (*DeleteAccessWorkflowResponse) ProtoMessage()

func (*DeleteAccessWorkflowResponse) ProtoReflect

func (*DeleteAccessWorkflowResponse) Reset

func (x *DeleteAccessWorkflowResponse) Reset()

func (*DeleteAccessWorkflowResponse) String

func (*DeleteAccessWorkflowResponse) Validate added in v1.32.1

func (m *DeleteAccessWorkflowResponse) Validate() error

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

func (m *DeleteAccessWorkflowResponse) ValidateAll() error

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

type DeleteAccessWorkflowResponseMultiError added in v1.32.1

type DeleteAccessWorkflowResponseMultiError []error

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

func (DeleteAccessWorkflowResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteAccessWorkflowResponseMultiError) Error added in v1.32.1

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

type DeleteAccessWorkflowResponseValidationError added in v1.32.1

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

DeleteAccessWorkflowResponseValidationError is the validation error returned by DeleteAccessWorkflowResponse.Validate if the designated constraints aren't met.

func (DeleteAccessWorkflowResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteAccessWorkflowResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteAccessWorkflowResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteAccessWorkflowResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteAccessWorkflowResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteAccessWorkflowResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteAvailabilitySpecRequest

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

func (*DeleteAvailabilitySpecRequest) Descriptor deprecated

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

Deprecated: Use DeleteAvailabilitySpecRequest.ProtoReflect.Descriptor instead.

func (*DeleteAvailabilitySpecRequest) GetId

func (*DeleteAvailabilitySpecRequest) ProtoMessage

func (*DeleteAvailabilitySpecRequest) ProtoMessage()

func (*DeleteAvailabilitySpecRequest) ProtoReflect

func (*DeleteAvailabilitySpecRequest) Reset

func (x *DeleteAvailabilitySpecRequest) Reset()

func (*DeleteAvailabilitySpecRequest) String

func (*DeleteAvailabilitySpecRequest) Validate added in v1.32.1

func (m *DeleteAvailabilitySpecRequest) Validate() error

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

func (m *DeleteAvailabilitySpecRequest) ValidateAll() error

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

type DeleteAvailabilitySpecRequestMultiError added in v1.32.1

type DeleteAvailabilitySpecRequestMultiError []error

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

func (DeleteAvailabilitySpecRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteAvailabilitySpecRequestMultiError) Error added in v1.32.1

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

type DeleteAvailabilitySpecRequestValidationError added in v1.32.1

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

DeleteAvailabilitySpecRequestValidationError is the validation error returned by DeleteAvailabilitySpecRequest.Validate if the designated constraints aren't met.

func (DeleteAvailabilitySpecRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteAvailabilitySpecRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteAvailabilitySpecRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteAvailabilitySpecRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteAvailabilitySpecRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteAvailabilitySpecRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteAvailabilitySpecResponse

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

func (*DeleteAvailabilitySpecResponse) Descriptor deprecated

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

Deprecated: Use DeleteAvailabilitySpecResponse.ProtoReflect.Descriptor instead.

func (*DeleteAvailabilitySpecResponse) GetId

func (*DeleteAvailabilitySpecResponse) ProtoMessage

func (*DeleteAvailabilitySpecResponse) ProtoMessage()

func (*DeleteAvailabilitySpecResponse) ProtoReflect

func (*DeleteAvailabilitySpecResponse) Reset

func (x *DeleteAvailabilitySpecResponse) Reset()

func (*DeleteAvailabilitySpecResponse) String

func (*DeleteAvailabilitySpecResponse) Validate added in v1.32.1

func (m *DeleteAvailabilitySpecResponse) Validate() error

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

func (m *DeleteAvailabilitySpecResponse) ValidateAll() error

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

type DeleteAvailabilitySpecResponseMultiError added in v1.32.1

type DeleteAvailabilitySpecResponseMultiError []error

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

func (DeleteAvailabilitySpecResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteAvailabilitySpecResponseMultiError) Error added in v1.32.1

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

type DeleteAvailabilitySpecResponseValidationError added in v1.32.1

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

DeleteAvailabilitySpecResponseValidationError is the validation error returned by DeleteAvailabilitySpecResponse.Validate if the designated constraints aren't met.

func (DeleteAvailabilitySpecResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteAvailabilitySpecResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteAvailabilitySpecResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteAvailabilitySpecResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteAvailabilitySpecResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteAvailabilitySpecResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteGCPRoleGroupRequest added in v1.29.0

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

func (*DeleteGCPRoleGroupRequest) Descriptor deprecated added in v1.29.0

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

Deprecated: Use DeleteGCPRoleGroupRequest.ProtoReflect.Descriptor instead.

func (*DeleteGCPRoleGroupRequest) GetId added in v1.29.0

func (x *DeleteGCPRoleGroupRequest) GetId() string

func (*DeleteGCPRoleGroupRequest) ProtoMessage added in v1.29.0

func (*DeleteGCPRoleGroupRequest) ProtoMessage()

func (*DeleteGCPRoleGroupRequest) ProtoReflect added in v1.29.0

func (*DeleteGCPRoleGroupRequest) Reset added in v1.29.0

func (x *DeleteGCPRoleGroupRequest) Reset()

func (*DeleteGCPRoleGroupRequest) String added in v1.29.0

func (x *DeleteGCPRoleGroupRequest) String() string

func (*DeleteGCPRoleGroupRequest) Validate added in v1.32.1

func (m *DeleteGCPRoleGroupRequest) Validate() error

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

func (m *DeleteGCPRoleGroupRequest) ValidateAll() error

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

type DeleteGCPRoleGroupRequestMultiError added in v1.32.1

type DeleteGCPRoleGroupRequestMultiError []error

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

func (DeleteGCPRoleGroupRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteGCPRoleGroupRequestMultiError) Error added in v1.32.1

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

type DeleteGCPRoleGroupRequestValidationError added in v1.32.1

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

DeleteGCPRoleGroupRequestValidationError is the validation error returned by DeleteGCPRoleGroupRequest.Validate if the designated constraints aren't met.

func (DeleteGCPRoleGroupRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteGCPRoleGroupRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteGCPRoleGroupRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteGCPRoleGroupRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteGCPRoleGroupRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteGCPRoleGroupRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteGCPRoleGroupResponse added in v1.29.0

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

func (*DeleteGCPRoleGroupResponse) Descriptor deprecated added in v1.29.0

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

Deprecated: Use DeleteGCPRoleGroupResponse.ProtoReflect.Descriptor instead.

func (*DeleteGCPRoleGroupResponse) GetId added in v1.29.0

func (*DeleteGCPRoleGroupResponse) ProtoMessage added in v1.29.0

func (*DeleteGCPRoleGroupResponse) ProtoMessage()

func (*DeleteGCPRoleGroupResponse) ProtoReflect added in v1.29.0

func (*DeleteGCPRoleGroupResponse) Reset added in v1.29.0

func (x *DeleteGCPRoleGroupResponse) Reset()

func (*DeleteGCPRoleGroupResponse) String added in v1.29.0

func (x *DeleteGCPRoleGroupResponse) String() string

func (*DeleteGCPRoleGroupResponse) Validate added in v1.32.1

func (m *DeleteGCPRoleGroupResponse) Validate() error

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

func (m *DeleteGCPRoleGroupResponse) ValidateAll() error

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

type DeleteGCPRoleGroupResponseMultiError added in v1.32.1

type DeleteGCPRoleGroupResponseMultiError []error

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

func (DeleteGCPRoleGroupResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteGCPRoleGroupResponseMultiError) Error added in v1.32.1

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

type DeleteGCPRoleGroupResponseValidationError added in v1.32.1

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

DeleteGCPRoleGroupResponseValidationError is the validation error returned by DeleteGCPRoleGroupResponse.Validate if the designated constraints aren't met.

func (DeleteGCPRoleGroupResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteGCPRoleGroupResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteGCPRoleGroupResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteGCPRoleGroupResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteGCPRoleGroupResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteGCPRoleGroupResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteIDPRequest

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

func (*DeleteIDPRequest) Descriptor deprecated

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

Deprecated: Use DeleteIDPRequest.ProtoReflect.Descriptor instead.

func (*DeleteIDPRequest) GetId

func (x *DeleteIDPRequest) GetId() string

func (*DeleteIDPRequest) ProtoMessage

func (*DeleteIDPRequest) ProtoMessage()

func (*DeleteIDPRequest) ProtoReflect

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

func (*DeleteIDPRequest) Reset

func (x *DeleteIDPRequest) Reset()

func (*DeleteIDPRequest) String

func (x *DeleteIDPRequest) String() string

func (*DeleteIDPRequest) Validate added in v1.32.1

func (m *DeleteIDPRequest) Validate() error

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

func (m *DeleteIDPRequest) ValidateAll() error

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

type DeleteIDPRequestMultiError added in v1.32.1

type DeleteIDPRequestMultiError []error

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

func (DeleteIDPRequestMultiError) AllErrors added in v1.32.1

func (m DeleteIDPRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteIDPRequestMultiError) Error added in v1.32.1

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

type DeleteIDPRequestValidationError added in v1.32.1

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

DeleteIDPRequestValidationError is the validation error returned by DeleteIDPRequest.Validate if the designated constraints aren't met.

func (DeleteIDPRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteIDPRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteIDPRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteIDPRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteIDPRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteIDPRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteIDPResponse

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

func (*DeleteIDPResponse) Descriptor deprecated

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

Deprecated: Use DeleteIDPResponse.ProtoReflect.Descriptor instead.

func (*DeleteIDPResponse) GetId

func (x *DeleteIDPResponse) GetId() string

func (*DeleteIDPResponse) ProtoMessage

func (*DeleteIDPResponse) ProtoMessage()

func (*DeleteIDPResponse) ProtoReflect

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

func (*DeleteIDPResponse) Reset

func (x *DeleteIDPResponse) Reset()

func (*DeleteIDPResponse) String

func (x *DeleteIDPResponse) String() string

func (*DeleteIDPResponse) Validate added in v1.32.1

func (m *DeleteIDPResponse) Validate() error

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

func (m *DeleteIDPResponse) ValidateAll() error

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

type DeleteIDPResponseMultiError added in v1.32.1

type DeleteIDPResponseMultiError []error

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

func (DeleteIDPResponseMultiError) AllErrors added in v1.32.1

func (m DeleteIDPResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteIDPResponseMultiError) Error added in v1.32.1

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

type DeleteIDPResponseValidationError added in v1.32.1

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

DeleteIDPResponseValidationError is the validation error returned by DeleteIDPResponse.Validate if the designated constraints aren't met.

func (DeleteIDPResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteIDPResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteIDPResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteIDPResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteIDPResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteIDPResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteSelectorRequest

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

func (*DeleteSelectorRequest) Descriptor deprecated

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

Deprecated: Use DeleteSelectorRequest.ProtoReflect.Descriptor instead.

func (*DeleteSelectorRequest) GetId

func (x *DeleteSelectorRequest) GetId() string

func (*DeleteSelectorRequest) ProtoMessage

func (*DeleteSelectorRequest) ProtoMessage()

func (*DeleteSelectorRequest) ProtoReflect

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

func (*DeleteSelectorRequest) Reset

func (x *DeleteSelectorRequest) Reset()

func (*DeleteSelectorRequest) String

func (x *DeleteSelectorRequest) String() string

func (*DeleteSelectorRequest) Validate added in v1.32.1

func (m *DeleteSelectorRequest) Validate() error

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

func (m *DeleteSelectorRequest) ValidateAll() error

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

type DeleteSelectorRequestMultiError added in v1.32.1

type DeleteSelectorRequestMultiError []error

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

func (DeleteSelectorRequestMultiError) AllErrors added in v1.32.1

func (m DeleteSelectorRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteSelectorRequestMultiError) Error added in v1.32.1

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

type DeleteSelectorRequestValidationError added in v1.32.1

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

DeleteSelectorRequestValidationError is the validation error returned by DeleteSelectorRequest.Validate if the designated constraints aren't met.

func (DeleteSelectorRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteSelectorRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteSelectorRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteSelectorRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteSelectorRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteSelectorRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteSelectorResponse

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

func (*DeleteSelectorResponse) Descriptor deprecated

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

Deprecated: Use DeleteSelectorResponse.ProtoReflect.Descriptor instead.

func (*DeleteSelectorResponse) GetId

func (x *DeleteSelectorResponse) GetId() string

func (*DeleteSelectorResponse) ProtoMessage

func (*DeleteSelectorResponse) ProtoMessage()

func (*DeleteSelectorResponse) ProtoReflect

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

func (*DeleteSelectorResponse) Reset

func (x *DeleteSelectorResponse) Reset()

func (*DeleteSelectorResponse) String

func (x *DeleteSelectorResponse) String() string

func (*DeleteSelectorResponse) Validate added in v1.32.1

func (m *DeleteSelectorResponse) Validate() error

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

func (m *DeleteSelectorResponse) ValidateAll() error

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

type DeleteSelectorResponseMultiError added in v1.32.1

type DeleteSelectorResponseMultiError []error

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

func (DeleteSelectorResponseMultiError) AllErrors added in v1.32.1

func (m DeleteSelectorResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteSelectorResponseMultiError) Error added in v1.32.1

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

type DeleteSelectorResponseValidationError added in v1.32.1

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

DeleteSelectorResponseValidationError is the validation error returned by DeleteSelectorResponse.Validate if the designated constraints aren't met.

func (DeleteSelectorResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteSelectorResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteSelectorResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteSelectorResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteSelectorResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteSelectorResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteSlackAlertRequest

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

func (*DeleteSlackAlertRequest) Descriptor deprecated

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

Deprecated: Use DeleteSlackAlertRequest.ProtoReflect.Descriptor instead.

func (*DeleteSlackAlertRequest) GetId

func (x *DeleteSlackAlertRequest) GetId() string

func (*DeleteSlackAlertRequest) ProtoMessage

func (*DeleteSlackAlertRequest) ProtoMessage()

func (*DeleteSlackAlertRequest) ProtoReflect

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

func (*DeleteSlackAlertRequest) Reset

func (x *DeleteSlackAlertRequest) Reset()

func (*DeleteSlackAlertRequest) String

func (x *DeleteSlackAlertRequest) String() string

func (*DeleteSlackAlertRequest) Validate added in v1.32.1

func (m *DeleteSlackAlertRequest) Validate() error

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

func (m *DeleteSlackAlertRequest) ValidateAll() error

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

type DeleteSlackAlertRequestMultiError added in v1.32.1

type DeleteSlackAlertRequestMultiError []error

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

func (DeleteSlackAlertRequestMultiError) AllErrors added in v1.32.1

func (m DeleteSlackAlertRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteSlackAlertRequestMultiError) Error added in v1.32.1

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

type DeleteSlackAlertRequestValidationError added in v1.32.1

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

DeleteSlackAlertRequestValidationError is the validation error returned by DeleteSlackAlertRequest.Validate if the designated constraints aren't met.

func (DeleteSlackAlertRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteSlackAlertRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteSlackAlertRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteSlackAlertRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteSlackAlertRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteSlackAlertRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteSlackAlertResponse

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

func (*DeleteSlackAlertResponse) Descriptor deprecated

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

Deprecated: Use DeleteSlackAlertResponse.ProtoReflect.Descriptor instead.

func (*DeleteSlackAlertResponse) GetId

func (x *DeleteSlackAlertResponse) GetId() string

func (*DeleteSlackAlertResponse) ProtoMessage

func (*DeleteSlackAlertResponse) ProtoMessage()

func (*DeleteSlackAlertResponse) ProtoReflect

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

func (*DeleteSlackAlertResponse) Reset

func (x *DeleteSlackAlertResponse) Reset()

func (*DeleteSlackAlertResponse) String

func (x *DeleteSlackAlertResponse) String() string

func (*DeleteSlackAlertResponse) Validate added in v1.32.1

func (m *DeleteSlackAlertResponse) Validate() error

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

func (m *DeleteSlackAlertResponse) ValidateAll() error

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

type DeleteSlackAlertResponseMultiError added in v1.32.1

type DeleteSlackAlertResponseMultiError []error

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

func (DeleteSlackAlertResponseMultiError) AllErrors added in v1.32.1

func (m DeleteSlackAlertResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteSlackAlertResponseMultiError) Error added in v1.32.1

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

type DeleteSlackAlertResponseValidationError added in v1.32.1

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

DeleteSlackAlertResponseValidationError is the validation error returned by DeleteSlackAlertResponse.Validate if the designated constraints aren't met.

func (DeleteSlackAlertResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteSlackAlertResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteSlackAlertResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteSlackAlertResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteSlackAlertResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteSlackAlertResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteWebhookProvisionerRequest

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

func (*DeleteWebhookProvisionerRequest) Descriptor deprecated

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

Deprecated: Use DeleteWebhookProvisionerRequest.ProtoReflect.Descriptor instead.

func (*DeleteWebhookProvisionerRequest) GetId

func (*DeleteWebhookProvisionerRequest) ProtoMessage

func (*DeleteWebhookProvisionerRequest) ProtoMessage()

func (*DeleteWebhookProvisionerRequest) ProtoReflect

func (*DeleteWebhookProvisionerRequest) Reset

func (*DeleteWebhookProvisionerRequest) String

func (*DeleteWebhookProvisionerRequest) Validate added in v1.32.1

func (m *DeleteWebhookProvisionerRequest) Validate() error

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

func (m *DeleteWebhookProvisionerRequest) ValidateAll() error

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

type DeleteWebhookProvisionerRequestMultiError added in v1.32.1

type DeleteWebhookProvisionerRequestMultiError []error

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

func (DeleteWebhookProvisionerRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteWebhookProvisionerRequestMultiError) Error added in v1.32.1

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

type DeleteWebhookProvisionerRequestValidationError added in v1.32.1

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

DeleteWebhookProvisionerRequestValidationError is the validation error returned by DeleteWebhookProvisionerRequest.Validate if the designated constraints aren't met.

func (DeleteWebhookProvisionerRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteWebhookProvisionerRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteWebhookProvisionerRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteWebhookProvisionerRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteWebhookProvisionerRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteWebhookProvisionerRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteWebhookProvisionerResponse

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

func (*DeleteWebhookProvisionerResponse) Descriptor deprecated

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

Deprecated: Use DeleteWebhookProvisionerResponse.ProtoReflect.Descriptor instead.

func (*DeleteWebhookProvisionerResponse) GetId

func (*DeleteWebhookProvisionerResponse) ProtoMessage

func (*DeleteWebhookProvisionerResponse) ProtoMessage()

func (*DeleteWebhookProvisionerResponse) ProtoReflect

func (*DeleteWebhookProvisionerResponse) Reset

func (*DeleteWebhookProvisionerResponse) String

func (*DeleteWebhookProvisionerResponse) Validate added in v1.32.1

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

func (m *DeleteWebhookProvisionerResponse) ValidateAll() error

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

type DeleteWebhookProvisionerResponseMultiError added in v1.32.1

type DeleteWebhookProvisionerResponseMultiError []error

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

func (DeleteWebhookProvisionerResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteWebhookProvisionerResponseMultiError) Error added in v1.32.1

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

type DeleteWebhookProvisionerResponseValidationError added in v1.32.1

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

DeleteWebhookProvisionerResponseValidationError is the validation error returned by DeleteWebhookProvisionerResponse.Validate if the designated constraints aren't met.

func (DeleteWebhookProvisionerResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteWebhookProvisionerResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteWebhookProvisionerResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteWebhookProvisionerResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteWebhookProvisionerResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteWebhookProvisionerResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeploymentConfig added in v1.52.0

type DeploymentConfig 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"`
	TerraformOidcClientId   string `` /* 128-byte string literal not displayed */
	ReadOnlyOidcClientId    string `` /* 127-byte string literal not displayed */
	ProvisionerOidcClientId string `` /* 134-byte string literal not displayed */
	OidcIssuer              string `protobuf:"bytes,6,opt,name=oidc_issuer,json=oidcIssuer,proto3" json:"oidc_issuer,omitempty"`
	// contains filtered or unexported fields
}

func (*DeploymentConfig) Descriptor deprecated added in v1.52.0

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

Deprecated: Use DeploymentConfig.ProtoReflect.Descriptor instead.

func (*DeploymentConfig) GetOidcIssuer added in v1.53.0

func (x *DeploymentConfig) GetOidcIssuer() string

func (*DeploymentConfig) GetProvisionerOidcClientId added in v1.53.0

func (x *DeploymentConfig) GetProvisionerOidcClientId() string

func (*DeploymentConfig) GetReadOnlyOidcClientId added in v1.53.0

func (x *DeploymentConfig) GetReadOnlyOidcClientId() string

func (*DeploymentConfig) GetSamlSsoAcsUrl added in v1.52.0

func (x *DeploymentConfig) GetSamlSsoAcsUrl() string

func (*DeploymentConfig) GetSamlSsoEntityId added in v1.52.0

func (x *DeploymentConfig) GetSamlSsoEntityId() string

func (*DeploymentConfig) GetTerraformOidcClientId added in v1.53.0

func (x *DeploymentConfig) GetTerraformOidcClientId() string

func (*DeploymentConfig) ProtoMessage added in v1.52.0

func (*DeploymentConfig) ProtoMessage()

func (*DeploymentConfig) ProtoReflect added in v1.52.0

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

func (*DeploymentConfig) Reset added in v1.52.0

func (x *DeploymentConfig) Reset()

func (*DeploymentConfig) String added in v1.52.0

func (x *DeploymentConfig) String() string

func (*DeploymentConfig) Validate added in v1.52.0

func (m *DeploymentConfig) Validate() error

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

func (m *DeploymentConfig) ValidateAll() error

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

type DeploymentConfigMultiError added in v1.52.0

type DeploymentConfigMultiError []error

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

func (DeploymentConfigMultiError) AllErrors added in v1.52.0

func (m DeploymentConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeploymentConfigMultiError) Error added in v1.52.0

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

type DeploymentConfigValidationError added in v1.52.0

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

DeploymentConfigValidationError is the validation error returned by DeploymentConfig.Validate if the designated constraints aren't met.

func (DeploymentConfigValidationError) Cause added in v1.52.0

Cause function returns cause value.

func (DeploymentConfigValidationError) Error added in v1.52.0

Error satisfies the builtin error interface

func (DeploymentConfigValidationError) ErrorName added in v1.52.0

ErrorName returns error name.

func (DeploymentConfigValidationError) Field added in v1.52.0

Field function returns field value.

func (DeploymentConfigValidationError) Key added in v1.52.0

Key function returns key value.

func (DeploymentConfigValidationError) Reason added in v1.52.0

Reason function returns reason value.

type DeploymentSecret added in v1.53.0

type DeploymentSecret int32
const (
	DeploymentSecret_DEPLOYMENT_SECRET_UNSPECIFIED                    DeploymentSecret = 0
	DeploymentSecret_DEPLOYMENT_SECRET_TERRAFORM_OIDC_CLIENT_SECRET   DeploymentSecret = 1
	DeploymentSecret_DEPLOYMENT_SECRET_READONLY_OIDC_CLIENT_SECRET    DeploymentSecret = 2
	DeploymentSecret_DEPLOYMENT_SECRET_PROVISIONER_OIDC_CLIENT_SECRET DeploymentSecret = 3
)

func (DeploymentSecret) Descriptor added in v1.53.0

func (DeploymentSecret) Enum added in v1.53.0

func (DeploymentSecret) EnumDescriptor deprecated added in v1.53.0

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

Deprecated: Use DeploymentSecret.Descriptor instead.

func (DeploymentSecret) Number added in v1.53.0

func (DeploymentSecret) String added in v1.53.0

func (x DeploymentSecret) String() string

func (DeploymentSecret) Type added in v1.53.0

type GCPRoleGroup added in v1.29.0

type GCPRoleGroup 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"`
	OrganizationId string   `protobuf:"bytes,3,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	RoleIds        []string `protobuf:"bytes,4,rep,name=role_ids,json=roleIds,proto3" json:"role_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*GCPRoleGroup) Descriptor deprecated added in v1.29.0

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

Deprecated: Use GCPRoleGroup.ProtoReflect.Descriptor instead.

func (*GCPRoleGroup) GetId added in v1.29.0

func (x *GCPRoleGroup) GetId() string

func (*GCPRoleGroup) GetName added in v1.29.0

func (x *GCPRoleGroup) GetName() string

func (*GCPRoleGroup) GetOrganizationId added in v1.29.0

func (x *GCPRoleGroup) GetOrganizationId() string

func (*GCPRoleGroup) GetRoleIds added in v1.29.0

func (x *GCPRoleGroup) GetRoleIds() []string

func (*GCPRoleGroup) ProtoMessage added in v1.29.0

func (*GCPRoleGroup) ProtoMessage()

func (*GCPRoleGroup) ProtoReflect added in v1.29.0

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

func (*GCPRoleGroup) Reset added in v1.29.0

func (x *GCPRoleGroup) Reset()

func (*GCPRoleGroup) String added in v1.29.0

func (x *GCPRoleGroup) String() string

func (*GCPRoleGroup) Validate added in v1.32.1

func (m *GCPRoleGroup) Validate() error

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

func (m *GCPRoleGroup) ValidateAll() error

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

type GCPRoleGroupMultiError added in v1.32.1

type GCPRoleGroupMultiError []error

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

func (GCPRoleGroupMultiError) AllErrors added in v1.32.1

func (m GCPRoleGroupMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GCPRoleGroupMultiError) Error added in v1.32.1

func (m GCPRoleGroupMultiError) Error() string

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

type GCPRoleGroupValidationError added in v1.32.1

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

GCPRoleGroupValidationError is the validation error returned by GCPRoleGroup.Validate if the designated constraints aren't met.

func (GCPRoleGroupValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GCPRoleGroupValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GCPRoleGroupValidationError) ErrorName added in v1.32.1

func (e GCPRoleGroupValidationError) ErrorName() string

ErrorName returns error name.

func (GCPRoleGroupValidationError) Field added in v1.32.1

Field function returns field value.

func (GCPRoleGroupValidationError) Key added in v1.32.1

Key function returns key value.

func (GCPRoleGroupValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetAWSResourceScannerRequest added in v1.49.0

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

func (*GetAWSResourceScannerRequest) Descriptor deprecated added in v1.49.0

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

Deprecated: Use GetAWSResourceScannerRequest.ProtoReflect.Descriptor instead.

func (*GetAWSResourceScannerRequest) GetId added in v1.49.0

func (*GetAWSResourceScannerRequest) ProtoMessage added in v1.49.0

func (*GetAWSResourceScannerRequest) ProtoMessage()

func (*GetAWSResourceScannerRequest) ProtoReflect added in v1.49.0

func (*GetAWSResourceScannerRequest) Reset added in v1.49.0

func (x *GetAWSResourceScannerRequest) Reset()

func (*GetAWSResourceScannerRequest) String added in v1.49.0

func (*GetAWSResourceScannerRequest) Validate added in v1.49.0

func (m *GetAWSResourceScannerRequest) Validate() error

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

func (m *GetAWSResourceScannerRequest) ValidateAll() error

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

type GetAWSResourceScannerRequestMultiError added in v1.49.0

type GetAWSResourceScannerRequestMultiError []error

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

func (GetAWSResourceScannerRequestMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (GetAWSResourceScannerRequestMultiError) Error added in v1.49.0

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

type GetAWSResourceScannerRequestValidationError added in v1.49.0

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

GetAWSResourceScannerRequestValidationError is the validation error returned by GetAWSResourceScannerRequest.Validate if the designated constraints aren't met.

func (GetAWSResourceScannerRequestValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (GetAWSResourceScannerRequestValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (GetAWSResourceScannerRequestValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (GetAWSResourceScannerRequestValidationError) Field added in v1.49.0

Field function returns field value.

func (GetAWSResourceScannerRequestValidationError) Key added in v1.49.0

Key function returns key value.

func (GetAWSResourceScannerRequestValidationError) Reason added in v1.49.0

Reason function returns reason value.

type GetAWSResourceScannerResponse added in v1.49.0

type GetAWSResourceScannerResponse struct {
	ResourceScanner *AWSResourceScanner `protobuf:"bytes,1,opt,name=resource_scanner,json=resourceScanner,proto3" json:"resource_scanner,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAWSResourceScannerResponse) Descriptor deprecated added in v1.49.0

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

Deprecated: Use GetAWSResourceScannerResponse.ProtoReflect.Descriptor instead.

func (*GetAWSResourceScannerResponse) GetResourceScanner added in v1.49.0

func (x *GetAWSResourceScannerResponse) GetResourceScanner() *AWSResourceScanner

func (*GetAWSResourceScannerResponse) ProtoMessage added in v1.49.0

func (*GetAWSResourceScannerResponse) ProtoMessage()

func (*GetAWSResourceScannerResponse) ProtoReflect added in v1.49.0

func (*GetAWSResourceScannerResponse) Reset added in v1.49.0

func (x *GetAWSResourceScannerResponse) Reset()

func (*GetAWSResourceScannerResponse) String added in v1.49.0

func (*GetAWSResourceScannerResponse) Validate added in v1.49.0

func (m *GetAWSResourceScannerResponse) Validate() error

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

func (m *GetAWSResourceScannerResponse) ValidateAll() error

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

type GetAWSResourceScannerResponseMultiError added in v1.49.0

type GetAWSResourceScannerResponseMultiError []error

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

func (GetAWSResourceScannerResponseMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (GetAWSResourceScannerResponseMultiError) Error added in v1.49.0

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

type GetAWSResourceScannerResponseValidationError added in v1.49.0

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

GetAWSResourceScannerResponseValidationError is the validation error returned by GetAWSResourceScannerResponse.Validate if the designated constraints aren't met.

func (GetAWSResourceScannerResponseValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (GetAWSResourceScannerResponseValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (GetAWSResourceScannerResponseValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (GetAWSResourceScannerResponseValidationError) Field added in v1.49.0

Field function returns field value.

func (GetAWSResourceScannerResponseValidationError) Key added in v1.49.0

Key function returns key value.

func (GetAWSResourceScannerResponseValidationError) Reason added in v1.49.0

Reason function returns reason value.

type GetAccessWorkflowRequest

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

func (*GetAccessWorkflowRequest) Descriptor deprecated

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

Deprecated: Use GetAccessWorkflowRequest.ProtoReflect.Descriptor instead.

func (*GetAccessWorkflowRequest) GetId

func (x *GetAccessWorkflowRequest) GetId() string

func (*GetAccessWorkflowRequest) ProtoMessage

func (*GetAccessWorkflowRequest) ProtoMessage()

func (*GetAccessWorkflowRequest) ProtoReflect

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

func (*GetAccessWorkflowRequest) Reset

func (x *GetAccessWorkflowRequest) Reset()

func (*GetAccessWorkflowRequest) String

func (x *GetAccessWorkflowRequest) String() string

func (*GetAccessWorkflowRequest) Validate added in v1.32.1

func (m *GetAccessWorkflowRequest) Validate() error

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

func (m *GetAccessWorkflowRequest) ValidateAll() error

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

type GetAccessWorkflowRequestMultiError added in v1.32.1

type GetAccessWorkflowRequestMultiError []error

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

func (GetAccessWorkflowRequestMultiError) AllErrors added in v1.32.1

func (m GetAccessWorkflowRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetAccessWorkflowRequestMultiError) Error added in v1.32.1

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

type GetAccessWorkflowRequestValidationError added in v1.32.1

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

GetAccessWorkflowRequestValidationError is the validation error returned by GetAccessWorkflowRequest.Validate if the designated constraints aren't met.

func (GetAccessWorkflowRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetAccessWorkflowRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetAccessWorkflowRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetAccessWorkflowRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (GetAccessWorkflowRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (GetAccessWorkflowRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetAccessWorkflowResponse

type GetAccessWorkflowResponse struct {
	Workflow *AccessWorkflow `protobuf:"bytes,1,opt,name=workflow,proto3" json:"workflow,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAccessWorkflowResponse) Descriptor deprecated

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

Deprecated: Use GetAccessWorkflowResponse.ProtoReflect.Descriptor instead.

func (*GetAccessWorkflowResponse) GetWorkflow

func (x *GetAccessWorkflowResponse) GetWorkflow() *AccessWorkflow

func (*GetAccessWorkflowResponse) ProtoMessage

func (*GetAccessWorkflowResponse) ProtoMessage()

func (*GetAccessWorkflowResponse) ProtoReflect

func (*GetAccessWorkflowResponse) Reset

func (x *GetAccessWorkflowResponse) Reset()

func (*GetAccessWorkflowResponse) String

func (x *GetAccessWorkflowResponse) String() string

func (*GetAccessWorkflowResponse) Validate added in v1.32.1

func (m *GetAccessWorkflowResponse) Validate() error

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

func (m *GetAccessWorkflowResponse) ValidateAll() error

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

type GetAccessWorkflowResponseMultiError added in v1.32.1

type GetAccessWorkflowResponseMultiError []error

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

func (GetAccessWorkflowResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (GetAccessWorkflowResponseMultiError) Error added in v1.32.1

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

type GetAccessWorkflowResponseValidationError added in v1.32.1

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

GetAccessWorkflowResponseValidationError is the validation error returned by GetAccessWorkflowResponse.Validate if the designated constraints aren't met.

func (GetAccessWorkflowResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetAccessWorkflowResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetAccessWorkflowResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetAccessWorkflowResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (GetAccessWorkflowResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (GetAccessWorkflowResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetAvailabilitySpecRequest

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

func (*GetAvailabilitySpecRequest) Descriptor deprecated

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

Deprecated: Use GetAvailabilitySpecRequest.ProtoReflect.Descriptor instead.

func (*GetAvailabilitySpecRequest) GetId

func (*GetAvailabilitySpecRequest) ProtoMessage

func (*GetAvailabilitySpecRequest) ProtoMessage()

func (*GetAvailabilitySpecRequest) ProtoReflect

func (*GetAvailabilitySpecRequest) Reset

func (x *GetAvailabilitySpecRequest) Reset()

func (*GetAvailabilitySpecRequest) String

func (x *GetAvailabilitySpecRequest) String() string

func (*GetAvailabilitySpecRequest) Validate added in v1.32.1

func (m *GetAvailabilitySpecRequest) Validate() error

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

func (m *GetAvailabilitySpecRequest) ValidateAll() error

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

type GetAvailabilitySpecRequestMultiError added in v1.32.1

type GetAvailabilitySpecRequestMultiError []error

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

func (GetAvailabilitySpecRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (GetAvailabilitySpecRequestMultiError) Error added in v1.32.1

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

type GetAvailabilitySpecRequestValidationError added in v1.32.1

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

GetAvailabilitySpecRequestValidationError is the validation error returned by GetAvailabilitySpecRequest.Validate if the designated constraints aren't met.

func (GetAvailabilitySpecRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetAvailabilitySpecRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetAvailabilitySpecRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetAvailabilitySpecRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (GetAvailabilitySpecRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (GetAvailabilitySpecRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetAvailabilitySpecResponse

type GetAvailabilitySpecResponse struct {
	AvailabilitySpec *AvailabilitySpec `protobuf:"bytes,1,opt,name=availability_spec,json=availabilitySpec,proto3" json:"availability_spec,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAvailabilitySpecResponse) Descriptor deprecated

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

Deprecated: Use GetAvailabilitySpecResponse.ProtoReflect.Descriptor instead.

func (*GetAvailabilitySpecResponse) GetAvailabilitySpec

func (x *GetAvailabilitySpecResponse) GetAvailabilitySpec() *AvailabilitySpec

func (*GetAvailabilitySpecResponse) ProtoMessage

func (*GetAvailabilitySpecResponse) ProtoMessage()

func (*GetAvailabilitySpecResponse) ProtoReflect

func (*GetAvailabilitySpecResponse) Reset

func (x *GetAvailabilitySpecResponse) Reset()

func (*GetAvailabilitySpecResponse) String

func (x *GetAvailabilitySpecResponse) String() string

func (*GetAvailabilitySpecResponse) Validate added in v1.32.1

func (m *GetAvailabilitySpecResponse) Validate() error

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

func (m *GetAvailabilitySpecResponse) ValidateAll() error

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

type GetAvailabilitySpecResponseMultiError added in v1.32.1

type GetAvailabilitySpecResponseMultiError []error

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

func (GetAvailabilitySpecResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (GetAvailabilitySpecResponseMultiError) Error added in v1.32.1

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

type GetAvailabilitySpecResponseValidationError added in v1.32.1

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

GetAvailabilitySpecResponseValidationError is the validation error returned by GetAvailabilitySpecResponse.Validate if the designated constraints aren't met.

func (GetAvailabilitySpecResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetAvailabilitySpecResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetAvailabilitySpecResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetAvailabilitySpecResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (GetAvailabilitySpecResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (GetAvailabilitySpecResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetDeploymentConfigRequest added in v1.52.0

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

func (*GetDeploymentConfigRequest) Descriptor deprecated added in v1.52.0

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

Deprecated: Use GetDeploymentConfigRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentConfigRequest) ProtoMessage added in v1.52.0

func (*GetDeploymentConfigRequest) ProtoMessage()

func (*GetDeploymentConfigRequest) ProtoReflect added in v1.52.0

func (*GetDeploymentConfigRequest) Reset added in v1.52.0

func (x *GetDeploymentConfigRequest) Reset()

func (*GetDeploymentConfigRequest) String added in v1.52.0

func (x *GetDeploymentConfigRequest) String() string

func (*GetDeploymentConfigRequest) Validate added in v1.52.0

func (m *GetDeploymentConfigRequest) Validate() error

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

func (m *GetDeploymentConfigRequest) ValidateAll() error

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

type GetDeploymentConfigRequestMultiError added in v1.52.0

type GetDeploymentConfigRequestMultiError []error

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

func (GetDeploymentConfigRequestMultiError) AllErrors added in v1.52.0

AllErrors returns a list of validation violation errors.

func (GetDeploymentConfigRequestMultiError) Error added in v1.52.0

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

type GetDeploymentConfigRequestValidationError added in v1.52.0

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

GetDeploymentConfigRequestValidationError is the validation error returned by GetDeploymentConfigRequest.Validate if the designated constraints aren't met.

func (GetDeploymentConfigRequestValidationError) Cause added in v1.52.0

Cause function returns cause value.

func (GetDeploymentConfigRequestValidationError) Error added in v1.52.0

Error satisfies the builtin error interface

func (GetDeploymentConfigRequestValidationError) ErrorName added in v1.52.0

ErrorName returns error name.

func (GetDeploymentConfigRequestValidationError) Field added in v1.52.0

Field function returns field value.

func (GetDeploymentConfigRequestValidationError) Key added in v1.52.0

Key function returns key value.

func (GetDeploymentConfigRequestValidationError) Reason added in v1.52.0

Reason function returns reason value.

type GetDeploymentConfigResponse added in v1.52.0

type GetDeploymentConfigResponse struct {
	DeploymentConfig *DeploymentConfig `protobuf:"bytes,1,opt,name=deployment_config,json=deploymentConfig,proto3" json:"deployment_config,omitempty"`
	// contains filtered or unexported fields
}

func (*GetDeploymentConfigResponse) Descriptor deprecated added in v1.52.0

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

Deprecated: Use GetDeploymentConfigResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentConfigResponse) GetDeploymentConfig added in v1.52.0

func (x *GetDeploymentConfigResponse) GetDeploymentConfig() *DeploymentConfig

func (*GetDeploymentConfigResponse) ProtoMessage added in v1.52.0

func (*GetDeploymentConfigResponse) ProtoMessage()

func (*GetDeploymentConfigResponse) ProtoReflect added in v1.52.0

func (*GetDeploymentConfigResponse) Reset added in v1.52.0

func (x *GetDeploymentConfigResponse) Reset()

func (*GetDeploymentConfigResponse) String added in v1.52.0

func (x *GetDeploymentConfigResponse) String() string

func (*GetDeploymentConfigResponse) Validate added in v1.52.0

func (m *GetDeploymentConfigResponse) Validate() error

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

func (m *GetDeploymentConfigResponse) ValidateAll() error

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

type GetDeploymentConfigResponseMultiError added in v1.52.0

type GetDeploymentConfigResponseMultiError []error

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

func (GetDeploymentConfigResponseMultiError) AllErrors added in v1.52.0

AllErrors returns a list of validation violation errors.

func (GetDeploymentConfigResponseMultiError) Error added in v1.52.0

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

type GetDeploymentConfigResponseValidationError added in v1.52.0

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

GetDeploymentConfigResponseValidationError is the validation error returned by GetDeploymentConfigResponse.Validate if the designated constraints aren't met.

func (GetDeploymentConfigResponseValidationError) Cause added in v1.52.0

Cause function returns cause value.

func (GetDeploymentConfigResponseValidationError) Error added in v1.52.0

Error satisfies the builtin error interface

func (GetDeploymentConfigResponseValidationError) ErrorName added in v1.52.0

ErrorName returns error name.

func (GetDeploymentConfigResponseValidationError) Field added in v1.52.0

Field function returns field value.

func (GetDeploymentConfigResponseValidationError) Key added in v1.52.0

Key function returns key value.

func (GetDeploymentConfigResponseValidationError) Reason added in v1.52.0

Reason function returns reason value.

type GetDeploymentSecretRequest added in v1.53.0

type GetDeploymentSecretRequest struct {
	Secret DeploymentSecret `protobuf:"varint,1,opt,name=secret,proto3,enum=commonfate.control.config.v1alpha1.DeploymentSecret" json:"secret,omitempty"`
	// contains filtered or unexported fields
}

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

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

Deprecated: Use GetDeploymentSecretRequest.ProtoReflect.Descriptor instead.

func (*GetDeploymentSecretRequest) GetSecret added in v1.53.0

func (*GetDeploymentSecretRequest) ProtoMessage added in v1.53.0

func (*GetDeploymentSecretRequest) ProtoMessage()

func (*GetDeploymentSecretRequest) ProtoReflect added in v1.53.0

func (*GetDeploymentSecretRequest) Reset added in v1.53.0

func (x *GetDeploymentSecretRequest) Reset()

func (*GetDeploymentSecretRequest) String added in v1.53.0

func (x *GetDeploymentSecretRequest) String() string

func (*GetDeploymentSecretRequest) Validate added in v1.53.0

func (m *GetDeploymentSecretRequest) Validate() error

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

func (m *GetDeploymentSecretRequest) ValidateAll() error

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

type GetDeploymentSecretRequestMultiError added in v1.53.0

type GetDeploymentSecretRequestMultiError []error

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

func (GetDeploymentSecretRequestMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (GetDeploymentSecretRequestMultiError) Error added in v1.53.0

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

type GetDeploymentSecretRequestValidationError added in v1.53.0

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

GetDeploymentSecretRequestValidationError is the validation error returned by GetDeploymentSecretRequest.Validate if the designated constraints aren't met.

func (GetDeploymentSecretRequestValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (GetDeploymentSecretRequestValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (GetDeploymentSecretRequestValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (GetDeploymentSecretRequestValidationError) Field added in v1.53.0

Field function returns field value.

func (GetDeploymentSecretRequestValidationError) Key added in v1.53.0

Key function returns key value.

func (GetDeploymentSecretRequestValidationError) Reason added in v1.53.0

Reason function returns reason value.

type GetDeploymentSecretResponse added in v1.53.0

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

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

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

Deprecated: Use GetDeploymentSecretResponse.ProtoReflect.Descriptor instead.

func (*GetDeploymentSecretResponse) GetSecret added in v1.53.0

func (x *GetDeploymentSecretResponse) GetSecret() string

func (*GetDeploymentSecretResponse) ProtoMessage added in v1.53.0

func (*GetDeploymentSecretResponse) ProtoMessage()

func (*GetDeploymentSecretResponse) ProtoReflect added in v1.53.0

func (*GetDeploymentSecretResponse) Reset added in v1.53.0

func (x *GetDeploymentSecretResponse) Reset()

func (*GetDeploymentSecretResponse) String added in v1.53.0

func (x *GetDeploymentSecretResponse) String() string

func (*GetDeploymentSecretResponse) Validate added in v1.53.0

func (m *GetDeploymentSecretResponse) Validate() error

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

func (m *GetDeploymentSecretResponse) ValidateAll() error

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

type GetDeploymentSecretResponseMultiError added in v1.53.0

type GetDeploymentSecretResponseMultiError []error

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

func (GetDeploymentSecretResponseMultiError) AllErrors added in v1.53.0

AllErrors returns a list of validation violation errors.

func (GetDeploymentSecretResponseMultiError) Error added in v1.53.0

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

type GetDeploymentSecretResponseValidationError added in v1.53.0

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

GetDeploymentSecretResponseValidationError is the validation error returned by GetDeploymentSecretResponse.Validate if the designated constraints aren't met.

func (GetDeploymentSecretResponseValidationError) Cause added in v1.53.0

Cause function returns cause value.

func (GetDeploymentSecretResponseValidationError) Error added in v1.53.0

Error satisfies the builtin error interface

func (GetDeploymentSecretResponseValidationError) ErrorName added in v1.53.0

ErrorName returns error name.

func (GetDeploymentSecretResponseValidationError) Field added in v1.53.0

Field function returns field value.

func (GetDeploymentSecretResponseValidationError) Key added in v1.53.0

Key function returns key value.

func (GetDeploymentSecretResponseValidationError) Reason added in v1.53.0

Reason function returns reason value.

type GetGCPRoleGroupRequest added in v1.29.0

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

func (*GetGCPRoleGroupRequest) Descriptor deprecated added in v1.29.0

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

Deprecated: Use GetGCPRoleGroupRequest.ProtoReflect.Descriptor instead.

func (*GetGCPRoleGroupRequest) GetId added in v1.29.0

func (x *GetGCPRoleGroupRequest) GetId() string

func (*GetGCPRoleGroupRequest) ProtoMessage added in v1.29.0

func (*GetGCPRoleGroupRequest) ProtoMessage()

func (*GetGCPRoleGroupRequest) ProtoReflect added in v1.29.0

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

func (*GetGCPRoleGroupRequest) Reset added in v1.29.0

func (x *GetGCPRoleGroupRequest) Reset()

func (*GetGCPRoleGroupRequest) String added in v1.29.0

func (x *GetGCPRoleGroupRequest) String() string

func (*GetGCPRoleGroupRequest) Validate added in v1.32.1

func (m *GetGCPRoleGroupRequest) Validate() error

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

func (m *GetGCPRoleGroupRequest) ValidateAll() error

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

type GetGCPRoleGroupRequestMultiError added in v1.32.1

type GetGCPRoleGroupRequestMultiError []error

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

func (GetGCPRoleGroupRequestMultiError) AllErrors added in v1.32.1

func (m GetGCPRoleGroupRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetGCPRoleGroupRequestMultiError) Error added in v1.32.1

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

type GetGCPRoleGroupRequestValidationError added in v1.32.1

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

GetGCPRoleGroupRequestValidationError is the validation error returned by GetGCPRoleGroupRequest.Validate if the designated constraints aren't met.

func (GetGCPRoleGroupRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetGCPRoleGroupRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetGCPRoleGroupRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetGCPRoleGroupRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (GetGCPRoleGroupRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (GetGCPRoleGroupRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetGCPRoleGroupResponse added in v1.29.0

type GetGCPRoleGroupResponse struct {
	RoleGroup *GCPRoleGroup `protobuf:"bytes,1,opt,name=role_group,json=roleGroup,proto3" json:"role_group,omitempty"`
	// contains filtered or unexported fields
}

func (*GetGCPRoleGroupResponse) Descriptor deprecated added in v1.29.0

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

Deprecated: Use GetGCPRoleGroupResponse.ProtoReflect.Descriptor instead.

func (*GetGCPRoleGroupResponse) GetRoleGroup added in v1.29.0

func (x *GetGCPRoleGroupResponse) GetRoleGroup() *GCPRoleGroup

func (*GetGCPRoleGroupResponse) ProtoMessage added in v1.29.0

func (*GetGCPRoleGroupResponse) ProtoMessage()

func (*GetGCPRoleGroupResponse) ProtoReflect added in v1.29.0

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

func (*GetGCPRoleGroupResponse) Reset added in v1.29.0

func (x *GetGCPRoleGroupResponse) Reset()

func (*GetGCPRoleGroupResponse) String added in v1.29.0

func (x *GetGCPRoleGroupResponse) String() string

func (*GetGCPRoleGroupResponse) Validate added in v1.32.1

func (m *GetGCPRoleGroupResponse) Validate() error

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

func (m *GetGCPRoleGroupResponse) ValidateAll() error

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

type GetGCPRoleGroupResponseMultiError added in v1.32.1

type GetGCPRoleGroupResponseMultiError []error

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

func (GetGCPRoleGroupResponseMultiError) AllErrors added in v1.32.1

func (m GetGCPRoleGroupResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetGCPRoleGroupResponseMultiError) Error added in v1.32.1

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

type GetGCPRoleGroupResponseValidationError added in v1.32.1

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

GetGCPRoleGroupResponseValidationError is the validation error returned by GetGCPRoleGroupResponse.Validate if the designated constraints aren't met.

func (GetGCPRoleGroupResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetGCPRoleGroupResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetGCPRoleGroupResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetGCPRoleGroupResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (GetGCPRoleGroupResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (GetGCPRoleGroupResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetSelectorRequest

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

func (*GetSelectorRequest) Descriptor deprecated

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

Deprecated: Use GetSelectorRequest.ProtoReflect.Descriptor instead.

func (*GetSelectorRequest) GetId

func (x *GetSelectorRequest) GetId() string

func (*GetSelectorRequest) ProtoMessage

func (*GetSelectorRequest) ProtoMessage()

func (*GetSelectorRequest) ProtoReflect

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

func (*GetSelectorRequest) Reset

func (x *GetSelectorRequest) Reset()

func (*GetSelectorRequest) String

func (x *GetSelectorRequest) String() string

func (*GetSelectorRequest) Validate added in v1.32.1

func (m *GetSelectorRequest) Validate() error

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

func (m *GetSelectorRequest) ValidateAll() error

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

type GetSelectorRequestMultiError added in v1.32.1

type GetSelectorRequestMultiError []error

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

func (GetSelectorRequestMultiError) AllErrors added in v1.32.1

func (m GetSelectorRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSelectorRequestMultiError) Error added in v1.32.1

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

type GetSelectorRequestValidationError added in v1.32.1

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

GetSelectorRequestValidationError is the validation error returned by GetSelectorRequest.Validate if the designated constraints aren't met.

func (GetSelectorRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetSelectorRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetSelectorRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetSelectorRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (GetSelectorRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (GetSelectorRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetSelectorResponse

type GetSelectorResponse struct {
	Selector         *Selector                 `protobuf:"bytes,1,opt,name=selector,proto3" json:"selector,omitempty"`
	Matches          []*v1alpha11.NamedEID     `protobuf:"bytes,2,rep,name=matches,proto3" json:"matches,omitempty"`
	ValidationErrors *SelectorValidationErrors `protobuf:"bytes,3,opt,name=validation_errors,json=validationErrors,proto3,oneof" json:"validation_errors,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSelectorResponse) Descriptor deprecated

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

Deprecated: Use GetSelectorResponse.ProtoReflect.Descriptor instead.

func (*GetSelectorResponse) GetMatches added in v1.57.0

func (x *GetSelectorResponse) GetMatches() []*v1alpha11.NamedEID

func (*GetSelectorResponse) GetSelector

func (x *GetSelectorResponse) GetSelector() *Selector

func (*GetSelectorResponse) GetValidationErrors added in v1.57.0

func (x *GetSelectorResponse) GetValidationErrors() *SelectorValidationErrors

func (*GetSelectorResponse) ProtoMessage

func (*GetSelectorResponse) ProtoMessage()

func (*GetSelectorResponse) ProtoReflect

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

func (*GetSelectorResponse) Reset

func (x *GetSelectorResponse) Reset()

func (*GetSelectorResponse) String

func (x *GetSelectorResponse) String() string

func (*GetSelectorResponse) Validate added in v1.32.1

func (m *GetSelectorResponse) Validate() error

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

func (m *GetSelectorResponse) ValidateAll() error

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

type GetSelectorResponseMultiError added in v1.32.1

type GetSelectorResponseMultiError []error

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

func (GetSelectorResponseMultiError) AllErrors added in v1.32.1

func (m GetSelectorResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSelectorResponseMultiError) Error added in v1.32.1

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

type GetSelectorResponseValidationError added in v1.32.1

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

GetSelectorResponseValidationError is the validation error returned by GetSelectorResponse.Validate if the designated constraints aren't met.

func (GetSelectorResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetSelectorResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetSelectorResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetSelectorResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (GetSelectorResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (GetSelectorResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetSlackAlertRequest

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

func (*GetSlackAlertRequest) Descriptor deprecated

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

Deprecated: Use GetSlackAlertRequest.ProtoReflect.Descriptor instead.

func (*GetSlackAlertRequest) GetId

func (x *GetSlackAlertRequest) GetId() string

func (*GetSlackAlertRequest) ProtoMessage

func (*GetSlackAlertRequest) ProtoMessage()

func (*GetSlackAlertRequest) ProtoReflect

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

func (*GetSlackAlertRequest) Reset

func (x *GetSlackAlertRequest) Reset()

func (*GetSlackAlertRequest) String

func (x *GetSlackAlertRequest) String() string

func (*GetSlackAlertRequest) Validate added in v1.32.1

func (m *GetSlackAlertRequest) Validate() error

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

func (m *GetSlackAlertRequest) ValidateAll() error

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

type GetSlackAlertRequestMultiError added in v1.32.1

type GetSlackAlertRequestMultiError []error

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

func (GetSlackAlertRequestMultiError) AllErrors added in v1.32.1

func (m GetSlackAlertRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSlackAlertRequestMultiError) Error added in v1.32.1

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

type GetSlackAlertRequestValidationError added in v1.32.1

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

GetSlackAlertRequestValidationError is the validation error returned by GetSlackAlertRequest.Validate if the designated constraints aren't met.

func (GetSlackAlertRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetSlackAlertRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetSlackAlertRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetSlackAlertRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (GetSlackAlertRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (GetSlackAlertRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetSlackAlertResponse

type GetSlackAlertResponse struct {
	Alert *SlackAlert `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSlackAlertResponse) Descriptor deprecated

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

Deprecated: Use GetSlackAlertResponse.ProtoReflect.Descriptor instead.

func (*GetSlackAlertResponse) GetAlert

func (x *GetSlackAlertResponse) GetAlert() *SlackAlert

func (*GetSlackAlertResponse) ProtoMessage

func (*GetSlackAlertResponse) ProtoMessage()

func (*GetSlackAlertResponse) ProtoReflect

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

func (*GetSlackAlertResponse) Reset

func (x *GetSlackAlertResponse) Reset()

func (*GetSlackAlertResponse) String

func (x *GetSlackAlertResponse) String() string

func (*GetSlackAlertResponse) Validate added in v1.32.1

func (m *GetSlackAlertResponse) Validate() error

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

func (m *GetSlackAlertResponse) ValidateAll() error

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

type GetSlackAlertResponseMultiError added in v1.32.1

type GetSlackAlertResponseMultiError []error

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

func (GetSlackAlertResponseMultiError) AllErrors added in v1.32.1

func (m GetSlackAlertResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetSlackAlertResponseMultiError) Error added in v1.32.1

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

type GetSlackAlertResponseValidationError added in v1.32.1

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

GetSlackAlertResponseValidationError is the validation error returned by GetSlackAlertResponse.Validate if the designated constraints aren't met.

func (GetSlackAlertResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetSlackAlertResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetSlackAlertResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetSlackAlertResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (GetSlackAlertResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (GetSlackAlertResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetWebhookProvisionerRequest

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

func (*GetWebhookProvisionerRequest) Descriptor deprecated

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

Deprecated: Use GetWebhookProvisionerRequest.ProtoReflect.Descriptor instead.

func (*GetWebhookProvisionerRequest) GetId

func (*GetWebhookProvisionerRequest) ProtoMessage

func (*GetWebhookProvisionerRequest) ProtoMessage()

func (*GetWebhookProvisionerRequest) ProtoReflect

func (*GetWebhookProvisionerRequest) Reset

func (x *GetWebhookProvisionerRequest) Reset()

func (*GetWebhookProvisionerRequest) String

func (*GetWebhookProvisionerRequest) Validate added in v1.32.1

func (m *GetWebhookProvisionerRequest) Validate() error

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

func (m *GetWebhookProvisionerRequest) ValidateAll() error

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

type GetWebhookProvisionerRequestMultiError added in v1.32.1

type GetWebhookProvisionerRequestMultiError []error

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

func (GetWebhookProvisionerRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (GetWebhookProvisionerRequestMultiError) Error added in v1.32.1

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

type GetWebhookProvisionerRequestValidationError added in v1.32.1

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

GetWebhookProvisionerRequestValidationError is the validation error returned by GetWebhookProvisionerRequest.Validate if the designated constraints aren't met.

func (GetWebhookProvisionerRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetWebhookProvisionerRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetWebhookProvisionerRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetWebhookProvisionerRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (GetWebhookProvisionerRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (GetWebhookProvisionerRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetWebhookProvisionerResponse

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

func (*GetWebhookProvisionerResponse) Descriptor deprecated

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

Deprecated: Use GetWebhookProvisionerResponse.ProtoReflect.Descriptor instead.

func (*GetWebhookProvisionerResponse) GetWebhookProvisioner

func (x *GetWebhookProvisionerResponse) GetWebhookProvisioner() *WebhookProvisioner

func (*GetWebhookProvisionerResponse) ProtoMessage

func (*GetWebhookProvisionerResponse) ProtoMessage()

func (*GetWebhookProvisionerResponse) ProtoReflect

func (*GetWebhookProvisionerResponse) Reset

func (x *GetWebhookProvisionerResponse) Reset()

func (*GetWebhookProvisionerResponse) String

func (*GetWebhookProvisionerResponse) Validate added in v1.32.1

func (m *GetWebhookProvisionerResponse) Validate() error

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

func (m *GetWebhookProvisionerResponse) ValidateAll() error

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

type GetWebhookProvisionerResponseMultiError added in v1.32.1

type GetWebhookProvisionerResponseMultiError []error

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

func (GetWebhookProvisionerResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (GetWebhookProvisionerResponseMultiError) Error added in v1.32.1

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

type GetWebhookProvisionerResponseValidationError added in v1.32.1

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

GetWebhookProvisionerResponseValidationError is the validation error returned by GetWebhookProvisionerResponse.Validate if the designated constraints aren't met.

func (GetWebhookProvisionerResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetWebhookProvisionerResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetWebhookProvisionerResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetWebhookProvisionerResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (GetWebhookProvisionerResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (GetWebhookProvisionerResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type ListSelectorsRequest added in v1.57.0

type ListSelectorsRequest struct {
	PageToken string `protobuf:"bytes,1,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListSelectorsRequest) Descriptor deprecated added in v1.57.0

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

Deprecated: Use ListSelectorsRequest.ProtoReflect.Descriptor instead.

func (*ListSelectorsRequest) GetPageToken added in v1.57.0

func (x *ListSelectorsRequest) GetPageToken() string

func (*ListSelectorsRequest) ProtoMessage added in v1.57.0

func (*ListSelectorsRequest) ProtoMessage()

func (*ListSelectorsRequest) ProtoReflect added in v1.57.0

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

func (*ListSelectorsRequest) Reset added in v1.57.0

func (x *ListSelectorsRequest) Reset()

func (*ListSelectorsRequest) String added in v1.57.0

func (x *ListSelectorsRequest) String() string

func (*ListSelectorsRequest) Validate added in v1.57.0

func (m *ListSelectorsRequest) Validate() error

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

func (m *ListSelectorsRequest) ValidateAll() error

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

type ListSelectorsRequestMultiError added in v1.57.0

type ListSelectorsRequestMultiError []error

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

func (ListSelectorsRequestMultiError) AllErrors added in v1.57.0

func (m ListSelectorsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListSelectorsRequestMultiError) Error added in v1.57.0

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

type ListSelectorsRequestValidationError added in v1.57.0

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

ListSelectorsRequestValidationError is the validation error returned by ListSelectorsRequest.Validate if the designated constraints aren't met.

func (ListSelectorsRequestValidationError) Cause added in v1.57.0

Cause function returns cause value.

func (ListSelectorsRequestValidationError) Error added in v1.57.0

Error satisfies the builtin error interface

func (ListSelectorsRequestValidationError) ErrorName added in v1.57.0

ErrorName returns error name.

func (ListSelectorsRequestValidationError) Field added in v1.57.0

Field function returns field value.

func (ListSelectorsRequestValidationError) Key added in v1.57.0

Key function returns key value.

func (ListSelectorsRequestValidationError) Reason added in v1.57.0

Reason function returns reason value.

type ListSelectorsResponse added in v1.57.0

type ListSelectorsResponse struct {
	Selectors     []*Selector `protobuf:"bytes,1,rep,name=selectors,proto3" json:"selectors,omitempty"`
	NextPageToken string      `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListSelectorsResponse) Descriptor deprecated added in v1.57.0

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

Deprecated: Use ListSelectorsResponse.ProtoReflect.Descriptor instead.

func (*ListSelectorsResponse) GetNextPageToken added in v1.57.0

func (x *ListSelectorsResponse) GetNextPageToken() string

func (*ListSelectorsResponse) GetSelectors added in v1.57.0

func (x *ListSelectorsResponse) GetSelectors() []*Selector

func (*ListSelectorsResponse) ProtoMessage added in v1.57.0

func (*ListSelectorsResponse) ProtoMessage()

func (*ListSelectorsResponse) ProtoReflect added in v1.57.0

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

func (*ListSelectorsResponse) Reset added in v1.57.0

func (x *ListSelectorsResponse) Reset()

func (*ListSelectorsResponse) String added in v1.57.0

func (x *ListSelectorsResponse) String() string

func (*ListSelectorsResponse) Validate added in v1.57.0

func (m *ListSelectorsResponse) Validate() error

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

func (m *ListSelectorsResponse) ValidateAll() error

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

type ListSelectorsResponseMultiError added in v1.57.0

type ListSelectorsResponseMultiError []error

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

func (ListSelectorsResponseMultiError) AllErrors added in v1.57.0

func (m ListSelectorsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListSelectorsResponseMultiError) Error added in v1.57.0

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

type ListSelectorsResponseValidationError added in v1.57.0

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

ListSelectorsResponseValidationError is the validation error returned by ListSelectorsResponse.Validate if the designated constraints aren't met.

func (ListSelectorsResponseValidationError) Cause added in v1.57.0

Cause function returns cause value.

func (ListSelectorsResponseValidationError) Error added in v1.57.0

Error satisfies the builtin error interface

func (ListSelectorsResponseValidationError) ErrorName added in v1.57.0

ErrorName returns error name.

func (ListSelectorsResponseValidationError) Field added in v1.57.0

Field function returns field value.

func (ListSelectorsResponseValidationError) Key added in v1.57.0

Key function returns key value.

func (ListSelectorsResponseValidationError) Reason added in v1.57.0

Reason function returns reason value.

type ReadIDPRequest

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

func (*ReadIDPRequest) Descriptor deprecated

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

Deprecated: Use ReadIDPRequest.ProtoReflect.Descriptor instead.

func (*ReadIDPRequest) GetId

func (x *ReadIDPRequest) GetId() string

func (*ReadIDPRequest) GetNamespace

func (x *ReadIDPRequest) GetNamespace() string

func (*ReadIDPRequest) ProtoMessage

func (*ReadIDPRequest) ProtoMessage()

func (*ReadIDPRequest) ProtoReflect

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

func (*ReadIDPRequest) Reset

func (x *ReadIDPRequest) Reset()

func (*ReadIDPRequest) String

func (x *ReadIDPRequest) String() string

func (*ReadIDPRequest) Validate added in v1.32.1

func (m *ReadIDPRequest) Validate() error

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

func (m *ReadIDPRequest) ValidateAll() error

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

type ReadIDPRequestMultiError added in v1.32.1

type ReadIDPRequestMultiError []error

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

func (ReadIDPRequestMultiError) AllErrors added in v1.32.1

func (m ReadIDPRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReadIDPRequestMultiError) Error added in v1.32.1

func (m ReadIDPRequestMultiError) Error() string

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

type ReadIDPRequestValidationError added in v1.32.1

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

ReadIDPRequestValidationError is the validation error returned by ReadIDPRequest.Validate if the designated constraints aren't met.

func (ReadIDPRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (ReadIDPRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (ReadIDPRequestValidationError) ErrorName added in v1.32.1

func (e ReadIDPRequestValidationError) ErrorName() string

ErrorName returns error name.

func (ReadIDPRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (ReadIDPRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (ReadIDPRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type ReadIDPResponse

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

func (*ReadIDPResponse) Descriptor deprecated

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

Deprecated: Use ReadIDPResponse.ProtoReflect.Descriptor instead.

func (*ReadIDPResponse) GetId

func (x *ReadIDPResponse) GetId() string

func (*ReadIDPResponse) GetNamespace

func (x *ReadIDPResponse) GetNamespace() string

func (*ReadIDPResponse) ProtoMessage

func (*ReadIDPResponse) ProtoMessage()

func (*ReadIDPResponse) ProtoReflect

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

func (*ReadIDPResponse) Reset

func (x *ReadIDPResponse) Reset()

func (*ReadIDPResponse) String

func (x *ReadIDPResponse) String() string

func (*ReadIDPResponse) Validate added in v1.32.1

func (m *ReadIDPResponse) Validate() error

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

func (m *ReadIDPResponse) ValidateAll() error

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

type ReadIDPResponseMultiError added in v1.32.1

type ReadIDPResponseMultiError []error

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

func (ReadIDPResponseMultiError) AllErrors added in v1.32.1

func (m ReadIDPResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ReadIDPResponseMultiError) Error added in v1.32.1

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

type ReadIDPResponseValidationError added in v1.32.1

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

ReadIDPResponseValidationError is the validation error returned by ReadIDPResponse.Validate if the designated constraints aren't met.

func (ReadIDPResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (ReadIDPResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (ReadIDPResponseValidationError) ErrorName added in v1.32.1

func (e ReadIDPResponseValidationError) ErrorName() string

ErrorName returns error name.

func (ReadIDPResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (ReadIDPResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (ReadIDPResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type Selector

type Selector 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"`
	ResourceType string        `protobuf:"bytes,3,opt,name=resource_type,json=resourceType,proto3" json:"resource_type,omitempty"`
	BelongingTo  *v1alpha1.EID `protobuf:"bytes,4,opt,name=belonging_to,json=belongingTo,proto3" json:"belonging_to,omitempty"`
	When         string        `protobuf:"bytes,5,opt,name=when,proto3" json:"when,omitempty"`
	// contains filtered or unexported fields
}

func (*Selector) Descriptor deprecated

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

Deprecated: Use Selector.ProtoReflect.Descriptor instead.

func (*Selector) GetBelongingTo

func (x *Selector) GetBelongingTo() *v1alpha1.EID

func (*Selector) GetId

func (x *Selector) GetId() string

func (*Selector) GetName

func (x *Selector) GetName() string

func (*Selector) GetResourceType

func (x *Selector) GetResourceType() string

func (*Selector) GetWhen

func (x *Selector) GetWhen() string

func (*Selector) ProtoMessage

func (*Selector) ProtoMessage()

func (*Selector) ProtoReflect

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

func (*Selector) Reset

func (x *Selector) Reset()

func (*Selector) String

func (x *Selector) String() string

func (*Selector) Validate added in v1.32.1

func (m *Selector) Validate() error

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

func (m *Selector) ValidateAll() error

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

type SelectorMatches added in v1.57.0

type SelectorMatches struct {
	Matches []*v1alpha11.NamedEID `protobuf:"bytes,1,rep,name=matches,proto3" json:"matches,omitempty"`
	// contains filtered or unexported fields
}

func (*SelectorMatches) Descriptor deprecated added in v1.57.0

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

Deprecated: Use SelectorMatches.ProtoReflect.Descriptor instead.

func (*SelectorMatches) GetMatches added in v1.57.0

func (x *SelectorMatches) GetMatches() []*v1alpha11.NamedEID

func (*SelectorMatches) ProtoMessage added in v1.57.0

func (*SelectorMatches) ProtoMessage()

func (*SelectorMatches) ProtoReflect added in v1.57.0

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

func (*SelectorMatches) Reset added in v1.57.0

func (x *SelectorMatches) Reset()

func (*SelectorMatches) String added in v1.57.0

func (x *SelectorMatches) String() string

func (*SelectorMatches) Validate added in v1.57.0

func (m *SelectorMatches) Validate() error

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

func (m *SelectorMatches) ValidateAll() error

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

type SelectorMatchesMultiError added in v1.57.0

type SelectorMatchesMultiError []error

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

func (SelectorMatchesMultiError) AllErrors added in v1.57.0

func (m SelectorMatchesMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SelectorMatchesMultiError) Error added in v1.57.0

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

type SelectorMatchesValidationError added in v1.57.0

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

SelectorMatchesValidationError is the validation error returned by SelectorMatches.Validate if the designated constraints aren't met.

func (SelectorMatchesValidationError) Cause added in v1.57.0

Cause function returns cause value.

func (SelectorMatchesValidationError) Error added in v1.57.0

Error satisfies the builtin error interface

func (SelectorMatchesValidationError) ErrorName added in v1.57.0

func (e SelectorMatchesValidationError) ErrorName() string

ErrorName returns error name.

func (SelectorMatchesValidationError) Field added in v1.57.0

Field function returns field value.

func (SelectorMatchesValidationError) Key added in v1.57.0

Key function returns key value.

func (SelectorMatchesValidationError) Reason added in v1.57.0

Reason function returns reason value.

type SelectorMultiError added in v1.32.1

type SelectorMultiError []error

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

func (SelectorMultiError) AllErrors added in v1.32.1

func (m SelectorMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SelectorMultiError) Error added in v1.32.1

func (m SelectorMultiError) Error() string

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

type SelectorValidationError added in v1.32.1

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

SelectorValidationError is the validation error returned by Selector.Validate if the designated constraints aren't met.

func (SelectorValidationError) Cause added in v1.32.1

func (e SelectorValidationError) Cause() error

Cause function returns cause value.

func (SelectorValidationError) Error added in v1.32.1

func (e SelectorValidationError) Error() string

Error satisfies the builtin error interface

func (SelectorValidationError) ErrorName added in v1.32.1

func (e SelectorValidationError) ErrorName() string

ErrorName returns error name.

func (SelectorValidationError) Field added in v1.32.1

func (e SelectorValidationError) Field() string

Field function returns field value.

func (SelectorValidationError) Key added in v1.32.1

func (e SelectorValidationError) Key() bool

Key function returns key value.

func (SelectorValidationError) Reason added in v1.32.1

func (e SelectorValidationError) Reason() string

Reason function returns reason value.

type SelectorValidationErrors added in v1.57.0

type SelectorValidationErrors struct {
	ResourceTypeError *string `protobuf:"bytes,1,opt,name=resource_type_error,json=resourceTypeError,proto3,oneof" json:"resource_type_error,omitempty"`
	BelongingToError  *string `protobuf:"bytes,2,opt,name=belonging_to_error,json=belongingToError,proto3,oneof" json:"belonging_to_error,omitempty"`
	WhenError         *string `protobuf:"bytes,3,opt,name=when_error,json=whenError,proto3,oneof" json:"when_error,omitempty"`
	// contains filtered or unexported fields
}

func (*SelectorValidationErrors) Descriptor deprecated added in v1.57.0

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

Deprecated: Use SelectorValidationErrors.ProtoReflect.Descriptor instead.

func (*SelectorValidationErrors) GetBelongingToError added in v1.57.0

func (x *SelectorValidationErrors) GetBelongingToError() string

func (*SelectorValidationErrors) GetResourceTypeError added in v1.57.0

func (x *SelectorValidationErrors) GetResourceTypeError() string

func (*SelectorValidationErrors) GetWhenError added in v1.57.0

func (x *SelectorValidationErrors) GetWhenError() string

func (*SelectorValidationErrors) ProtoMessage added in v1.57.0

func (*SelectorValidationErrors) ProtoMessage()

func (*SelectorValidationErrors) ProtoReflect added in v1.57.0

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

func (*SelectorValidationErrors) Reset added in v1.57.0

func (x *SelectorValidationErrors) Reset()

func (*SelectorValidationErrors) String added in v1.57.0

func (x *SelectorValidationErrors) String() string

func (*SelectorValidationErrors) Validate added in v1.57.0

func (m *SelectorValidationErrors) Validate() error

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

func (m *SelectorValidationErrors) ValidateAll() error

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

type SelectorValidationErrorsMultiError added in v1.57.0

type SelectorValidationErrorsMultiError []error

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

func (SelectorValidationErrorsMultiError) AllErrors added in v1.57.0

func (m SelectorValidationErrorsMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SelectorValidationErrorsMultiError) Error added in v1.57.0

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

type SelectorValidationErrorsValidationError added in v1.57.0

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

SelectorValidationErrorsValidationError is the validation error returned by SelectorValidationErrors.Validate if the designated constraints aren't met.

func (SelectorValidationErrorsValidationError) Cause added in v1.57.0

Cause function returns cause value.

func (SelectorValidationErrorsValidationError) Error added in v1.57.0

Error satisfies the builtin error interface

func (SelectorValidationErrorsValidationError) ErrorName added in v1.57.0

ErrorName returns error name.

func (SelectorValidationErrorsValidationError) Field added in v1.57.0

Field function returns field value.

func (SelectorValidationErrorsValidationError) Key added in v1.57.0

Key function returns key value.

func (SelectorValidationErrorsValidationError) Reason added in v1.57.0

Reason function returns reason value.

type SlackAlert

type SlackAlert struct {
	Id                            string  `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	WorkflowId                    string  `protobuf:"bytes,2,opt,name=workflow_id,json=workflowId,proto3" json:"workflow_id,omitempty"`
	SlackChannelId                string  `protobuf:"bytes,3,opt,name=slack_channel_id,json=slackChannelId,proto3" json:"slack_channel_id,omitempty"`
	SlackWorkspaceId              string  `protobuf:"bytes,4,opt,name=slack_workspace_id,json=slackWorkspaceId,proto3" json:"slack_workspace_id,omitempty"`
	IntegrationId                 *string `protobuf:"bytes,5,opt,name=integration_id,json=integrationId,proto3,oneof" json:"integration_id,omitempty"`
	UseWebConsoleForApproveAction bool    `` /* 157-byte string literal not displayed */
	SendDirectMessagesToApprovers bool    `` /* 155-byte string literal not displayed */
	// Disables all webhook handlers for the Slack integration.
	// All buttons in the Slack integration will link the user to Common Fate URLs
	// rather than being directly interactive.
	// This is useful when deploying Common Fate in a VPC
	// with restricted network ingress.
	//
	// If set to true, this setting takes priority over 'use_web_console_for_activate_action'.
	DisableInteractivityHandlers bool `` /* 148-byte string literal not displayed */
	// if specified, it will notify the user the set time before the access expires
	NotifyExpiryInSeconds *durationpb.Duration `` /* 128-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*SlackAlert) Descriptor deprecated

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

Deprecated: Use SlackAlert.ProtoReflect.Descriptor instead.

func (*SlackAlert) GetDisableInteractivityHandlers added in v1.36.1

func (x *SlackAlert) GetDisableInteractivityHandlers() bool

func (*SlackAlert) GetId

func (x *SlackAlert) GetId() string

func (*SlackAlert) GetIntegrationId added in v1.12.1

func (x *SlackAlert) GetIntegrationId() string

func (*SlackAlert) GetNotifyExpiryInSeconds added in v1.40.0

func (x *SlackAlert) GetNotifyExpiryInSeconds() *durationpb.Duration

func (*SlackAlert) GetSendDirectMessagesToApprovers added in v1.30.0

func (x *SlackAlert) GetSendDirectMessagesToApprovers() bool

func (*SlackAlert) GetSlackChannelId

func (x *SlackAlert) GetSlackChannelId() string

func (*SlackAlert) GetSlackWorkspaceId

func (x *SlackAlert) GetSlackWorkspaceId() string

func (*SlackAlert) GetUseWebConsoleForApproveAction added in v1.20.0

func (x *SlackAlert) GetUseWebConsoleForApproveAction() bool

func (*SlackAlert) GetWorkflowId

func (x *SlackAlert) GetWorkflowId() string

func (*SlackAlert) ProtoMessage

func (*SlackAlert) ProtoMessage()

func (*SlackAlert) ProtoReflect

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

func (*SlackAlert) Reset

func (x *SlackAlert) Reset()

func (*SlackAlert) String

func (x *SlackAlert) String() string

func (*SlackAlert) Validate added in v1.32.1

func (m *SlackAlert) Validate() error

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

func (m *SlackAlert) ValidateAll() error

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

type SlackAlertMultiError added in v1.32.1

type SlackAlertMultiError []error

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

func (SlackAlertMultiError) AllErrors added in v1.32.1

func (m SlackAlertMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SlackAlertMultiError) Error added in v1.32.1

func (m SlackAlertMultiError) Error() string

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

type SlackAlertValidationError added in v1.32.1

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

SlackAlertValidationError is the validation error returned by SlackAlert.Validate if the designated constraints aren't met.

func (SlackAlertValidationError) Cause added in v1.32.1

func (e SlackAlertValidationError) Cause() error

Cause function returns cause value.

func (SlackAlertValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (SlackAlertValidationError) ErrorName added in v1.32.1

func (e SlackAlertValidationError) ErrorName() string

ErrorName returns error name.

func (SlackAlertValidationError) Field added in v1.32.1

Field function returns field value.

func (SlackAlertValidationError) Key added in v1.32.1

Key function returns key value.

func (SlackAlertValidationError) Reason added in v1.32.1

func (e SlackAlertValidationError) Reason() string

Reason function returns reason value.

type TestSelectorRequest added in v1.57.0

type TestSelectorRequest struct {
	ResourceType string        `protobuf:"bytes,1,opt,name=resource_type,json=resourceType,proto3" json:"resource_type,omitempty"`
	BelongingTo  *v1alpha1.EID `protobuf:"bytes,2,opt,name=belonging_to,json=belongingTo,proto3" json:"belonging_to,omitempty"`
	When         string        `protobuf:"bytes,3,opt,name=when,proto3" json:"when,omitempty"`
	// contains filtered or unexported fields
}

func (*TestSelectorRequest) Descriptor deprecated added in v1.57.0

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

Deprecated: Use TestSelectorRequest.ProtoReflect.Descriptor instead.

func (*TestSelectorRequest) GetBelongingTo added in v1.57.0

func (x *TestSelectorRequest) GetBelongingTo() *v1alpha1.EID

func (*TestSelectorRequest) GetResourceType added in v1.57.0

func (x *TestSelectorRequest) GetResourceType() string

func (*TestSelectorRequest) GetWhen added in v1.57.0

func (x *TestSelectorRequest) GetWhen() string

func (*TestSelectorRequest) ProtoMessage added in v1.57.0

func (*TestSelectorRequest) ProtoMessage()

func (*TestSelectorRequest) ProtoReflect added in v1.57.0

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

func (*TestSelectorRequest) Reset added in v1.57.0

func (x *TestSelectorRequest) Reset()

func (*TestSelectorRequest) String added in v1.57.0

func (x *TestSelectorRequest) String() string

func (*TestSelectorRequest) Validate added in v1.57.0

func (m *TestSelectorRequest) Validate() error

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

func (m *TestSelectorRequest) ValidateAll() error

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

type TestSelectorRequestMultiError added in v1.57.0

type TestSelectorRequestMultiError []error

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

func (TestSelectorRequestMultiError) AllErrors added in v1.57.0

func (m TestSelectorRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TestSelectorRequestMultiError) Error added in v1.57.0

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

type TestSelectorRequestValidationError added in v1.57.0

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

TestSelectorRequestValidationError is the validation error returned by TestSelectorRequest.Validate if the designated constraints aren't met.

func (TestSelectorRequestValidationError) Cause added in v1.57.0

Cause function returns cause value.

func (TestSelectorRequestValidationError) Error added in v1.57.0

Error satisfies the builtin error interface

func (TestSelectorRequestValidationError) ErrorName added in v1.57.0

ErrorName returns error name.

func (TestSelectorRequestValidationError) Field added in v1.57.0

Field function returns field value.

func (TestSelectorRequestValidationError) Key added in v1.57.0

Key function returns key value.

func (TestSelectorRequestValidationError) Reason added in v1.57.0

Reason function returns reason value.

type TestSelectorResponse added in v1.57.0

type TestSelectorResponse struct {

	// Types that are assignable to Result:
	//
	//	*TestSelectorResponse_SelectorMatches
	//	*TestSelectorResponse_SelectorValidationErrors
	Result isTestSelectorResponse_Result `protobuf_oneof:"result"`
	// contains filtered or unexported fields
}

func (*TestSelectorResponse) Descriptor deprecated added in v1.57.0

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

Deprecated: Use TestSelectorResponse.ProtoReflect.Descriptor instead.

func (*TestSelectorResponse) GetResult added in v1.57.0

func (m *TestSelectorResponse) GetResult() isTestSelectorResponse_Result

func (*TestSelectorResponse) GetSelectorMatches added in v1.57.0

func (x *TestSelectorResponse) GetSelectorMatches() *SelectorMatches

func (*TestSelectorResponse) GetSelectorValidationErrors added in v1.57.0

func (x *TestSelectorResponse) GetSelectorValidationErrors() *SelectorValidationErrors

func (*TestSelectorResponse) ProtoMessage added in v1.57.0

func (*TestSelectorResponse) ProtoMessage()

func (*TestSelectorResponse) ProtoReflect added in v1.57.0

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

func (*TestSelectorResponse) Reset added in v1.57.0

func (x *TestSelectorResponse) Reset()

func (*TestSelectorResponse) String added in v1.57.0

func (x *TestSelectorResponse) String() string

func (*TestSelectorResponse) Validate added in v1.57.0

func (m *TestSelectorResponse) Validate() error

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

func (m *TestSelectorResponse) ValidateAll() error

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

type TestSelectorResponseMultiError added in v1.57.0

type TestSelectorResponseMultiError []error

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

func (TestSelectorResponseMultiError) AllErrors added in v1.57.0

func (m TestSelectorResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TestSelectorResponseMultiError) Error added in v1.57.0

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

type TestSelectorResponseValidationError added in v1.57.0

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

TestSelectorResponseValidationError is the validation error returned by TestSelectorResponse.Validate if the designated constraints aren't met.

func (TestSelectorResponseValidationError) Cause added in v1.57.0

Cause function returns cause value.

func (TestSelectorResponseValidationError) Error added in v1.57.0

Error satisfies the builtin error interface

func (TestSelectorResponseValidationError) ErrorName added in v1.57.0

ErrorName returns error name.

func (TestSelectorResponseValidationError) Field added in v1.57.0

Field function returns field value.

func (TestSelectorResponseValidationError) Key added in v1.57.0

Key function returns key value.

func (TestSelectorResponseValidationError) Reason added in v1.57.0

Reason function returns reason value.

type TestSelectorResponse_SelectorMatches added in v1.57.0

type TestSelectorResponse_SelectorMatches struct {
	SelectorMatches *SelectorMatches `protobuf:"bytes,1,opt,name=selector_matches,json=selectorMatches,proto3,oneof"`
}

type TestSelectorResponse_SelectorValidationErrors added in v1.57.0

type TestSelectorResponse_SelectorValidationErrors struct {
	SelectorValidationErrors *SelectorValidationErrors `protobuf:"bytes,2,opt,name=selector_validation_errors,json=selectorValidationErrors,proto3,oneof"`
}

type UpdateAWSResourceScannerRequest added in v1.49.0

type UpdateAWSResourceScannerRequest struct {
	ResourceScanner *AWSResourceScanner `protobuf:"bytes,1,opt,name=resource_scanner,json=resourceScanner,proto3" json:"resource_scanner,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAWSResourceScannerRequest) Descriptor deprecated added in v1.49.0

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

Deprecated: Use UpdateAWSResourceScannerRequest.ProtoReflect.Descriptor instead.

func (*UpdateAWSResourceScannerRequest) GetResourceScanner added in v1.49.0

func (x *UpdateAWSResourceScannerRequest) GetResourceScanner() *AWSResourceScanner

func (*UpdateAWSResourceScannerRequest) ProtoMessage added in v1.49.0

func (*UpdateAWSResourceScannerRequest) ProtoMessage()

func (*UpdateAWSResourceScannerRequest) ProtoReflect added in v1.49.0

func (*UpdateAWSResourceScannerRequest) Reset added in v1.49.0

func (*UpdateAWSResourceScannerRequest) String added in v1.49.0

func (*UpdateAWSResourceScannerRequest) Validate added in v1.49.0

func (m *UpdateAWSResourceScannerRequest) Validate() error

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

func (m *UpdateAWSResourceScannerRequest) ValidateAll() error

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

type UpdateAWSResourceScannerRequestMultiError added in v1.49.0

type UpdateAWSResourceScannerRequestMultiError []error

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

func (UpdateAWSResourceScannerRequestMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (UpdateAWSResourceScannerRequestMultiError) Error added in v1.49.0

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

type UpdateAWSResourceScannerRequestValidationError added in v1.49.0

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

UpdateAWSResourceScannerRequestValidationError is the validation error returned by UpdateAWSResourceScannerRequest.Validate if the designated constraints aren't met.

func (UpdateAWSResourceScannerRequestValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (UpdateAWSResourceScannerRequestValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (UpdateAWSResourceScannerRequestValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (UpdateAWSResourceScannerRequestValidationError) Field added in v1.49.0

Field function returns field value.

func (UpdateAWSResourceScannerRequestValidationError) Key added in v1.49.0

Key function returns key value.

func (UpdateAWSResourceScannerRequestValidationError) Reason added in v1.49.0

Reason function returns reason value.

type UpdateAWSResourceScannerResponse added in v1.49.0

type UpdateAWSResourceScannerResponse struct {
	ResourceScanner *AWSResourceScanner `protobuf:"bytes,1,opt,name=resource_scanner,json=resourceScanner,proto3" json:"resource_scanner,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAWSResourceScannerResponse) Descriptor deprecated added in v1.49.0

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

Deprecated: Use UpdateAWSResourceScannerResponse.ProtoReflect.Descriptor instead.

func (*UpdateAWSResourceScannerResponse) GetResourceScanner added in v1.49.0

func (x *UpdateAWSResourceScannerResponse) GetResourceScanner() *AWSResourceScanner

func (*UpdateAWSResourceScannerResponse) ProtoMessage added in v1.49.0

func (*UpdateAWSResourceScannerResponse) ProtoMessage()

func (*UpdateAWSResourceScannerResponse) ProtoReflect added in v1.49.0

func (*UpdateAWSResourceScannerResponse) Reset added in v1.49.0

func (*UpdateAWSResourceScannerResponse) String added in v1.49.0

func (*UpdateAWSResourceScannerResponse) Validate added in v1.49.0

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

func (m *UpdateAWSResourceScannerResponse) ValidateAll() error

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

type UpdateAWSResourceScannerResponseMultiError added in v1.49.0

type UpdateAWSResourceScannerResponseMultiError []error

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

func (UpdateAWSResourceScannerResponseMultiError) AllErrors added in v1.49.0

AllErrors returns a list of validation violation errors.

func (UpdateAWSResourceScannerResponseMultiError) Error added in v1.49.0

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

type UpdateAWSResourceScannerResponseValidationError added in v1.49.0

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

UpdateAWSResourceScannerResponseValidationError is the validation error returned by UpdateAWSResourceScannerResponse.Validate if the designated constraints aren't met.

func (UpdateAWSResourceScannerResponseValidationError) Cause added in v1.49.0

Cause function returns cause value.

func (UpdateAWSResourceScannerResponseValidationError) Error added in v1.49.0

Error satisfies the builtin error interface

func (UpdateAWSResourceScannerResponseValidationError) ErrorName added in v1.49.0

ErrorName returns error name.

func (UpdateAWSResourceScannerResponseValidationError) Field added in v1.49.0

Field function returns field value.

func (UpdateAWSResourceScannerResponseValidationError) Key added in v1.49.0

Key function returns key value.

func (UpdateAWSResourceScannerResponseValidationError) Reason added in v1.49.0

Reason function returns reason value.

type UpdateAccessWorkflowRequest

type UpdateAccessWorkflowRequest struct {
	Workflow *AccessWorkflow `protobuf:"bytes,1,opt,name=workflow,proto3" json:"workflow,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAccessWorkflowRequest) Descriptor deprecated

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

Deprecated: Use UpdateAccessWorkflowRequest.ProtoReflect.Descriptor instead.

func (*UpdateAccessWorkflowRequest) GetWorkflow

func (x *UpdateAccessWorkflowRequest) GetWorkflow() *AccessWorkflow

func (*UpdateAccessWorkflowRequest) ProtoMessage

func (*UpdateAccessWorkflowRequest) ProtoMessage()

func (*UpdateAccessWorkflowRequest) ProtoReflect

func (*UpdateAccessWorkflowRequest) Reset

func (x *UpdateAccessWorkflowRequest) Reset()

func (*UpdateAccessWorkflowRequest) String

func (x *UpdateAccessWorkflowRequest) String() string

func (*UpdateAccessWorkflowRequest) Validate added in v1.32.1

func (m *UpdateAccessWorkflowRequest) Validate() error

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

func (m *UpdateAccessWorkflowRequest) ValidateAll() error

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

type UpdateAccessWorkflowRequestMultiError added in v1.32.1

type UpdateAccessWorkflowRequestMultiError []error

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

func (UpdateAccessWorkflowRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateAccessWorkflowRequestMultiError) Error added in v1.32.1

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

type UpdateAccessWorkflowRequestValidationError added in v1.32.1

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

UpdateAccessWorkflowRequestValidationError is the validation error returned by UpdateAccessWorkflowRequest.Validate if the designated constraints aren't met.

func (UpdateAccessWorkflowRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateAccessWorkflowRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateAccessWorkflowRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateAccessWorkflowRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateAccessWorkflowRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateAccessWorkflowRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateAccessWorkflowResponse

type UpdateAccessWorkflowResponse struct {
	Workflow *AccessWorkflow `protobuf:"bytes,1,opt,name=workflow,proto3" json:"workflow,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAccessWorkflowResponse) Descriptor deprecated

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

Deprecated: Use UpdateAccessWorkflowResponse.ProtoReflect.Descriptor instead.

func (*UpdateAccessWorkflowResponse) GetWorkflow

func (x *UpdateAccessWorkflowResponse) GetWorkflow() *AccessWorkflow

func (*UpdateAccessWorkflowResponse) ProtoMessage

func (*UpdateAccessWorkflowResponse) ProtoMessage()

func (*UpdateAccessWorkflowResponse) ProtoReflect

func (*UpdateAccessWorkflowResponse) Reset

func (x *UpdateAccessWorkflowResponse) Reset()

func (*UpdateAccessWorkflowResponse) String

func (*UpdateAccessWorkflowResponse) Validate added in v1.32.1

func (m *UpdateAccessWorkflowResponse) Validate() error

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

func (m *UpdateAccessWorkflowResponse) ValidateAll() error

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

type UpdateAccessWorkflowResponseMultiError added in v1.32.1

type UpdateAccessWorkflowResponseMultiError []error

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

func (UpdateAccessWorkflowResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateAccessWorkflowResponseMultiError) Error added in v1.32.1

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

type UpdateAccessWorkflowResponseValidationError added in v1.32.1

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

UpdateAccessWorkflowResponseValidationError is the validation error returned by UpdateAccessWorkflowResponse.Validate if the designated constraints aren't met.

func (UpdateAccessWorkflowResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateAccessWorkflowResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateAccessWorkflowResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateAccessWorkflowResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateAccessWorkflowResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateAccessWorkflowResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateAvailabilitySpecRequest

type UpdateAvailabilitySpecRequest struct {
	AvailabilitySpec *AvailabilitySpec `protobuf:"bytes,1,opt,name=availability_spec,json=availabilitySpec,proto3" json:"availability_spec,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAvailabilitySpecRequest) Descriptor deprecated

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

Deprecated: Use UpdateAvailabilitySpecRequest.ProtoReflect.Descriptor instead.

func (*UpdateAvailabilitySpecRequest) GetAvailabilitySpec

func (x *UpdateAvailabilitySpecRequest) GetAvailabilitySpec() *AvailabilitySpec

func (*UpdateAvailabilitySpecRequest) ProtoMessage

func (*UpdateAvailabilitySpecRequest) ProtoMessage()

func (*UpdateAvailabilitySpecRequest) ProtoReflect

func (*UpdateAvailabilitySpecRequest) Reset

func (x *UpdateAvailabilitySpecRequest) Reset()

func (*UpdateAvailabilitySpecRequest) String

func (*UpdateAvailabilitySpecRequest) Validate added in v1.32.1

func (m *UpdateAvailabilitySpecRequest) Validate() error

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

func (m *UpdateAvailabilitySpecRequest) ValidateAll() error

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

type UpdateAvailabilitySpecRequestMultiError added in v1.32.1

type UpdateAvailabilitySpecRequestMultiError []error

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

func (UpdateAvailabilitySpecRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateAvailabilitySpecRequestMultiError) Error added in v1.32.1

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

type UpdateAvailabilitySpecRequestValidationError added in v1.32.1

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

UpdateAvailabilitySpecRequestValidationError is the validation error returned by UpdateAvailabilitySpecRequest.Validate if the designated constraints aren't met.

func (UpdateAvailabilitySpecRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateAvailabilitySpecRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateAvailabilitySpecRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateAvailabilitySpecRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateAvailabilitySpecRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateAvailabilitySpecRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateAvailabilitySpecResponse

type UpdateAvailabilitySpecResponse struct {
	AvailabilitySpec *AvailabilitySpec `protobuf:"bytes,1,opt,name=availability_spec,json=availabilitySpec,proto3" json:"availability_spec,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAvailabilitySpecResponse) Descriptor deprecated

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

Deprecated: Use UpdateAvailabilitySpecResponse.ProtoReflect.Descriptor instead.

func (*UpdateAvailabilitySpecResponse) GetAvailabilitySpec

func (x *UpdateAvailabilitySpecResponse) GetAvailabilitySpec() *AvailabilitySpec

func (*UpdateAvailabilitySpecResponse) ProtoMessage

func (*UpdateAvailabilitySpecResponse) ProtoMessage()

func (*UpdateAvailabilitySpecResponse) ProtoReflect

func (*UpdateAvailabilitySpecResponse) Reset

func (x *UpdateAvailabilitySpecResponse) Reset()

func (*UpdateAvailabilitySpecResponse) String

func (*UpdateAvailabilitySpecResponse) Validate added in v1.32.1

func (m *UpdateAvailabilitySpecResponse) Validate() error

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

func (m *UpdateAvailabilitySpecResponse) ValidateAll() error

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

type UpdateAvailabilitySpecResponseMultiError added in v1.32.1

type UpdateAvailabilitySpecResponseMultiError []error

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

func (UpdateAvailabilitySpecResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateAvailabilitySpecResponseMultiError) Error added in v1.32.1

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

type UpdateAvailabilitySpecResponseValidationError added in v1.32.1

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

UpdateAvailabilitySpecResponseValidationError is the validation error returned by UpdateAvailabilitySpecResponse.Validate if the designated constraints aren't met.

func (UpdateAvailabilitySpecResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateAvailabilitySpecResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateAvailabilitySpecResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateAvailabilitySpecResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateAvailabilitySpecResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateAvailabilitySpecResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateGCPRoleGroupRequest added in v1.29.0

type UpdateGCPRoleGroupRequest struct {
	RoleGroup *GCPRoleGroup `protobuf:"bytes,1,opt,name=role_group,json=roleGroup,proto3" json:"role_group,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateGCPRoleGroupRequest) Descriptor deprecated added in v1.29.0

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

Deprecated: Use UpdateGCPRoleGroupRequest.ProtoReflect.Descriptor instead.

func (*UpdateGCPRoleGroupRequest) GetRoleGroup added in v1.29.0

func (x *UpdateGCPRoleGroupRequest) GetRoleGroup() *GCPRoleGroup

func (*UpdateGCPRoleGroupRequest) ProtoMessage added in v1.29.0

func (*UpdateGCPRoleGroupRequest) ProtoMessage()

func (*UpdateGCPRoleGroupRequest) ProtoReflect added in v1.29.0

func (*UpdateGCPRoleGroupRequest) Reset added in v1.29.0

func (x *UpdateGCPRoleGroupRequest) Reset()

func (*UpdateGCPRoleGroupRequest) String added in v1.29.0

func (x *UpdateGCPRoleGroupRequest) String() string

func (*UpdateGCPRoleGroupRequest) Validate added in v1.32.1

func (m *UpdateGCPRoleGroupRequest) Validate() error

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

func (m *UpdateGCPRoleGroupRequest) ValidateAll() error

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

type UpdateGCPRoleGroupRequestMultiError added in v1.32.1

type UpdateGCPRoleGroupRequestMultiError []error

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

func (UpdateGCPRoleGroupRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateGCPRoleGroupRequestMultiError) Error added in v1.32.1

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

type UpdateGCPRoleGroupRequestValidationError added in v1.32.1

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

UpdateGCPRoleGroupRequestValidationError is the validation error returned by UpdateGCPRoleGroupRequest.Validate if the designated constraints aren't met.

func (UpdateGCPRoleGroupRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateGCPRoleGroupRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateGCPRoleGroupRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateGCPRoleGroupRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateGCPRoleGroupRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateGCPRoleGroupRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateGCPRoleGroupResponse added in v1.29.0

type UpdateGCPRoleGroupResponse struct {
	RoleGroup *GCPRoleGroup `protobuf:"bytes,1,opt,name=role_group,json=roleGroup,proto3" json:"role_group,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateGCPRoleGroupResponse) Descriptor deprecated added in v1.29.0

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

Deprecated: Use UpdateGCPRoleGroupResponse.ProtoReflect.Descriptor instead.

func (*UpdateGCPRoleGroupResponse) GetRoleGroup added in v1.29.0

func (x *UpdateGCPRoleGroupResponse) GetRoleGroup() *GCPRoleGroup

func (*UpdateGCPRoleGroupResponse) ProtoMessage added in v1.29.0

func (*UpdateGCPRoleGroupResponse) ProtoMessage()

func (*UpdateGCPRoleGroupResponse) ProtoReflect added in v1.29.0

func (*UpdateGCPRoleGroupResponse) Reset added in v1.29.0

func (x *UpdateGCPRoleGroupResponse) Reset()

func (*UpdateGCPRoleGroupResponse) String added in v1.29.0

func (x *UpdateGCPRoleGroupResponse) String() string

func (*UpdateGCPRoleGroupResponse) Validate added in v1.32.1

func (m *UpdateGCPRoleGroupResponse) Validate() error

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

func (m *UpdateGCPRoleGroupResponse) ValidateAll() error

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

type UpdateGCPRoleGroupResponseMultiError added in v1.32.1

type UpdateGCPRoleGroupResponseMultiError []error

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

func (UpdateGCPRoleGroupResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateGCPRoleGroupResponseMultiError) Error added in v1.32.1

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

type UpdateGCPRoleGroupResponseValidationError added in v1.32.1

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

UpdateGCPRoleGroupResponseValidationError is the validation error returned by UpdateGCPRoleGroupResponse.Validate if the designated constraints aren't met.

func (UpdateGCPRoleGroupResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateGCPRoleGroupResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateGCPRoleGroupResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateGCPRoleGroupResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateGCPRoleGroupResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateGCPRoleGroupResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateIDPRequest

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

func (*UpdateIDPRequest) Descriptor deprecated

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

Deprecated: Use UpdateIDPRequest.ProtoReflect.Descriptor instead.

func (*UpdateIDPRequest) GetId

func (x *UpdateIDPRequest) GetId() string

func (*UpdateIDPRequest) GetNamespace

func (x *UpdateIDPRequest) GetNamespace() string

func (*UpdateIDPRequest) ProtoMessage

func (*UpdateIDPRequest) ProtoMessage()

func (*UpdateIDPRequest) ProtoReflect

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

func (*UpdateIDPRequest) Reset

func (x *UpdateIDPRequest) Reset()

func (*UpdateIDPRequest) String

func (x *UpdateIDPRequest) String() string

func (*UpdateIDPRequest) Validate added in v1.32.1

func (m *UpdateIDPRequest) Validate() error

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

func (m *UpdateIDPRequest) ValidateAll() error

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

type UpdateIDPRequestMultiError added in v1.32.1

type UpdateIDPRequestMultiError []error

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

func (UpdateIDPRequestMultiError) AllErrors added in v1.32.1

func (m UpdateIDPRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateIDPRequestMultiError) Error added in v1.32.1

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

type UpdateIDPRequestValidationError added in v1.32.1

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

UpdateIDPRequestValidationError is the validation error returned by UpdateIDPRequest.Validate if the designated constraints aren't met.

func (UpdateIDPRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateIDPRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateIDPRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateIDPRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateIDPRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateIDPRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateIDPResponse

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

func (*UpdateIDPResponse) Descriptor deprecated

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

Deprecated: Use UpdateIDPResponse.ProtoReflect.Descriptor instead.

func (*UpdateIDPResponse) GetId

func (x *UpdateIDPResponse) GetId() string

func (*UpdateIDPResponse) GetNamespace

func (x *UpdateIDPResponse) GetNamespace() string

func (*UpdateIDPResponse) ProtoMessage

func (*UpdateIDPResponse) ProtoMessage()

func (*UpdateIDPResponse) ProtoReflect

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

func (*UpdateIDPResponse) Reset

func (x *UpdateIDPResponse) Reset()

func (*UpdateIDPResponse) String

func (x *UpdateIDPResponse) String() string

func (*UpdateIDPResponse) Validate added in v1.32.1

func (m *UpdateIDPResponse) Validate() error

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

func (m *UpdateIDPResponse) ValidateAll() error

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

type UpdateIDPResponseMultiError added in v1.32.1

type UpdateIDPResponseMultiError []error

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

func (UpdateIDPResponseMultiError) AllErrors added in v1.32.1

func (m UpdateIDPResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateIDPResponseMultiError) Error added in v1.32.1

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

type UpdateIDPResponseValidationError added in v1.32.1

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

UpdateIDPResponseValidationError is the validation error returned by UpdateIDPResponse.Validate if the designated constraints aren't met.

func (UpdateIDPResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateIDPResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateIDPResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateIDPResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateIDPResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateIDPResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateSelectorRequest

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

func (*UpdateSelectorRequest) Descriptor deprecated

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

Deprecated: Use UpdateSelectorRequest.ProtoReflect.Descriptor instead.

func (*UpdateSelectorRequest) GetSelector

func (x *UpdateSelectorRequest) GetSelector() *Selector

func (*UpdateSelectorRequest) ProtoMessage

func (*UpdateSelectorRequest) ProtoMessage()

func (*UpdateSelectorRequest) ProtoReflect

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

func (*UpdateSelectorRequest) Reset

func (x *UpdateSelectorRequest) Reset()

func (*UpdateSelectorRequest) String

func (x *UpdateSelectorRequest) String() string

func (*UpdateSelectorRequest) Validate added in v1.32.1

func (m *UpdateSelectorRequest) Validate() error

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

func (m *UpdateSelectorRequest) ValidateAll() error

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

type UpdateSelectorRequestMultiError added in v1.32.1

type UpdateSelectorRequestMultiError []error

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

func (UpdateSelectorRequestMultiError) AllErrors added in v1.32.1

func (m UpdateSelectorRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateSelectorRequestMultiError) Error added in v1.32.1

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

type UpdateSelectorRequestValidationError added in v1.32.1

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

UpdateSelectorRequestValidationError is the validation error returned by UpdateSelectorRequest.Validate if the designated constraints aren't met.

func (UpdateSelectorRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateSelectorRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateSelectorRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateSelectorRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateSelectorRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateSelectorRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateSelectorResponse

type UpdateSelectorResponse struct {
	Selector    *Selector               `protobuf:"bytes,1,opt,name=selector,proto3" json:"selector,omitempty"`
	Diagnostics []*v1alpha11.Diagnostic `protobuf:"bytes,2,rep,name=diagnostics,proto3" json:"diagnostics,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateSelectorResponse) Descriptor deprecated

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

Deprecated: Use UpdateSelectorResponse.ProtoReflect.Descriptor instead.

func (*UpdateSelectorResponse) GetDiagnostics

func (x *UpdateSelectorResponse) GetDiagnostics() []*v1alpha11.Diagnostic

func (*UpdateSelectorResponse) GetSelector

func (x *UpdateSelectorResponse) GetSelector() *Selector

func (*UpdateSelectorResponse) ProtoMessage

func (*UpdateSelectorResponse) ProtoMessage()

func (*UpdateSelectorResponse) ProtoReflect

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

func (*UpdateSelectorResponse) Reset

func (x *UpdateSelectorResponse) Reset()

func (*UpdateSelectorResponse) String

func (x *UpdateSelectorResponse) String() string

func (*UpdateSelectorResponse) Validate added in v1.32.1

func (m *UpdateSelectorResponse) Validate() error

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

func (m *UpdateSelectorResponse) ValidateAll() error

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

type UpdateSelectorResponseMultiError added in v1.32.1

type UpdateSelectorResponseMultiError []error

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

func (UpdateSelectorResponseMultiError) AllErrors added in v1.32.1

func (m UpdateSelectorResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateSelectorResponseMultiError) Error added in v1.32.1

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

type UpdateSelectorResponseValidationError added in v1.32.1

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

UpdateSelectorResponseValidationError is the validation error returned by UpdateSelectorResponse.Validate if the designated constraints aren't met.

func (UpdateSelectorResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateSelectorResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateSelectorResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateSelectorResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateSelectorResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateSelectorResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateSlackAlertRequest

type UpdateSlackAlertRequest struct {
	Alert *SlackAlert `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateSlackAlertRequest) Descriptor deprecated

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

Deprecated: Use UpdateSlackAlertRequest.ProtoReflect.Descriptor instead.

func (*UpdateSlackAlertRequest) GetAlert

func (x *UpdateSlackAlertRequest) GetAlert() *SlackAlert

func (*UpdateSlackAlertRequest) ProtoMessage

func (*UpdateSlackAlertRequest) ProtoMessage()

func (*UpdateSlackAlertRequest) ProtoReflect

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

func (*UpdateSlackAlertRequest) Reset

func (x *UpdateSlackAlertRequest) Reset()

func (*UpdateSlackAlertRequest) String

func (x *UpdateSlackAlertRequest) String() string

func (*UpdateSlackAlertRequest) Validate added in v1.32.1

func (m *UpdateSlackAlertRequest) Validate() error

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

func (m *UpdateSlackAlertRequest) ValidateAll() error

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

type UpdateSlackAlertRequestMultiError added in v1.32.1

type UpdateSlackAlertRequestMultiError []error

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

func (UpdateSlackAlertRequestMultiError) AllErrors added in v1.32.1

func (m UpdateSlackAlertRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateSlackAlertRequestMultiError) Error added in v1.32.1

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

type UpdateSlackAlertRequestValidationError added in v1.32.1

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

UpdateSlackAlertRequestValidationError is the validation error returned by UpdateSlackAlertRequest.Validate if the designated constraints aren't met.

func (UpdateSlackAlertRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateSlackAlertRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateSlackAlertRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateSlackAlertRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateSlackAlertRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateSlackAlertRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateSlackAlertResponse

type UpdateSlackAlertResponse struct {
	Alert *SlackAlert `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateSlackAlertResponse) Descriptor deprecated

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

Deprecated: Use UpdateSlackAlertResponse.ProtoReflect.Descriptor instead.

func (*UpdateSlackAlertResponse) GetAlert

func (x *UpdateSlackAlertResponse) GetAlert() *SlackAlert

func (*UpdateSlackAlertResponse) ProtoMessage

func (*UpdateSlackAlertResponse) ProtoMessage()

func (*UpdateSlackAlertResponse) ProtoReflect

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

func (*UpdateSlackAlertResponse) Reset

func (x *UpdateSlackAlertResponse) Reset()

func (*UpdateSlackAlertResponse) String

func (x *UpdateSlackAlertResponse) String() string

func (*UpdateSlackAlertResponse) Validate added in v1.32.1

func (m *UpdateSlackAlertResponse) Validate() error

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

func (m *UpdateSlackAlertResponse) ValidateAll() error

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

type UpdateSlackAlertResponseMultiError added in v1.32.1

type UpdateSlackAlertResponseMultiError []error

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

func (UpdateSlackAlertResponseMultiError) AllErrors added in v1.32.1

func (m UpdateSlackAlertResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateSlackAlertResponseMultiError) Error added in v1.32.1

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

type UpdateSlackAlertResponseValidationError added in v1.32.1

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

UpdateSlackAlertResponseValidationError is the validation error returned by UpdateSlackAlertResponse.Validate if the designated constraints aren't met.

func (UpdateSlackAlertResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateSlackAlertResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateSlackAlertResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateSlackAlertResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateSlackAlertResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateSlackAlertResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateWebhookProvisionerRequest

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

func (*UpdateWebhookProvisionerRequest) Descriptor deprecated

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

Deprecated: Use UpdateWebhookProvisionerRequest.ProtoReflect.Descriptor instead.

func (*UpdateWebhookProvisionerRequest) GetWebhookProvisioner

func (x *UpdateWebhookProvisionerRequest) GetWebhookProvisioner() *WebhookProvisioner

func (*UpdateWebhookProvisionerRequest) ProtoMessage

func (*UpdateWebhookProvisionerRequest) ProtoMessage()

func (*UpdateWebhookProvisionerRequest) ProtoReflect

func (*UpdateWebhookProvisionerRequest) Reset

func (*UpdateWebhookProvisionerRequest) String

func (*UpdateWebhookProvisionerRequest) Validate added in v1.32.1

func (m *UpdateWebhookProvisionerRequest) Validate() error

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

func (m *UpdateWebhookProvisionerRequest) ValidateAll() error

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

type UpdateWebhookProvisionerRequestMultiError added in v1.32.1

type UpdateWebhookProvisionerRequestMultiError []error

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

func (UpdateWebhookProvisionerRequestMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateWebhookProvisionerRequestMultiError) Error added in v1.32.1

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

type UpdateWebhookProvisionerRequestValidationError added in v1.32.1

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

UpdateWebhookProvisionerRequestValidationError is the validation error returned by UpdateWebhookProvisionerRequest.Validate if the designated constraints aren't met.

func (UpdateWebhookProvisionerRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateWebhookProvisionerRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateWebhookProvisionerRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateWebhookProvisionerRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateWebhookProvisionerRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateWebhookProvisionerRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateWebhookProvisionerResponse

type UpdateWebhookProvisionerResponse struct {
	WebhookProvisioner *WebhookProvisioner     `protobuf:"bytes,1,opt,name=WebhookProvisioner,proto3" json:"WebhookProvisioner,omitempty"`
	Diagnostics        []*v1alpha11.Diagnostic `protobuf:"bytes,2,rep,name=diagnostics,proto3" json:"diagnostics,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateWebhookProvisionerResponse) Descriptor deprecated

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

Deprecated: Use UpdateWebhookProvisionerResponse.ProtoReflect.Descriptor instead.

func (*UpdateWebhookProvisionerResponse) GetDiagnostics

func (x *UpdateWebhookProvisionerResponse) GetDiagnostics() []*v1alpha11.Diagnostic

func (*UpdateWebhookProvisionerResponse) GetWebhookProvisioner

func (x *UpdateWebhookProvisionerResponse) GetWebhookProvisioner() *WebhookProvisioner

func (*UpdateWebhookProvisionerResponse) ProtoMessage

func (*UpdateWebhookProvisionerResponse) ProtoMessage()

func (*UpdateWebhookProvisionerResponse) ProtoReflect

func (*UpdateWebhookProvisionerResponse) Reset

func (*UpdateWebhookProvisionerResponse) String

func (*UpdateWebhookProvisionerResponse) Validate added in v1.32.1

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

func (m *UpdateWebhookProvisionerResponse) ValidateAll() error

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

type UpdateWebhookProvisionerResponseMultiError added in v1.32.1

type UpdateWebhookProvisionerResponseMultiError []error

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

func (UpdateWebhookProvisionerResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateWebhookProvisionerResponseMultiError) Error added in v1.32.1

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

type UpdateWebhookProvisionerResponseValidationError added in v1.32.1

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

UpdateWebhookProvisionerResponseValidationError is the validation error returned by UpdateWebhookProvisionerResponse.Validate if the designated constraints aren't met.

func (UpdateWebhookProvisionerResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateWebhookProvisionerResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateWebhookProvisionerResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateWebhookProvisionerResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateWebhookProvisionerResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateWebhookProvisionerResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type ValidationConfig added in v1.33.0

type ValidationConfig struct {

	// If true, a reason is required for access.
	HasReason bool `protobuf:"varint,1,opt,name=has_reason,json=hasReason,proto3" json:"has_reason,omitempty"`
	// List of regex patterns that the reason must conform with
	ReasonRegex []*v1alpha1.RegexValidation `protobuf:"bytes,2,rep,name=reason_regex,json=reasonRegex,proto3" json:"reason_regex,omitempty"`
	// If true, a jira ticket attachment is required for access.
	HasJiraTicket bool `protobuf:"varint,3,opt,name=has_jira_ticket,json=hasJiraTicket,proto3" json:"has_jira_ticket,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidationConfig) Descriptor deprecated added in v1.33.0

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

Deprecated: Use ValidationConfig.ProtoReflect.Descriptor instead.

func (*ValidationConfig) GetHasJiraTicket added in v1.71.0

func (x *ValidationConfig) GetHasJiraTicket() bool

func (*ValidationConfig) GetHasReason added in v1.33.0

func (x *ValidationConfig) GetHasReason() bool

func (*ValidationConfig) GetReasonRegex added in v1.60.0

func (x *ValidationConfig) GetReasonRegex() []*v1alpha1.RegexValidation

func (*ValidationConfig) ProtoMessage added in v1.33.0

func (*ValidationConfig) ProtoMessage()

func (*ValidationConfig) ProtoReflect added in v1.33.0

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

func (*ValidationConfig) Reset added in v1.33.0

func (x *ValidationConfig) Reset()

func (*ValidationConfig) String added in v1.33.0

func (x *ValidationConfig) String() string

func (*ValidationConfig) Validate added in v1.42.0

func (m *ValidationConfig) Validate() error

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

func (m *ValidationConfig) ValidateAll() error

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

type ValidationConfigMultiError added in v1.42.0

type ValidationConfigMultiError []error

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

func (ValidationConfigMultiError) AllErrors added in v1.42.0

func (m ValidationConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ValidationConfigMultiError) Error added in v1.42.0

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

type ValidationConfigValidationError added in v1.42.0

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

ValidationConfigValidationError is the validation error returned by ValidationConfig.Validate if the designated constraints aren't met.

func (ValidationConfigValidationError) Cause added in v1.42.0

Cause function returns cause value.

func (ValidationConfigValidationError) Error added in v1.42.0

Error satisfies the builtin error interface

func (ValidationConfigValidationError) ErrorName added in v1.42.0

ErrorName returns error name.

func (ValidationConfigValidationError) Field added in v1.42.0

Field function returns field value.

func (ValidationConfigValidationError) Key added in v1.42.0

Key function returns key value.

func (ValidationConfigValidationError) Reason added in v1.42.0

Reason function returns reason value.

type WebhookProvisioner

type WebhookProvisioner struct {
	Id           string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Url          string        `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Capabilities []*Capability `protobuf:"bytes,3,rep,name=capabilities,proto3" json:"capabilities,omitempty"`
	// contains filtered or unexported fields
}

func (*WebhookProvisioner) Descriptor deprecated

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

Deprecated: Use WebhookProvisioner.ProtoReflect.Descriptor instead.

func (*WebhookProvisioner) GetCapabilities

func (x *WebhookProvisioner) GetCapabilities() []*Capability

func (*WebhookProvisioner) GetId

func (x *WebhookProvisioner) GetId() string

func (*WebhookProvisioner) GetUrl

func (x *WebhookProvisioner) GetUrl() string

func (*WebhookProvisioner) ProtoMessage

func (*WebhookProvisioner) ProtoMessage()

func (*WebhookProvisioner) ProtoReflect

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

func (*WebhookProvisioner) Reset

func (x *WebhookProvisioner) Reset()

func (*WebhookProvisioner) String

func (x *WebhookProvisioner) String() string

func (*WebhookProvisioner) Validate added in v1.32.1

func (m *WebhookProvisioner) Validate() error

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

func (m *WebhookProvisioner) ValidateAll() error

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

type WebhookProvisionerMultiError added in v1.32.1

type WebhookProvisionerMultiError []error

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

func (WebhookProvisionerMultiError) AllErrors added in v1.32.1

func (m WebhookProvisionerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WebhookProvisionerMultiError) Error added in v1.32.1

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

type WebhookProvisionerValidationError added in v1.32.1

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

WebhookProvisionerValidationError is the validation error returned by WebhookProvisioner.Validate if the designated constraints aren't met.

func (WebhookProvisionerValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (WebhookProvisionerValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (WebhookProvisionerValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (WebhookProvisionerValidationError) Field added in v1.32.1

Field function returns field value.

func (WebhookProvisionerValidationError) Key added in v1.32.1

Key function returns key value.

func (WebhookProvisionerValidationError) Reason added in v1.32.1

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