integrationv1alpha1

package
v1.42.1 Latest Latest
Warning

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

Go to latest
Published: Jul 4, 2024 License: MIT Imports: 18 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Status_name = map[int32]string{
		0: "STATUS_UNSPECIFIED",
		1: "STATUS_PENDING_SETUP",
		2: "STATUS_HEALTHY",
		3: "STATUS_UNHEALTHY",
	}
	Status_value = map[string]int32{
		"STATUS_UNSPECIFIED":   0,
		"STATUS_PENDING_SETUP": 1,
		"STATUS_HEALTHY":       2,
		"STATUS_UNHEALTHY":     3,
	}
)

Enum value maps for Status.

View Source
var File_commonfate_control_integration_v1alpha1_auth0_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_aws_idc_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_aws_rds_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_datastax_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_entra_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_gcp_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_integration_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_okta_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_opsgenie_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_pagerduty_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_s3_log_destination_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_slack_proto protoreflect.FileDescriptor
View Source
var File_commonfate_control_integration_v1alpha1_webhook_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AWSIDC

type AWSIDC struct {
	SsoInstanceArn  string   `protobuf:"bytes,1,opt,name=sso_instance_arn,json=ssoInstanceArn,proto3" json:"sso_instance_arn,omitempty"`
	IdentityStoreId string   `protobuf:"bytes,2,opt,name=identity_store_id,json=identityStoreId,proto3" json:"identity_store_id,omitempty"`
	SsoRegion       string   `protobuf:"bytes,3,opt,name=sso_region,json=ssoRegion,proto3" json:"sso_region,omitempty"`
	ReaderRoleArn   string   `protobuf:"bytes,4,opt,name=reader_role_arn,json=readerRoleArn,proto3" json:"reader_role_arn,omitempty"`
	AuditRoleName   string   `protobuf:"bytes,5,opt,name=audit_role_name,json=auditRoleName,proto3" json:"audit_role_name,omitempty"`
	ResourceRegions []string `protobuf:"bytes,6,rep,name=resource_regions,json=resourceRegions,proto3" json:"resource_regions,omitempty"`
	// The SSO Access Portal URL can optionally be provided.
	//
	// If not provided, the access portal URL will
	// default to 'https://<identity_store_id>.start.awsapps.com/start'.
	SsoAccessPortalUrl string `protobuf:"bytes,7,opt,name=sso_access_portal_url,json=ssoAccessPortalUrl,proto3" json:"sso_access_portal_url,omitempty"`
	ProvisionerRoleArn string `protobuf:"bytes,8,opt,name=provisioner_role_arn,json=provisionerRoleArn,proto3" json:"provisioner_role_arn,omitempty"`
	// contains filtered or unexported fields
}

func (*AWSIDC) Descriptor deprecated

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

Deprecated: Use AWSIDC.ProtoReflect.Descriptor instead.

func (*AWSIDC) GetAuditRoleName added in v1.4.0

func (x *AWSIDC) GetAuditRoleName() string

func (*AWSIDC) GetIdentityStoreId

func (x *AWSIDC) GetIdentityStoreId() string

func (*AWSIDC) GetProvisionerRoleArn added in v1.37.0

func (x *AWSIDC) GetProvisionerRoleArn() string

func (*AWSIDC) GetReaderRoleArn

func (x *AWSIDC) GetReaderRoleArn() string

func (*AWSIDC) GetResourceRegions added in v1.4.0

func (x *AWSIDC) GetResourceRegions() []string

func (*AWSIDC) GetSsoAccessPortalUrl added in v1.36.0

func (x *AWSIDC) GetSsoAccessPortalUrl() string

func (*AWSIDC) GetSsoInstanceArn

func (x *AWSIDC) GetSsoInstanceArn() string

func (*AWSIDC) GetSsoRegion

func (x *AWSIDC) GetSsoRegion() string

func (*AWSIDC) ProtoMessage

func (*AWSIDC) ProtoMessage()

func (*AWSIDC) ProtoReflect

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

func (*AWSIDC) Reset

func (x *AWSIDC) Reset()

func (*AWSIDC) String

func (x *AWSIDC) String() string

func (*AWSIDC) Validate added in v1.32.1

func (m *AWSIDC) Validate() error

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

func (m *AWSIDC) ValidateAll() error

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

type AWSIDCMultiError added in v1.32.1

type AWSIDCMultiError []error

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

func (AWSIDCMultiError) AllErrors added in v1.32.1

func (m AWSIDCMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AWSIDCMultiError) Error added in v1.32.1

func (m AWSIDCMultiError) Error() string

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

type AWSIDCValidationError added in v1.32.1

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

AWSIDCValidationError is the validation error returned by AWSIDC.Validate if the designated constraints aren't met.

func (AWSIDCValidationError) Cause added in v1.32.1

func (e AWSIDCValidationError) Cause() error

Cause function returns cause value.

func (AWSIDCValidationError) Error added in v1.32.1

func (e AWSIDCValidationError) Error() string

Error satisfies the builtin error interface

func (AWSIDCValidationError) ErrorName added in v1.32.1

func (e AWSIDCValidationError) ErrorName() string

ErrorName returns error name.

func (AWSIDCValidationError) Field added in v1.32.1

func (e AWSIDCValidationError) Field() string

Field function returns field value.

func (AWSIDCValidationError) Key added in v1.32.1

func (e AWSIDCValidationError) Key() bool

Key function returns key value.

func (AWSIDCValidationError) Reason added in v1.32.1

func (e AWSIDCValidationError) Reason() string

Reason function returns reason value.

type AWSRDS

type AWSRDS struct {
	Regions                       []string `protobuf:"bytes,1,rep,name=regions,proto3" json:"regions,omitempty"`
	ReadRoleArns                  []string `protobuf:"bytes,2,rep,name=read_role_arns,json=readRoleArns,proto3" json:"read_role_arns,omitempty"`
	IdcProvisionerRoleArn         string   `` /* 128-byte string literal not displayed */
	InfraProvisionerRoleArn       string   `` /* 134-byte string literal not displayed */
	ShouldProvisionSecurityGroups bool     `` /* 153-byte string literal not displayed */
	IdcInstanceArn                string   `protobuf:"bytes,6,opt,name=idc_instance_arn,json=idcInstanceArn,proto3" json:"idc_instance_arn,omitempty"`
	IdcRegion                     string   `protobuf:"bytes,7,opt,name=idc_region,json=idcRegion,proto3" json:"idc_region,omitempty"`
	// contains filtered or unexported fields
}

func (*AWSRDS) Descriptor deprecated

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

Deprecated: Use AWSRDS.ProtoReflect.Descriptor instead.

func (*AWSRDS) GetIdcInstanceArn added in v1.37.0

func (x *AWSRDS) GetIdcInstanceArn() string

func (*AWSRDS) GetIdcProvisionerRoleArn added in v1.37.0

func (x *AWSRDS) GetIdcProvisionerRoleArn() string

func (*AWSRDS) GetIdcRegion added in v1.37.0

func (x *AWSRDS) GetIdcRegion() string

func (*AWSRDS) GetInfraProvisionerRoleArn added in v1.37.0

func (x *AWSRDS) GetInfraProvisionerRoleArn() string

func (*AWSRDS) GetReadRoleArns

func (x *AWSRDS) GetReadRoleArns() []string

func (*AWSRDS) GetRegions

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

func (*AWSRDS) GetShouldProvisionSecurityGroups added in v1.37.0

func (x *AWSRDS) GetShouldProvisionSecurityGroups() bool

func (*AWSRDS) ProtoMessage

func (*AWSRDS) ProtoMessage()

func (*AWSRDS) ProtoReflect

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

func (*AWSRDS) Reset

func (x *AWSRDS) Reset()

func (*AWSRDS) String

func (x *AWSRDS) String() string

func (*AWSRDS) Validate added in v1.32.1

func (m *AWSRDS) Validate() error

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

