eventarcpb

package
v1.15.2 Latest Latest
Warning

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

Go to latest
Published: Mar 6, 2025 License: Apache-2.0 Imports: 14 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Channel_State_name = map[int32]string{
		0: "STATE_UNSPECIFIED",
		1: "PENDING",
		2: "ACTIVE",
		3: "INACTIVE",
	}
	Channel_State_value = map[string]int32{
		"STATE_UNSPECIFIED": 0,
		"PENDING":           1,
		"ACTIVE":            2,
		"INACTIVE":          3,
	}
)

Enum value maps for Channel_State.

View Source
var (
	LoggingConfig_LogSeverity_name = map[int32]string{
		0: "LOG_SEVERITY_UNSPECIFIED",
		1: "NONE",
		2: "DEBUG",
		3: "INFO",
		4: "NOTICE",
		5: "WARNING",
		6: "ERROR",
		7: "CRITICAL",
		8: "ALERT",
		9: "EMERGENCY",
	}
	LoggingConfig_LogSeverity_value = map[string]int32{
		"LOG_SEVERITY_UNSPECIFIED": 0,
		"NONE":                     1,
		"DEBUG":                    2,
		"INFO":                     3,
		"NOTICE":                   4,
		"WARNING":                  5,
		"ERROR":                    6,
		"CRITICAL":                 7,
		"ALERT":                    8,
		"EMERGENCY":                9,
	}
)

Enum value maps for LoggingConfig_LogSeverity.

View Source
var File_google_cloud_eventarc_v1_channel_connection_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_channel_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_discovery_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_enrollment_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_eventarc_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_google_api_source_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_google_channel_config_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_logging_config_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_message_bus_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_network_config_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_pipeline_proto protoreflect.FileDescriptor
View Source
var File_google_cloud_eventarc_v1_trigger_proto protoreflect.FileDescriptor

Functions

func RegisterEventarcServer

func RegisterEventarcServer(s *grpc.Server, srv EventarcServer)

Types

type Channel

type Channel struct {

	// Required. The resource name of the channel. Must be unique within the
	// location on the project and must be in
	// `projects/{project}/locations/{location}/channels/{channel_id}` format.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. Server assigned unique identifier for the channel. The value
	// is a UUID4 string and guaranteed to remain unchanged until the resource is
	// deleted.
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	// Output only. The creation time.
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The last-modified time.
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// The name of the event provider (e.g. Eventarc SaaS partner) associated
	// with the channel. This provider will be granted permissions to publish
	// events to the channel. Format:
	// `projects/{project}/locations/{location}/providers/{provider_id}`.
	Provider string `protobuf:"bytes,7,opt,name=provider,proto3" json:"provider,omitempty"`
	// Types that are assignable to Transport:
	//
	//	*Channel_PubsubTopic
	Transport isChannel_Transport `protobuf_oneof:"transport"`
	// Output only. The state of a Channel.
	State Channel_State `protobuf:"varint,9,opt,name=state,proto3,enum=google.cloud.eventarc.v1.Channel_State" json:"state,omitempty"`
	// Output only. The activation token for the channel. The token must be used
	// by the provider to register the channel for publishing.
	ActivationToken string `protobuf:"bytes,10,opt,name=activation_token,json=activationToken,proto3" json:"activation_token,omitempty"`
	// Resource name of a KMS crypto key (managed by the user) used to
	// encrypt/decrypt their event data.
	//
	// It must match the pattern
	// `projects/*/locations/*/keyRings/*/cryptoKeys/*`.
	CryptoKeyName string `protobuf:"bytes,11,opt,name=crypto_key_name,json=cryptoKeyName,proto3" json:"crypto_key_name,omitempty"`
	// Output only. Whether or not this Channel satisfies the requirements of
	// physical zone separation
	SatisfiesPzs bool `protobuf:"varint,12,opt,name=satisfies_pzs,json=satisfiesPzs,proto3" json:"satisfies_pzs,omitempty"`
	// contains filtered or unexported fields
}

A representation of the Channel resource. A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

func (*Channel) Descriptor deprecated

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

Deprecated: Use Channel.ProtoReflect.Descriptor instead.

func (*Channel) GetActivationToken

func (x *Channel) GetActivationToken() string

func (*Channel) GetCreateTime

func (x *Channel) GetCreateTime() *timestamppb.Timestamp

func (*Channel) GetCryptoKeyName added in v1.9.0

func (x *Channel) GetCryptoKeyName() string

func (*Channel) GetName

func (x *Channel) GetName() string

func (*Channel) GetProvider

func (x *Channel) GetProvider() string

func (*Channel) GetPubsubTopic

func (x *Channel) GetPubsubTopic() string

func (*Channel) GetSatisfiesPzs added in v1.15.0

func (x *Channel) GetSatisfiesPzs() bool

func (*Channel) GetState

func (x *Channel) GetState() Channel_State

func (*Channel) GetTransport

func (m *Channel) GetTransport() isChannel_Transport

func (*Channel) GetUid

func (x *Channel) GetUid() string

func (*Channel) GetUpdateTime

func (x *Channel) GetUpdateTime() *timestamppb.Timestamp

func (*Channel) ProtoMessage

func (*Channel) ProtoMessage()

func (*Channel) ProtoReflect

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

func (*Channel) Reset

func (x *Channel) Reset()

func (*Channel) String

func (x *Channel) String() string

type ChannelConnection

type ChannelConnection struct {

	// Required. The name of the connection.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. Server assigned ID of the resource.
	// The server guarantees uniqueness and immutability until deleted.
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	// Required. The name of the connected subscriber Channel.
	// This is a weak reference to avoid cross project and cross accounts
	// references. This must be in
	// `projects/{project}/location/{location}/channels/{channel_id}` format.
	Channel string `protobuf:"bytes,5,opt,name=channel,proto3" json:"channel,omitempty"`
	// Output only. The creation time.
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The last-modified time.
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// Input only. Activation token for the channel. The token will be used
	// during the creation of ChannelConnection to bind the channel with the
	// provider project. This field will not be stored in the provider resource.
	ActivationToken string `protobuf:"bytes,8,opt,name=activation_token,json=activationToken,proto3" json:"activation_token,omitempty"`
	// contains filtered or unexported fields
}

A representation of the ChannelConnection resource. A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

func (*ChannelConnection) Descriptor deprecated

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

Deprecated: Use ChannelConnection.ProtoReflect.Descriptor instead.

func (*ChannelConnection) GetActivationToken

func (x *ChannelConnection) GetActivationToken() string

func (*ChannelConnection) GetChannel

func (x *ChannelConnection) GetChannel() string

func (*ChannelConnection) GetCreateTime

func (x *ChannelConnection) GetCreateTime() *timestamppb.Timestamp

func (*ChannelConnection) GetName

func (x *ChannelConnection) GetName() string

func (*ChannelConnection) GetUid

func (x *ChannelConnection) GetUid() string

func (*ChannelConnection) GetUpdateTime

func (x *ChannelConnection) GetUpdateTime() *timestamppb.Timestamp

func (*ChannelConnection) ProtoMessage

func (*ChannelConnection) ProtoMessage()

func (*ChannelConnection) ProtoReflect

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

func (*ChannelConnection) Reset

func (x *ChannelConnection) Reset()

func (*ChannelConnection) String

func (x *ChannelConnection) String() string

type Channel_PubsubTopic

type Channel_PubsubTopic struct {
	// Output only. The name of the Pub/Sub topic created and managed by
	// Eventarc system as a transport for the event delivery. Format:
	// `projects/{project}/topics/{topic_id}`.
	PubsubTopic string `protobuf:"bytes,8,opt,name=pubsub_topic,json=pubsubTopic,proto3,oneof"`
}

type Channel_State

type Channel_State int32

State lists all the possible states of a Channel

const (
	// Default value. This value is unused.
	Channel_STATE_UNSPECIFIED Channel_State = 0
	// The PENDING state indicates that a Channel has been created successfully
	// and there is a new activation token available for the subscriber to use
	// to convey the Channel to the provider in order to create a Connection.
	Channel_PENDING Channel_State = 1
	// The ACTIVE state indicates that a Channel has been successfully
	// connected with the event provider.
	// An ACTIVE Channel is ready to receive and route events from the
	// event provider.
	Channel_ACTIVE Channel_State = 2
	// The INACTIVE state indicates that the Channel cannot receive events
	// permanently. There are two possible cases this state can happen:
	//
	//  1. The SaaS provider disconnected from this Channel.
	//  2. The Channel activation token has expired but the SaaS provider
	//     wasn't connected.
	//
	// To re-establish a Connection with a provider, the subscriber
	// should create a new Channel and give it to the provider.
	Channel_INACTIVE Channel_State = 3
)

func (Channel_State) Descriptor

func (Channel_State) Enum

func (x Channel_State) Enum() *Channel_State

func (Channel_State) EnumDescriptor deprecated

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

Deprecated: Use Channel_State.Descriptor instead.

func (Channel_State) Number

func (Channel_State) String

func (x Channel_State) String() string

func (Channel_State) Type

type CloudRun

type CloudRun struct {

	// Required. The name of the Cloud Run service being addressed. See
	// https://cloud.google.com/run/docs/reference/rest/v1/namespaces.services.
	//
	// Only services located in the same project as the trigger object
	// can be addressed.
	Service string `protobuf:"bytes,1,opt,name=service,proto3" json:"service,omitempty"`
	// Optional. The relative path on the Cloud Run service the events should be
	// sent to.
	//
	// The value must conform to the definition of a URI path segment (section 3.3
	// of RFC2396). Examples: "/route", "route", "route/subroute".
	Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
	// Required. The region the Cloud Run service is deployed in.
	Region string `protobuf:"bytes,3,opt,name=region,proto3" json:"region,omitempty"`
	// contains filtered or unexported fields
}

Represents a Cloud Run destination.

func (*CloudRun) Descriptor deprecated

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

Deprecated: Use CloudRun.ProtoReflect.Descriptor instead.

func (*CloudRun) GetPath

func (x *CloudRun) GetPath() string

func (*CloudRun) GetRegion

func (x *CloudRun) GetRegion() string

func (*CloudRun) GetService

func (x *CloudRun) GetService() string

func (*CloudRun) ProtoMessage

func (*CloudRun) ProtoMessage()

func (*CloudRun) ProtoReflect

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

func (*CloudRun) Reset

func (x *CloudRun) Reset()

func (*CloudRun) String

func (x *CloudRun) String() string

type CreateChannelConnectionRequest

type CreateChannelConnectionRequest struct {

	// Required. The parent collection in which to add this channel connection.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Required. Channel connection to create.
	ChannelConnection *ChannelConnection `protobuf:"bytes,2,opt,name=channel_connection,json=channelConnection,proto3" json:"channel_connection,omitempty"`
	// Required. The user-provided ID to be assigned to the channel connection.
	ChannelConnectionId string `protobuf:"bytes,3,opt,name=channel_connection_id,json=channelConnectionId,proto3" json:"channel_connection_id,omitempty"`
	// contains filtered or unexported fields
}

The request message for the CreateChannelConnection method.

func (*CreateChannelConnectionRequest) Descriptor deprecated

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

Deprecated: Use CreateChannelConnectionRequest.ProtoReflect.Descriptor instead.

func (*CreateChannelConnectionRequest) GetChannelConnection

func (x *CreateChannelConnectionRequest) GetChannelConnection() *ChannelConnection

func (*CreateChannelConnectionRequest) GetChannelConnectionId

func (x *CreateChannelConnectionRequest) GetChannelConnectionId() string

func (*CreateChannelConnectionRequest) GetParent

func (x *CreateChannelConnectionRequest) GetParent() string

func (*CreateChannelConnectionRequest) ProtoMessage

func (*CreateChannelConnectionRequest) ProtoMessage()

func (*CreateChannelConnectionRequest) ProtoReflect

func (*CreateChannelConnectionRequest) Reset

func (x *CreateChannelConnectionRequest) Reset()

func (*CreateChannelConnectionRequest) String

type CreateChannelRequest