func (m *AWSRDS) ValidateAll() error

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

type AWSRDSMultiError added in v1.32.1

type AWSRDSMultiError []error

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

func (AWSRDSMultiError) AllErrors added in v1.32.1

func (m AWSRDSMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AWSRDSMultiError) Error added in v1.32.1

func (m AWSRDSMultiError) Error() string

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

type AWSRDSValidationError added in v1.32.1

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

AWSRDSValidationError is the validation error returned by AWSRDS.Validate if the designated constraints aren't met.

func (AWSRDSValidationError) Cause added in v1.32.1

func (e AWSRDSValidationError) Cause() error

Cause function returns cause value.

func (AWSRDSValidationError) Error added in v1.32.1

func (e AWSRDSValidationError) Error() string

Error satisfies the builtin error interface

func (AWSRDSValidationError) ErrorName added in v1.32.1

func (e AWSRDSValidationError) ErrorName() string

ErrorName returns error name.

func (AWSRDSValidationError) Field added in v1.32.1

func (e AWSRDSValidationError) Field() string

Field function returns field value.

func (AWSRDSValidationError) Key added in v1.32.1

func (e AWSRDSValidationError) Key() bool

Key function returns key value.

func (AWSRDSValidationError) Reason added in v1.32.1

func (e AWSRDSValidationError) Reason() string

Reason function returns reason value.

type Auth0 added in v1.30.0

type Auth0 struct {
	Domain                 string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
	ClientId               string `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecretSecretPath string `` /* 131-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Auth0) Descriptor deprecated added in v1.30.0

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

Deprecated: Use Auth0.ProtoReflect.Descriptor instead.

func (*Auth0) GetClientId added in v1.30.0

func (x *Auth0) GetClientId() string

func (*Auth0) GetClientSecretSecretPath added in v1.30.0

func (x *Auth0) GetClientSecretSecretPath() string

func (*Auth0) GetDomain added in v1.30.0

func (x *Auth0) GetDomain() string

func (*Auth0) ProtoMessage added in v1.30.0

func (*Auth0) ProtoMessage()

func (*Auth0) ProtoReflect added in v1.30.0

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

func (*Auth0) Reset added in v1.30.0

func (x *Auth0) Reset()

func (*Auth0) String added in v1.30.0

func (x *Auth0) String() string

func (*Auth0) Validate added in v1.32.1

func (m *Auth0) Validate() error

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

func (m *Auth0) ValidateAll() error

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

type Auth0MultiError added in v1.32.1

type Auth0MultiError []error

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

func (Auth0MultiError) AllErrors added in v1.32.1

func (m Auth0MultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (Auth0MultiError) Error added in v1.32.1

func (m Auth0MultiError) Error() string

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

type Auth0ValidationError added in v1.32.1

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

Auth0ValidationError is the validation error returned by Auth0.Validate if the designated constraints aren't met.

func (Auth0ValidationError) Cause added in v1.32.1

func (e Auth0ValidationError) Cause() error

Cause function returns cause value.

func (Auth0ValidationError) Error added in v1.32.1

func (e Auth0ValidationError) Error() string

Error satisfies the builtin error interface

func (Auth0ValidationError) ErrorName added in v1.32.1

func (e Auth0ValidationError) ErrorName() string

ErrorName returns error name.

func (Auth0ValidationError) Field added in v1.32.1

func (e Auth0ValidationError) Field() string

Field function returns field value.

func (Auth0ValidationError) Key added in v1.32.1

func (e Auth0ValidationError) Key() bool

Key function returns key value.

func (Auth0ValidationError) Reason added in v1.32.1

func (e Auth0ValidationError) Reason() string

Reason function returns reason value.

type Config

type Config struct {

	// Types that are assignable to Config:
	//
	//	*Config_Gcp
	//	*Config_AwsIdc
	//	*Config_Slack
	//	*Config_Pagerduty
	//	*Config_Opsgenie
	//	*Config_Entra
	//	*Config_AwsRds
	//	*Config_Okta
	//	*Config_Datastax
	//	*Config_Webhook
	//	*Config_Auth0
	//	*Config_S3LogDestination
	Config isConfig_Config `protobuf_oneof:"config"`
	// contains filtered or unexported fields
}

func (*Config) Descriptor deprecated

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

Deprecated: Use Config.ProtoReflect.Descriptor instead.

func (*Config) GetAuth0 added in v1.30.0

func (x *Config) GetAuth0() *Auth0

func (*Config) GetAwsIdc

func (x *Config) GetAwsIdc() *AWSIDC

func (*Config) GetAwsRds

func (x *Config) GetAwsRds() *AWSRDS

func (*Config) GetConfig

func (m *Config) GetConfig() isConfig_Config

func (*Config) GetDatastax added in v1.9.0

func (x *Config) GetDatastax() *DataStax

func (*Config) GetEntra

func (x *Config) GetEntra() *Entra

func (*Config) GetGcp

func (x *Config) GetGcp() *GCP

func (*Config) GetOkta added in v1.6.0

func (x *Config) GetOkta() *Okta

func (*Config) GetOpsgenie

func (x *Config) GetOpsgenie() *OpsGenie

func (*Config) GetPagerduty

func (x *Config) GetPagerduty() *PagerDuty

func (*Config) GetS3LogDestination added in v1.34.0

func (x *Config) GetS3LogDestination() *S3LogDestination

func (*Config) GetSlack

func (x *Config) GetSlack() *Slack

func (*Config) GetWebhook added in v1.24.0

func (x *Config) GetWebhook() *Webhook

func (*Config) ProtoMessage

func (*Config) ProtoMessage()

func (*Config) ProtoReflect

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

func (*Config) Reset

func (x *Config) Reset()

func (*Config) String

func (x *Config) String() string

func (*Config) Validate added in v1.32.1

func (m *Config) Validate() error

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

func (m *Config) ValidateAll() error

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

type ConfigMultiError added in v1.32.1

type ConfigMultiError []error

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

func (ConfigMultiError) AllErrors added in v1.32.1

func (m ConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ConfigMultiError) Error added in v1.32.1

func (m ConfigMultiError) Error() string

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

type ConfigValidationError added in v1.32.1

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

ConfigValidationError is the validation error returned by Config.Validate if the designated constraints aren't met.

func (ConfigValidationError) Cause added in v1.32.1

func (e ConfigValidationError) Cause() error

Cause function returns cause value.

func (ConfigValidationError) Error added in v1.32.1

func (e ConfigValidationError) Error() string

Error satisfies the builtin error interface

func (ConfigValidationError) ErrorName added in v1.32.1

func (e ConfigValidationError) ErrorName() string

ErrorName returns error name.

func (ConfigValidationError) Field added in v1.32.1

func (e ConfigValidationError) Field() string

Field function returns field value.

func (ConfigValidationError) Key added in v1.32.1

func (e ConfigValidationError) Key() bool

Key function returns key value.

func (ConfigValidationError) Reason added in v1.32.1

func (e ConfigValidationError) Reason() string

Reason function returns reason value.

type Config_Auth0 added in v1.30.0

type Config_Auth0 struct {
	Auth0 *Auth0 `protobuf:"bytes,11,opt,name=auth0,proto3,oneof"`
}

type Config_AwsIdc

type Config_AwsIdc struct {
	AwsIdc *AWSIDC `protobuf:"bytes,2,opt,name=aws_idc,json=awsIdc,proto3,oneof"`
}

type Config_AwsRds

type Config_AwsRds struct {
	AwsRds *AWSRDS `protobuf:"bytes,7,opt,name=aws_rds,json=awsRds,proto3,oneof"`
}

type Config_Datastax added in v1.9.0

type Config_Datastax struct {
	Datastax *DataStax `protobuf:"bytes,9,opt,name=datastax,proto3,oneof"`
}

type Config_Entra

type Config_Entra struct {
	Entra *Entra `protobuf:"bytes,6,opt,name=entra,proto3,oneof"`
}

type Config_Gcp

type Config_Gcp struct {
	Gcp *GCP `protobuf:"bytes,1,opt,name=gcp,proto3,oneof"`
}

type Config_Okta added in v1.6.0

type Config_Okta struct {
	Okta *Okta `protobuf:"bytes,8,opt,name=okta,proto3,oneof"`
}

type Config_Opsgenie

type Config_Opsgenie struct {
	Opsgenie *OpsGenie `protobuf:"bytes,5,opt,name=opsgenie,proto3,oneof"`
}

type Config_Pagerduty

type Config_Pagerduty struct {
	Pagerduty *PagerDuty `protobuf:"bytes,4,opt,name=pagerduty,proto3,oneof"`
}

type Config_S3LogDestination added in v1.34.0

type Config_S3LogDestination struct {
	S3LogDestination *S3LogDestination `protobuf:"bytes,12,opt,name=s3_log_destination,json=s3LogDestination,proto3,oneof"`
}

type Config_Slack

type Config_Slack struct {
	Slack *Slack `protobuf:"bytes,3,opt,name=slack,proto3,oneof"`
}

type Config_Webhook added in v1.24.0

type Config_Webhook struct {
	Webhook *Webhook `protobuf:"bytes,10,opt,name=webhook,proto3,oneof"`
}

type CreateIntegrationRequest

type CreateIntegrationRequest struct {
	Name   string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Config *Config `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateIntegrationRequest) Descriptor deprecated

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

Deprecated: Use CreateIntegrationRequest.ProtoReflect.Descriptor instead.

func (*CreateIntegrationRequest) GetConfig

func (x *CreateIntegrationRequest) GetConfig() *Config

func (*CreateIntegrationRequest) GetName

func (x *CreateIntegrationRequest) GetName() string

func (*CreateIntegrationRequest) ProtoMessage

func (*CreateIntegrationRequest) ProtoMessage()

func (*CreateIntegrationRequest) ProtoReflect

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

func (*CreateIntegrationRequest) Reset

func (x *CreateIntegrationRequest) Reset()

func (*CreateIntegrationRequest) String

func (x *CreateIntegrationRequest) String() string

func (*CreateIntegrationRequest) Validate added in v1.32.1

func (m *CreateIntegrationRequest) Validate() error

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

func (m *CreateIntegrationRequest) ValidateAll() error

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

type CreateIntegrationRequestMultiError added in v1.32.1

type CreateIntegrationRequestMultiError []error

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

func (CreateIntegrationRequestMultiError) AllErrors added in v1.32.1

func (m CreateIntegrationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateIntegrationRequestMultiError) Error added in v1.32.1

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

type CreateIntegrationRequestValidationError added in v1.32.1

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

CreateIntegrationRequestValidationError is the validation error returned by CreateIntegrationRequest.Validate if the designated constraints aren't met.