type CreateChannelRequest struct {

	// Required. The parent collection in which to add this channel.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Required. The channel to create.
	Channel *Channel `protobuf:"bytes,2,opt,name=channel,proto3" json:"channel,omitempty"`
	// Required. The user-provided ID to be assigned to the channel.
	ChannelId string `protobuf:"bytes,3,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the CreateChannel method.

func (*CreateChannelRequest) Descriptor deprecated

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

Deprecated: Use CreateChannelRequest.ProtoReflect.Descriptor instead.

func (*CreateChannelRequest) GetChannel

func (x *CreateChannelRequest) GetChannel() *Channel

func (*CreateChannelRequest) GetChannelId

func (x *CreateChannelRequest) GetChannelId() string

func (*CreateChannelRequest) GetParent

func (x *CreateChannelRequest) GetParent() string

func (*CreateChannelRequest) GetValidateOnly

func (x *CreateChannelRequest) GetValidateOnly() bool

func (*CreateChannelRequest) ProtoMessage

func (*CreateChannelRequest) ProtoMessage()

func (*CreateChannelRequest) ProtoReflect

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

func (*CreateChannelRequest) Reset

func (x *CreateChannelRequest) Reset()

func (*CreateChannelRequest) String

func (x *CreateChannelRequest) String() string

type CreateEnrollmentRequest added in v1.15.0

type CreateEnrollmentRequest struct {

	// Required. The parent collection in which to add this enrollment.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Required. The enrollment to create.
	Enrollment *Enrollment `protobuf:"bytes,2,opt,name=enrollment,proto3" json:"enrollment,omitempty"`
	// Required. The user-provided ID to be assigned to the Enrollment. It should
	// match the format (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
	EnrollmentId string `protobuf:"bytes,3,opt,name=enrollment_id,json=enrollmentId,proto3" json:"enrollment_id,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the CreateEnrollment method.

func (*CreateEnrollmentRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use CreateEnrollmentRequest.ProtoReflect.Descriptor instead.

func (*CreateEnrollmentRequest) GetEnrollment added in v1.15.0

func (x *CreateEnrollmentRequest) GetEnrollment() *Enrollment

func (*CreateEnrollmentRequest) GetEnrollmentId added in v1.15.0

func (x *CreateEnrollmentRequest) GetEnrollmentId() string

func (*CreateEnrollmentRequest) GetParent added in v1.15.0

func (x *CreateEnrollmentRequest) GetParent() string

func (*CreateEnrollmentRequest) GetValidateOnly added in v1.15.0

func (x *CreateEnrollmentRequest) GetValidateOnly() bool

func (*CreateEnrollmentRequest) ProtoMessage added in v1.15.0

func (*CreateEnrollmentRequest) ProtoMessage()

func (*CreateEnrollmentRequest) ProtoReflect added in v1.15.0

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

func (*CreateEnrollmentRequest) Reset added in v1.15.0

func (x *CreateEnrollmentRequest) Reset()

func (*CreateEnrollmentRequest) String added in v1.15.0

func (x *CreateEnrollmentRequest) String() string

type CreateGoogleApiSourceRequest added in v1.15.0

type CreateGoogleApiSourceRequest struct {

	// Required. The parent collection in which to add this google api source.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Required. The google api source to create.
	GoogleApiSource *GoogleApiSource `protobuf:"bytes,2,opt,name=google_api_source,json=googleApiSource,proto3" json:"google_api_source,omitempty"`
	// Required. The user-provided ID to be assigned to the GoogleApiSource. It
	// should match the format (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$).
	GoogleApiSourceId string `protobuf:"bytes,3,opt,name=google_api_source_id,json=googleApiSourceId,proto3" json:"google_api_source_id,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the CreateGoogleApiSource method.

func (*CreateGoogleApiSourceRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use CreateGoogleApiSourceRequest.ProtoReflect.Descriptor instead.

func (*CreateGoogleApiSourceRequest) GetGoogleApiSource added in v1.15.0

func (x *CreateGoogleApiSourceRequest) GetGoogleApiSource() *GoogleApiSource

func (*CreateGoogleApiSourceRequest) GetGoogleApiSourceId added in v1.15.0

func (x *CreateGoogleApiSourceRequest) GetGoogleApiSourceId() string

func (*CreateGoogleApiSourceRequest) GetParent added in v1.15.0

func (x *CreateGoogleApiSourceRequest) GetParent() string

func (*CreateGoogleApiSourceRequest) GetValidateOnly added in v1.15.0

func (x *CreateGoogleApiSourceRequest) GetValidateOnly() bool

func (*CreateGoogleApiSourceRequest) ProtoMessage added in v1.15.0

func (*CreateGoogleApiSourceRequest) ProtoMessage()

func (*CreateGoogleApiSourceRequest) ProtoReflect added in v1.15.0

func (*CreateGoogleApiSourceRequest) Reset added in v1.15.0

func (x *CreateGoogleApiSourceRequest) Reset()

func (*CreateGoogleApiSourceRequest) String added in v1.15.0

type CreateMessageBusRequest added in v1.15.0

type CreateMessageBusRequest struct {

	// Required. The parent collection in which to add this message bus.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Required. The message bus to create.
	MessageBus *MessageBus `protobuf:"bytes,2,opt,name=message_bus,json=messageBus,proto3" json:"message_bus,omitempty"`
	// Required. The user-provided ID to be assigned to the MessageBus. It should
	// match the format (^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$)
	MessageBusId string `protobuf:"bytes,3,opt,name=message_bus_id,json=messageBusId,proto3" json:"message_bus_id,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the CreateMessageBus method.

func (*CreateMessageBusRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use CreateMessageBusRequest.ProtoReflect.Descriptor instead.

func (*CreateMessageBusRequest) GetMessageBus added in v1.15.0

func (x *CreateMessageBusRequest) GetMessageBus() *MessageBus

func (*CreateMessageBusRequest) GetMessageBusId added in v1.15.0

func (x *CreateMessageBusRequest) GetMessageBusId() string

func (*CreateMessageBusRequest) GetParent added in v1.15.0

func (x *CreateMessageBusRequest) GetParent() string

func (*CreateMessageBusRequest) GetValidateOnly added in v1.15.0

func (x *CreateMessageBusRequest) GetValidateOnly() bool

func (*CreateMessageBusRequest) ProtoMessage added in v1.15.0

func (*CreateMessageBusRequest) ProtoMessage()

func (*CreateMessageBusRequest) ProtoReflect added in v1.15.0

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

func (*CreateMessageBusRequest) Reset added in v1.15.0

func (x *CreateMessageBusRequest) Reset()

func (*CreateMessageBusRequest) String added in v1.15.0

func (x *CreateMessageBusRequest) String() string

type CreatePipelineRequest added in v1.15.0

type CreatePipelineRequest struct {

	// Required. The parent collection in which to add this pipeline.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Required. The pipeline to create.
	Pipeline *Pipeline `protobuf:"bytes,2,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// Required. The user-provided ID to be assigned to the Pipeline.
	PipelineId string `protobuf:"bytes,3,opt,name=pipeline_id,json=pipelineId,proto3" json:"pipeline_id,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the CreatePipeline method.

func (*CreatePipelineRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use CreatePipelineRequest.ProtoReflect.Descriptor instead.

func (*CreatePipelineRequest) GetParent added in v1.15.0

func (x *CreatePipelineRequest) GetParent() string

func (*CreatePipelineRequest) GetPipeline added in v1.15.0

func (x *CreatePipelineRequest) GetPipeline() *Pipeline

func (*CreatePipelineRequest) GetPipelineId added in v1.15.0

func (x *CreatePipelineRequest) GetPipelineId() string

func (*CreatePipelineRequest) GetValidateOnly added in v1.15.0

func (x *CreatePipelineRequest) GetValidateOnly() bool

func (*CreatePipelineRequest) ProtoMessage added in v1.15.0

func (*CreatePipelineRequest) ProtoMessage()

func (*CreatePipelineRequest) ProtoReflect added in v1.15.0

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

func (*CreatePipelineRequest) Reset added in v1.15.0

func (x *CreatePipelineRequest) Reset()

func (*CreatePipelineRequest) String added in v1.15.0

func (x *CreatePipelineRequest) String() string

type CreateTriggerRequest

type CreateTriggerRequest struct {

	// Required. The parent collection in which to add this trigger.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Required. The trigger to create.
	Trigger *Trigger `protobuf:"bytes,2,opt,name=trigger,proto3" json:"trigger,omitempty"`
	// Required. The user-provided ID to be assigned to the trigger.
	TriggerId string `protobuf:"bytes,3,opt,name=trigger_id,json=triggerId,proto3" json:"trigger_id,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the CreateTrigger method.

func (*CreateTriggerRequest) Descriptor deprecated

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

Deprecated: Use CreateTriggerRequest.ProtoReflect.Descriptor instead.

func (*CreateTriggerRequest) GetParent

func (x *CreateTriggerRequest) GetParent() string

func (*CreateTriggerRequest) GetTrigger

func (x *CreateTriggerRequest) GetTrigger() *Trigger

func (*CreateTriggerRequest) GetTriggerId

func (x *CreateTriggerRequest) GetTriggerId() string

func (*CreateTriggerRequest) GetValidateOnly

func (x *CreateTriggerRequest) GetValidateOnly() bool

func (*CreateTriggerRequest) ProtoMessage

func (*CreateTriggerRequest) ProtoMessage()

func (*CreateTriggerRequest) ProtoReflect

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

func (*CreateTriggerRequest) Reset

func (x *CreateTriggerRequest) Reset()

func (*CreateTriggerRequest) String

func (x *CreateTriggerRequest) String() string

type DeleteChannelConnectionRequest

type DeleteChannelConnectionRequest struct {

	// Required. The name of the channel connection to delete.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the DeleteChannelConnection method.

func (*DeleteChannelConnectionRequest) Descriptor deprecated

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

Deprecated: Use DeleteChannelConnectionRequest.ProtoReflect.Descriptor instead.

func (*DeleteChannelConnectionRequest) GetName

func (*DeleteChannelConnectionRequest) ProtoMessage

func (*DeleteChannelConnectionRequest) ProtoMessage()

func (*DeleteChannelConnectionRequest) ProtoReflect

func (*DeleteChannelConnectionRequest) Reset

func (x *DeleteChannelConnectionRequest) Reset()

func (*DeleteChannelConnectionRequest) String

type DeleteChannelRequest

type DeleteChannelRequest struct {

	// Required. The name of the channel to be deleted.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,2,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the DeleteChannel method.

func (*DeleteChannelRequest) Descriptor deprecated

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

Deprecated: Use DeleteChannelRequest.ProtoReflect.Descriptor instead.

func (*DeleteChannelRequest) GetName

func (x *DeleteChannelRequest) GetName() string

func (*DeleteChannelRequest) GetValidateOnly

func (x *DeleteChannelRequest) GetValidateOnly() bool

func (*DeleteChannelRequest) ProtoMessage

func (*DeleteChannelRequest) ProtoMessage()

func (*DeleteChannelRequest) ProtoReflect

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

func (*DeleteChannelRequest) Reset

func (x *DeleteChannelRequest) Reset()

func (*DeleteChannelRequest) String

func (x *DeleteChannelRequest) String() string

type DeleteEnrollmentRequest added in v1.15.0

type DeleteEnrollmentRequest struct {

	// Required. The name of the Enrollment to be deleted.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Optional. If provided, the Enrollment will only be deleted if the etag
	// matches the current etag on the resource.
	Etag string `protobuf:"bytes,2,opt,name=etag,proto3" json:"etag,omitempty"`
	// Optional. If set to true, and the Enrollment is not found, the request will
	// succeed but no action will be taken on the server.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the DeleteEnrollment method.

func (*DeleteEnrollmentRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use DeleteEnrollmentRequest.ProtoReflect.Descriptor instead.

func (*DeleteEnrollmentRequest) GetAllowMissing added in v1.15.0

func (x *DeleteEnrollmentRequest) GetAllowMissing() bool

func (*DeleteEnrollmentRequest) GetEtag added in v1.15.0

func (x *DeleteEnrollmentRequest) GetEtag() string

func (*DeleteEnrollmentRequest) GetName added in v1.15.0

func (x *DeleteEnrollmentRequest) GetName() string

func (*DeleteEnrollmentRequest) GetValidateOnly added in v1.15.0

func (x *DeleteEnrollmentRequest) GetValidateOnly() bool

func (*DeleteEnrollmentRequest) ProtoMessage added in v1.15.0

func (*DeleteEnrollmentRequest) ProtoMessage()

func (*DeleteEnrollmentRequest) ProtoReflect added in v1.15.0

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

func (*DeleteEnrollmentRequest) Reset added in v1.15.0

func (x *DeleteEnrollmentRequest) Reset()

func (*DeleteEnrollmentRequest) String added in v1.15.0

func (x *DeleteEnrollmentRequest) String() string

type DeleteGoogleApiSourceRequest added in v1.15.0

type DeleteGoogleApiSourceRequest struct {

	// Required. The name of the GoogleApiSource to be deleted.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Optional. If provided, the MessageBus will only be deleted if the etag
	// matches the current etag on the resource.
	Etag string `protobuf:"bytes,2,opt,name=etag,proto3" json:"etag,omitempty"`
	// Optional. If set to true, and the MessageBus is not found, the request will
	// succeed but no action will be taken on the server.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the DeleteGoogleApiSource method.

func (*DeleteGoogleApiSourceRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use DeleteGoogleApiSourceRequest.ProtoReflect.Descriptor instead.

func (*DeleteGoogleApiSourceRequest) GetAllowMissing added in v1.15.0

func (x *DeleteGoogleApiSourceRequest) GetAllowMissing() bool

func (*DeleteGoogleApiSourceRequest) GetEtag added in v1.15.0

func (x *DeleteGoogleApiSourceRequest) GetEtag() string

func (*DeleteGoogleApiSourceRequest) GetName added in v1.15.0

func (x *DeleteGoogleApiSourceRequest) GetName() string

func (*DeleteGoogleApiSourceRequest) GetValidateOnly added in v1.15.0

func (x *DeleteGoogleApiSourceRequest) GetValidateOnly() bool

func (*DeleteGoogleApiSourceRequest) ProtoMessage added in v1.15.0

func (*DeleteGoogleApiSourceRequest) ProtoMessage()

func (*DeleteGoogleApiSourceRequest) ProtoReflect added in v1.15.0

func (*DeleteGoogleApiSourceRequest) Reset added in v1.15.0

func (x *DeleteGoogleApiSourceRequest) Reset()

func (*DeleteGoogleApiSourceRequest) String added in v1.15.0

type DeleteMessageBusRequest added in v1.15.0

type DeleteMessageBusRequest struct {

	// Required. The name of the MessageBus to be deleted.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Optional. If provided, the MessageBus will only be deleted if the etag
	// matches the current etag on the resource.
	Etag string `protobuf:"bytes,2,opt,name=etag,proto3" json:"etag,omitempty"`
	// Optional. If set to true, and the MessageBus is not found, the request will
	// succeed but no action will be taken on the server.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the DeleteMessageBus method.

func (*DeleteMessageBusRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use DeleteMessageBusRequest.ProtoReflect.Descriptor instead.

func (*DeleteMessageBusRequest) GetAllowMissing added in v1.15.0

func (x *DeleteMessageBusRequest) GetAllowMissing() bool

func (*DeleteMessageBusRequest) GetEtag added in v1.15.0

func (x *DeleteMessageBusRequest) GetEtag() string

func (*DeleteMessageBusRequest) GetName added in v1.15.0

func (x *DeleteMessageBusRequest) GetName() string

func (*DeleteMessageBusRequest) GetValidateOnly added in v1.15.0

func (x *DeleteMessageBusRequest) GetValidateOnly() bool

func (*DeleteMessageBusRequest) ProtoMessage added in v1.15.0

func (*DeleteMessageBusRequest) ProtoMessage()

func (*DeleteMessageBusRequest) ProtoReflect added in v1.15.0

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

func (*DeleteMessageBusRequest) Reset added in v1.15.0

func (x *DeleteMessageBusRequest) Reset()

func (*DeleteMessageBusRequest) String added in v1.15.0

func (x *DeleteMessageBusRequest) String() string

type DeletePipelineRequest added in v1.15.0

type DeletePipelineRequest struct {

	// Required. The name of the Pipeline to be deleted.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Optional. If provided, the Pipeline will only be deleted if the etag
	// matches the current etag on the resource.
	Etag string `protobuf:"bytes,2,opt,name=etag,proto3" json:"etag,omitempty"`
	// Optional. If set to true, and the Pipeline is not found, the request will
	// succeed but no action will be taken on the server.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the DeletePipeline method.

func (*DeletePipelineRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use DeletePipelineRequest.ProtoReflect.Descriptor instead.

func (*DeletePipelineRequest) GetAllowMissing added in v1.15.0

func (x *DeletePipelineRequest) GetAllowMissing() bool

func (*DeletePipelineRequest) GetEtag added in v1.15.0

func (x *DeletePipelineRequest) GetEtag() string

func (*DeletePipelineRequest) GetName added in v1.15.0

func (x *DeletePipelineRequest) GetName() string

func (*DeletePipelineRequest) GetValidateOnly added in v1.15.0

func (x *DeletePipelineRequest) GetValidateOnly() bool

func (*DeletePipelineRequest) ProtoMessage added in v1.15.0

func (*DeletePipelineRequest) ProtoMessage()

func (*DeletePipelineRequest) ProtoReflect added in v1.15.0

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

func (*DeletePipelineRequest) Reset added in v1.15.0

func (x *DeletePipelineRequest) Reset()

func (*DeletePipelineRequest) String added in v1.15.0

func (x *DeletePipelineRequest) String() string

type DeleteTriggerRequest

type DeleteTriggerRequest struct {

	// Required. The name of the trigger to be deleted.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// If provided, the trigger will only be deleted if the etag matches the
	// current etag on the resource.
	Etag string `protobuf:"bytes,2,opt,name=etag,proto3" json:"etag,omitempty"`
	// If set to true, and the trigger is not found, the request will succeed
	// but no action will be taken on the server.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the DeleteTrigger method.

func (*DeleteTriggerRequest) Descriptor deprecated

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

Deprecated: Use DeleteTriggerRequest.ProtoReflect.Descriptor instead.

func (*DeleteTriggerRequest) GetAllowMissing

func (x *DeleteTriggerRequest) GetAllowMissing() bool

func (*DeleteTriggerRequest) GetEtag

func (x *DeleteTriggerRequest) GetEtag() string

func (*DeleteTriggerRequest) GetName

func (x *DeleteTriggerRequest) GetName() string

func (*DeleteTriggerRequest) GetValidateOnly

func (x *DeleteTriggerRequest) GetValidateOnly() bool

func (*DeleteTriggerRequest) ProtoMessage

func (*DeleteTriggerRequest) ProtoMessage()

func (*DeleteTriggerRequest) ProtoReflect

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

func (*DeleteTriggerRequest) Reset

func (x *DeleteTriggerRequest) Reset()

func (*DeleteTriggerRequest) String

func (x *DeleteTriggerRequest) String() string

type Destination

type Destination struct {

	// Types that are assignable to Descriptor_:
	//
	//	*Destination_CloudRun
	//	*Destination_CloudFunction
	//	*Destination_Gke
	//	*Destination_Workflow
	//	*Destination_HttpEndpoint
	Descriptor_ isDestination_Descriptor_ `protobuf_oneof:"descriptor"`
	// Optional. Network config is used to configure how Eventarc resolves and
	// connect to a destination.
	// This should only be used with HttpEndpoint destination type.
	NetworkConfig *NetworkConfig `protobuf:"bytes,6,opt,name=network_config,json=networkConfig,proto3" json:"network_config,omitempty"`
	// contains filtered or unexported fields
}

Represents a target of an invocation over HTTP.

func (*Destination) Descriptor deprecated

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

Deprecated: Use Destination.ProtoReflect.Descriptor instead.

func (*Destination) GetCloudFunction

func (x *Destination) GetCloudFunction() string

func (*Destination) GetCloudRun

func (x *Destination) GetCloudRun() *CloudRun

func (*Destination) GetDescriptor_

func (m *Destination) GetDescriptor_() isDestination_Descriptor_

func (*Destination) GetGke

func (x *Destination) GetGke() *GKE

func (*Destination) GetHttpEndpoint added in v1.15.0

func (x *Destination) GetHttpEndpoint() *HttpEndpoint

func (*Destination) GetNetworkConfig added in v1.15.0

func (x *Destination) GetNetworkConfig() *NetworkConfig

func (*Destination) GetWorkflow added in v1.9.0

func (x *Destination) GetWorkflow() string

func (*Destination) ProtoMessage

func (*Destination) ProtoMessage()

func (*Destination) ProtoReflect

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

func (*Destination) Reset

func (x *Destination) Reset()

func (*Destination) String

func (x *Destination) String() string

type Destination_CloudFunction

type Destination_CloudFunction struct {
	// The Cloud Function resource name. Cloud Functions V1 and V2 are
	// supported.
	// Format: `projects/{project}/locations/{location}/functions/{function}`
	//
	// This is a read-only field. Creating Cloud Functions V1/V2 triggers is
	// only supported via the Cloud Functions product. An error will be returned
	// if the user sets this value.
	CloudFunction string `protobuf:"bytes,2,opt,name=cloud_function,json=cloudFunction,proto3,oneof"`
}

type Destination_CloudRun

type Destination_CloudRun struct {
	// Cloud Run fully-managed resource that receives the events. The resource
	// should be in the same project as the trigger.
	CloudRun *CloudRun `protobuf:"bytes,1,opt,name=cloud_run,json=cloudRun,proto3,oneof"`
}

type Destination_Gke

type Destination_Gke struct {
	// A GKE service capable of receiving events. The service should be running
	// in the same project as the trigger.
	Gke *GKE `protobuf:"bytes,3,opt,name=gke,proto3,oneof"`
}

type Destination_HttpEndpoint added in v1.15.0

type Destination_HttpEndpoint struct {
	// An HTTP endpoint destination described by an URI.
	HttpEndpoint *HttpEndpoint `protobuf:"bytes,5,opt,name=http_endpoint,json=httpEndpoint,proto3,oneof"`
}

type Destination_Workflow added in v1.9.0

type Destination_Workflow struct {
	// The resource name of the Workflow whose Executions are triggered by
	// the events. The Workflow resource should be deployed in the same project
	// as the trigger.
	// Format: `projects/{project}/locations/{location}/workflows/{workflow}`
	Workflow string `protobuf:"bytes,4,opt,name=workflow,proto3,oneof"`
}

type Enrollment added in v1.15.0

type Enrollment struct {

	// Identifier. Resource name of the form
	// projects/{project}/locations/{location}/enrollments/{enrollment}
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. Server assigned unique identifier for the channel. The value
	// is a UUID4 string and guaranteed to remain unchanged until the resource is
	// deleted.
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	// Output only. This checksum is computed by the server based on the value of
	// other fields, and might be sent only on update and delete requests to
	// ensure that the client has an up-to-date value before proceeding.
	Etag string `protobuf:"bytes,3,opt,name=etag,proto3" json:"etag,omitempty"`
	// Output only. The creation time.
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The last-modified time.
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// Optional. Resource labels.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Optional. Resource annotations.
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	// Optional. Resource display name.
	DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// Required. A CEL expression identifying which messages this enrollment
	// applies to.
	CelMatch string `protobuf:"bytes,9,opt,name=cel_match,json=celMatch,proto3" json:"cel_match,omitempty"`
	// Required. Resource name of the message bus identifying the source of the
	// messages. It matches the form
	// projects/{project}/locations/{location}/messageBuses/{messageBus}.
	MessageBus string `protobuf:"bytes,10,opt,name=message_bus,json=messageBus,proto3" json:"message_bus,omitempty"`
	// Required. Destination is the Pipeline that the Enrollment is delivering to.
	// It must point to the full resource name of a Pipeline. Format:
	// "projects/{PROJECT_ID}/locations/{region}/pipelines/{PIPELINE_ID)"
	Destination string `protobuf:"bytes,11,opt,name=destination,proto3" json:"destination,omitempty"`
	// contains filtered or unexported fields
}

An enrollment represents a subscription for messages on a particular message bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

func (*Enrollment) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Enrollment.ProtoReflect.Descriptor instead.

func (*Enrollment) GetAnnotations added in v1.15.0

func (x *Enrollment) GetAnnotations() map[string]string

func (*Enrollment) GetCelMatch added in v1.15.0

func (x *Enrollment) GetCelMatch() string

func (*Enrollment) GetCreateTime added in v1.15.0

func (x *Enrollment) GetCreateTime() *timestamppb.Timestamp

func (*Enrollment) GetDestination added in v1.15.0

func (x *Enrollment) GetDestination() string

func (*Enrollment) GetDisplayName added in v1.15.0

func (x *Enrollment) GetDisplayName() string

func (*Enrollment) GetEtag added in v1.15.0

func (x *Enrollment) GetEtag() string

func (*Enrollment) GetLabels added in v1.15.0

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

func (*Enrollment) GetMessageBus added in v1.15.0

func (x *Enrollment) GetMessageBus() string

func (*Enrollment) GetName added in v1.15.0

func (x *Enrollment) GetName() string

func (*Enrollment) GetUid added in v1.15.0

func (x *Enrollment) GetUid() string

func (*Enrollment) GetUpdateTime added in v1.15.0

func (x *Enrollment) GetUpdateTime() *timestamppb.Timestamp

func (*Enrollment) ProtoMessage added in v1.15.0

func (*Enrollment) ProtoMessage()

func (*Enrollment) ProtoReflect added in v1.15.0

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

func (*Enrollment) Reset added in v1.15.0

func (x *Enrollment) Reset()

func (*Enrollment) String added in v1.15.0

func (x *Enrollment) String() string

type EventFilter

type EventFilter struct {

	// Required. The name of a CloudEvents attribute. Currently, only a subset of
	// attributes are supported for filtering. You can [retrieve a specific
	// provider's supported event
	// types](/eventarc/docs/list-providers#describe-provider).
	//
	// All triggers MUST provide a filter for the 'type' attribute.
	Attribute string `protobuf:"bytes,1,opt,name=attribute,proto3" json:"attribute,omitempty"`
	// Required. The value for the attribute.
	Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// Optional. The operator used for matching the events with the value of the
	// filter. If not specified, only events that have an exact key-value pair
	// specified in the filter are matched. The allowed values are `path_pattern`
	// and `match-path-pattern`. `path_pattern` is only allowed for GCFv1
	// triggers.
	Operator string `protobuf:"bytes,3,opt,name=operator,proto3" json:"operator,omitempty"`
	// contains filtered or unexported fields
}

Filters events based on exact matches on the CloudEvents attributes.

func (*EventFilter) Descriptor deprecated

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

Deprecated: Use EventFilter.ProtoReflect.Descriptor instead.

func (*EventFilter) GetAttribute

func (x *EventFilter) GetAttribute() string

func (*EventFilter) GetOperator

func (x *EventFilter) GetOperator() string

func (*EventFilter) GetValue

func (x *EventFilter) GetValue() string

func (*EventFilter) ProtoMessage

func (*EventFilter) ProtoMessage()

func (*EventFilter) ProtoReflect

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

func (*EventFilter) Reset

func (x *EventFilter) Reset()

func (*EventFilter) String

func (x *EventFilter) String() string

type EventType

type EventType struct {

	// Output only. The full name of the event type (for example,
	// "google.cloud.storage.object.v1.finalized"). In the form of
	// {provider-specific-prefix}.{resource}.{version}.{verb}. Types MUST be
	// versioned and event schemas are guaranteed to remain backward compatible
	// within one version. Note that event type versions and API versions do not
	// need to match.
	Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// Output only. Human friendly description of what the event type is about.
	// For example "Bucket created in Cloud Storage".
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// Output only. Filtering attributes for the event type.
	FilteringAttributes []*FilteringAttribute `protobuf:"bytes,3,rep,name=filtering_attributes,json=filteringAttributes,proto3" json:"filtering_attributes,omitempty"`
	// Output only. URI for the event schema.
	// For example
	// "https://github.com/googleapis/google-cloudevents/blob/master/proto/google/events/cloud/storage/v1/events.proto"
	EventSchemaUri string `protobuf:"bytes,4,opt,name=event_schema_uri,json=eventSchemaUri,proto3" json:"event_schema_uri,omitempty"`
	// contains filtered or unexported fields
}

A representation of the event type resource.

func (*EventType) Descriptor deprecated

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

Deprecated: Use EventType.ProtoReflect.Descriptor instead.

func (*EventType) GetDescription

func (x *EventType) GetDescription() string

func (*EventType) GetEventSchemaUri

func (x *EventType) GetEventSchemaUri() string

func (*EventType) GetFilteringAttributes

func (x *EventType) GetFilteringAttributes() []*FilteringAttribute

func (*EventType) GetType

func (x *EventType) GetType() string

func (*EventType) ProtoMessage

func (*EventType) ProtoMessage()

func (*EventType) ProtoReflect

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

func (*EventType) Reset

func (x *EventType) Reset()

func (*EventType) String

func (x *EventType) String() string

type EventarcClient

type EventarcClient interface {
	// Get a single trigger.
	GetTrigger(ctx context.Context, in *GetTriggerRequest, opts ...grpc.CallOption) (*Trigger, error)
	// List triggers.
	ListTriggers(ctx context.Context, in *ListTriggersRequest, opts ...grpc.CallOption) (*ListTriggersResponse, error)
	// Create a new trigger in a particular project and location.
	CreateTrigger(ctx context.Context, in *CreateTriggerRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Update a single trigger.
	UpdateTrigger(ctx context.Context, in *UpdateTriggerRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Delete a single trigger.
	DeleteTrigger(ctx context.Context, in *DeleteTriggerRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Get a single Channel.
	GetChannel(ctx context.Context, in *GetChannelRequest, opts ...grpc.CallOption) (*Channel, error)
	// List channels.
	ListChannels(ctx context.Context, in *ListChannelsRequest, opts ...grpc.CallOption) (*ListChannelsResponse, error)
	// Create a new channel in a particular project and location.
	CreateChannel(ctx context.Context, in *CreateChannelRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Update a single channel.
	UpdateChannel(ctx context.Context, in *UpdateChannelRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Delete a single channel.
	DeleteChannel(ctx context.Context, in *DeleteChannelRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Get a single Provider.
	GetProvider(ctx context.Context, in *GetProviderRequest, opts ...grpc.CallOption) (*Provider, error)
	// List providers.
	ListProviders(ctx context.Context, in *ListProvidersRequest, opts ...grpc.CallOption) (*ListProvidersResponse, error)
	// Get a single ChannelConnection.
	GetChannelConnection(ctx context.Context, in *GetChannelConnectionRequest, opts ...grpc.CallOption) (*ChannelConnection, error)
	// List channel connections.
	ListChannelConnections(ctx context.Context, in *ListChannelConnectionsRequest, opts ...grpc.CallOption) (*ListChannelConnectionsResponse, error)
	// Create a new ChannelConnection in a particular project and location.
	CreateChannelConnection(ctx context.Context, in *CreateChannelConnectionRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Delete a single ChannelConnection.
	DeleteChannelConnection(ctx context.Context, in *DeleteChannelConnectionRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Get a GoogleChannelConfig
	GetGoogleChannelConfig(ctx context.Context, in *GetGoogleChannelConfigRequest, opts ...grpc.CallOption) (*GoogleChannelConfig, error)
	// Update a single GoogleChannelConfig
	UpdateGoogleChannelConfig(ctx context.Context, in *UpdateGoogleChannelConfigRequest, opts ...grpc.CallOption) (*GoogleChannelConfig, error)
	// Get a single MessageBus.
	GetMessageBus(ctx context.Context, in *GetMessageBusRequest, opts ...grpc.CallOption) (*MessageBus, error)
	// List message buses.
	ListMessageBuses(ctx context.Context, in *ListMessageBusesRequest, opts ...grpc.CallOption) (*ListMessageBusesResponse, error)
	// List message bus enrollments.
	ListMessageBusEnrollments(ctx context.Context, in *ListMessageBusEnrollmentsRequest, opts ...grpc.CallOption) (*ListMessageBusEnrollmentsResponse, error)
	// Create a new MessageBus in a particular project and location.
	CreateMessageBus(ctx context.Context, in *CreateMessageBusRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Update a single message bus.
	UpdateMessageBus(ctx context.Context, in *UpdateMessageBusRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Delete a single message bus.
	DeleteMessageBus(ctx context.Context, in *DeleteMessageBusRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Get a single Enrollment.
	GetEnrollment(ctx context.Context, in *GetEnrollmentRequest, opts ...grpc.CallOption) (*Enrollment, error)
	// List Enrollments.
	ListEnrollments(ctx context.Context, in *ListEnrollmentsRequest, opts ...grpc.CallOption) (*ListEnrollmentsResponse, error)
	// Create a new Enrollment in a particular project and location.
	CreateEnrollment(ctx context.Context, in *CreateEnrollmentRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Update a single Enrollment.
	UpdateEnrollment(ctx context.Context, in *UpdateEnrollmentRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Delete a single Enrollment.
	DeleteEnrollment(ctx context.Context, in *DeleteEnrollmentRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Get a single Pipeline.
	GetPipeline(ctx context.Context, in *GetPipelineRequest, opts ...grpc.CallOption) (*Pipeline, error)
	// List pipelines.
	ListPipelines(ctx context.Context, in *ListPipelinesRequest, opts ...grpc.CallOption) (*ListPipelinesResponse, error)
	// Create a new Pipeline in a particular project and location.
	CreatePipeline(ctx context.Context, in *CreatePipelineRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Update a single pipeline.
	UpdatePipeline(ctx context.Context, in *UpdatePipelineRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Delete a single pipeline.
	DeletePipeline(ctx context.Context, in *DeletePipelineRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Get a single GoogleApiSource.
	GetGoogleApiSource(ctx context.Context, in *GetGoogleApiSourceRequest, opts ...grpc.CallOption) (*GoogleApiSource, error)
	// List GoogleApiSources.
	ListGoogleApiSources(ctx context.Context, in *ListGoogleApiSourcesRequest, opts ...grpc.CallOption) (*ListGoogleApiSourcesResponse, error)
	// Create a new GoogleApiSource in a particular project and location.
	CreateGoogleApiSource(ctx context.Context, in *CreateGoogleApiSourceRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Update a single GoogleApiSource.
	UpdateGoogleApiSource(ctx context.Context, in *UpdateGoogleApiSourceRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
	// Delete a single GoogleApiSource.
	DeleteGoogleApiSource(ctx context.Context, in *DeleteGoogleApiSourceRequest, opts ...grpc.CallOption) (*longrunningpb.Operation, error)
}

EventarcClient is the client API for Eventarc service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewEventarcClient

func NewEventarcClient(cc grpc.ClientConnInterface) EventarcClient

type EventarcServer

type EventarcServer interface {
	// Get a single trigger.
	GetTrigger(context.Context, *GetTriggerRequest) (*Trigger, error)
	// List triggers.
	ListTriggers(context.Context, *ListTriggersRequest) (*ListTriggersResponse, error)
	// Create a new trigger in a particular project and location.
	CreateTrigger(context.Context, *CreateTriggerRequest) (*longrunningpb.Operation, error)
	// Update a single trigger.
	UpdateTrigger(context.Context, *UpdateTriggerRequest) (*longrunningpb.Operation, error)
	// Delete a single trigger.
	DeleteTrigger(context.Context, *DeleteTriggerRequest) (*longrunningpb.Operation, error)
	// Get a single Channel.
	GetChannel(context.Context, *GetChannelRequest) (*Channel, error)
	// List channels.
	ListChannels(context.Context, *ListChannelsRequest) (*ListChannelsResponse, error)
	// Create a new channel in a particular project and location.
	CreateChannel(context.Context, *CreateChannelRequest) (*longrunningpb.Operation, error)
	// Update a single channel.
	UpdateChannel(context.Context, *UpdateChannelRequest) (*longrunningpb.Operation, error)
	// Delete a single channel.
	DeleteChannel(context.Context, *DeleteChannelRequest) (*longrunningpb.Operation, error)
	// Get a single Provider.
	GetProvider(context.Context, *GetProviderRequest) (*Provider, error)
	// List providers.
	ListProviders(context.Context, *ListProvidersRequest) (*ListProvidersResponse, error)
	// Get a single ChannelConnection.
	GetChannelConnection(context.Context, *GetChannelConnectionRequest) (*ChannelConnection, error)
	// List channel connections.
	ListChannelConnections(context.Context, *ListChannelConnectionsRequest) (*ListChannelConnectionsResponse, error)
	// Create a new ChannelConnection in a particular project and location.
	CreateChannelConnection(context.Context, *CreateChannelConnectionRequest) (*longrunningpb.Operation, error)
	// Delete a single ChannelConnection.
	DeleteChannelConnection(context.Context, *DeleteChannelConnectionRequest) (*longrunningpb.Operation, error)
	// Get a GoogleChannelConfig
	GetGoogleChannelConfig(context.Context, *GetGoogleChannelConfigRequest) (*GoogleChannelConfig, error)
	// Update a single GoogleChannelConfig
	UpdateGoogleChannelConfig(context.Context, *UpdateGoogleChannelConfigRequest) (*GoogleChannelConfig, error)
	// Get a single MessageBus.
	GetMessageBus(context.Context, *GetMessageBusRequest) (*MessageBus, error)
	// List message buses.
	ListMessageBuses(context.Context, *ListMessageBusesRequest) (*ListMessageBusesResponse, error)
	// List message bus enrollments.
	ListMessageBusEnrollments(context.Context, *ListMessageBusEnrollmentsRequest) (*ListMessageBusEnrollmentsResponse, error)
	// Create a new MessageBus in a particular project and location.
	CreateMessageBus(context.Context, *CreateMessageBusRequest) (*longrunningpb.Operation, error)
	// Update a single message bus.
	UpdateMessageBus(context.Context, *UpdateMessageBusRequest) (*longrunningpb.Operation, error)
	// Delete a single message bus.
	DeleteMessageBus(context.Context, *DeleteMessageBusRequest) (*longrunningpb.Operation, error)
	// Get a single Enrollment.
	GetEnrollment(context.Context, *GetEnrollmentRequest) (*Enrollment, error)
	// List Enrollments.
	ListEnrollments(context.Context, *ListEnrollmentsRequest) (*ListEnrollmentsResponse, error)
	// Create a new Enrollment in a particular project and location.
	CreateEnrollment(context.Context, *CreateEnrollmentRequest) (*longrunningpb.Operation, error)
	// Update a single Enrollment.
	UpdateEnrollment(context.Context, *UpdateEnrollmentRequest) (*longrunningpb.Operation, error)
	// Delete a single Enrollment.
	DeleteEnrollment(context.Context, *DeleteEnrollmentRequest) (*longrunningpb.Operation, error)
	// Get a single Pipeline.
	GetPipeline(context.Context, *GetPipelineRequest) (*Pipeline, error)
	// List pipelines.
	ListPipelines(context.Context, *ListPipelinesRequest) (*ListPipelinesResponse, error)
	// Create a new Pipeline in a particular project and location.
	CreatePipeline(context.Context, *CreatePipelineRequest) (*longrunningpb.Operation, error)
	// Update a single pipeline.
	UpdatePipeline(context.Context, *UpdatePipelineRequest) (*longrunningpb.Operation, error)
	// Delete a single pipeline.
	DeletePipeline(context.Context, *DeletePipelineRequest) (*longrunningpb.Operation, error)
	// Get a single GoogleApiSource.
	GetGoogleApiSource(context.Context, *GetGoogleApiSourceRequest) (*GoogleApiSource, error)
	// List GoogleApiSources.
	ListGoogleApiSources(context.Context, *ListGoogleApiSourcesRequest) (*ListGoogleApiSourcesResponse, error)
	// Create a new GoogleApiSource in a particular project and location.
	CreateGoogleApiSource(context.Context, *CreateGoogleApiSourceRequest) (*longrunningpb.Operation, error)
	// Update a single GoogleApiSource.
	UpdateGoogleApiSource(context.Context, *UpdateGoogleApiSourceRequest) (*longrunningpb.Operation, error)
	// Delete a single GoogleApiSource.
	DeleteGoogleApiSource(context.Context, *DeleteGoogleApiSourceRequest) (*longrunningpb.Operation, error)
}

EventarcServer is the server API for Eventarc service.

type FilteringAttribute

type FilteringAttribute struct {

	// Output only. Attribute used for filtering the event type.
	Attribute string `protobuf:"bytes,1,opt,name=attribute,proto3" json:"attribute,omitempty"`
	// Output only. Description of the purpose of the attribute.
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// Output only. If true, the triggers for this provider should always specify
	// a filter on these attributes. Trigger creation will fail otherwise.
	Required bool `protobuf:"varint,3,opt,name=required,proto3" json:"required,omitempty"`
	// Output only. If true, the attribute accepts matching expressions in the
	// Eventarc PathPattern format.
	PathPatternSupported bool `protobuf:"varint,4,opt,name=path_pattern_supported,json=pathPatternSupported,proto3" json:"path_pattern_supported,omitempty"`
	// contains filtered or unexported fields
}

A representation of the FilteringAttribute resource. Filtering attributes are per event type.

func (*FilteringAttribute) Descriptor deprecated

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

Deprecated: Use FilteringAttribute.ProtoReflect.Descriptor instead.

func (*FilteringAttribute) GetAttribute

func (x *FilteringAttribute) GetAttribute() string

func (*FilteringAttribute) GetDescription

func (x *FilteringAttribute) GetDescription() string

func (*FilteringAttribute) GetPathPatternSupported

func (x *FilteringAttribute) GetPathPatternSupported() bool

func (*FilteringAttribute) GetRequired

func (x *FilteringAttribute) GetRequired() bool

func (*FilteringAttribute) ProtoMessage

func (*FilteringAttribute) ProtoMessage()

func (*FilteringAttribute) ProtoReflect

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

func (*FilteringAttribute) Reset

func (x *FilteringAttribute) Reset()

func (*FilteringAttribute) String

func (x *FilteringAttribute) String() string

type GKE

type GKE struct {

	// Required. The name of the cluster the GKE service is running in. The
	// cluster must be running in the same project as the trigger being created.
	Cluster string `protobuf:"bytes,1,opt,name=cluster,proto3" json:"cluster,omitempty"`
	// Required. The name of the Google Compute Engine in which the cluster
	// resides, which can either be compute zone (for example, us-central1-a) for
	// the zonal clusters or region (for example, us-central1) for regional
	// clusters.
	Location string `protobuf:"bytes,2,opt,name=location,proto3" json:"location,omitempty"`
	// Required. The namespace the GKE service is running in.
	Namespace string `protobuf:"bytes,3,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// Required. Name of the GKE service.
	Service string `protobuf:"bytes,4,opt,name=service,proto3" json:"service,omitempty"`
	// Optional. The relative path on the GKE service the events should be sent
	// to.
	//
	// The value must conform to the definition of a URI path segment (section 3.3
	// of RFC2396). Examples: "/route", "route", "route/subroute".
	Path string `protobuf:"bytes,5,opt,name=path,proto3" json:"path,omitempty"`
	// contains filtered or unexported fields
}

Represents a GKE destination.

func (*GKE) Descriptor deprecated

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

Deprecated: Use GKE.ProtoReflect.Descriptor instead.

func (*GKE) GetCluster

func (x *GKE) GetCluster() string

func (*GKE) GetLocation

func (x *GKE) GetLocation() string

func (*GKE) GetNamespace

func (x *GKE) GetNamespace() string

func (*GKE) GetPath

func (x *GKE) GetPath() string

func (*GKE) GetService

func (x *GKE) GetService() string

func (*GKE) ProtoMessage

func (*GKE) ProtoMessage()

func (*GKE) ProtoReflect

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

func (*GKE) Reset

func (x *GKE) Reset()

func (*GKE) String

func (x *GKE) String() string

type GetChannelConnectionRequest

type GetChannelConnectionRequest struct {

	// Required. The name of the channel connection to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetChannelConnection method.

func (*GetChannelConnectionRequest) Descriptor deprecated

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

Deprecated: Use GetChannelConnectionRequest.ProtoReflect.Descriptor instead.

func (*GetChannelConnectionRequest) GetName

func (x *GetChannelConnectionRequest) GetName() string

func (*GetChannelConnectionRequest) ProtoMessage

func (*GetChannelConnectionRequest) ProtoMessage()

func (*GetChannelConnectionRequest) ProtoReflect

func (*GetChannelConnectionRequest) Reset

func (x *GetChannelConnectionRequest) Reset()

func (*GetChannelConnectionRequest) String

func (x *GetChannelConnectionRequest) String() string

type GetChannelRequest

type GetChannelRequest struct {

	// Required. The name of the channel to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetChannel method.

func (*GetChannelRequest) Descriptor deprecated

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

Deprecated: Use GetChannelRequest.ProtoReflect.Descriptor instead.

func (*GetChannelRequest) GetName

func (x *GetChannelRequest) GetName() string

func (*GetChannelRequest) ProtoMessage

func (*GetChannelRequest) ProtoMessage()

func (*GetChannelRequest) ProtoReflect

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

func (*GetChannelRequest) Reset

func (x *GetChannelRequest) Reset()

func (*GetChannelRequest) String

func (x *GetChannelRequest) String() string

type GetEnrollmentRequest added in v1.15.0

type GetEnrollmentRequest struct {

	// Required. The name of the Enrollment to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetEnrollment method.

func (*GetEnrollmentRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use GetEnrollmentRequest.ProtoReflect.Descriptor instead.

func (*GetEnrollmentRequest) GetName added in v1.15.0

func (x *GetEnrollmentRequest) GetName() string

func (*GetEnrollmentRequest) ProtoMessage added in v1.15.0

func (*GetEnrollmentRequest) ProtoMessage()

func (*GetEnrollmentRequest) ProtoReflect added in v1.15.0

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

func (*GetEnrollmentRequest) Reset added in v1.15.0

func (x *GetEnrollmentRequest) Reset()

func (*GetEnrollmentRequest) String added in v1.15.0

func (x *GetEnrollmentRequest) String() string

type GetGoogleApiSourceRequest added in v1.15.0

type GetGoogleApiSourceRequest struct {

	// Required. The name of the google api source to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetGoogleApiSource method.

func (*GetGoogleApiSourceRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use GetGoogleApiSourceRequest.ProtoReflect.Descriptor instead.

func (*GetGoogleApiSourceRequest) GetName added in v1.15.0

func (x *GetGoogleApiSourceRequest) GetName() string

func (*GetGoogleApiSourceRequest) ProtoMessage added in v1.15.0

func (*GetGoogleApiSourceRequest) ProtoMessage()

func (*GetGoogleApiSourceRequest) ProtoReflect added in v1.15.0

func (*GetGoogleApiSourceRequest) Reset added in v1.15.0

func (x *GetGoogleApiSourceRequest) Reset()

func (*GetGoogleApiSourceRequest) String added in v1.15.0

func (x *GetGoogleApiSourceRequest) String() string

type GetGoogleChannelConfigRequest added in v1.9.0

type GetGoogleChannelConfigRequest struct {

	// Required. The name of the config to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetGoogleChannelConfig method.

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

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

Deprecated: Use GetGoogleChannelConfigRequest.ProtoReflect.Descriptor instead.

func (*GetGoogleChannelConfigRequest) GetName added in v1.9.0

func (*GetGoogleChannelConfigRequest) ProtoMessage added in v1.9.0

func (*GetGoogleChannelConfigRequest) ProtoMessage()

func (*GetGoogleChannelConfigRequest) ProtoReflect added in v1.9.0

func (*GetGoogleChannelConfigRequest) Reset added in v1.9.0

func (x *GetGoogleChannelConfigRequest) Reset()

func (*GetGoogleChannelConfigRequest) String added in v1.9.0

type GetMessageBusRequest added in v1.15.0

type GetMessageBusRequest struct {

	// Required. The name of the message bus to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetMessageBus method.

func (*GetMessageBusRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use GetMessageBusRequest.ProtoReflect.Descriptor instead.

func (*GetMessageBusRequest) GetName added in v1.15.0

func (x *GetMessageBusRequest) GetName() string

func (*GetMessageBusRequest) ProtoMessage added in v1.15.0

func (*GetMessageBusRequest) ProtoMessage()

func (*GetMessageBusRequest) ProtoReflect added in v1.15.0

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

func (*GetMessageBusRequest) Reset added in v1.15.0

func (x *GetMessageBusRequest) Reset()

func (*GetMessageBusRequest) String added in v1.15.0

func (x *GetMessageBusRequest) String() string

type GetPipelineRequest added in v1.15.0

type GetPipelineRequest struct {

	// Required. The name of the pipeline to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetPipeline method.

func (*GetPipelineRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use GetPipelineRequest.ProtoReflect.Descriptor instead.

func (*GetPipelineRequest) GetName added in v1.15.0

func (x *GetPipelineRequest) GetName() string

func (*GetPipelineRequest) ProtoMessage added in v1.15.0

func (*GetPipelineRequest) ProtoMessage()

func (*GetPipelineRequest) ProtoReflect added in v1.15.0

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

func (*GetPipelineRequest) Reset added in v1.15.0

func (x *GetPipelineRequest) Reset()

func (*GetPipelineRequest) String added in v1.15.0

func (x *GetPipelineRequest) String() string

type GetProviderRequest

type GetProviderRequest struct {

	// Required. The name of the provider to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetProvider method.

func (*GetProviderRequest) Descriptor deprecated

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

Deprecated: Use GetProviderRequest.ProtoReflect.Descriptor instead.

func (*GetProviderRequest) GetName

func (x *GetProviderRequest) GetName() string

func (*GetProviderRequest) ProtoMessage

func (*GetProviderRequest) ProtoMessage()

func (*GetProviderRequest) ProtoReflect

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

func (*GetProviderRequest) Reset

func (x *GetProviderRequest) Reset()

func (*GetProviderRequest) String

func (x *GetProviderRequest) String() string

type GetTriggerRequest

type GetTriggerRequest struct {

	// Required. The name of the trigger to get.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

The request message for the GetTrigger method.

func (*GetTriggerRequest) Descriptor deprecated

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

Deprecated: Use GetTriggerRequest.ProtoReflect.Descriptor instead.

func (*GetTriggerRequest) GetName

func (x *GetTriggerRequest) GetName() string

func (*GetTriggerRequest) ProtoMessage

func (*GetTriggerRequest) ProtoMessage()

func (*GetTriggerRequest) ProtoReflect

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

func (*GetTriggerRequest) Reset

func (x *GetTriggerRequest) Reset()

func (*GetTriggerRequest) String

func (x *GetTriggerRequest) String() string

type GoogleApiSource added in v1.15.0

type GoogleApiSource struct {

	// Identifier. Resource name of the form
	// projects/{project}/locations/{location}/googleApiSources/{google_api_source}
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. Server assigned unique identifier for the channel. The value
	// is a UUID4 string and guaranteed to remain unchanged until the resource is
	// deleted.
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	// Output only. This checksum is computed by the server based on the value of
	// other fields, and might be sent only on update and delete requests to
	// ensure that the client has an up-to-date value before proceeding.
	Etag string `protobuf:"bytes,3,opt,name=etag,proto3" json:"etag,omitempty"`
	// Output only. The creation time.
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The last-modified time.
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// Optional. Resource labels.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Optional. Resource annotations.
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	// Optional. Resource display name.
	DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// Required. Destination is the message bus that the GoogleApiSource is
	// delivering to. It must be point to the full resource name of a MessageBus.
	// Format:
	// "projects/{PROJECT_ID}/locations/{region}/messagesBuses/{MESSAGE_BUS_ID)
	Destination string `protobuf:"bytes,9,opt,name=destination,proto3" json:"destination,omitempty"`
	// Optional. Resource name of a KMS crypto key (managed by the user) used to
	// encrypt/decrypt their event data.
	//
	// It must match the pattern
	// `projects/*/locations/*/keyRings/*/cryptoKeys/*`.
	CryptoKeyName string `protobuf:"bytes,10,opt,name=crypto_key_name,json=cryptoKeyName,proto3" json:"crypto_key_name,omitempty"`
	// Optional. Config to control Platform logging for the GoogleApiSource.
	LoggingConfig *LoggingConfig `protobuf:"bytes,11,opt,name=logging_config,json=loggingConfig,proto3" json:"logging_config,omitempty"`
	// contains filtered or unexported fields
}

A GoogleApiSource represents a subscription of 1P events from a MessageBus.

func (*GoogleApiSource) Descriptor deprecated added in v1.15.0

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

Deprecated: Use GoogleApiSource.ProtoReflect.Descriptor instead.

func (*GoogleApiSource) GetAnnotations added in v1.15.0

func (x *GoogleApiSource) GetAnnotations() map[string]string

func (*GoogleApiSource) GetCreateTime added in v1.15.0

func (x *GoogleApiSource) GetCreateTime() *timestamppb.Timestamp

func (*GoogleApiSource) GetCryptoKeyName added in v1.15.0

func (x *GoogleApiSource) GetCryptoKeyName() string

func (*GoogleApiSource) GetDestination added in v1.15.0

func (x *GoogleApiSource) GetDestination() string

func (*GoogleApiSource) GetDisplayName added in v1.15.0

func (x *GoogleApiSource) GetDisplayName() string

func (*GoogleApiSource) GetEtag added in v1.15.0

func (x *GoogleApiSource) GetEtag() string

func (*GoogleApiSource) GetLabels added in v1.15.0

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

func (*GoogleApiSource) GetLoggingConfig added in v1.15.0

func (x *GoogleApiSource) GetLoggingConfig() *LoggingConfig

func (*GoogleApiSource) GetName added in v1.15.0

func (x *GoogleApiSource) GetName() string

func (*GoogleApiSource) GetUid added in v1.15.0

func (x *GoogleApiSource) GetUid() string

func (*GoogleApiSource) GetUpdateTime added in v1.15.0

func (x *GoogleApiSource) GetUpdateTime() *timestamppb.Timestamp

func (*GoogleApiSource) ProtoMessage added in v1.15.0

func (*GoogleApiSource) ProtoMessage()

func (*GoogleApiSource) ProtoReflect added in v1.15.0

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

func (*GoogleApiSource) Reset added in v1.15.0

func (x *GoogleApiSource) Reset()

func (*GoogleApiSource) String added in v1.15.0

func (x *GoogleApiSource) String() string

type GoogleChannelConfig added in v1.9.0

type GoogleChannelConfig struct {

	// Required. The resource name of the config. Must be in the format of,
	// `projects/{project}/locations/{location}/googleChannelConfig`.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. The last-modified time.
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// Optional. Resource name of a KMS crypto key (managed by the user) used to
	// encrypt/decrypt their event data.
	//
	// It must match the pattern
	// `projects/*/locations/*/keyRings/*/cryptoKeys/*`.
	CryptoKeyName string `protobuf:"bytes,7,opt,name=crypto_key_name,json=cryptoKeyName,proto3" json:"crypto_key_name,omitempty"`
	// contains filtered or unexported fields
}

A GoogleChannelConfig is a resource that stores the custom settings respected by Eventarc first-party triggers in the matching region. Once configured, first-party event data will be protected using the specified custom managed encryption key instead of Google-managed encryption keys.

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

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

Deprecated: Use GoogleChannelConfig.ProtoReflect.Descriptor instead.

func (*GoogleChannelConfig) GetCryptoKeyName added in v1.9.0

func (x *GoogleChannelConfig) GetCryptoKeyName() string

func (*GoogleChannelConfig) GetName added in v1.9.0

func (x *GoogleChannelConfig) GetName() string

func (*GoogleChannelConfig) GetUpdateTime added in v1.9.0

func (x *GoogleChannelConfig) GetUpdateTime() *timestamppb.Timestamp

func (*GoogleChannelConfig) ProtoMessage added in v1.9.0

func (*GoogleChannelConfig) ProtoMessage()

func (*GoogleChannelConfig) ProtoReflect added in v1.9.0

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

func (*GoogleChannelConfig) Reset added in v1.9.0

func (x *GoogleChannelConfig) Reset()

func (*GoogleChannelConfig) String added in v1.9.0

func (x *GoogleChannelConfig) String() string

type HttpEndpoint added in v1.15.0

type HttpEndpoint struct {

	// Required. The URI of the HTTP enpdoint.
	//
	// The value must be a RFC2396 URI string.
	// Examples: `http://10.10.10.8:80/route`,
	// `http://svc.us-central1.p.local:8080/`.
	// Only HTTP and HTTPS protocols are supported. The host can be either a
	// static IP addressable from the VPC specified by the network config, or
	// an internal DNS hostname of the service resolvable via Cloud DNS.
	Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"`
	// contains filtered or unexported fields
}

Represents a HTTP endpoint destination.

func (*HttpEndpoint) Descriptor deprecated added in v1.15.0

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

Deprecated: Use HttpEndpoint.ProtoReflect.Descriptor instead.

func (*HttpEndpoint) GetUri added in v1.15.0

func (x *HttpEndpoint) GetUri() string

func (*HttpEndpoint) ProtoMessage added in v1.15.0

func (*HttpEndpoint) ProtoMessage()

func (*HttpEndpoint) ProtoReflect added in v1.15.0

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

func (*HttpEndpoint) Reset added in v1.15.0

func (x *HttpEndpoint) Reset()

func (*HttpEndpoint) String added in v1.15.0

func (x *HttpEndpoint) String() string

type ListChannelConnectionsRequest

type ListChannelConnectionsRequest struct {

	// Required. The parent collection from which to list channel connections.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// The maximum number of channel connections to return on each page.
	//
	// Note: The service may send fewer responses.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// The page token; provide the value from the `next_page_token` field in a
	// previous `ListChannelConnections` call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided to `ListChannelConnetions`
	// match the call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListChannelConnections method.

func (*ListChannelConnectionsRequest) Descriptor deprecated

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

Deprecated: Use ListChannelConnectionsRequest.ProtoReflect.Descriptor instead.

func (*ListChannelConnectionsRequest) GetPageSize

func (x *ListChannelConnectionsRequest) GetPageSize() int32

func (*ListChannelConnectionsRequest) GetPageToken

func (x *ListChannelConnectionsRequest) GetPageToken() string

func (*ListChannelConnectionsRequest) GetParent

func (x *ListChannelConnectionsRequest) GetParent() string

func (*ListChannelConnectionsRequest) ProtoMessage

func (*ListChannelConnectionsRequest) ProtoMessage()

func (*ListChannelConnectionsRequest) ProtoReflect

func (*ListChannelConnectionsRequest) Reset

func (x *ListChannelConnectionsRequest) Reset()

func (*ListChannelConnectionsRequest) String

type ListChannelConnectionsResponse

type ListChannelConnectionsResponse struct {

	// The requested channel connections, up to the number specified in
	// `page_size`.
	ChannelConnections []*ChannelConnection `protobuf:"bytes,1,rep,name=channel_connections,json=channelConnections,proto3" json:"channel_connections,omitempty"`
	// A page token that can be sent to `ListChannelConnections` to request the
	// next page.
	// If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListChannelConnections` method.

func (*ListChannelConnectionsResponse) Descriptor deprecated

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

Deprecated: Use ListChannelConnectionsResponse.ProtoReflect.Descriptor instead.

func (*ListChannelConnectionsResponse) GetChannelConnections

func (x *ListChannelConnectionsResponse) GetChannelConnections() []*ChannelConnection

func (*ListChannelConnectionsResponse) GetNextPageToken

func (x *ListChannelConnectionsResponse) GetNextPageToken() string

func (*ListChannelConnectionsResponse) GetUnreachable

func (x *ListChannelConnectionsResponse) GetUnreachable() []string

func (*ListChannelConnectionsResponse) ProtoMessage

func (*ListChannelConnectionsResponse) ProtoMessage()

func (*ListChannelConnectionsResponse) ProtoReflect

func (*ListChannelConnectionsResponse) Reset

func (x *ListChannelConnectionsResponse) Reset()

func (*ListChannelConnectionsResponse) String

type ListChannelsRequest

type ListChannelsRequest struct {

	// Required. The parent collection to list channels on.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// The maximum number of channels to return on each page.
	//
	// Note: The service may send fewer.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// The page token; provide the value from the `next_page_token` field in a
	// previous `ListChannels` call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided to `ListChannels` must
	// match the call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// The sorting order of the resources returned. Value should be a
	// comma-separated list of fields. The default sorting order is ascending. To
	// specify descending order for a field, append a `desc` suffix; for example:
	// `name desc, channel_id`.
	OrderBy string `protobuf:"bytes,4,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListChannels method.

func (*ListChannelsRequest) Descriptor deprecated

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

Deprecated: Use ListChannelsRequest.ProtoReflect.Descriptor instead.

func (*ListChannelsRequest) GetOrderBy

func (x *ListChannelsRequest) GetOrderBy() string

func (*ListChannelsRequest) GetPageSize

func (x *ListChannelsRequest) GetPageSize() int32

func (*ListChannelsRequest) GetPageToken

func (x *ListChannelsRequest) GetPageToken() string

func (*ListChannelsRequest) GetParent

func (x *ListChannelsRequest) GetParent() string

func (*ListChannelsRequest) ProtoMessage

func (*ListChannelsRequest) ProtoMessage()

func (*ListChannelsRequest) ProtoReflect

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

func (*ListChannelsRequest) Reset

func (x *ListChannelsRequest) Reset()

func (*ListChannelsRequest) String

func (x *ListChannelsRequest) String() string

type ListChannelsResponse

type ListChannelsResponse struct {

	// The requested channels, up to the number specified in `page_size`.
	Channels []*Channel `protobuf:"bytes,1,rep,name=channels,proto3" json:"channels,omitempty"`
	// A page token that can be sent to `ListChannels` to request the next page.
	// If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListChannels` method.

func (*ListChannelsResponse) Descriptor deprecated

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

Deprecated: Use ListChannelsResponse.ProtoReflect.Descriptor instead.

func (*ListChannelsResponse) GetChannels

func (x *ListChannelsResponse) GetChannels() []*Channel

func (*ListChannelsResponse) GetNextPageToken

func (x *ListChannelsResponse) GetNextPageToken() string

func (*ListChannelsResponse) GetUnreachable

func (x *ListChannelsResponse) GetUnreachable() []string

func (*ListChannelsResponse) ProtoMessage

func (*ListChannelsResponse) ProtoMessage()

func (*ListChannelsResponse) ProtoReflect

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

func (*ListChannelsResponse) Reset

func (x *ListChannelsResponse) Reset()

func (*ListChannelsResponse) String

func (x *ListChannelsResponse) String() string

type ListEnrollmentsRequest added in v1.15.0

type ListEnrollmentsRequest struct {

	// Required. The parent collection to list triggers on.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Optional. The maximum number of results to return on each page.
	//
	// Note: The service may send fewer.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// Optional. The page token; provide the value from the `next_page_token`
	// field in a previous call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided must match
	// the previous call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// Optional. The sorting order of the resources returned. Value should be a
	// comma-separated list of fields. The default sorting order is ascending. To
	// specify descending order for a field, append a `desc` suffix; for example:
	// `name desc, update_time`.
	OrderBy string `protobuf:"bytes,4,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	// Optional. The filter field that the list request will filter on.
	// Possible filtersare described in https://google.aip.dev/160.
	Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListEnrollments method.

func (*ListEnrollmentsRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListEnrollmentsRequest.ProtoReflect.Descriptor instead.

func (*ListEnrollmentsRequest) GetFilter added in v1.15.0

func (x *ListEnrollmentsRequest) GetFilter() string

func (*ListEnrollmentsRequest) GetOrderBy added in v1.15.0

func (x *ListEnrollmentsRequest) GetOrderBy() string

func (*ListEnrollmentsRequest) GetPageSize added in v1.15.0

func (x *ListEnrollmentsRequest) GetPageSize() int32

func (*ListEnrollmentsRequest) GetPageToken added in v1.15.0

func (x *ListEnrollmentsRequest) GetPageToken() string

func (*ListEnrollmentsRequest) GetParent added in v1.15.0

func (x *ListEnrollmentsRequest) GetParent() string

func (*ListEnrollmentsRequest) ProtoMessage added in v1.15.0

func (*ListEnrollmentsRequest) ProtoMessage()

func (*ListEnrollmentsRequest) ProtoReflect added in v1.15.0

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

func (*ListEnrollmentsRequest) Reset added in v1.15.0

func (x *ListEnrollmentsRequest) Reset()

func (*ListEnrollmentsRequest) String added in v1.15.0

func (x *ListEnrollmentsRequest) String() string

type ListEnrollmentsResponse added in v1.15.0

type ListEnrollmentsResponse struct {

	// The requested Enrollments, up to the number specified in `page_size`.
	Enrollments []*Enrollment `protobuf:"bytes,1,rep,name=enrollments,proto3" json:"enrollments,omitempty"`
	// A page token that can be sent to `ListEnrollments` to request the next
	// page. If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListEnrollments` method.

func (*ListEnrollmentsResponse) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListEnrollmentsResponse.ProtoReflect.Descriptor instead.

func (*ListEnrollmentsResponse) GetEnrollments added in v1.15.0

func (x *ListEnrollmentsResponse) GetEnrollments() []*Enrollment

func (*ListEnrollmentsResponse) GetNextPageToken added in v1.15.0

func (x *ListEnrollmentsResponse) GetNextPageToken() string

func (*ListEnrollmentsResponse) GetUnreachable added in v1.15.0

func (x *ListEnrollmentsResponse) GetUnreachable() []string

func (*ListEnrollmentsResponse) ProtoMessage added in v1.15.0

func (*ListEnrollmentsResponse) ProtoMessage()

func (*ListEnrollmentsResponse) ProtoReflect added in v1.15.0

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

func (*ListEnrollmentsResponse) Reset added in v1.15.0

func (x *ListEnrollmentsResponse) Reset()

func (*ListEnrollmentsResponse) String added in v1.15.0

func (x *ListEnrollmentsResponse) String() string

type ListGoogleApiSourcesRequest added in v1.15.0

type ListGoogleApiSourcesRequest struct {

	// Required. The parent collection to list GoogleApiSources on.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Optional. The maximum number of results to return on each page.
	//
	// Note: The service may send fewer.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// Optional. The page token; provide the value from the `next_page_token`
	// field in a previous call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided must match
	// the previous call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// Optional. The sorting order of the resources returned. Value should be a
	// comma-separated list of fields. The default sorting order is ascending. To
	// specify descending order for a field, append a `desc` suffix; for example:
	// `name desc, update_time`.
	OrderBy string `protobuf:"bytes,4,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	// Optional. The filter field that the list request will filter on.
	// Possible filtersare described in https://google.aip.dev/160.
	Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListGoogleApiSources method.

func (*ListGoogleApiSourcesRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListGoogleApiSourcesRequest.ProtoReflect.Descriptor instead.

func (*ListGoogleApiSourcesRequest) GetFilter added in v1.15.0

func (x *ListGoogleApiSourcesRequest) GetFilter() string

func (*ListGoogleApiSourcesRequest) GetOrderBy added in v1.15.0

func (x *ListGoogleApiSourcesRequest) GetOrderBy() string

func (*ListGoogleApiSourcesRequest) GetPageSize added in v1.15.0

func (x *ListGoogleApiSourcesRequest) GetPageSize() int32

func (*ListGoogleApiSourcesRequest) GetPageToken added in v1.15.0

func (x *ListGoogleApiSourcesRequest) GetPageToken() string

func (*ListGoogleApiSourcesRequest) GetParent added in v1.15.0

func (x *ListGoogleApiSourcesRequest) GetParent() string

func (*ListGoogleApiSourcesRequest) ProtoMessage added in v1.15.0

func (*ListGoogleApiSourcesRequest) ProtoMessage()

func (*ListGoogleApiSourcesRequest) ProtoReflect added in v1.15.0

func (*ListGoogleApiSourcesRequest) Reset added in v1.15.0

func (x *ListGoogleApiSourcesRequest) Reset()

func (*ListGoogleApiSourcesRequest) String added in v1.15.0

func (x *ListGoogleApiSourcesRequest) String() string

type ListGoogleApiSourcesResponse added in v1.15.0

type ListGoogleApiSourcesResponse struct {

	// The requested GoogleApiSources, up to the number specified in `page_size`.
	GoogleApiSources []*GoogleApiSource `protobuf:"bytes,1,rep,name=google_api_sources,json=googleApiSources,proto3" json:"google_api_sources,omitempty"`
	// A page token that can be sent to `ListMessageBusEnrollments` to request the
	// next page. If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListGoogleApiSources` method.

func (*ListGoogleApiSourcesResponse) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListGoogleApiSourcesResponse.ProtoReflect.Descriptor instead.

func (*ListGoogleApiSourcesResponse) GetGoogleApiSources added in v1.15.0

func (x *ListGoogleApiSourcesResponse) GetGoogleApiSources() []*GoogleApiSource

func (*ListGoogleApiSourcesResponse) GetNextPageToken added in v1.15.0

func (x *ListGoogleApiSourcesResponse) GetNextPageToken() string

func (*ListGoogleApiSourcesResponse) GetUnreachable added in v1.15.0

func (x *ListGoogleApiSourcesResponse) GetUnreachable() []string

func (*ListGoogleApiSourcesResponse) ProtoMessage added in v1.15.0

func (*ListGoogleApiSourcesResponse) ProtoMessage()

func (*ListGoogleApiSourcesResponse) ProtoReflect added in v1.15.0

func (*ListGoogleApiSourcesResponse) Reset added in v1.15.0

func (x *ListGoogleApiSourcesResponse) Reset()

func (*ListGoogleApiSourcesResponse) String added in v1.15.0

type ListMessageBusEnrollmentsRequest added in v1.15.0

type ListMessageBusEnrollmentsRequest struct {

	// Required. The parent message bus to list enrollments on.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Optional. The maximum number of results to return on each page.
	//
	// Note: The service may send fewer.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// Optional. The page token; provide the value from the `next_page_token`
	// field in a previous call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided must match
	// the previous call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// contains filtered or unexported fields
}

The request message for the `ListMessageBusEnrollments` method.

func (*ListMessageBusEnrollmentsRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListMessageBusEnrollmentsRequest.ProtoReflect.Descriptor instead.

func (*ListMessageBusEnrollmentsRequest) GetPageSize added in v1.15.0

func (x *ListMessageBusEnrollmentsRequest) GetPageSize() int32

func (*ListMessageBusEnrollmentsRequest) GetPageToken added in v1.15.0

func (x *ListMessageBusEnrollmentsRequest) GetPageToken() string

func (*ListMessageBusEnrollmentsRequest) GetParent added in v1.15.0

func (*ListMessageBusEnrollmentsRequest) ProtoMessage added in v1.15.0

func (*ListMessageBusEnrollmentsRequest) ProtoMessage()

func (*ListMessageBusEnrollmentsRequest) ProtoReflect added in v1.15.0

func (*ListMessageBusEnrollmentsRequest) Reset added in v1.15.0

func (*ListMessageBusEnrollmentsRequest) String added in v1.15.0

type ListMessageBusEnrollmentsResponse added in v1.15.0

type ListMessageBusEnrollmentsResponse struct {

	// The requested enrollments, up to the number specified in `page_size`.
	Enrollments []string `protobuf:"bytes,1,rep,name=enrollments,proto3" json:"enrollments,omitempty"`
	// A page token that can be sent to `ListMessageBusEnrollments` to request the
	// next page. If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListMessageBusEnrollments` method.`

func (*ListMessageBusEnrollmentsResponse) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListMessageBusEnrollmentsResponse.ProtoReflect.Descriptor instead.

func (*ListMessageBusEnrollmentsResponse) GetEnrollments added in v1.15.0

func (x *ListMessageBusEnrollmentsResponse) GetEnrollments() []string

func (*ListMessageBusEnrollmentsResponse) GetNextPageToken added in v1.15.0

func (x *ListMessageBusEnrollmentsResponse) GetNextPageToken() string

func (*ListMessageBusEnrollmentsResponse) GetUnreachable added in v1.15.0

func (x *ListMessageBusEnrollmentsResponse) GetUnreachable() []string

func (*ListMessageBusEnrollmentsResponse) ProtoMessage added in v1.15.0

func (*ListMessageBusEnrollmentsResponse) ProtoMessage()

func (*ListMessageBusEnrollmentsResponse) ProtoReflect added in v1.15.0

func (*ListMessageBusEnrollmentsResponse) Reset added in v1.15.0

func (*ListMessageBusEnrollmentsResponse) String added in v1.15.0

type ListMessageBusesRequest added in v1.15.0

type ListMessageBusesRequest struct {

	// Required. The parent collection to list triggers on.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Optional. The maximum number of results to return on each page.
	//
	// Note: The service may send fewer.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// Optional. The page token; provide the value from the `next_page_token`
	// field in a previous call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided must match
	// the previous call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// Optional. The sorting order of the resources returned. Value should be a
	// comma-separated list of fields. The default sorting order is ascending. To
	// specify descending order for a field, append a `desc` suffix; for example:
	// `name desc, update_time`.
	OrderBy string `protobuf:"bytes,4,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	// Optional. The filter field that the list request will filter on.
	// Possible filtersare described in https://google.aip.dev/160.
	Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListMessageBuses method.

func (*ListMessageBusesRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListMessageBusesRequest.ProtoReflect.Descriptor instead.

func (*ListMessageBusesRequest) GetFilter added in v1.15.0

func (x *ListMessageBusesRequest) GetFilter() string

func (*ListMessageBusesRequest) GetOrderBy added in v1.15.0

func (x *ListMessageBusesRequest) GetOrderBy() string

func (*ListMessageBusesRequest) GetPageSize added in v1.15.0

func (x *ListMessageBusesRequest) GetPageSize() int32

func (*ListMessageBusesRequest) GetPageToken added in v1.15.0

func (x *ListMessageBusesRequest) GetPageToken() string

func (*ListMessageBusesRequest) GetParent added in v1.15.0

func (x *ListMessageBusesRequest) GetParent() string

func (*ListMessageBusesRequest) ProtoMessage added in v1.15.0

func (*ListMessageBusesRequest) ProtoMessage()

func (*ListMessageBusesRequest) ProtoReflect added in v1.15.0

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

func (*ListMessageBusesRequest) Reset added in v1.15.0

func (x *ListMessageBusesRequest) Reset()

func (*ListMessageBusesRequest) String added in v1.15.0

func (x *ListMessageBusesRequest) String() string

type ListMessageBusesResponse added in v1.15.0

type ListMessageBusesResponse struct {

	// The requested message buses, up to the number specified in `page_size`.
	MessageBuses []*MessageBus `protobuf:"bytes,1,rep,name=message_buses,json=messageBuses,proto3" json:"message_buses,omitempty"`
	// A page token that can be sent to `ListMessageBuses` to request the next
	// page. If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListMessageBuses` method.

func (*ListMessageBusesResponse) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListMessageBusesResponse.ProtoReflect.Descriptor instead.

func (*ListMessageBusesResponse) GetMessageBuses added in v1.15.0

func (x *ListMessageBusesResponse) GetMessageBuses() []*MessageBus

func (*ListMessageBusesResponse) GetNextPageToken added in v1.15.0

func (x *ListMessageBusesResponse) GetNextPageToken() string

func (*ListMessageBusesResponse) GetUnreachable added in v1.15.0

func (x *ListMessageBusesResponse) GetUnreachable() []string

func (*ListMessageBusesResponse) ProtoMessage added in v1.15.0

func (*ListMessageBusesResponse) ProtoMessage()

func (*ListMessageBusesResponse) ProtoReflect added in v1.15.0

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

func (*ListMessageBusesResponse) Reset added in v1.15.0

func (x *ListMessageBusesResponse) Reset()

func (*ListMessageBusesResponse) String added in v1.15.0

func (x *ListMessageBusesResponse) String() string

type ListPipelinesRequest added in v1.15.0

type ListPipelinesRequest struct {

	// Required. The parent collection to list pipelines on.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// Optional. The maximum number of results to return on each page.
	//
	// Note: The service may send fewer.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// Optional. The page token; provide the value from the `next_page_token`
	// field in a previous call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided must match
	// the previous call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// Optional. The sorting order of the resources returned. Value should be a
	// comma-separated list of fields. The default sorting order is ascending. To
	// specify descending order for a field, append a `desc` suffix; for example:
	// `name desc, update_time`.
	OrderBy string `protobuf:"bytes,4,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	// Optional. The filter field that the list request will filter on.
	// Possible filters are described in https://google.aip.dev/160.
	Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListPipelines method.

func (*ListPipelinesRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListPipelinesRequest.ProtoReflect.Descriptor instead.

func (*ListPipelinesRequest) GetFilter added in v1.15.0

func (x *ListPipelinesRequest) GetFilter() string

func (*ListPipelinesRequest) GetOrderBy added in v1.15.0

func (x *ListPipelinesRequest) GetOrderBy() string

func (*ListPipelinesRequest) GetPageSize added in v1.15.0

func (x *ListPipelinesRequest) GetPageSize() int32

func (*ListPipelinesRequest) GetPageToken added in v1.15.0

func (x *ListPipelinesRequest) GetPageToken() string

func (*ListPipelinesRequest) GetParent added in v1.15.0

func (x *ListPipelinesRequest) GetParent() string

func (*ListPipelinesRequest) ProtoMessage added in v1.15.0

func (*ListPipelinesRequest) ProtoMessage()

func (*ListPipelinesRequest) ProtoReflect added in v1.15.0

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

func (*ListPipelinesRequest) Reset added in v1.15.0

func (x *ListPipelinesRequest) Reset()

func (*ListPipelinesRequest) String added in v1.15.0

func (x *ListPipelinesRequest) String() string

type ListPipelinesResponse added in v1.15.0

type ListPipelinesResponse struct {

	// The requested pipelines, up to the number specified in `page_size`.
	Pipelines []*Pipeline `protobuf:"bytes,1,rep,name=pipelines,proto3" json:"pipelines,omitempty"`
	// A page token that can be sent to `ListPipelines` to request the next
	// page. If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the ListPipelines method.

func (*ListPipelinesResponse) Descriptor deprecated added in v1.15.0

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

Deprecated: Use ListPipelinesResponse.ProtoReflect.Descriptor instead.

func (*ListPipelinesResponse) GetNextPageToken added in v1.15.0

func (x *ListPipelinesResponse) GetNextPageToken() string

func (*ListPipelinesResponse) GetPipelines added in v1.15.0

func (x *ListPipelinesResponse) GetPipelines() []*Pipeline

func (*ListPipelinesResponse) GetUnreachable added in v1.15.0

func (x *ListPipelinesResponse) GetUnreachable() []string

func (*ListPipelinesResponse) ProtoMessage added in v1.15.0

func (*ListPipelinesResponse) ProtoMessage()

func (*ListPipelinesResponse) ProtoReflect added in v1.15.0

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

func (*ListPipelinesResponse) Reset added in v1.15.0

func (x *ListPipelinesResponse) Reset()

func (*ListPipelinesResponse) String added in v1.15.0

func (x *ListPipelinesResponse) String() string

type ListProvidersRequest

type ListProvidersRequest struct {

	// Required. The parent of the provider to get.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// The maximum number of providers to return on each page.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// The page token; provide the value from the `next_page_token` field in a
	// previous `ListProviders` call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided to `ListProviders` must
	// match the call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// The sorting order of the resources returned. Value should be a
	// comma-separated list of fields. The default sorting oder is ascending. To
	// specify descending order for a field, append a `desc` suffix; for example:
	// `name desc, _id`.
	OrderBy string `protobuf:"bytes,4,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	// The filter field that the list request will filter on.
	Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListProviders method.

func (*ListProvidersRequest) Descriptor deprecated

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

Deprecated: Use ListProvidersRequest.ProtoReflect.Descriptor instead.

func (*ListProvidersRequest) GetFilter

func (x *ListProvidersRequest) GetFilter() string

func (*ListProvidersRequest) GetOrderBy

func (x *ListProvidersRequest) GetOrderBy() string

func (*ListProvidersRequest) GetPageSize

func (x *ListProvidersRequest) GetPageSize() int32

func (*ListProvidersRequest) GetPageToken

func (x *ListProvidersRequest) GetPageToken() string

func (*ListProvidersRequest) GetParent

func (x *ListProvidersRequest) GetParent() string

func (*ListProvidersRequest) ProtoMessage

func (*ListProvidersRequest) ProtoMessage()

func (*ListProvidersRequest) ProtoReflect

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

func (*ListProvidersRequest) Reset

func (x *ListProvidersRequest) Reset()

func (*ListProvidersRequest) String

func (x *ListProvidersRequest) String() string

type ListProvidersResponse

type ListProvidersResponse struct {

	// The requested providers, up to the number specified in `page_size`.
	Providers []*Provider `protobuf:"bytes,1,rep,name=providers,proto3" json:"providers,omitempty"`
	// A page token that can be sent to `ListProviders` to request the next page.
	// If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListProviders` method.

func (*ListProvidersResponse) Descriptor deprecated

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

Deprecated: Use ListProvidersResponse.ProtoReflect.Descriptor instead.

func (*ListProvidersResponse) GetNextPageToken

func (x *ListProvidersResponse) GetNextPageToken() string

func (*ListProvidersResponse) GetProviders

func (x *ListProvidersResponse) GetProviders() []*Provider

func (*ListProvidersResponse) GetUnreachable

func (x *ListProvidersResponse) GetUnreachable() []string

func (*ListProvidersResponse) ProtoMessage

func (*ListProvidersResponse) ProtoMessage()

func (*ListProvidersResponse) ProtoReflect

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

func (*ListProvidersResponse) Reset

func (x *ListProvidersResponse) Reset()

func (*ListProvidersResponse) String

func (x *ListProvidersResponse) String() string

type ListTriggersRequest

type ListTriggersRequest struct {

	// Required. The parent collection to list triggers on.
	Parent string `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent,omitempty"`
	// The maximum number of triggers to return on each page.
	//
	// Note: The service may send fewer.
	PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// The page token; provide the value from the `next_page_token` field in a
	// previous `ListTriggers` call to retrieve the subsequent page.
	//
	// When paginating, all other parameters provided to `ListTriggers` must match
	// the call that provided the page token.
	PageToken string `protobuf:"bytes,3,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// The sorting order of the resources returned. Value should be a
	// comma-separated list of fields. The default sorting order is ascending. To
	// specify descending order for a field, append a `desc` suffix; for example:
	// `name desc, trigger_id`.
	OrderBy string `protobuf:"bytes,4,opt,name=order_by,json=orderBy,proto3" json:"order_by,omitempty"`
	// Filter field. Used to filter the Triggers to be listed. Possible filters
	// are described in https://google.aip.dev/160. For example, using
	// "?filter=destination:gke" would list only Triggers with a gke destination.
	Filter string `protobuf:"bytes,5,opt,name=filter,proto3" json:"filter,omitempty"`
	// contains filtered or unexported fields
}

The request message for the ListTriggers method.

func (*ListTriggersRequest) Descriptor deprecated

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

Deprecated: Use ListTriggersRequest.ProtoReflect.Descriptor instead.

func (*ListTriggersRequest) GetFilter added in v1.9.0

func (x *ListTriggersRequest) GetFilter() string

func (*ListTriggersRequest) GetOrderBy

func (x *ListTriggersRequest) GetOrderBy() string

func (*ListTriggersRequest) GetPageSize

func (x *ListTriggersRequest) GetPageSize() int32

func (*ListTriggersRequest) GetPageToken

func (x *ListTriggersRequest) GetPageToken() string

func (*ListTriggersRequest) GetParent

func (x *ListTriggersRequest) GetParent() string

func (*ListTriggersRequest) ProtoMessage

func (*ListTriggersRequest) ProtoMessage()

func (*ListTriggersRequest) ProtoReflect

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

func (*ListTriggersRequest) Reset

func (x *ListTriggersRequest) Reset()

func (*ListTriggersRequest) String

func (x *ListTriggersRequest) String() string

type ListTriggersResponse

type ListTriggersResponse struct {

	// The requested triggers, up to the number specified in `page_size`.
	Triggers []*Trigger `protobuf:"bytes,1,rep,name=triggers,proto3" json:"triggers,omitempty"`
	// A page token that can be sent to `ListTriggers` to request the next page.
	// If this is empty, then there are no more pages.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// Unreachable resources, if any.
	Unreachable []string `protobuf:"bytes,3,rep,name=unreachable,proto3" json:"unreachable,omitempty"`
	// contains filtered or unexported fields
}

The response message for the `ListTriggers` method.

func (*ListTriggersResponse) Descriptor deprecated

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

Deprecated: Use ListTriggersResponse.ProtoReflect.Descriptor instead.

func (*ListTriggersResponse) GetNextPageToken

func (x *ListTriggersResponse) GetNextPageToken() string

func (*ListTriggersResponse) GetTriggers

func (x *ListTriggersResponse) GetTriggers() []*Trigger

func (*ListTriggersResponse) GetUnreachable

func (x *ListTriggersResponse) GetUnreachable() []string

func (*ListTriggersResponse) ProtoMessage

func (*ListTriggersResponse) ProtoMessage()

func (*ListTriggersResponse) ProtoReflect

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

func (*ListTriggersResponse) Reset

func (x *ListTriggersResponse) Reset()

func (*ListTriggersResponse) String

func (x *ListTriggersResponse) String() string

type LoggingConfig added in v1.15.0

type LoggingConfig struct {

	// Optional. The minimum severity of logs that will be sent to
	// Stackdriver/Platform Telemetry. Logs at severitiy ≥ this value will be
	// sent, unless it is NONE.
	LogSeverity LoggingConfig_LogSeverity `` /* 151-byte string literal not displayed */
	// contains filtered or unexported fields
}

The configuration for Platform Telemetry logging for Eventarc Advanced resources.

func (*LoggingConfig) Descriptor deprecated added in v1.15.0

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

Deprecated: Use LoggingConfig.ProtoReflect.Descriptor instead.

func (*LoggingConfig) GetLogSeverity added in v1.15.0

func (x *LoggingConfig) GetLogSeverity() LoggingConfig_LogSeverity

func (*LoggingConfig) ProtoMessage added in v1.15.0

func (*LoggingConfig) ProtoMessage()

func (*LoggingConfig) ProtoReflect added in v1.15.0

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

func (*LoggingConfig) Reset added in v1.15.0

func (x *LoggingConfig) Reset()

func (*LoggingConfig) String added in v1.15.0

func (x *LoggingConfig) String() string

type LoggingConfig_LogSeverity added in v1.15.0

type LoggingConfig_LogSeverity int32

The different severities for logging supported by Eventarc Advanced resources. This enum is an exhaustive list of log severities and is FROZEN. Do not expect new values to be added.

const (
	// Log severity is not specified. This value is treated the same as NONE,
	// but is used to distinguish between no update and update to NONE in
	// update_masks.
	LoggingConfig_LOG_SEVERITY_UNSPECIFIED LoggingConfig_LogSeverity = 0
	// Default value at resource creation, presence of this value must be
	// treated as no logging/disable logging.
	LoggingConfig_NONE LoggingConfig_LogSeverity = 1
	// Debug or trace level logging.
	LoggingConfig_DEBUG LoggingConfig_LogSeverity = 2
	// Routine information, such as ongoing status or performance.
	LoggingConfig_INFO LoggingConfig_LogSeverity = 3
	// Normal but significant events, such as start up, shut down, or a
	// configuration change.
	LoggingConfig_NOTICE LoggingConfig_LogSeverity = 4
	// Warning events might cause problems.
	LoggingConfig_WARNING LoggingConfig_LogSeverity = 5
	// Error events are likely to cause problems.
	LoggingConfig_ERROR LoggingConfig_LogSeverity = 6
	// Critical events cause more severe problems or outages.
	LoggingConfig_CRITICAL LoggingConfig_LogSeverity = 7
	// A person must take action immediately.
	LoggingConfig_ALERT LoggingConfig_LogSeverity = 8
	// One or more systems are unusable.
	LoggingConfig_EMERGENCY LoggingConfig_LogSeverity = 9
)

func (LoggingConfig_LogSeverity) Descriptor added in v1.15.0

func (LoggingConfig_LogSeverity) Enum added in v1.15.0

func (LoggingConfig_LogSeverity) EnumDescriptor deprecated added in v1.15.0

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

Deprecated: Use LoggingConfig_LogSeverity.Descriptor instead.

func (LoggingConfig_LogSeverity) Number added in v1.15.0

func (LoggingConfig_LogSeverity) String added in v1.15.0

func (x LoggingConfig_LogSeverity) String() string

func (LoggingConfig_LogSeverity) Type added in v1.15.0

type MessageBus added in v1.15.0

type MessageBus struct {

	// Identifier. Resource name of the form
	// projects/{project}/locations/{location}/messageBuses/{message_bus}
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. Server assigned unique identifier for the channel. The value
	// is a UUID4 string and guaranteed to remain unchanged until the resource is
	// deleted.
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	// Output only. This checksum is computed by the server based on the value of
	// other fields, and might be sent only on update and delete requests to
	// ensure that the client has an up-to-date value before proceeding.
	Etag string `protobuf:"bytes,3,opt,name=etag,proto3" json:"etag,omitempty"`
	// Output only. The creation time.
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The last-modified time.
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// Optional. Resource labels.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Optional. Resource annotations.
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	// Optional. Resource display name.
	DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// Optional. Resource name of a KMS crypto key (managed by the user) used to
	// encrypt/decrypt their event data.
	//
	// It must match the pattern
	// `projects/*/locations/*/keyRings/*/cryptoKeys/*`.
	CryptoKeyName string `protobuf:"bytes,10,opt,name=crypto_key_name,json=cryptoKeyName,proto3" json:"crypto_key_name,omitempty"`
	// Optional. Config to control Platform logging for the Message Bus. This log
	// configuration is applied to the Message Bus itself, and all the Enrollments
	// attached to it.
	LoggingConfig *LoggingConfig `protobuf:"bytes,11,opt,name=logging_config,json=loggingConfig,proto3" json:"logging_config,omitempty"`
	// contains filtered or unexported fields
}

MessageBus for the messages flowing through the system. The admin has visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

func (*MessageBus) Descriptor deprecated added in v1.15.0

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

Deprecated: Use MessageBus.ProtoReflect.Descriptor instead.

func (*MessageBus) GetAnnotations added in v1.15.0

func (x *MessageBus) GetAnnotations() map[string]string

func (*MessageBus) GetCreateTime added in v1.15.0

func (x *MessageBus) GetCreateTime() *timestamppb.Timestamp

func (*MessageBus) GetCryptoKeyName added in v1.15.0

func (x *MessageBus) GetCryptoKeyName() string

func (*MessageBus) GetDisplayName added in v1.15.0

func (x *MessageBus) GetDisplayName() string

func (*MessageBus) GetEtag added in v1.15.0

func (x *MessageBus) GetEtag() string

func (*MessageBus) GetLabels added in v1.15.0

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

func (*MessageBus) GetLoggingConfig added in v1.15.0

func (x *MessageBus) GetLoggingConfig() *LoggingConfig

func (*MessageBus) GetName added in v1.15.0

func (x *MessageBus) GetName() string

func (*MessageBus) GetUid added in v1.15.0

func (x *MessageBus) GetUid() string

func (*MessageBus) GetUpdateTime added in v1.15.0

func (x *MessageBus) GetUpdateTime() *timestamppb.Timestamp

func (*MessageBus) ProtoMessage added in v1.15.0

func (*MessageBus) ProtoMessage()

func (*MessageBus) ProtoReflect added in v1.15.0

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

func (*MessageBus) Reset added in v1.15.0

func (x *MessageBus) Reset()

func (*MessageBus) String added in v1.15.0

func (x *MessageBus) String() string

type NetworkConfig added in v1.15.0

type NetworkConfig struct {

	// Required. Name of the NetworkAttachment that allows access to the
	// customer's VPC. Format:
	// `projects/{PROJECT_ID}/regions/{REGION}/networkAttachments/{NETWORK_ATTACHMENT_NAME}`
	NetworkAttachment string `protobuf:"bytes,1,opt,name=network_attachment,json=networkAttachment,proto3" json:"network_attachment,omitempty"`
	// contains filtered or unexported fields
}

Network Configuration that can be inherited by other protos.

func (*NetworkConfig) Descriptor deprecated added in v1.15.0

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

Deprecated: Use NetworkConfig.ProtoReflect.Descriptor instead.

func (*NetworkConfig) GetNetworkAttachment added in v1.15.0

func (x *NetworkConfig) GetNetworkAttachment() string

func (*NetworkConfig) ProtoMessage added in v1.15.0

func (*NetworkConfig) ProtoMessage()

func (*NetworkConfig) ProtoReflect added in v1.15.0

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

func (*NetworkConfig) Reset added in v1.15.0

func (x *NetworkConfig) Reset()

func (*NetworkConfig) String added in v1.15.0

func (x *NetworkConfig) String() string

type OperationMetadata

type OperationMetadata struct {

	// Output only. The time the operation was created.
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The time the operation finished running.
	EndTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
	// Output only. Server-defined resource path for the target of the operation.
	Target string `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
	// Output only. Name of the verb executed by the operation.
	Verb string `protobuf:"bytes,4,opt,name=verb,proto3" json:"verb,omitempty"`
	// Output only. Human-readable status of the operation, if any.
	StatusMessage string `protobuf:"bytes,5,opt,name=status_message,json=statusMessage,proto3" json:"status_message,omitempty"`
	// Output only. Identifies whether the user has requested cancellation
	// of the operation. Operations that have successfully been cancelled
	// have [Operation.error][] value with a
	// [google.rpc.Status.code][google.rpc.Status.code] of 1, corresponding to
	// `Code.CANCELLED`.
	RequestedCancellation bool `protobuf:"varint,6,opt,name=requested_cancellation,json=requestedCancellation,proto3" json:"requested_cancellation,omitempty"`
	// Output only. API version used to start the operation.
	ApiVersion string `protobuf:"bytes,7,opt,name=api_version,json=apiVersion,proto3" json:"api_version,omitempty"`
	// contains filtered or unexported fields
}

Represents the metadata of the long-running operation.

func (*OperationMetadata) Descriptor deprecated

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

Deprecated: Use OperationMetadata.ProtoReflect.Descriptor instead.

func (*OperationMetadata) GetApiVersion

func (x *OperationMetadata) GetApiVersion() string

func (*OperationMetadata) GetCreateTime

func (x *OperationMetadata) GetCreateTime() *timestamppb.Timestamp

func (*OperationMetadata) GetEndTime

func (x *OperationMetadata) GetEndTime() *timestamppb.Timestamp

func (*OperationMetadata) GetRequestedCancellation

func (x *OperationMetadata) GetRequestedCancellation() bool

func (*OperationMetadata) GetStatusMessage

func (x *OperationMetadata) GetStatusMessage() string

func (*OperationMetadata) GetTarget

func (x *OperationMetadata) GetTarget() string

func (*OperationMetadata) GetVerb

func (x *OperationMetadata) GetVerb() string

func (*OperationMetadata) ProtoMessage

func (*OperationMetadata) ProtoMessage()

func (*OperationMetadata) ProtoReflect

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

func (*OperationMetadata) Reset

func (x *OperationMetadata) Reset()

func (*OperationMetadata) String

func (x *OperationMetadata) String() string

type Pipeline added in v1.15.0

type Pipeline struct {

	// Identifier. The resource name of the Pipeline. Must be unique within the
	// location of the project and must be in
	// `projects/{project}/locations/{location}/pipelines/{pipeline}` format.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. The creation time.
	// A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up
	// to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and
	// "2014-10-02T15:01:23.045123456Z".
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The last-modified time.
	// A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up
	// to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and
	// "2014-10-02T15:01:23.045123456Z".
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// Optional. User labels attached to the Pipeline that can be used to group
	// resources. An object containing a list of "key": value pairs. Example: {
	// "name": "wrench", "mass": "1.3kg", "count": "3" }.
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// Output only. Server-assigned unique identifier for the Pipeline. The value
	// is a UUID4 string and guaranteed to remain unchanged until the resource is
	// deleted.
	Uid string `protobuf:"bytes,5,opt,name=uid,proto3" json:"uid,omitempty"`
	// Optional. User-defined annotations. See
	// https://google.aip.dev/128#annotations.
	Annotations map[string]string `` /* 163-byte string literal not displayed */
	// Optional. Display name of resource.
	DisplayName string `protobuf:"bytes,7,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// Required. List of destinations to which messages will be forwarded.
	// Currently, exactly one destination is supported per Pipeline.
	Destinations []*Pipeline_Destination `protobuf:"bytes,8,rep,name=destinations,proto3" json:"destinations,omitempty"`
	// Optional. List of mediation operations to be performed on the message.
	// Currently, only one Transformation operation is allowed in each Pipeline.
	Mediations []*Pipeline_Mediation `protobuf:"bytes,9,rep,name=mediations,proto3" json:"mediations,omitempty"`
	// Optional. Resource name of a KMS crypto key (managed by the user) used to
	// encrypt/decrypt the event data. If not set, an internal Google-owned key
	// will be used to encrypt messages. It must match the pattern
	// "projects/{project}/locations/{location}/keyRings/{keyring}/cryptoKeys/{key}".
	CryptoKeyName string `protobuf:"bytes,10,opt,name=crypto_key_name,json=cryptoKeyName,proto3" json:"crypto_key_name,omitempty"`
	// Optional. The payload format expected for the messages received by the
	// Pipeline. If input_payload_format is set then any messages not matching
	// this format will be treated as persistent errors. If input_payload_format
	// is not set, then the message data will be treated as an opaque binary and
	// no output format can be set on the Pipeline through the
	// Pipeline.Destination.output_payload_format field. Any Mediations on the
	// Pipeline that involve access to the data field will fail as persistent
	// errors.
	InputPayloadFormat *Pipeline_MessagePayloadFormat `protobuf:"bytes,11,opt,name=input_payload_format,json=inputPayloadFormat,proto3" json:"input_payload_format,omitempty"`
	// Optional. Config to control Platform Logging for Pipelines.
	LoggingConfig *LoggingConfig `protobuf:"bytes,12,opt,name=logging_config,json=loggingConfig,proto3" json:"logging_config,omitempty"`
	// Optional. The retry policy to use in the pipeline.
	RetryPolicy *Pipeline_RetryPolicy `protobuf:"bytes,13,opt,name=retry_policy,json=retryPolicy,proto3" json:"retry_policy,omitempty"`
	// Output only. This checksum is computed by the server based on the value of
	// other fields, and might be sent only on create requests to ensure that the
	// client has an up-to-date value before proceeding.
	Etag string `protobuf:"bytes,99,opt,name=etag,proto3" json:"etag,omitempty"`
	// contains filtered or unexported fields
}

A representation of the Pipeline resource.

func (*Pipeline) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline.ProtoReflect.Descriptor instead.

func (*Pipeline) GetAnnotations added in v1.15.0

func (x *Pipeline) GetAnnotations() map[string]string

func (*Pipeline) GetCreateTime added in v1.15.0

func (x *Pipeline) GetCreateTime() *timestamppb.Timestamp

func (*Pipeline) GetCryptoKeyName added in v1.15.0

func (x *Pipeline) GetCryptoKeyName() string

func (*Pipeline) GetDestinations added in v1.15.0

func (x *Pipeline) GetDestinations() []*Pipeline_Destination

func (*Pipeline) GetDisplayName added in v1.15.0

func (x *Pipeline) GetDisplayName() string

func (*Pipeline) GetEtag added in v1.15.0

func (x *Pipeline) GetEtag() string

func (*Pipeline) GetInputPayloadFormat added in v1.15.0

func (x *Pipeline) GetInputPayloadFormat() *Pipeline_MessagePayloadFormat

func (*Pipeline) GetLabels added in v1.15.0

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

func (*Pipeline) GetLoggingConfig added in v1.15.0

func (x *Pipeline) GetLoggingConfig() *LoggingConfig

func (*Pipeline) GetMediations added in v1.15.0

func (x *Pipeline) GetMediations() []*Pipeline_Mediation

func (*Pipeline) GetName added in v1.15.0

func (x *Pipeline) GetName() string

func (*Pipeline) GetRetryPolicy added in v1.15.0

func (x *Pipeline) GetRetryPolicy() *Pipeline_RetryPolicy

func (*Pipeline) GetUid added in v1.15.0

func (x *Pipeline) GetUid() string

func (*Pipeline) GetUpdateTime added in v1.15.0

func (x *Pipeline) GetUpdateTime() *timestamppb.Timestamp

func (*Pipeline) ProtoMessage added in v1.15.0

func (*Pipeline) ProtoMessage()

func (*Pipeline) ProtoReflect added in v1.15.0

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

func (*Pipeline) Reset added in v1.15.0

func (x *Pipeline) Reset()

func (*Pipeline) String added in v1.15.0

func (x *Pipeline) String() string

type Pipeline_Destination added in v1.15.0

type Pipeline_Destination struct {

	// Optional. Network config is used to configure how Pipeline resolves and
	// connects to a destination.
	NetworkConfig *Pipeline_Destination_NetworkConfig `protobuf:"bytes,1,opt,name=network_config,json=networkConfig,proto3" json:"network_config,omitempty"`
	// The destination identifier to which the request should be routed to.
	//
	// Types that are assignable to DestinationDescriptor:
	//
	//	*Pipeline_Destination_HttpEndpoint_
	//	*Pipeline_Destination_Workflow
	//	*Pipeline_Destination_MessageBus
	//	*Pipeline_Destination_Topic
	DestinationDescriptor isPipeline_Destination_DestinationDescriptor `protobuf_oneof:"destination_descriptor"`
	// Optional. An authentication config used to authenticate message requests,
	// such that destinations can verify the source. For example, this can be
	// used with private GCP destinations that require GCP credentials to access
	// like Cloud Run. This field is optional and should be set only by users
	// interested in authenticated push
	AuthenticationConfig *Pipeline_Destination_AuthenticationConfig `protobuf:"bytes,5,opt,name=authentication_config,json=authenticationConfig,proto3" json:"authentication_config,omitempty"`
	// Optional. The message format before it is delivered to the destination.
	// If not set, the message will be delivered in the format it was originally
	// delivered to the Pipeline. This field can only be set if
	// Pipeline.input_payload_format is also set.
	OutputPayloadFormat *Pipeline_MessagePayloadFormat `protobuf:"bytes,6,opt,name=output_payload_format,json=outputPayloadFormat,proto3" json:"output_payload_format,omitempty"`
	// contains filtered or unexported fields
}

Represents a target of an invocation over HTTP.

func (*Pipeline_Destination) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_Destination.ProtoReflect.Descriptor instead.

func (*Pipeline_Destination) GetAuthenticationConfig added in v1.15.0

func (*Pipeline_Destination) GetDestinationDescriptor added in v1.15.0

func (m *Pipeline_Destination) GetDestinationDescriptor() isPipeline_Destination_DestinationDescriptor

func (*Pipeline_Destination) GetHttpEndpoint added in v1.15.0

func (*Pipeline_Destination) GetMessageBus added in v1.15.0

func (x *Pipeline_Destination) GetMessageBus() string

func (*Pipeline_Destination) GetNetworkConfig added in v1.15.0

func (*Pipeline_Destination) GetOutputPayloadFormat added in v1.15.0

func (x *Pipeline_Destination) GetOutputPayloadFormat() *Pipeline_MessagePayloadFormat

func (*Pipeline_Destination) GetTopic added in v1.15.0

func (x *Pipeline_Destination) GetTopic() string

func (*Pipeline_Destination) GetWorkflow added in v1.15.0

func (x *Pipeline_Destination) GetWorkflow() string

func (*Pipeline_Destination) ProtoMessage added in v1.15.0

func (*Pipeline_Destination) ProtoMessage()

func (*Pipeline_Destination) ProtoReflect added in v1.15.0

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

func (*Pipeline_Destination) Reset added in v1.15.0

func (x *Pipeline_Destination) Reset()

func (*Pipeline_Destination) String added in v1.15.0

func (x *Pipeline_Destination) String() string

type Pipeline_Destination_AuthenticationConfig added in v1.15.0

type Pipeline_Destination_AuthenticationConfig struct {

	// The type of authentication method.
	//
	// Types that are assignable to AuthenticationMethodDescriptor:
	//
	//	*Pipeline_Destination_AuthenticationConfig_GoogleOidc
	//	*Pipeline_Destination_AuthenticationConfig_OauthToken
	AuthenticationMethodDescriptor isPipeline_Destination_AuthenticationConfig_AuthenticationMethodDescriptor `protobuf_oneof:"authentication_method_descriptor"`
	// contains filtered or unexported fields
}

Represents a config used to authenticate message requests.

func (*Pipeline_Destination_AuthenticationConfig) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_Destination_AuthenticationConfig.ProtoReflect.Descriptor instead.

func (*Pipeline_Destination_AuthenticationConfig) GetAuthenticationMethodDescriptor added in v1.15.0

func (m *Pipeline_Destination_AuthenticationConfig) GetAuthenticationMethodDescriptor() isPipeline_Destination_AuthenticationConfig_AuthenticationMethodDescriptor

func (*Pipeline_Destination_AuthenticationConfig) GetGoogleOidc added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig) GetOauthToken added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig) ProtoMessage added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig) ProtoReflect added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig) Reset added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig) String added in v1.15.0

type Pipeline_Destination_AuthenticationConfig_GoogleOidc added in v1.15.0

type Pipeline_Destination_AuthenticationConfig_GoogleOidc struct {
	// Optional. This authenticate method will apply Google OIDC tokens
	// signed by a GCP service account to the requests.
	GoogleOidc *Pipeline_Destination_AuthenticationConfig_OidcToken `protobuf:"bytes,1,opt,name=google_oidc,json=googleOidc,proto3,oneof"`
}

type Pipeline_Destination_AuthenticationConfig_OAuthToken added in v1.15.0

type Pipeline_Destination_AuthenticationConfig_OAuthToken struct {

	// Required. Service account email used to generate the [OAuth
	// token](https://developers.google.com/identity/protocols/OAuth2).
	// The principal who calls this API must have
	// iam.serviceAccounts.actAs permission in the service account. See
	// https://cloud.google.com/iam/docs/understanding-service-accounts?hl=en#sa_common
	// for more information. Eventarc service agents must have
	// roles/roles/iam.serviceAccountTokenCreator role to allow Pipeline
	// to create OAuth2 tokens for authenticated requests.
	ServiceAccount string `protobuf:"bytes,1,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
	// Optional. OAuth scope to be used for generating OAuth access token.
	// If not specified, "https://www.googleapis.com/auth/cloud-platform"
	// will be used.
	Scope string `protobuf:"bytes,2,opt,name=scope,proto3" json:"scope,omitempty"`
	// contains filtered or unexported fields
}

Contains information needed for generating an [OAuth token](https://developers.google.com/identity/protocols/OAuth2). This type of authorization should generally only be used when calling Google APIs hosted on *.googleapis.com.

func (*Pipeline_Destination_AuthenticationConfig_OAuthToken) Descriptor deprecated added in v1.15.0

Deprecated: Use Pipeline_Destination_AuthenticationConfig_OAuthToken.ProtoReflect.Descriptor instead.

func (*Pipeline_Destination_AuthenticationConfig_OAuthToken) GetScope added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OAuthToken) GetServiceAccount added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OAuthToken) ProtoMessage added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OAuthToken) ProtoReflect added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OAuthToken) Reset added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OAuthToken) String added in v1.15.0

type Pipeline_Destination_AuthenticationConfig_OauthToken added in v1.15.0

type Pipeline_Destination_AuthenticationConfig_OauthToken struct {
	// Optional. If specified, an [OAuth
	// token](https://developers.google.com/identity/protocols/OAuth2) will
	// be generated and attached as an `Authorization` header in the HTTP
	// request.
	//
	// This type of authorization should generally only be used when calling
	// Google APIs hosted on *.googleapis.com.
	OauthToken *Pipeline_Destination_AuthenticationConfig_OAuthToken `protobuf:"bytes,2,opt,name=oauth_token,json=oauthToken,proto3,oneof"`
}

type Pipeline_Destination_AuthenticationConfig_OidcToken added in v1.15.0

type Pipeline_Destination_AuthenticationConfig_OidcToken struct {

	// Required. Service account email used to generate the OIDC Token.
	// The principal who calls this API must have
	// iam.serviceAccounts.actAs permission in the service account. See
	// https://cloud.google.com/iam/docs/understanding-service-accounts?hl=en#sa_common
	// for more information. Eventarc service agents must have
	// roles/roles/iam.serviceAccountTokenCreator role to allow the
	// Pipeline to create OpenID tokens for authenticated requests.
	ServiceAccount string `protobuf:"bytes,1,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
	// Optional. Audience to be used to generate the OIDC Token. The
	// audience claim identifies the recipient that the JWT is intended for.
	// If unspecified, the destination URI will be used.
	Audience string `protobuf:"bytes,2,opt,name=audience,proto3" json:"audience,omitempty"`
	// contains filtered or unexported fields
}

Represents a config used to authenticate with a Google OIDC token using a GCP service account. Use this authentication method to invoke your Cloud Run and Cloud Functions destinations or HTTP endpoints that support Google OIDC.

func (*Pipeline_Destination_AuthenticationConfig_OidcToken) Descriptor deprecated added in v1.15.0

Deprecated: Use Pipeline_Destination_AuthenticationConfig_OidcToken.ProtoReflect.Descriptor instead.

func (*Pipeline_Destination_AuthenticationConfig_OidcToken) GetAudience added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OidcToken) GetServiceAccount added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OidcToken) ProtoMessage added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OidcToken) ProtoReflect added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OidcToken) Reset added in v1.15.0

func (*Pipeline_Destination_AuthenticationConfig_OidcToken) String added in v1.15.0

type Pipeline_Destination_HttpEndpoint added in v1.15.0

type Pipeline_Destination_HttpEndpoint struct {

	// Required. The URI of the HTTP enpdoint.
	//
	// The value must be a RFC2396 URI string.
	// Examples: `https://svc.us-central1.p.local:8080/route`.
	// Only the HTTPS protocol is supported.
	Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"`
	// Optional. The CEL expression used to modify how the destination-bound
	// HTTP request is constructed.
	//
	// If a binding expression is not specified here, the message
	// is treated as a CloudEvent and is mapped to the HTTP request according
	// to the CloudEvent HTTP Protocol Binding Binary Content Mode. In this
	// representation, all fields except the `data` and `datacontenttype`
	// field on the message are mapped to HTTP request headers with a prefix
	// of `ce-`.
	//
	// To construct the HTTP request payload and the value of the content-type
	// HTTP header, the payload format is defined as follows:
	//  1. Use the output_payload_format_type on the Pipeline.Destination if it
	//     is set, else:
	//  2. Use the input_payload_format_type on the Pipeline if it is set,
	//     else:
	//  3. Treat the payload as opaque binary data.
	//
	// The `data` field of the message is converted to the payload format or
	// left as-is for case 3) and then attached as the payload of the HTTP
	// request. The `content-type` header on the HTTP request is set to the
	// payload format type or left empty for case 3). However, if a mediation
	// has updated the `datacontenttype` field on the message so that it is
	// not the same as the payload format type but it is still a prefix of the
	// payload format type, then the `content-type` header on the HTTP request
	// is set to this `datacontenttype` value. For example, if the
	// `datacontenttype` is "application/json" and the payload format type is
	// "application/json; charset=utf-8", then the `content-type` header on
	// the HTTP request is set to "application/json; charset=utf-8".
	//
	// If a non-empty binding expression is specified then this expression is
	// used to modify the default CloudEvent HTTP Protocol Binding Binary
	// Content representation.
	// The result of the CEL expression must be a map of key/value pairs
	// which is used as follows:
	// - If a map named `headers` exists on the result of the expression,
	// then its key/value pairs are directly mapped to the HTTP request
	// headers. The headers values are constructed from the corresponding
	// value type’s canonical representation. If the `headers` field doesn’t
	// exist then the resulting HTTP request will be the headers of the
	// CloudEvent HTTP Binding Binary Content Mode representation of the final
	// message. Note: If the specified binding expression, has updated the
	// `datacontenttype` field on the message so that it is not the same as
	// the payload format type but it is still a prefix of the payload format
	// type, then the `content-type` header in the `headers` map is set to
	// this `datacontenttype` value.
	// - If a field named `body` exists on the result of the expression then
	// its value is directly mapped to the body of the request. If the value
	// of the `body` field is of type bytes or string then it is used for
	// the HTTP request body as-is, with no conversion. If the body field is
	// of any other type then it is converted to a JSON string. If the body
	// field does not exist then the resulting payload of the HTTP request
	// will be data value of the CloudEvent HTTP Binding Binary Content Mode
	// representation of the final message as described earlier.
	// - Any other fields in the resulting expression will be ignored.
	//
	// The CEL expression may access the incoming CloudEvent message in its
	// definition, as follows:
	// - The `data` field of the incoming CloudEvent message can be accessed
	// using the `message.data` value. Subfields of `message.data` may also be
	// accessed if an input_payload_format has been specified on the Pipeline.
	// - Each attribute of the incoming CloudEvent message can be accessed
	// using the `message.<key>` value, where <key> is replaced with the
	// name of the attribute.
	// - Existing headers can be accessed in the CEL expression using the
	// `headers` variable. The `headers` variable defines a map of key/value
	// pairs corresponding to the HTTP headers of the CloudEvent HTTP Binding
	// Binary Content Mode representation of the final message as described
	// earlier. For example, the following CEL expression can be used to
	// construct an HTTP request by adding an additional header to the HTTP
	// headers of the CloudEvent HTTP Binding Binary Content Mode
	// representation of the final message and by overwriting the body of the
	// request:
	//
	// “`
	//
	//	{
	//	  "headers": headers.merge({"new-header-key": "new-header-value"}),
	//	  "body": "new-body"
	//	}
	//
	// “`
	//
	// Additionally, the following CEL extension functions are provided for
	// use in this CEL expression:
	//   - toBase64Url:
	//     map.toBase64Url() -> string
	//   - Converts a CelValue to a base64url encoded string
	//   - toJsonString: map.toJsonString() -> string
	//   - Converts a CelValue to a JSON string
	//   - merge:
	//     map1.merge(map2) -> map3
	//   - Merges the passed CEL map with the existing CEL map the
	//     function is applied to.
	//   - If the same key exists in both maps, if the key's value is type
	//     map both maps are merged else the value from the passed map is
	//     used.
	//   - denormalize:
	//     map.denormalize() -> map
	//   - Denormalizes a CEL map such that every value of type map or key
	//     in the map is expanded to return a single level map.
	//   - The resulting keys are "." separated indices of the map keys.
	//   - For example:
	//     {
	//     "a": 1,
	//     "b": {
	//     "c": 2,
	//     "d": 3
	//     }
	//     "e": [4, 5]
	//     }
	//     .denormalize()
	//     -> {
	//     "a": 1,
	//     "b.c": 2,
	//     "b.d": 3,
	//     "e.0": 4,
	//     "e.1": 5
	//     }
	//   - setField:
	//     map.setField(key, value) -> message
	//   - Sets the field of the message with the given key to the
	//     given value.
	//   - If the field is not present it will be added.
	//   - If the field is present it will be overwritten.
	//   - The key can be a dot separated path to set a field in a nested
	//     message.
	//   - Key must be of type string.
	//   - Value may be any valid type.
	//   - removeFields:
	//     map.removeFields([key1, key2, ...]) -> message
	//   - Removes the fields of the map with the given keys.
	//   - The keys can be a dot separated path to remove a field in a
	//     nested message.
	//   - If a key is not found it will be ignored.
	//   - Keys must be of type string.
	//   - toMap:
	//     [map1, map2, ...].toMap() -> map
	//   - Converts a CEL list of CEL maps to a single CEL map
	//   - toDestinationPayloadFormat():
	//     message.data.toDestinationPayloadFormat() -> string or bytes
	//   - Converts the message data to the destination payload format
	//     specified in Pipeline.Destination.output_payload_format
	//   - This function is meant to be applied to the message.data field.
	//   - If the destination payload format is not set, the function will
	//     return the message data unchanged.
	//   - toCloudEventJsonWithPayloadFormat:
	//     message.toCloudEventJsonWithPayloadFormat() -> map
	//   - Converts a message to the corresponding structure of JSON
	//     format for CloudEvents
	//   - This function applies toDestinationPayloadFormat() to the
	//     message data. It also sets the corresponding datacontenttype of
	//     the CloudEvent, as indicated by
	//     Pipeline.Destination.output_payload_format. If no
	//     output_payload_format is set it will use the existing
	//     datacontenttype on the CloudEvent if present, else leave
	//     datacontenttype absent.
	//   - This function expects that the content of the message will
	//     adhere to the standard CloudEvent format. If it doesn’t then this
	//     function will fail.
	//   - The result is a CEL map that corresponds to the JSON
	//     representation of the CloudEvent. To convert that data to a JSON
	//     string it can be chained with the toJsonString function.
	//
	// The Pipeline expects that the message it receives adheres to the
	// standard CloudEvent format. If it doesn’t then the outgoing message
	// request may fail with a persistent error.
	MessageBindingTemplate string `` /* 129-byte string literal not displayed */
	// contains filtered or unexported fields
}

Represents a HTTP endpoint destination.

func (*Pipeline_Destination_HttpEndpoint) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_Destination_HttpEndpoint.ProtoReflect.Descriptor instead.

func (*Pipeline_Destination_HttpEndpoint) GetMessageBindingTemplate added in v1.15.0

func (x *Pipeline_Destination_HttpEndpoint) GetMessageBindingTemplate() string

func (*Pipeline_Destination_HttpEndpoint) GetUri added in v1.15.0

func (*Pipeline_Destination_HttpEndpoint) ProtoMessage added in v1.15.0

func (*Pipeline_Destination_HttpEndpoint) ProtoMessage()

func (*Pipeline_Destination_HttpEndpoint) ProtoReflect added in v1.15.0

func (*Pipeline_Destination_HttpEndpoint) Reset added in v1.15.0

func (*Pipeline_Destination_HttpEndpoint) String added in v1.15.0

type Pipeline_Destination_HttpEndpoint_ added in v1.15.0

type Pipeline_Destination_HttpEndpoint_ struct {
	// Optional. An HTTP endpoint destination described by an URI.
	// If a DNS FQDN is provided as the endpoint, Pipeline will create a
	// peering zone to the consumer VPC and forward DNS requests to the VPC
	// specified by network config to resolve the service endpoint. See:
	// https://cloud.google.com/dns/docs/zones/zones-overview#peering_zones
	HttpEndpoint *Pipeline_Destination_HttpEndpoint `protobuf:"bytes,2,opt,name=http_endpoint,json=httpEndpoint,proto3,oneof"`
}

type Pipeline_Destination_MessageBus added in v1.15.0

type Pipeline_Destination_MessageBus struct {
	// Optional. The resource name of the Message Bus to which events should
	// be published. The Message Bus resource should exist in the same project
	// as the Pipeline. Format:
	// `projects/{project}/locations/{location}/messageBuses/{message_bus}`
	MessageBus string `protobuf:"bytes,4,opt,name=message_bus,json=messageBus,proto3,oneof"`
}

type Pipeline_Destination_NetworkConfig added in v1.15.0

type Pipeline_Destination_NetworkConfig struct {

	// Required. Name of the NetworkAttachment that allows access to the
	// consumer VPC. Format:
	// `projects/{PROJECT_ID}/regions/{REGION}/networkAttachments/{NETWORK_ATTACHMENT_NAME}`
	NetworkAttachment string `protobuf:"bytes,1,opt,name=network_attachment,json=networkAttachment,proto3" json:"network_attachment,omitempty"`
	// contains filtered or unexported fields
}

Represents a network config to be used for destination resolution and connectivity.

func (*Pipeline_Destination_NetworkConfig) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_Destination_NetworkConfig.ProtoReflect.Descriptor instead.

func (*Pipeline_Destination_NetworkConfig) GetNetworkAttachment added in v1.15.0

func (x *Pipeline_Destination_NetworkConfig) GetNetworkAttachment() string

func (*Pipeline_Destination_NetworkConfig) ProtoMessage added in v1.15.0

func (*Pipeline_Destination_NetworkConfig) ProtoMessage()

func (*Pipeline_Destination_NetworkConfig) ProtoReflect added in v1.15.0

func (*Pipeline_Destination_NetworkConfig) Reset added in v1.15.0

func (*Pipeline_Destination_NetworkConfig) String added in v1.15.0

type Pipeline_Destination_Topic added in v1.15.0

type Pipeline_Destination_Topic struct {
	// Optional. The resource name of the Pub/Sub topic to which events should
	// be published. Format:
	// `projects/{project}/locations/{location}/topics/{topic}`
	Topic string `protobuf:"bytes,8,opt,name=topic,proto3,oneof"`
}

type Pipeline_Destination_Workflow added in v1.15.0

type Pipeline_Destination_Workflow struct {
	// Optional. The resource name of the Workflow whose Executions are
	// triggered by the events. The Workflow resource should be deployed in
	// the same project as the Pipeline. Format:
	// `projects/{project}/locations/{location}/workflows/{workflow}`
	Workflow string `protobuf:"bytes,3,opt,name=workflow,proto3,oneof"`
}

type Pipeline_Mediation added in v1.15.0

type Pipeline_Mediation struct {

	// The config of mediation.
	//
	// Types that are assignable to MediationDescriptor:
	//
	//	*Pipeline_Mediation_Transformation_
	MediationDescriptor isPipeline_Mediation_MediationDescriptor `protobuf_oneof:"mediation_descriptor"`
	// contains filtered or unexported fields
}

Mediation defines different ways to modify the Pipeline.

func (*Pipeline_Mediation) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_Mediation.ProtoReflect.Descriptor instead.

func (*Pipeline_Mediation) GetMediationDescriptor added in v1.15.0

func (m *Pipeline_Mediation) GetMediationDescriptor() isPipeline_Mediation_MediationDescriptor

func (*Pipeline_Mediation) GetTransformation added in v1.15.0

func (x *Pipeline_Mediation) GetTransformation() *Pipeline_Mediation_Transformation

func (*Pipeline_Mediation) ProtoMessage added in v1.15.0

func (*Pipeline_Mediation) ProtoMessage()

func (*Pipeline_Mediation) ProtoReflect added in v1.15.0

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

func (*Pipeline_Mediation) Reset added in v1.15.0

func (x *Pipeline_Mediation) Reset()

func (*Pipeline_Mediation) String added in v1.15.0

func (x *Pipeline_Mediation) String() string

type Pipeline_Mediation_Transformation added in v1.15.0

type Pipeline_Mediation_Transformation struct {

	// Optional. The CEL expression template to apply to transform messages.
	// The following CEL extension functions are provided for
	// use in this CEL expression:
	//   - merge:
	//     map1.merge(map2) -> map3
	//   - Merges the passed CEL map with the existing CEL map the
	//     function is applied to.
	//   - If the same key exists in both maps, if the key's value is type
	//     map both maps are merged else the value from the passed map is
	//     used.
	//   - denormalize:
	//     map.denormalize() -> map
	//   - Denormalizes a CEL map such that every value of type map or key
	//     in the map is expanded to return a single level map.
	//   - The resulting keys are "." separated indices of the map keys.
	//   - For example:
	//     {
	//     "a": 1,
	//     "b": {
	//     "c": 2,
	//     "d": 3
	//     }
	//     "e": [4, 5]
	//     }
	//     .denormalize()
	//     -> {
	//     "a": 1,
	//     "b.c": 2,
	//     "b.d": 3,
	//     "e.0": 4,
	//     "e.1": 5
	//     }
	//   - setField:
	//     map.setField(key, value) -> message
	//   - Sets the field of the message with the given key to the
	//     given value.
	//   - If the field is not present it will be added.
	//   - If the field is present it will be overwritten.
	//   - The key can be a dot separated path to set a field in a nested
	//     message.
	//   - Key must be of type string.
	//   - Value may be any valid type.
	//   - removeFields:
	//     map.removeFields([key1, key2, ...]) -> message
	//   - Removes the fields of the map with the given keys.
	//   - The keys can be a dot separated path to remove a field in a
	//     nested message.
	//   - If a key is not found it will be ignored.
	//   - Keys must be of type string.
	//   - toMap:
	//     [map1, map2, ...].toMap() -> map
	//   - Converts a CEL list of CEL maps to a single CEL map
	//   - toDestinationPayloadFormat():
	//     message.data.toDestinationPayloadFormat() -> string or bytes
	//   - Converts the message data to the destination payload format
	//     specified in Pipeline.Destination.output_payload_format
	//   - This function is meant to be applied to the message.data field.
	//   - If the destination payload format is not set, the function will
	//     return the message data unchanged.
	//   - toCloudEventJsonWithPayloadFormat:
	//     message.toCloudEventJsonWithPayloadFormat() -> map
	//   - Converts a message to the corresponding structure of JSON
	//     format for CloudEvents
	//   - This function applies toDestinationPayloadFormat() to the
	//     message data. It also sets the corresponding datacontenttype of
	//     the CloudEvent, as indicated by
	//     Pipeline.Destination.output_payload_format. If no
	//     output_payload_format is set it will use the existing
	//     datacontenttype on the CloudEvent if present, else leave
	//     datacontenttype absent.
	//   - This function expects that the content of the message will
	//     adhere to the standard CloudEvent format. If it doesn’t then this
	//     function will fail.
	//   - The result is a CEL map that corresponds to the JSON
	//     representation of the CloudEvent. To convert that data to a JSON
	//     string it can be chained with the toJsonString function.
	TransformationTemplate string `` /* 127-byte string literal not displayed */
	// contains filtered or unexported fields
}

Transformation defines the way to transform an incoming message.

func (*Pipeline_Mediation_Transformation) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_Mediation_Transformation.ProtoReflect.Descriptor instead.

func (*Pipeline_Mediation_Transformation) GetTransformationTemplate added in v1.15.0

func (x *Pipeline_Mediation_Transformation) GetTransformationTemplate() string

func (*Pipeline_Mediation_Transformation) ProtoMessage added in v1.15.0

func (*Pipeline_Mediation_Transformation) ProtoMessage()

func (*Pipeline_Mediation_Transformation) ProtoReflect added in v1.15.0

func (*Pipeline_Mediation_Transformation) Reset added in v1.15.0

func (*Pipeline_Mediation_Transformation) String added in v1.15.0

type Pipeline_Mediation_Transformation_ added in v1.15.0

type Pipeline_Mediation_Transformation_ struct {
	// Optional. How the Pipeline is to transform messages
	Transformation *Pipeline_Mediation_Transformation `protobuf:"bytes,1,opt,name=transformation,proto3,oneof"`
}

type Pipeline_MessagePayloadFormat added in v1.15.0

type Pipeline_MessagePayloadFormat struct {

	// The kind of message format.
	// One of Protobuf, Avro, and JSON supported.
	// This allows specification of what specific format
	// messages are sent and received.
	//
	// Types that are assignable to Kind:
	//
	//	*Pipeline_MessagePayloadFormat_Protobuf
	//	*Pipeline_MessagePayloadFormat_Avro
	//	*Pipeline_MessagePayloadFormat_Json
	Kind isPipeline_MessagePayloadFormat_Kind `protobuf_oneof:"kind"`
	// contains filtered or unexported fields
}

Represents the format of message data.

func (*Pipeline_MessagePayloadFormat) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_MessagePayloadFormat.ProtoReflect.Descriptor instead.

func (*Pipeline_MessagePayloadFormat) GetAvro added in v1.15.0

func (*Pipeline_MessagePayloadFormat) GetJson added in v1.15.0

func (*Pipeline_MessagePayloadFormat) GetKind added in v1.15.0

func (m *Pipeline_MessagePayloadFormat) GetKind() isPipeline_MessagePayloadFormat_Kind

func (*Pipeline_MessagePayloadFormat) GetProtobuf added in v1.15.0

func (*Pipeline_MessagePayloadFormat) ProtoMessage added in v1.15.0

func (*Pipeline_MessagePayloadFormat) ProtoMessage()

func (*Pipeline_MessagePayloadFormat) ProtoReflect added in v1.15.0

func (*Pipeline_MessagePayloadFormat) Reset added in v1.15.0

func (x *Pipeline_MessagePayloadFormat) Reset()

func (*Pipeline_MessagePayloadFormat) String added in v1.15.0

type Pipeline_MessagePayloadFormat_Avro added in v1.15.0

type Pipeline_MessagePayloadFormat_Avro struct {
	// Optional. Avro format.
	Avro *Pipeline_MessagePayloadFormat_AvroFormat `protobuf:"bytes,2,opt,name=avro,proto3,oneof"`
}

type Pipeline_MessagePayloadFormat_AvroFormat added in v1.15.0

type Pipeline_MessagePayloadFormat_AvroFormat struct {

	// Optional. The entire schema definition is stored in this field.
	SchemaDefinition string `protobuf:"bytes,1,opt,name=schema_definition,json=schemaDefinition,proto3" json:"schema_definition,omitempty"`
	// contains filtered or unexported fields
}

The format of an AVRO message payload.

func (*Pipeline_MessagePayloadFormat_AvroFormat) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_MessagePayloadFormat_AvroFormat.ProtoReflect.Descriptor instead.

func (*Pipeline_MessagePayloadFormat_AvroFormat) GetSchemaDefinition added in v1.15.0

func (x *Pipeline_MessagePayloadFormat_AvroFormat) GetSchemaDefinition() string

func (*Pipeline_MessagePayloadFormat_AvroFormat) ProtoMessage added in v1.15.0

func (*Pipeline_MessagePayloadFormat_AvroFormat) ProtoReflect added in v1.15.0

func (*Pipeline_MessagePayloadFormat_AvroFormat) Reset added in v1.15.0

func (*Pipeline_MessagePayloadFormat_AvroFormat) String added in v1.15.0

type Pipeline_MessagePayloadFormat_Json added in v1.15.0

type Pipeline_MessagePayloadFormat_Json struct {
	// Optional. JSON format.
	Json *Pipeline_MessagePayloadFormat_JsonFormat `protobuf:"bytes,3,opt,name=json,proto3,oneof"`
}

type Pipeline_MessagePayloadFormat_JsonFormat added in v1.15.0

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

The format of a JSON message payload.

func (*Pipeline_MessagePayloadFormat_JsonFormat) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_MessagePayloadFormat_JsonFormat.ProtoReflect.Descriptor instead.

func (*Pipeline_MessagePayloadFormat_JsonFormat) ProtoMessage added in v1.15.0

func (*Pipeline_MessagePayloadFormat_JsonFormat) ProtoReflect added in v1.15.0

func (*Pipeline_MessagePayloadFormat_JsonFormat) Reset added in v1.15.0

func (*Pipeline_MessagePayloadFormat_JsonFormat) String added in v1.15.0

type Pipeline_MessagePayloadFormat_Protobuf added in v1.15.0

type Pipeline_MessagePayloadFormat_Protobuf struct {
	// Optional. Protobuf format.
	Protobuf *Pipeline_MessagePayloadFormat_ProtobufFormat `protobuf:"bytes,1,opt,name=protobuf,proto3,oneof"`
}

type Pipeline_MessagePayloadFormat_ProtobufFormat added in v1.15.0

type Pipeline_MessagePayloadFormat_ProtobufFormat struct {

	// Optional. The entire schema definition is stored in this field.
	SchemaDefinition string `protobuf:"bytes,1,opt,name=schema_definition,json=schemaDefinition,proto3" json:"schema_definition,omitempty"`
	// contains filtered or unexported fields
}

The format of a Protobuf message payload.

func (*Pipeline_MessagePayloadFormat_ProtobufFormat) Descriptor deprecated added in v1.15.0

Deprecated: Use Pipeline_MessagePayloadFormat_ProtobufFormat.ProtoReflect.Descriptor instead.

func (*Pipeline_MessagePayloadFormat_ProtobufFormat) GetSchemaDefinition added in v1.15.0

func (x *Pipeline_MessagePayloadFormat_ProtobufFormat) GetSchemaDefinition() string

func (*Pipeline_MessagePayloadFormat_ProtobufFormat) ProtoMessage added in v1.15.0

func (*Pipeline_MessagePayloadFormat_ProtobufFormat) ProtoReflect added in v1.15.0

func (*Pipeline_MessagePayloadFormat_ProtobufFormat) Reset added in v1.15.0

func (*Pipeline_MessagePayloadFormat_ProtobufFormat) String added in v1.15.0

type Pipeline_RetryPolicy added in v1.15.0

type Pipeline_RetryPolicy struct {

	// Optional. The maximum number of delivery attempts for any message. The
	// value must be between 1 and 100. The default value for this field is 5.
	MaxAttempts int32 `protobuf:"varint,1,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
	// Optional. The minimum amount of seconds to wait between retry attempts.
	// The value must be between 1 and 600. The default value for this field
	// is 5.
	MinRetryDelay *durationpb.Duration `protobuf:"bytes,2,opt,name=min_retry_delay,json=minRetryDelay,proto3" json:"min_retry_delay,omitempty"`
	// Optional. The maximum amount of seconds to wait between retry attempts.
	// The value must be between 1 and 600. The default value for this field
	// is 60.
	MaxRetryDelay *durationpb.Duration `protobuf:"bytes,3,opt,name=max_retry_delay,json=maxRetryDelay,proto3" json:"max_retry_delay,omitempty"`
	// contains filtered or unexported fields
}

The retry policy configuration for the Pipeline. The pipeline exponentially backs off in case the destination is non responsive or returns a retryable error code. The default semantics are as follows: The backoff starts with a 5 second delay and doubles the delay after each failed attempt (10 seconds, 20 seconds, 40 seconds, etc.). The delay is capped at 60 seconds by default. Please note that if you set the min_retry_delay and max_retry_delay fields to the same value this will make the duration between retries constant.

func (*Pipeline_RetryPolicy) Descriptor deprecated added in v1.15.0

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

Deprecated: Use Pipeline_RetryPolicy.ProtoReflect.Descriptor instead.

func (*Pipeline_RetryPolicy) GetMaxAttempts added in v1.15.0

func (x *Pipeline_RetryPolicy) GetMaxAttempts() int32

func (*Pipeline_RetryPolicy) GetMaxRetryDelay added in v1.15.0

func (x *Pipeline_RetryPolicy) GetMaxRetryDelay() *durationpb.Duration

func (*Pipeline_RetryPolicy) GetMinRetryDelay added in v1.15.0

func (x *Pipeline_RetryPolicy) GetMinRetryDelay() *durationpb.Duration

func (*Pipeline_RetryPolicy) ProtoMessage added in v1.15.0

func (*Pipeline_RetryPolicy) ProtoMessage()

func (*Pipeline_RetryPolicy) ProtoReflect added in v1.15.0

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

func (*Pipeline_RetryPolicy) Reset added in v1.15.0

func (x *Pipeline_RetryPolicy) Reset()

func (*Pipeline_RetryPolicy) String added in v1.15.0

func (x *Pipeline_RetryPolicy) String() string

type Provider

type Provider struct {

	// Output only. In
	// `projects/{project}/locations/{location}/providers/{provider_id}` format.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. Human friendly name for the Provider. For example "Cloud
	// Storage".
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// Output only. Event types for this provider.
	EventTypes []*EventType `protobuf:"bytes,3,rep,name=event_types,json=eventTypes,proto3" json:"event_types,omitempty"`
	// contains filtered or unexported fields
}

A representation of the Provider resource.

func (*Provider) Descriptor deprecated

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

Deprecated: Use Provider.ProtoReflect.Descriptor instead.

func (*Provider) GetDisplayName

func (x *Provider) GetDisplayName() string

func (*Provider) GetEventTypes

func (x *Provider) GetEventTypes() []*EventType

func (*Provider) GetName

func (x *Provider) GetName() string

func (*Provider) ProtoMessage

func (*Provider) ProtoMessage()

func (*Provider) ProtoReflect

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

func (*Provider) Reset

func (x *Provider) Reset()

func (*Provider) String

func (x *Provider) String() string

type Pubsub

type Pubsub struct {

	// Optional. The name of the Pub/Sub topic created and managed by Eventarc as
	// a transport for the event delivery. Format:
	// `projects/{PROJECT_ID}/topics/{TOPIC_NAME}`.
	//
	// You can set an existing topic for triggers of the type
	// `google.cloud.pubsub.topic.v1.messagePublished`. The topic you provide
	// here is not deleted by Eventarc at trigger deletion.
	Topic string `protobuf:"bytes,1,opt,name=topic,proto3" json:"topic,omitempty"`
	// Output only. The name of the Pub/Sub subscription created and managed by
	// Eventarc as a transport for the event delivery. Format:
	// `projects/{PROJECT_ID}/subscriptions/{SUBSCRIPTION_NAME}`.
	Subscription string `protobuf:"bytes,2,opt,name=subscription,proto3" json:"subscription,omitempty"`
	// contains filtered or unexported fields
}

Represents a Pub/Sub transport.

func (*Pubsub) Descriptor deprecated

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

Deprecated: Use Pubsub.ProtoReflect.Descriptor instead.

func (*Pubsub) GetSubscription

func (x *Pubsub) GetSubscription() string

func (*Pubsub) GetTopic

func (x *Pubsub) GetTopic() string

func (*Pubsub) ProtoMessage

func (*Pubsub) ProtoMessage()

func (*Pubsub) ProtoReflect

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

func (*Pubsub) Reset

func (x *Pubsub) Reset()

func (*Pubsub) String

func (x *Pubsub) String() string

type StateCondition added in v1.9.0

type StateCondition struct {

	// The canonical code of the condition.
	Code code.Code `protobuf:"varint,1,opt,name=code,proto3,enum=google.rpc.Code" json:"code,omitempty"`
	// Human-readable message.
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

A condition that is part of the trigger state computation.

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

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

Deprecated: Use StateCondition.ProtoReflect.Descriptor instead.

func (*StateCondition) GetCode added in v1.9.0

func (x *StateCondition) GetCode() code.Code

func (*StateCondition) GetMessage added in v1.9.0

func (x *StateCondition) GetMessage() string

func (*StateCondition) ProtoMessage added in v1.9.0

func (*StateCondition) ProtoMessage()

func (*StateCondition) ProtoReflect added in v1.9.0

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

func (*StateCondition) Reset added in v1.9.0

func (x *StateCondition) Reset()

func (*StateCondition) String added in v1.9.0

func (x *StateCondition) String() string

type Transport

type Transport struct {

	// Types that are assignable to Intermediary:
	//
	//	*Transport_Pubsub
	Intermediary isTransport_Intermediary `protobuf_oneof:"intermediary"`
	// contains filtered or unexported fields
}

Represents the transport intermediaries created for the trigger to deliver events.

func (*Transport) Descriptor deprecated

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

Deprecated: Use Transport.ProtoReflect.Descriptor instead.

func (*Transport) GetIntermediary

func (m *Transport) GetIntermediary() isTransport_Intermediary

func (*Transport) GetPubsub

func (x *Transport) GetPubsub() *Pubsub

func (*Transport) ProtoMessage

func (*Transport) ProtoMessage()

func (*Transport) ProtoReflect

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

func (*Transport) Reset

func (x *Transport) Reset()

func (*Transport) String

func (x *Transport) String() string

type Transport_Pubsub

type Transport_Pubsub struct {
	// The Pub/Sub topic and subscription used by Eventarc as a transport
	// intermediary.
	Pubsub *Pubsub `protobuf:"bytes,1,opt,name=pubsub,proto3,oneof"`
}

type Trigger

type Trigger struct {

	// Required. The resource name of the trigger. Must be unique within the
	// location of the project and must be in
	// `projects/{project}/locations/{location}/triggers/{trigger}` format.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Output only. Server-assigned unique identifier for the trigger. The value
	// is a UUID4 string and guaranteed to remain unchanged until the resource is
	// deleted.
	Uid string `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	// Output only. The creation time.
	CreateTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
	// Output only. The last-modified time.
	UpdateTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
	// Required. Unordered list. The list of filters that applies to event
	// attributes. Only events that match all the provided filters are sent to the
	// destination.
	EventFilters []*EventFilter `protobuf:"bytes,8,rep,name=event_filters,json=eventFilters,proto3" json:"event_filters,omitempty"`
	// Optional. The IAM service account email associated with the trigger. The
	// service account represents the identity of the trigger.
	//
	// The `iam.serviceAccounts.actAs` permission must be granted on the service
	// account to allow a principal to impersonate the service account. For more
	// information, see the
	// [Roles and permissions](/eventarc/docs/all-roles-permissions) page specific
	// to the trigger destination.
	ServiceAccount string `protobuf:"bytes,9,opt,name=service_account,json=serviceAccount,proto3" json:"service_account,omitempty"`
	// Required. Destination specifies where the events should be sent to.
	Destination *Destination `protobuf:"bytes,10,opt,name=destination,proto3" json:"destination,omitempty"`
	// Optional. To deliver messages, Eventarc might use other Google Cloud
	// products as a transport intermediary. This field contains a reference to
	// that transport intermediary. This information can be used for debugging
	// purposes.
	Transport *Transport `protobuf:"bytes,11,opt,name=transport,proto3" json:"transport,omitempty"`
	// Optional. User labels attached to the triggers that can be used to group
	// resources.
	Labels map[string]string `` /* 154-byte string literal not displayed */
	// Optional. The name of the channel associated with the trigger in
	// `projects/{project}/locations/{location}/channels/{channel}` format.
	// You must provide a channel to receive events from Eventarc SaaS partners.
	Channel string `protobuf:"bytes,13,opt,name=channel,proto3" json:"channel,omitempty"`
	// Output only. The reason(s) why a trigger is in FAILED state.
	Conditions map[string]*StateCondition `` /* 162-byte string literal not displayed */
	// Optional. EventDataContentType specifies the type of payload in MIME
	// format that is expected from the CloudEvent data field. This is set to
	// `application/json` if the value is not defined.
	EventDataContentType string `` /* 126-byte string literal not displayed */
	// Output only. Whether or not this Trigger satisfies the requirements of
	// physical zone separation
	SatisfiesPzs bool `protobuf:"varint,19,opt,name=satisfies_pzs,json=satisfiesPzs,proto3" json:"satisfies_pzs,omitempty"`
	// Output only. This checksum is computed by the server based on the value of
	// other fields, and might be sent only on create requests to ensure that the
	// client has an up-to-date value before proceeding.
	Etag string `protobuf:"bytes,99,opt,name=etag,proto3" json:"etag,omitempty"`
	// contains filtered or unexported fields
}

A representation of the trigger resource.

func (*Trigger) Descriptor deprecated

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

Deprecated: Use Trigger.ProtoReflect.Descriptor instead.

func (*Trigger) GetChannel

func (x *Trigger) GetChannel() string

func (*Trigger) GetConditions added in v1.9.0

func (x *Trigger) GetConditions() map[string]*StateCondition

func (*Trigger) GetCreateTime

func (x *Trigger) GetCreateTime() *timestamppb.Timestamp

func (*Trigger) GetDestination

func (x *Trigger) GetDestination() *Destination

func (*Trigger) GetEtag

func (x *Trigger) GetEtag() string

func (*Trigger) GetEventDataContentType added in v1.15.0

func (x *Trigger) GetEventDataContentType() string

func (*Trigger) GetEventFilters

func (x *Trigger) GetEventFilters() []*EventFilter

func (*Trigger) GetLabels

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

func (*Trigger) GetName

func (x *Trigger) GetName() string

func (*Trigger) GetSatisfiesPzs added in v1.15.0

func (x *Trigger) GetSatisfiesPzs() bool

func (*Trigger) GetServiceAccount

func (x *Trigger) GetServiceAccount() string

func (*Trigger) GetTransport

func (x *Trigger) GetTransport() *Transport

func (*Trigger) GetUid

func (x *Trigger) GetUid() string

func (*Trigger) GetUpdateTime

func (x *Trigger) GetUpdateTime() *timestamppb.Timestamp

func (*Trigger) ProtoMessage

func (*Trigger) ProtoMessage()

func (*Trigger) ProtoReflect

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

func (*Trigger) Reset

func (x *Trigger) Reset()

func (*Trigger) String

func (x *Trigger) String() string

type UnimplementedEventarcServer

type UnimplementedEventarcServer struct {
}

UnimplementedEventarcServer can be embedded to have forward compatible implementations.

func (*UnimplementedEventarcServer) CreateChannel

func (*UnimplementedEventarcServer) CreateChannelConnection

func (*UnimplementedEventarcServer) CreateEnrollment added in v1.15.0

func (*UnimplementedEventarcServer) CreateGoogleApiSource added in v1.15.0

func (*UnimplementedEventarcServer) CreateMessageBus added in v1.15.0

func (*UnimplementedEventarcServer) CreatePipeline added in v1.15.0

func (*UnimplementedEventarcServer) CreateTrigger

func (*UnimplementedEventarcServer) DeleteChannel

func (*UnimplementedEventarcServer) DeleteChannelConnection

func (*UnimplementedEventarcServer) DeleteEnrollment added in v1.15.0

func (*UnimplementedEventarcServer) DeleteGoogleApiSource added in v1.15.0

func (*UnimplementedEventarcServer) DeleteMessageBus added in v1.15.0

func (*UnimplementedEventarcServer) DeletePipeline added in v1.15.0

func (*UnimplementedEventarcServer) DeleteTrigger

func (*UnimplementedEventarcServer) GetChannel

func (*UnimplementedEventarcServer) GetChannelConnection

func (*UnimplementedEventarcServer) GetEnrollment added in v1.15.0

func (*UnimplementedEventarcServer) GetGoogleApiSource added in v1.15.0

func (*UnimplementedEventarcServer) GetGoogleChannelConfig added in v1.9.0

func (*UnimplementedEventarcServer) GetMessageBus added in v1.15.0

func (*UnimplementedEventarcServer) GetPipeline added in v1.15.0

func (*UnimplementedEventarcServer) GetProvider

func (*UnimplementedEventarcServer) GetTrigger

func (*UnimplementedEventarcServer) ListChannels

func (*UnimplementedEventarcServer) ListEnrollments added in v1.15.0

func (*UnimplementedEventarcServer) ListGoogleApiSources added in v1.15.0

func (*UnimplementedEventarcServer) ListMessageBusEnrollments added in v1.15.0

func (*UnimplementedEventarcServer) ListMessageBuses added in v1.15.0

func (*UnimplementedEventarcServer) ListPipelines added in v1.15.0

func (*UnimplementedEventarcServer) ListProviders

func (*UnimplementedEventarcServer) ListTriggers

func (*UnimplementedEventarcServer) UpdateChannel

func (*UnimplementedEventarcServer) UpdateEnrollment added in v1.15.0

func (*UnimplementedEventarcServer) UpdateGoogleApiSource added in v1.15.0

func (*UnimplementedEventarcServer) UpdateGoogleChannelConfig added in v1.9.0

func (*UnimplementedEventarcServer) UpdateMessageBus added in v1.15.0

func (*UnimplementedEventarcServer) UpdatePipeline added in v1.15.0

func (*UnimplementedEventarcServer) UpdateTrigger

type UpdateChannelRequest

type UpdateChannelRequest struct {

	// The channel to be updated.
	Channel *Channel `protobuf:"bytes,1,opt,name=channel,proto3" json:"channel,omitempty"`
	// The fields to be updated; only fields explicitly provided are updated.
	// If no field mask is provided, all provided fields in the request are
	// updated. To update all fields, provide a field mask of "*".
	UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,3,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the UpdateChannel method.

func (*UpdateChannelRequest) Descriptor deprecated

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

Deprecated: Use UpdateChannelRequest.ProtoReflect.Descriptor instead.

func (*UpdateChannelRequest) GetChannel

func (x *UpdateChannelRequest) GetChannel() *Channel

func (*UpdateChannelRequest) GetUpdateMask

func (x *UpdateChannelRequest) GetUpdateMask() *fieldmaskpb.FieldMask

func (*UpdateChannelRequest) GetValidateOnly

func (x *UpdateChannelRequest) GetValidateOnly() bool

func (*UpdateChannelRequest) ProtoMessage

func (*UpdateChannelRequest) ProtoMessage()

func (*UpdateChannelRequest) ProtoReflect

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

func (*UpdateChannelRequest) Reset

func (x *UpdateChannelRequest) Reset()

func (*UpdateChannelRequest) String

func (x *UpdateChannelRequest) String() string

type UpdateEnrollmentRequest added in v1.15.0

type UpdateEnrollmentRequest struct {

	// Required. The Enrollment to be updated.
	Enrollment *Enrollment `protobuf:"bytes,1,opt,name=enrollment,proto3" json:"enrollment,omitempty"`
	// Optional. The fields to be updated; only fields explicitly provided are
	// updated. If no field mask is provided, all provided fields in the request
	// are updated. To update all fields, provide a field mask of "*".
	UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
	// Optional. If set to true, and the Enrollment is not found, a new Enrollment
	// will be created. In this situation, `update_mask` is ignored.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the UpdateEnrollment method.

func (*UpdateEnrollmentRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use UpdateEnrollmentRequest.ProtoReflect.Descriptor instead.

func (*UpdateEnrollmentRequest) GetAllowMissing added in v1.15.0

func (x *UpdateEnrollmentRequest) GetAllowMissing() bool

func (*UpdateEnrollmentRequest) GetEnrollment added in v1.15.0

func (x *UpdateEnrollmentRequest) GetEnrollment() *Enrollment

func (*UpdateEnrollmentRequest) GetUpdateMask added in v1.15.0

func (x *UpdateEnrollmentRequest) GetUpdateMask() *fieldmaskpb.FieldMask

func (*UpdateEnrollmentRequest) GetValidateOnly added in v1.15.0

func (x *UpdateEnrollmentRequest) GetValidateOnly() bool

func (*UpdateEnrollmentRequest) ProtoMessage added in v1.15.0

func (*UpdateEnrollmentRequest) ProtoMessage()

func (*UpdateEnrollmentRequest) ProtoReflect added in v1.15.0

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

func (*UpdateEnrollmentRequest) Reset added in v1.15.0

func (x *UpdateEnrollmentRequest) Reset()

func (*UpdateEnrollmentRequest) String added in v1.15.0

func (x *UpdateEnrollmentRequest) String() string

type UpdateGoogleApiSourceRequest added in v1.15.0

type UpdateGoogleApiSourceRequest struct {

	// Required. The GoogleApiSource to be updated.
	GoogleApiSource *GoogleApiSource `protobuf:"bytes,1,opt,name=google_api_source,json=googleApiSource,proto3" json:"google_api_source,omitempty"`
	// Optional. The fields to be updated; only fields explicitly provided are
	// updated. If no field mask is provided, all provided fields in the request
	// are updated. To update all fields, provide a field mask of "*".
	UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
	// Optional. If set to true, and the GoogleApiSource is not found, a new
	// GoogleApiSource will be created. In this situation, `update_mask` is
	// ignored.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the UpdateGoogleApiSource method.

func (*UpdateGoogleApiSourceRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use UpdateGoogleApiSourceRequest.ProtoReflect.Descriptor instead.

func (*UpdateGoogleApiSourceRequest) GetAllowMissing added in v1.15.0

func (x *UpdateGoogleApiSourceRequest) GetAllowMissing() bool

func (*UpdateGoogleApiSourceRequest) GetGoogleApiSource added in v1.15.0

func (x *UpdateGoogleApiSourceRequest) GetGoogleApiSource() *GoogleApiSource

func (*UpdateGoogleApiSourceRequest) GetUpdateMask added in v1.15.0

func (*UpdateGoogleApiSourceRequest) GetValidateOnly added in v1.15.0

func (x *UpdateGoogleApiSourceRequest) GetValidateOnly() bool

func (*UpdateGoogleApiSourceRequest) ProtoMessage added in v1.15.0

func (*UpdateGoogleApiSourceRequest) ProtoMessage()

func (*UpdateGoogleApiSourceRequest) ProtoReflect added in v1.15.0

func (*UpdateGoogleApiSourceRequest) Reset added in v1.15.0

func (x *UpdateGoogleApiSourceRequest) Reset()

func (*UpdateGoogleApiSourceRequest) String added in v1.15.0

type UpdateGoogleChannelConfigRequest added in v1.9.0

type UpdateGoogleChannelConfigRequest struct {

	// Required. The config to be updated.
	GoogleChannelConfig *GoogleChannelConfig `protobuf:"bytes,1,opt,name=google_channel_config,json=googleChannelConfig,proto3" json:"google_channel_config,omitempty"`
	// The fields to be updated; only fields explicitly provided are updated.
	// If no field mask is provided, all provided fields in the request are
	// updated. To update all fields, provide a field mask of "*".
	UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
	// contains filtered or unexported fields
}

The request message for the UpdateGoogleChannelConfig method.

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

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

Deprecated: Use UpdateGoogleChannelConfigRequest.ProtoReflect.Descriptor instead.

func (*UpdateGoogleChannelConfigRequest) GetGoogleChannelConfig added in v1.9.0

func (x *UpdateGoogleChannelConfigRequest) GetGoogleChannelConfig() *GoogleChannelConfig

func (*UpdateGoogleChannelConfigRequest) GetUpdateMask added in v1.9.0

func (*UpdateGoogleChannelConfigRequest) ProtoMessage added in v1.9.0

func (*UpdateGoogleChannelConfigRequest) ProtoMessage()

func (*UpdateGoogleChannelConfigRequest) ProtoReflect added in v1.9.0

func (*UpdateGoogleChannelConfigRequest) Reset added in v1.9.0

func (*UpdateGoogleChannelConfigRequest) String added in v1.9.0

type UpdateMessageBusRequest added in v1.15.0

type UpdateMessageBusRequest struct {

	// Required. The MessageBus to be updated.
	MessageBus *MessageBus `protobuf:"bytes,1,opt,name=message_bus,json=messageBus,proto3" json:"message_bus,omitempty"`
	// Optional. The fields to be updated; only fields explicitly provided are
	// updated. If no field mask is provided, all provided fields in the request
	// are updated. To update all fields, provide a field mask of "*".
	UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
	// Optional. If set to true, and the MessageBus is not found, a new MessageBus
	// will be created. In this situation, `update_mask` is ignored.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the UpdateMessageBus method.

func (*UpdateMessageBusRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use UpdateMessageBusRequest.ProtoReflect.Descriptor instead.

func (*UpdateMessageBusRequest) GetAllowMissing added in v1.15.0

func (x *UpdateMessageBusRequest) GetAllowMissing() bool

func (*UpdateMessageBusRequest) GetMessageBus added in v1.15.0

func (x *UpdateMessageBusRequest) GetMessageBus() *MessageBus

func (*UpdateMessageBusRequest) GetUpdateMask added in v1.15.0

func (x *UpdateMessageBusRequest) GetUpdateMask() *fieldmaskpb.FieldMask

func (*UpdateMessageBusRequest) GetValidateOnly added in v1.15.0

func (x *UpdateMessageBusRequest) GetValidateOnly() bool

func (*UpdateMessageBusRequest) ProtoMessage added in v1.15.0

func (*UpdateMessageBusRequest) ProtoMessage()

func (*UpdateMessageBusRequest) ProtoReflect added in v1.15.0

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

func (*UpdateMessageBusRequest) Reset added in v1.15.0

func (x *UpdateMessageBusRequest) Reset()

func (*UpdateMessageBusRequest) String added in v1.15.0

func (x *UpdateMessageBusRequest) String() string

type UpdatePipelineRequest added in v1.15.0

type UpdatePipelineRequest struct {

	// Required. The Pipeline to be updated.
	Pipeline *Pipeline `protobuf:"bytes,1,opt,name=pipeline,proto3" json:"pipeline,omitempty"`
	// Optional. The fields to be updated; only fields explicitly provided are
	// updated. If no field mask is provided, all provided fields in the request
	// are updated. To update all fields, provide a field mask of "*".
	UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
	// Optional. If set to true, and the Pipeline is not found, a new Pipeline
	// will be created. In this situation, `update_mask` is ignored.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the UpdatePipeline method.

func (*UpdatePipelineRequest) Descriptor deprecated added in v1.15.0

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

Deprecated: Use UpdatePipelineRequest.ProtoReflect.Descriptor instead.

func (*UpdatePipelineRequest) GetAllowMissing added in v1.15.0

func (x *UpdatePipelineRequest) GetAllowMissing() bool

func (*UpdatePipelineRequest) GetPipeline added in v1.15.0

func (x *UpdatePipelineRequest) GetPipeline() *Pipeline

func (*UpdatePipelineRequest) GetUpdateMask added in v1.15.0

func (x *UpdatePipelineRequest) GetUpdateMask() *fieldmaskpb.FieldMask

func (*UpdatePipelineRequest) GetValidateOnly added in v1.15.0

func (x *UpdatePipelineRequest) GetValidateOnly() bool

func (*UpdatePipelineRequest) ProtoMessage added in v1.15.0

func (*UpdatePipelineRequest) ProtoMessage()

func (*UpdatePipelineRequest) ProtoReflect added in v1.15.0

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

func (*UpdatePipelineRequest) Reset added in v1.15.0

func (x *UpdatePipelineRequest) Reset()

func (*UpdatePipelineRequest) String added in v1.15.0

func (x *UpdatePipelineRequest) String() string

type UpdateTriggerRequest

type UpdateTriggerRequest struct {

	// The trigger to be updated.
	Trigger *Trigger `protobuf:"bytes,1,opt,name=trigger,proto3" json:"trigger,omitempty"`
	// The fields to be updated; only fields explicitly provided are updated.
	// If no field mask is provided, all provided fields in the request are
	// updated. To update all fields, provide a field mask of "*".
	UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
	// If set to true, and the trigger is not found, a new trigger will be
	// created. In this situation, `update_mask` is ignored.
	AllowMissing bool `protobuf:"varint,3,opt,name=allow_missing,json=allowMissing,proto3" json:"allow_missing,omitempty"`
	// Optional. If set, validate the request and preview the review, but do not
	// post it.
	ValidateOnly bool `protobuf:"varint,4,opt,name=validate_only,json=validateOnly,proto3" json:"validate_only,omitempty"`
	// contains filtered or unexported fields
}

The request message for the UpdateTrigger method.

func (*UpdateTriggerRequest) Descriptor deprecated

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

Deprecated: Use UpdateTriggerRequest.ProtoReflect.Descriptor instead.

func (*UpdateTriggerRequest) GetAllowMissing

func (x *UpdateTriggerRequest) GetAllowMissing() bool

func (*UpdateTriggerRequest) GetTrigger

func (x *UpdateTriggerRequest) GetTrigger() *Trigger

func (*UpdateTriggerRequest) GetUpdateMask

func (x *UpdateTriggerRequest) GetUpdateMask() *fieldmaskpb.FieldMask

func (*UpdateTriggerRequest) GetValidateOnly

func (x *UpdateTriggerRequest) GetValidateOnly() bool

func (*UpdateTriggerRequest) ProtoMessage

func (*UpdateTriggerRequest) ProtoMessage()

func (*UpdateTriggerRequest) ProtoReflect

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

func (*UpdateTriggerRequest) Reset

func (x *UpdateTriggerRequest) Reset()

func (*UpdateTriggerRequest) String

func (x *UpdateTriggerRequest) String() string

Jump to

Keyboard shortcuts

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