func (CreateIntegrationRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateIntegrationRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateIntegrationRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateIntegrationRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateIntegrationRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateIntegrationRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type CreateIntegrationResponse

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

func (*CreateIntegrationResponse) Descriptor deprecated

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

Deprecated: Use CreateIntegrationResponse.ProtoReflect.Descriptor instead.

func (*CreateIntegrationResponse) GetIntegration

func (x *CreateIntegrationResponse) GetIntegration() *Integration

func (*CreateIntegrationResponse) ProtoMessage

func (*CreateIntegrationResponse) ProtoMessage()

func (*CreateIntegrationResponse) ProtoReflect

func (*CreateIntegrationResponse) Reset

func (x *CreateIntegrationResponse) Reset()

func (*CreateIntegrationResponse) String

func (x *CreateIntegrationResponse) String() string

func (*CreateIntegrationResponse) Validate added in v1.32.1

func (m *CreateIntegrationResponse) Validate() error

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

func (m *CreateIntegrationResponse) ValidateAll() error

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

type CreateIntegrationResponseMultiError added in v1.32.1

type CreateIntegrationResponseMultiError []error

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

func (CreateIntegrationResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (CreateIntegrationResponseMultiError) Error added in v1.32.1

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

type CreateIntegrationResponseValidationError added in v1.32.1

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

CreateIntegrationResponseValidationError is the validation error returned by CreateIntegrationResponse.Validate if the designated constraints aren't met.

func (CreateIntegrationResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (CreateIntegrationResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (CreateIntegrationResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (CreateIntegrationResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (CreateIntegrationResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (CreateIntegrationResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DataStax added in v1.9.0

type DataStax struct {
	ApiKeySecretPath string `protobuf:"bytes,1,opt,name=api_key_secret_path,json=apiKeySecretPath,proto3" json:"api_key_secret_path,omitempty"`
	// contains filtered or unexported fields
}

func (*DataStax) Descriptor deprecated added in v1.9.0

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

Deprecated: Use DataStax.ProtoReflect.Descriptor instead.

func (*DataStax) GetApiKeySecretPath added in v1.9.0

func (x *DataStax) GetApiKeySecretPath() string

func (*DataStax) ProtoMessage added in v1.9.0

func (*DataStax) ProtoMessage()

func (*DataStax) ProtoReflect added in v1.9.0

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

func (*DataStax) Reset added in v1.9.0

func (x *DataStax) Reset()

func (*DataStax) String added in v1.9.0

func (x *DataStax) String() string

func (*DataStax) Validate added in v1.32.1

func (m *DataStax) Validate() error

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

func (m *DataStax) ValidateAll() error

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

type DataStaxMultiError added in v1.32.1

type DataStaxMultiError []error

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

func (DataStaxMultiError) AllErrors added in v1.32.1

func (m DataStaxMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DataStaxMultiError) Error added in v1.32.1

func (m DataStaxMultiError) Error() string

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

type DataStaxValidationError added in v1.32.1

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

DataStaxValidationError is the validation error returned by DataStax.Validate if the designated constraints aren't met.

func (DataStaxValidationError) Cause added in v1.32.1

func (e DataStaxValidationError) Cause() error

Cause function returns cause value.

func (DataStaxValidationError) Error added in v1.32.1

func (e DataStaxValidationError) Error() string

Error satisfies the builtin error interface

func (DataStaxValidationError) ErrorName added in v1.32.1

func (e DataStaxValidationError) ErrorName() string

ErrorName returns error name.

func (DataStaxValidationError) Field added in v1.32.1

func (e DataStaxValidationError) Field() string

Field function returns field value.

func (DataStaxValidationError) Key added in v1.32.1

func (e DataStaxValidationError) Key() bool

Key function returns key value.

func (DataStaxValidationError) Reason added in v1.32.1

func (e DataStaxValidationError) Reason() string

Reason function returns reason value.

type DeleteIntegrationRequest

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

func (*DeleteIntegrationRequest) Descriptor deprecated

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

Deprecated: Use DeleteIntegrationRequest.ProtoReflect.Descriptor instead.

func (*DeleteIntegrationRequest) GetId

func (x *DeleteIntegrationRequest) GetId() string

func (*DeleteIntegrationRequest) ProtoMessage

func (*DeleteIntegrationRequest) ProtoMessage()

func (*DeleteIntegrationRequest) ProtoReflect

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

func (*DeleteIntegrationRequest) Reset

func (x *DeleteIntegrationRequest) Reset()

func (*DeleteIntegrationRequest) String

func (x *DeleteIntegrationRequest) String() string

func (*DeleteIntegrationRequest) Validate added in v1.32.1

func (m *DeleteIntegrationRequest) Validate() error

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

func (m *DeleteIntegrationRequest) ValidateAll() error

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

type DeleteIntegrationRequestMultiError added in v1.32.1

type DeleteIntegrationRequestMultiError []error

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

func (DeleteIntegrationRequestMultiError) AllErrors added in v1.32.1

func (m DeleteIntegrationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteIntegrationRequestMultiError) Error added in v1.32.1

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

type DeleteIntegrationRequestValidationError added in v1.32.1

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

DeleteIntegrationRequestValidationError is the validation error returned by DeleteIntegrationRequest.Validate if the designated constraints aren't met.

func (DeleteIntegrationRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteIntegrationRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteIntegrationRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteIntegrationRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteIntegrationRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteIntegrationRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type DeleteIntegrationResponse

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

func (*DeleteIntegrationResponse) Descriptor deprecated

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

Deprecated: Use DeleteIntegrationResponse.ProtoReflect.Descriptor instead.

func (*DeleteIntegrationResponse) GetId

func (x *DeleteIntegrationResponse) GetId() string

func (*DeleteIntegrationResponse) ProtoMessage

func (*DeleteIntegrationResponse) ProtoMessage()

func (*DeleteIntegrationResponse) ProtoReflect

func (*DeleteIntegrationResponse) Reset

func (x *DeleteIntegrationResponse) Reset()

func (*DeleteIntegrationResponse) String

func (x *DeleteIntegrationResponse) String() string

func (*DeleteIntegrationResponse) Validate added in v1.32.1

func (m *DeleteIntegrationResponse) Validate() error

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

func (m *DeleteIntegrationResponse) ValidateAll() error

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

type DeleteIntegrationResponseMultiError added in v1.32.1

type DeleteIntegrationResponseMultiError []error

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

func (DeleteIntegrationResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (DeleteIntegrationResponseMultiError) Error added in v1.32.1

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

type DeleteIntegrationResponseValidationError added in v1.32.1

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

DeleteIntegrationResponseValidationError is the validation error returned by DeleteIntegrationResponse.Validate if the designated constraints aren't met.

func (DeleteIntegrationResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (DeleteIntegrationResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (DeleteIntegrationResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (DeleteIntegrationResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (DeleteIntegrationResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (DeleteIntegrationResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type Entra

type Entra struct {
	TenantId               string `protobuf:"bytes,1,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
	ClientId               string `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecretSecretPath string `` /* 131-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Entra) Descriptor deprecated

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

Deprecated: Use Entra.ProtoReflect.Descriptor instead.

func (*Entra) GetClientId

func (x *Entra) GetClientId() string

func (*Entra) GetClientSecretSecretPath

func (x *Entra) GetClientSecretSecretPath() string

func (*Entra) GetTenantId

func (x *Entra) GetTenantId() string

func (*Entra) ProtoMessage

func (*Entra) ProtoMessage()

func (*Entra) ProtoReflect

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

func (*Entra) Reset

func (x *Entra) Reset()

func (*Entra) String

func (x *Entra) String() string

func (*Entra) Validate added in v1.32.1

func (m *Entra) Validate() error

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

func (m *Entra) ValidateAll() error

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

type EntraMultiError added in v1.32.1

type EntraMultiError []error

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

func (EntraMultiError) AllErrors added in v1.32.1

func (m EntraMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (EntraMultiError) Error added in v1.32.1

func (m EntraMultiError) Error() string

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

type EntraValidationError added in v1.32.1

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

EntraValidationError is the validation error returned by Entra.Validate if the designated constraints aren't met.

func (EntraValidationError) Cause added in v1.32.1

func (e EntraValidationError) Cause() error

Cause function returns cause value.

func (EntraValidationError) Error added in v1.32.1

func (e EntraValidationError) Error() string

Error satisfies the builtin error interface

func (EntraValidationError) ErrorName added in v1.32.1

func (e EntraValidationError) ErrorName() string

ErrorName returns error name.

func (EntraValidationError) Field added in v1.32.1

func (e EntraValidationError) Field() string

Field function returns field value.

func (EntraValidationError) Key added in v1.32.1

func (e EntraValidationError) Key() bool

Key function returns key value.

func (EntraValidationError) Reason added in v1.32.1

func (e EntraValidationError) Reason() string

Reason function returns reason value.

type GCP

type GCP struct {
	ReaderWorkloadIdentityConfig                   string `` /* 149-byte string literal not displayed */
	ReaderServiceAccountCredentialsSecretPath      string `` /* 192-byte string literal not displayed */
	OrganizationId                                 string `protobuf:"bytes,3,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	GoogleWorkspaceCustomerId                      string `` /* 140-byte string literal not displayed */
	ProvisionerWorkloadIdentityConfig              string `` /* 164-byte string literal not displayed */
	ProvisionerServiceAccountCredentialsSecretPath string `` /* 207-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*GCP) Descriptor deprecated

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

Deprecated: Use GCP.ProtoReflect.Descriptor instead.

func (*GCP) GetGoogleWorkspaceCustomerId

func (x *GCP) GetGoogleWorkspaceCustomerId() string

func (*GCP) GetOrganizationId

func (x *GCP) GetOrganizationId() string

func (*GCP) GetProvisionerServiceAccountCredentialsSecretPath added in v1.37.0

func (x *GCP) GetProvisionerServiceAccountCredentialsSecretPath() string

func (*GCP) GetProvisionerWorkloadIdentityConfig added in v1.37.0

func (x *GCP) GetProvisionerWorkloadIdentityConfig() string

func (*GCP) GetReaderServiceAccountCredentialsSecretPath

func (x *GCP) GetReaderServiceAccountCredentialsSecretPath() string

func (*GCP) GetReaderWorkloadIdentityConfig

func (x *GCP) GetReaderWorkloadIdentityConfig() string

func (*GCP) ProtoMessage

func (*GCP) ProtoMessage()

func (*GCP) ProtoReflect

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

func (*GCP) Reset

func (x *GCP) Reset()

func (*GCP) String

func (x *GCP) String() string

func (*GCP) Validate added in v1.32.1

func (m *GCP) Validate() error

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

func (m *GCP) ValidateAll() error

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

type GCPMultiError added in v1.32.1

type GCPMultiError []error

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

func (GCPMultiError) AllErrors added in v1.32.1

func (m GCPMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GCPMultiError) Error added in v1.32.1

func (m GCPMultiError) Error() string

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

type GCPValidationError added in v1.32.1

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

GCPValidationError is the validation error returned by GCP.Validate if the designated constraints aren't met.

func (GCPValidationError) Cause added in v1.32.1

func (e GCPValidationError) Cause() error

Cause function returns cause value.

func (GCPValidationError) Error added in v1.32.1

func (e GCPValidationError) Error() string

Error satisfies the builtin error interface

func (GCPValidationError) ErrorName added in v1.32.1

func (e GCPValidationError) ErrorName() string

ErrorName returns error name.

func (GCPValidationError) Field added in v1.32.1

func (e GCPValidationError) Field() string

Field function returns field value.

func (GCPValidationError) Key added in v1.32.1

func (e GCPValidationError) Key() bool

Key function returns key value.

func (GCPValidationError) Reason added in v1.32.1

func (e GCPValidationError) Reason() string

Reason function returns reason value.

type GetIntegrationRequest

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

func (*GetIntegrationRequest) Descriptor deprecated

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

Deprecated: Use GetIntegrationRequest.ProtoReflect.Descriptor instead.

func (*GetIntegrationRequest) GetId

func (x *GetIntegrationRequest) GetId() string

func (*GetIntegrationRequest) ProtoMessage

func (*GetIntegrationRequest) ProtoMessage()

func (*GetIntegrationRequest) ProtoReflect

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

func (*GetIntegrationRequest) Reset

func (x *GetIntegrationRequest) Reset()

func (*GetIntegrationRequest) String

func (x *GetIntegrationRequest) String() string

func (*GetIntegrationRequest) Validate added in v1.32.1

func (m *GetIntegrationRequest) Validate() error

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

func (m *GetIntegrationRequest) ValidateAll() error

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

type GetIntegrationRequestMultiError added in v1.32.1

type GetIntegrationRequestMultiError []error

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

func (GetIntegrationRequestMultiError) AllErrors added in v1.32.1

func (m GetIntegrationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetIntegrationRequestMultiError) Error added in v1.32.1

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

type GetIntegrationRequestValidationError added in v1.32.1

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

GetIntegrationRequestValidationError is the validation error returned by GetIntegrationRequest.Validate if the designated constraints aren't met.

func (GetIntegrationRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetIntegrationRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetIntegrationRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetIntegrationRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (GetIntegrationRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (GetIntegrationRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type GetIntegrationResponse

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

func (*GetIntegrationResponse) Descriptor deprecated

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

Deprecated: Use GetIntegrationResponse.ProtoReflect.Descriptor instead.

func (*GetIntegrationResponse) GetIntegration

func (x *GetIntegrationResponse) GetIntegration() *Integration

func (*GetIntegrationResponse) ProtoMessage

func (*GetIntegrationResponse) ProtoMessage()

func (*GetIntegrationResponse) ProtoReflect

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

func (*GetIntegrationResponse) Reset

func (x *GetIntegrationResponse) Reset()

func (*GetIntegrationResponse) String

func (x *GetIntegrationResponse) String() string

func (*GetIntegrationResponse) Validate added in v1.32.1

func (m *GetIntegrationResponse) Validate() error

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

func (m *GetIntegrationResponse) ValidateAll() error

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

type GetIntegrationResponseMultiError added in v1.32.1

type GetIntegrationResponseMultiError []error

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

func (GetIntegrationResponseMultiError) AllErrors added in v1.32.1

func (m GetIntegrationResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetIntegrationResponseMultiError) Error added in v1.32.1

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

type GetIntegrationResponseValidationError added in v1.32.1

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

GetIntegrationResponseValidationError is the validation error returned by GetIntegrationResponse.Validate if the designated constraints aren't met.

func (GetIntegrationResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (GetIntegrationResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (GetIntegrationResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (GetIntegrationResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (GetIntegrationResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (GetIntegrationResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type Header struct {
	Key   string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Header) Descriptor deprecated added in v1.24.0

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

Deprecated: Use Header.ProtoReflect.Descriptor instead.

func (*Header) GetKey added in v1.24.0

func (x *Header) GetKey() string

func (*Header) GetValue added in v1.24.0

func (x *Header) GetValue() string

func (*Header) ProtoMessage added in v1.24.0

func (*Header) ProtoMessage()

func (*Header) ProtoReflect added in v1.24.0

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

func (*Header) Reset added in v1.24.0

func (x *Header) Reset()

func (*Header) String added in v1.24.0

func (x *Header) String() string

func (*Header) Validate added in v1.32.1

func (m *Header) Validate() error

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

func (m *Header) ValidateAll() error

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

type HeaderMultiError added in v1.32.1

type HeaderMultiError []error

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

func (HeaderMultiError) AllErrors added in v1.32.1

func (m HeaderMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (HeaderMultiError) Error added in v1.32.1

func (m HeaderMultiError) Error() string

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

type HeaderValidationError added in v1.32.1

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

HeaderValidationError is the validation error returned by Header.Validate if the designated constraints aren't met.

func (HeaderValidationError) Cause added in v1.32.1

func (e HeaderValidationError) Cause() error

Cause function returns cause value.

func (HeaderValidationError) Error added in v1.32.1

func (e HeaderValidationError) Error() string

Error satisfies the builtin error interface

func (HeaderValidationError) ErrorName added in v1.32.1

func (e HeaderValidationError) ErrorName() string

ErrorName returns error name.

func (HeaderValidationError) Field added in v1.32.1

func (e HeaderValidationError) Field() string

Field function returns field value.

func (HeaderValidationError) Key added in v1.32.1

func (e HeaderValidationError) Key() bool

Key function returns key value.

func (HeaderValidationError) Reason added in v1.32.1

func (e HeaderValidationError) Reason() string

Reason function returns reason value.

type Integration

type Integration 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"`
	Status      Status                 `protobuf:"varint,4,opt,name=status,proto3,enum=commonfate.control.integration.v1alpha1.Status" json:"status,omitempty"`
	Diagnostics []*v1alpha1.Diagnostic `protobuf:"bytes,5,rep,name=diagnostics,proto3" json:"diagnostics,omitempty"`
	Config      *Config                `protobuf:"bytes,6,opt,name=config,proto3" json:"config,omitempty"`
	SetupUrl    string                 `protobuf:"bytes,7,opt,name=setup_url,json=setupUrl,proto3" json:"setup_url,omitempty"`
	// contains filtered or unexported fields
}

func (*Integration) Descriptor deprecated

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

Deprecated: Use Integration.ProtoReflect.Descriptor instead.

func (*Integration) GetConfig

func (x *Integration) GetConfig() *Config

func (*Integration) GetDiagnostics

func (x *Integration) GetDiagnostics() []*v1alpha1.Diagnostic

func (*Integration) GetId

func (x *Integration) GetId() string

func (*Integration) GetName

func (x *Integration) GetName() string

func (*Integration) GetSetupUrl

func (x *Integration) GetSetupUrl() string

func (*Integration) GetStatus

func (x *Integration) GetStatus() Status

func (*Integration) ProtoMessage

func (*Integration) ProtoMessage()

func (*Integration) ProtoReflect

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

func (*Integration) Reset

func (x *Integration) Reset()

func (*Integration) String

func (x *Integration) String() string

func (*Integration) Validate added in v1.32.1

func (m *Integration) Validate() error

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

func (m *Integration) ValidateAll() error

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

type IntegrationMultiError added in v1.32.1

type IntegrationMultiError []error

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

func (IntegrationMultiError) AllErrors added in v1.32.1

func (m IntegrationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (IntegrationMultiError) Error added in v1.32.1

func (m IntegrationMultiError) Error() string

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

type IntegrationValidationError added in v1.32.1

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

IntegrationValidationError is the validation error returned by Integration.Validate if the designated constraints aren't met.

func (IntegrationValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (IntegrationValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (IntegrationValidationError) ErrorName added in v1.32.1

func (e IntegrationValidationError) ErrorName() string

ErrorName returns error name.

func (IntegrationValidationError) Field added in v1.32.1

Field function returns field value.

func (IntegrationValidationError) Key added in v1.32.1

Key function returns key value.

func (IntegrationValidationError) Reason added in v1.32.1

Reason function returns reason value.

type ListIntegrationsRequest

type ListIntegrationsRequest struct {

	// The token for the next page.
	PageToken string `protobuf:"bytes,1,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListIntegrationsRequest) Descriptor deprecated

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

Deprecated: Use ListIntegrationsRequest.ProtoReflect.Descriptor instead.

func (*ListIntegrationsRequest) GetPageToken

func (x *ListIntegrationsRequest) GetPageToken() string

func (*ListIntegrationsRequest) ProtoMessage

func (*ListIntegrationsRequest) ProtoMessage()

func (*ListIntegrationsRequest) ProtoReflect

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

func (*ListIntegrationsRequest) Reset

func (x *ListIntegrationsRequest) Reset()

func (*ListIntegrationsRequest) String

func (x *ListIntegrationsRequest) String() string

func (*ListIntegrationsRequest) Validate added in v1.32.1

func (m *ListIntegrationsRequest) Validate() error

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

func (m *ListIntegrationsRequest) ValidateAll() error

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

type ListIntegrationsRequestMultiError added in v1.32.1

type ListIntegrationsRequestMultiError []error

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

func (ListIntegrationsRequestMultiError) AllErrors added in v1.32.1

func (m ListIntegrationsRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListIntegrationsRequestMultiError) Error added in v1.32.1

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

type ListIntegrationsRequestValidationError added in v1.32.1

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

ListIntegrationsRequestValidationError is the validation error returned by ListIntegrationsRequest.Validate if the designated constraints aren't met.

func (ListIntegrationsRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (ListIntegrationsRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (ListIntegrationsRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (ListIntegrationsRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (ListIntegrationsRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (ListIntegrationsRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type ListIntegrationsResponse

type ListIntegrationsResponse struct {
	Integrations  []*Integration `protobuf:"bytes,1,rep,name=integrations,proto3" json:"integrations,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 (*ListIntegrationsResponse) Descriptor deprecated

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

Deprecated: Use ListIntegrationsResponse.ProtoReflect.Descriptor instead.

func (*ListIntegrationsResponse) GetIntegrations

func (x *ListIntegrationsResponse) GetIntegrations() []*Integration

func (*ListIntegrationsResponse) GetNextPageToken

func (x *ListIntegrationsResponse) GetNextPageToken() string

func (*ListIntegrationsResponse) ProtoMessage

func (*ListIntegrationsResponse) ProtoMessage()

func (*ListIntegrationsResponse) ProtoReflect

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

func (*ListIntegrationsResponse) Reset

func (x *ListIntegrationsResponse) Reset()

func (*ListIntegrationsResponse) String

func (x *ListIntegrationsResponse) String() string

func (*ListIntegrationsResponse) Validate added in v1.32.1

func (m *ListIntegrationsResponse) Validate() error

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

func (m *ListIntegrationsResponse) ValidateAll() error

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

type ListIntegrationsResponseMultiError added in v1.32.1

type ListIntegrationsResponseMultiError []error

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

func (ListIntegrationsResponseMultiError) AllErrors added in v1.32.1

func (m ListIntegrationsResponseMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListIntegrationsResponseMultiError) Error added in v1.32.1

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

type ListIntegrationsResponseValidationError added in v1.32.1

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

ListIntegrationsResponseValidationError is the validation error returned by ListIntegrationsResponse.Validate if the designated constraints aren't met.

func (ListIntegrationsResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (ListIntegrationsResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (ListIntegrationsResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (ListIntegrationsResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (ListIntegrationsResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (ListIntegrationsResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type Okta added in v1.6.0

type Okta struct {
	OrganizationId   string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	ApiKeySecretPath string `protobuf:"bytes,2,opt,name=api_key_secret_path,json=apiKeySecretPath,proto3" json:"api_key_secret_path,omitempty"`
	// contains filtered or unexported fields
}

func (*Okta) Descriptor deprecated added in v1.6.0

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

Deprecated: Use Okta.ProtoReflect.Descriptor instead.

func (*Okta) GetApiKeySecretPath added in v1.6.0

func (x *Okta) GetApiKeySecretPath() string

func (*Okta) GetOrganizationId added in v1.6.0

func (x *Okta) GetOrganizationId() string

func (*Okta) ProtoMessage added in v1.6.0

func (*Okta) ProtoMessage()

func (*Okta) ProtoReflect added in v1.6.0

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

func (*Okta) Reset added in v1.6.0

func (x *Okta) Reset()

func (*Okta) String added in v1.6.0

func (x *Okta) String() string

func (*Okta) Validate added in v1.32.1

func (m *Okta) Validate() error

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

func (m *Okta) ValidateAll() error

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

type OktaMultiError added in v1.32.1

type OktaMultiError []error

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

func (OktaMultiError) AllErrors added in v1.32.1

func (m OktaMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OktaMultiError) Error added in v1.32.1

func (m OktaMultiError) Error() string

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

type OktaValidationError added in v1.32.1

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

OktaValidationError is the validation error returned by Okta.Validate if the designated constraints aren't met.

func (OktaValidationError) Cause added in v1.32.1

func (e OktaValidationError) Cause() error

Cause function returns cause value.

func (OktaValidationError) Error added in v1.32.1

func (e OktaValidationError) Error() string

Error satisfies the builtin error interface

func (OktaValidationError) ErrorName added in v1.32.1

func (e OktaValidationError) ErrorName() string

ErrorName returns error name.

func (OktaValidationError) Field added in v1.32.1

func (e OktaValidationError) Field() string

Field function returns field value.

func (OktaValidationError) Key added in v1.32.1

func (e OktaValidationError) Key() bool

Key function returns key value.

func (OktaValidationError) Reason added in v1.32.1

func (e OktaValidationError) Reason() string

Reason function returns reason value.

type OpsGenie

type OpsGenie struct {
	ApiKeySecretPath string `protobuf:"bytes,1,opt,name=api_key_secret_path,json=apiKeySecretPath,proto3" json:"api_key_secret_path,omitempty"`
	// contains filtered or unexported fields
}

func (*OpsGenie) Descriptor deprecated

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

Deprecated: Use OpsGenie.ProtoReflect.Descriptor instead.

func (*OpsGenie) GetApiKeySecretPath

func (x *OpsGenie) GetApiKeySecretPath() string

func (*OpsGenie) ProtoMessage

func (*OpsGenie) ProtoMessage()

func (*OpsGenie) ProtoReflect

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

func (*OpsGenie) Reset

func (x *OpsGenie) Reset()

func (*OpsGenie) String

func (x *OpsGenie) String() string

func (*OpsGenie) Validate added in v1.32.1

func (m *OpsGenie) Validate() error

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

func (m *OpsGenie) ValidateAll() error

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

type OpsGenieMultiError added in v1.32.1

type OpsGenieMultiError []error

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

func (OpsGenieMultiError) AllErrors added in v1.32.1

func (m OpsGenieMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (OpsGenieMultiError) Error added in v1.32.1

func (m OpsGenieMultiError) Error() string

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

type OpsGenieValidationError added in v1.32.1

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

OpsGenieValidationError is the validation error returned by OpsGenie.Validate if the designated constraints aren't met.

func (OpsGenieValidationError) Cause added in v1.32.1

func (e OpsGenieValidationError) Cause() error

Cause function returns cause value.

func (OpsGenieValidationError) Error added in v1.32.1

func (e OpsGenieValidationError) Error() string

Error satisfies the builtin error interface

func (OpsGenieValidationError) ErrorName added in v1.32.1

func (e OpsGenieValidationError) ErrorName() string

ErrorName returns error name.

func (OpsGenieValidationError) Field added in v1.32.1

func (e OpsGenieValidationError) Field() string

Field function returns field value.

func (OpsGenieValidationError) Key added in v1.32.1

func (e OpsGenieValidationError) Key() bool

Key function returns key value.

func (OpsGenieValidationError) Reason added in v1.32.1

func (e OpsGenieValidationError) Reason() string

Reason function returns reason value.

type PagerDuty

type PagerDuty struct {
	ClientId               string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecretSecretPath string `` /* 131-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*PagerDuty) Descriptor deprecated

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

Deprecated: Use PagerDuty.ProtoReflect.Descriptor instead.

func (*PagerDuty) GetClientId

func (x *PagerDuty) GetClientId() string

func (*PagerDuty) GetClientSecretSecretPath

func (x *PagerDuty) GetClientSecretSecretPath() string

func (*PagerDuty) ProtoMessage

func (*PagerDuty) ProtoMessage()

func (*PagerDuty) ProtoReflect

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

func (*PagerDuty) Reset

func (x *PagerDuty) Reset()

func (*PagerDuty) String

func (x *PagerDuty) String() string

func (*PagerDuty) Validate added in v1.32.1

func (m *PagerDuty) Validate() error

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

func (m *PagerDuty) ValidateAll() error

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

type PagerDutyMultiError added in v1.32.1

type PagerDutyMultiError []error

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

func (PagerDutyMultiError) AllErrors added in v1.32.1

func (m PagerDutyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PagerDutyMultiError) Error added in v1.32.1

func (m PagerDutyMultiError) Error() string

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

type PagerDutyValidationError added in v1.32.1

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

PagerDutyValidationError is the validation error returned by PagerDuty.Validate if the designated constraints aren't met.

func (PagerDutyValidationError) Cause added in v1.32.1

func (e PagerDutyValidationError) Cause() error

Cause function returns cause value.

func (PagerDutyValidationError) Error added in v1.32.1

func (e PagerDutyValidationError) Error() string

Error satisfies the builtin error interface

func (PagerDutyValidationError) ErrorName added in v1.32.1

func (e PagerDutyValidationError) ErrorName() string

ErrorName returns error name.

func (PagerDutyValidationError) Field added in v1.32.1

func (e PagerDutyValidationError) Field() string

Field function returns field value.

func (PagerDutyValidationError) Key added in v1.32.1

Key function returns key value.

func (PagerDutyValidationError) Reason added in v1.32.1

func (e PagerDutyValidationError) Reason() string

Reason function returns reason value.

type S3LogDestination added in v1.34.0

type S3LogDestination struct {
	BucketName string `protobuf:"bytes,1,opt,name=bucket_name,json=bucketName,proto3" json:"bucket_name,omitempty"`
	RoleArn    string `protobuf:"bytes,2,opt,name=role_arn,json=roleArn,proto3" json:"role_arn,omitempty"`
	// The object key template to write audit log events
	// to in the bucket.
	//
	// If not provided, defaults to: '{{ .Year }}/{{ .Month }}/{{ .Day }}/{{ .Hour }}_{{ .Minute }}_{{ .Second }}_{{ .ID }}'
	//
	// Available template parameters are:
	//
	// Year - the year the events were written in YYYY format, e.g. 2024
	//
	// Month - the month the events were written in MM format, e.g. 01
	//
	// Day - the calendar day the events were written in DD format, e.g. 15
	//
	// Hour - the hour the events were written in HH format (in UTC), e.g. 22
	//
	// Minute - the minute the events were written in MM format, e.g. 04
	//
	// Second - the second the events were written in SS format, e.g. 02
	//
	// ID - a randomly generated report batch ID.
	//
	// Time - the full timestamp the event report was generated. This can be used
	// if you'd like to customise the time beyond the Year / Month / Day / Hour / Minute / Second
	// variables provided.
	// You can use Go [text template](https://pkg.go.dev/text/template) functions to customise this,
	// for example: {{ .Time.Format "Jan 02, 2006 15:04:05 UTC" }}
	KeyTemplate string `protobuf:"bytes,3,opt,name=key_template,json=keyTemplate,proto3" json:"key_template,omitempty"`
	// The compression algorithm to use on the log events.
	// If empty, events will be written without compression.
	//
	// Specifying 'gzip' will use GZIP compression.
	Compression string `protobuf:"bytes,4,opt,name=compression,proto3" json:"compression,omitempty"`
	// If provided, only the specified actions will be included.
	//
	// For example ["grant.requested", "grant.approved"]
	FilterForActions []string `protobuf:"bytes,5,rep,name=filter_for_actions,json=filterForActions,proto3" json:"filter_for_actions,omitempty"`
	// The frequency in minutes to generate reports at.
	// Must be greater or equal to 5.
	BatchDurationMinutes uint32 `protobuf:"varint,6,opt,name=batch_duration_minutes,json=batchDurationMinutes,proto3" json:"batch_duration_minutes,omitempty"`
	// The maximum number of events to include in a batch.
	// If set to zero, Common Fate will use a default automatic batch size.
	MaximumBatchSize uint32 `protobuf:"varint,7,opt,name=maximum_batch_size,json=maximumBatchSize,proto3" json:"maximum_batch_size,omitempty"`
	// contains filtered or unexported fields
}

The S3 Log Destination integration allows audit log events to be written to an AWS S3 bucket in [JSONL format](https://jsonlines.org/).

func (*S3LogDestination) Descriptor deprecated added in v1.34.0

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

Deprecated: Use S3LogDestination.ProtoReflect.Descriptor instead.

func (*S3LogDestination) GetBatchDurationMinutes added in v1.34.0

func (x *S3LogDestination) GetBatchDurationMinutes() uint32

func (*S3LogDestination) GetBucketName added in v1.34.0

func (x *S3LogDestination) GetBucketName() string

func (*S3LogDestination) GetCompression added in v1.34.0

func (x *S3LogDestination) GetCompression() string

func (*S3LogDestination) GetFilterForActions added in v1.34.0

func (x *S3LogDestination) GetFilterForActions() []string

func (*S3LogDestination) GetKeyTemplate added in v1.34.0

func (x *S3LogDestination) GetKeyTemplate() string

func (*S3LogDestination) GetMaximumBatchSize added in v1.34.0

func (x *S3LogDestination) GetMaximumBatchSize() uint32

func (*S3LogDestination) GetRoleArn added in v1.34.0

func (x *S3LogDestination) GetRoleArn() string

func (*S3LogDestination) ProtoMessage added in v1.34.0

func (*S3LogDestination) ProtoMessage()

func (*S3LogDestination) ProtoReflect added in v1.34.0

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

func (*S3LogDestination) Reset added in v1.34.0

func (x *S3LogDestination) Reset()

func (*S3LogDestination) String added in v1.34.0

func (x *S3LogDestination) String() string

func (*S3LogDestination) Validate added in v1.42.0

func (m *S3LogDestination) Validate() error

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

func (m *S3LogDestination) ValidateAll() error

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

type S3LogDestinationMultiError added in v1.42.0

type S3LogDestinationMultiError []error

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

func (S3LogDestinationMultiError) AllErrors added in v1.42.0

func (m S3LogDestinationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (S3LogDestinationMultiError) Error added in v1.42.0

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

type S3LogDestinationValidationError added in v1.42.0

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

S3LogDestinationValidationError is the validation error returned by S3LogDestination.Validate if the designated constraints aren't met.

func (S3LogDestinationValidationError) Cause added in v1.42.0

Cause function returns cause value.

func (S3LogDestinationValidationError) Error added in v1.42.0

Error satisfies the builtin error interface

func (S3LogDestinationValidationError) ErrorName added in v1.42.0

ErrorName returns error name.

func (S3LogDestinationValidationError) Field added in v1.42.0

Field function returns field value.

func (S3LogDestinationValidationError) Key added in v1.42.0

Key function returns key value.

func (S3LogDestinationValidationError) Reason added in v1.42.0

Reason function returns reason value.

type Slack

type Slack struct {
	ClientId                string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
	ClientSecretSecretPath  string `` /* 131-byte string literal not displayed */
	SigningSecretSecretPath string `` /* 134-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Slack) Descriptor deprecated

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

Deprecated: Use Slack.ProtoReflect.Descriptor instead.

func (*Slack) GetClientId

func (x *Slack) GetClientId() string

func (*Slack) GetClientSecretSecretPath

func (x *Slack) GetClientSecretSecretPath() string

func (*Slack) GetSigningSecretSecretPath

func (x *Slack) GetSigningSecretSecretPath() string

func (*Slack) ProtoMessage

func (*Slack) ProtoMessage()

func (*Slack) ProtoReflect

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

func (*Slack) Reset

func (x *Slack) Reset()

func (*Slack) String

func (x *Slack) String() string

func (*Slack) Validate added in v1.32.1

func (m *Slack) Validate() error

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

func (m *Slack) ValidateAll() error

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

type SlackMultiError added in v1.32.1

type SlackMultiError []error

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

func (SlackMultiError) AllErrors added in v1.32.1

func (m SlackMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (SlackMultiError) Error added in v1.32.1

func (m SlackMultiError) Error() string

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

type SlackValidationError added in v1.32.1

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

SlackValidationError is the validation error returned by Slack.Validate if the designated constraints aren't met.

func (SlackValidationError) Cause added in v1.32.1

func (e SlackValidationError) Cause() error

Cause function returns cause value.

func (SlackValidationError) Error added in v1.32.1

func (e SlackValidationError) Error() string

Error satisfies the builtin error interface

func (SlackValidationError) ErrorName added in v1.32.1

func (e SlackValidationError) ErrorName() string

ErrorName returns error name.

func (SlackValidationError) Field added in v1.32.1

func (e SlackValidationError) Field() string

Field function returns field value.

func (SlackValidationError) Key added in v1.32.1

func (e SlackValidationError) Key() bool

Key function returns key value.

func (SlackValidationError) Reason added in v1.32.1

func (e SlackValidationError) Reason() string

Reason function returns reason value.

type Status

type Status int32
const (
	Status_STATUS_UNSPECIFIED   Status = 0
	Status_STATUS_PENDING_SETUP Status = 1
	Status_STATUS_HEALTHY       Status = 2
	Status_STATUS_UNHEALTHY     Status = 3
)

func (Status) Descriptor

func (Status) Descriptor() protoreflect.EnumDescriptor

func (Status) Enum

func (x Status) Enum() *Status

func (Status) EnumDescriptor deprecated

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

Deprecated: Use Status.Descriptor instead.

func (Status) Number

func (x Status) Number() protoreflect.EnumNumber

func (Status) String

func (x Status) String() string

func (Status) Type

func (Status) Type() protoreflect.EnumType

type UpdateIntegrationRequest

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

func (*UpdateIntegrationRequest) Descriptor deprecated

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

Deprecated: Use UpdateIntegrationRequest.ProtoReflect.Descriptor instead.

func (*UpdateIntegrationRequest) GetIntegration

func (x *UpdateIntegrationRequest) GetIntegration() *Integration

func (*UpdateIntegrationRequest) ProtoMessage

func (*UpdateIntegrationRequest) ProtoMessage()

func (*UpdateIntegrationRequest) ProtoReflect

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

func (*UpdateIntegrationRequest) Reset

func (x *UpdateIntegrationRequest) Reset()

func (*UpdateIntegrationRequest) String

func (x *UpdateIntegrationRequest) String() string

func (*UpdateIntegrationRequest) Validate added in v1.32.1

func (m *UpdateIntegrationRequest) Validate() error

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

func (m *UpdateIntegrationRequest) ValidateAll() error

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

type UpdateIntegrationRequestMultiError added in v1.32.1

type UpdateIntegrationRequestMultiError []error

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

func (UpdateIntegrationRequestMultiError) AllErrors added in v1.32.1

func (m UpdateIntegrationRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateIntegrationRequestMultiError) Error added in v1.32.1

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

type UpdateIntegrationRequestValidationError added in v1.32.1

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

UpdateIntegrationRequestValidationError is the validation error returned by UpdateIntegrationRequest.Validate if the designated constraints aren't met.

func (UpdateIntegrationRequestValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateIntegrationRequestValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateIntegrationRequestValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateIntegrationRequestValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateIntegrationRequestValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateIntegrationRequestValidationError) Reason added in v1.32.1

Reason function returns reason value.

type UpdateIntegrationResponse

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

func (*UpdateIntegrationResponse) Descriptor deprecated

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

Deprecated: Use UpdateIntegrationResponse.ProtoReflect.Descriptor instead.

func (*UpdateIntegrationResponse) GetIntegration

func (x *UpdateIntegrationResponse) GetIntegration() *Integration

func (*UpdateIntegrationResponse) ProtoMessage

func (*UpdateIntegrationResponse) ProtoMessage()

func (*UpdateIntegrationResponse) ProtoReflect

func (*UpdateIntegrationResponse) Reset

func (x *UpdateIntegrationResponse) Reset()

func (*UpdateIntegrationResponse) String

func (x *UpdateIntegrationResponse) String() string

func (*UpdateIntegrationResponse) Validate added in v1.32.1

func (m *UpdateIntegrationResponse) Validate() error

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

func (m *UpdateIntegrationResponse) ValidateAll() error

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

type UpdateIntegrationResponseMultiError added in v1.32.1

type UpdateIntegrationResponseMultiError []error

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

func (UpdateIntegrationResponseMultiError) AllErrors added in v1.32.1

AllErrors returns a list of validation violation errors.

func (UpdateIntegrationResponseMultiError) Error added in v1.32.1

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

type UpdateIntegrationResponseValidationError added in v1.32.1

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

UpdateIntegrationResponseValidationError is the validation error returned by UpdateIntegrationResponse.Validate if the designated constraints aren't met.

func (UpdateIntegrationResponseValidationError) Cause added in v1.32.1

Cause function returns cause value.

func (UpdateIntegrationResponseValidationError) Error added in v1.32.1

Error satisfies the builtin error interface

func (UpdateIntegrationResponseValidationError) ErrorName added in v1.32.1

ErrorName returns error name.

func (UpdateIntegrationResponseValidationError) Field added in v1.32.1

Field function returns field value.

func (UpdateIntegrationResponseValidationError) Key added in v1.32.1

Key function returns key value.

func (UpdateIntegrationResponseValidationError) Reason added in v1.32.1

Reason function returns reason value.

type Webhook added in v1.24.0

type Webhook struct {
	Url                     string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
	SendAuditLogEvents      bool   `protobuf:"varint,2,opt,name=send_audit_log_events,json=sendAuditLogEvents,proto3" json:"send_audit_log_events,omitempty"`
	SendAuthorizationEvents bool   `` /* 133-byte string literal not displayed */
	// HTTP headers to include in the webhook request.
	Headers []*Header `protobuf:"bytes,4,rep,name=headers,proto3" json:"headers,omitempty"`
	// provide a list of actions to filter for, e.g ["grant.requested", "grant.revoked"]
	FilterForActions []string `protobuf:"bytes,5,rep,name=filter_for_actions,json=filterForActions,proto3" json:"filter_for_actions,omitempty"`
	// contains filtered or unexported fields
}

func (*Webhook) Descriptor deprecated added in v1.24.0

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

Deprecated: Use Webhook.ProtoReflect.Descriptor instead.

func (*Webhook) GetFilterForActions added in v1.40.0

func (x *Webhook) GetFilterForActions() []string

func (*Webhook) GetHeaders added in v1.24.0

func (x *Webhook) GetHeaders() []*Header

func (*Webhook) GetSendAuditLogEvents added in v1.24.0

func (x *Webhook) GetSendAuditLogEvents() bool

func (*Webhook) GetSendAuthorizationEvents added in v1.24.0

func (x *Webhook) GetSendAuthorizationEvents() bool

func (*Webhook) GetUrl added in v1.24.0

func (x *Webhook) GetUrl() string

func (*Webhook) ProtoMessage added in v1.24.0

func (*Webhook) ProtoMessage()

func (*Webhook) ProtoReflect added in v1.24.0

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

func (*Webhook) Reset added in v1.24.0

func (x *Webhook) Reset()

func (*Webhook) String added in v1.24.0

func (x *Webhook) String() string

func (*Webhook) Validate added in v1.32.1

func (m *Webhook) Validate() error

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

func (m *Webhook) ValidateAll() error

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

type WebhookMultiError added in v1.32.1

type WebhookMultiError []error

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

func (WebhookMultiError) AllErrors added in v1.32.1

func (m WebhookMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (WebhookMultiError) Error added in v1.32.1

func (m WebhookMultiError) Error() string

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

type WebhookValidationError added in v1.32.1

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

WebhookValidationError is the validation error returned by Webhook.Validate if the designated constraints aren't met.

func (WebhookValidationError) Cause added in v1.32.1

func (e WebhookValidationError) Cause() error

Cause function returns cause value.

func (WebhookValidationError) Error added in v1.32.1

func (e WebhookValidationError) Error() string

Error satisfies the builtin error interface

func (WebhookValidationError) ErrorName added in v1.32.1

func (e WebhookValidationError) ErrorName() string

ErrorName returns error name.

func (WebhookValidationError) Field added in v1.32.1

func (e WebhookValidationError) Field() string

Field function returns field value.

func (WebhookValidationError) Key added in v1.32.1

func (e WebhookValidationError) Key() bool

Key function returns key value.

func (WebhookValidationError) Reason added in v1.32.1

func (e WebhookValidationError) Reason() string

Reason function returns reason value.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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