Documentation ¶
Overview ¶
Package eventarc is an auto-generated package for the Eventarc API.
Build event-driven applications on Google Cloud Platform.
General documentation ¶
For information that is relevant for all client libraries please reference https://pkg.go.dev/cloud.google.com/go#pkg-overview. Some information on this page includes:
- Authentication and Authorization
- Timeouts and Cancellation
- Testing against Client Libraries
- Debugging Client Libraries
- Inspecting errors
Example usage ¶
To get started with this package, create a client.
ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close()
The client will use your default application credentials. Clients should be reused instead of created as needed. The methods of Client are safe for concurrent use by multiple goroutines. The returned client must be Closed when it is done being used.
Using the Client ¶
The following is an example of making an API call with the newly created client.
ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreateChannelRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreateChannelRequest. } op, err := c.CreateChannel(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp
Use of Context ¶
The ctx passed to NewClient is used for authentication requests and for creating the underlying connection, but is not used for subsequent calls. Individual methods on the client use the ctx given to them.
To close the open connection, use the Close() method.
Index ¶
- func DefaultAuthScopes() []string
- type CallOptions
- type ChannelConnectionIterator
- type ChannelIterator
- type Client
- func (c *Client) CancelOperation(ctx context.Context, req *longrunningpb.CancelOperationRequest, ...) error
- func (c *Client) Close() error
- func (c *Client) Connection() *grpc.ClientConndeprecated
- func (c *Client) CreateChannel(ctx context.Context, req *eventarcpb.CreateChannelRequest, ...) (*CreateChannelOperation, error)
- func (c *Client) CreateChannelConnection(ctx context.Context, req *eventarcpb.CreateChannelConnectionRequest, ...) (*CreateChannelConnectionOperation, error)
- func (c *Client) CreateChannelConnectionOperation(name string) *CreateChannelConnectionOperation
- func (c *Client) CreateChannelOperation(name string) *CreateChannelOperation
- func (c *Client) CreateEnrollment(ctx context.Context, req *eventarcpb.CreateEnrollmentRequest, ...) (*CreateEnrollmentOperation, error)
- func (c *Client) CreateEnrollmentOperation(name string) *CreateEnrollmentOperation
- func (c *Client) CreateGoogleApiSource(ctx context.Context, req *eventarcpb.CreateGoogleApiSourceRequest, ...) (*CreateGoogleApiSourceOperation, error)
- func (c *Client) CreateGoogleApiSourceOperation(name string) *CreateGoogleApiSourceOperation
- func (c *Client) CreateMessageBus(ctx context.Context, req *eventarcpb.CreateMessageBusRequest, ...) (*CreateMessageBusOperation, error)
- func (c *Client) CreateMessageBusOperation(name string) *CreateMessageBusOperation
- func (c *Client) CreatePipeline(ctx context.Context, req *eventarcpb.CreatePipelineRequest, ...) (*CreatePipelineOperation, error)
- func (c *Client) CreatePipelineOperation(name string) *CreatePipelineOperation
- func (c *Client) CreateTrigger(ctx context.Context, req *eventarcpb.CreateTriggerRequest, ...) (*CreateTriggerOperation, error)
- func (c *Client) CreateTriggerOperation(name string) *CreateTriggerOperation
- func (c *Client) DeleteChannel(ctx context.Context, req *eventarcpb.DeleteChannelRequest, ...) (*DeleteChannelOperation, error)
- func (c *Client) DeleteChannelConnection(ctx context.Context, req *eventarcpb.DeleteChannelConnectionRequest, ...) (*DeleteChannelConnectionOperation, error)
- func (c *Client) DeleteChannelConnectionOperation(name string) *DeleteChannelConnectionOperation
- func (c *Client) DeleteChannelOperation(name string) *DeleteChannelOperation
- func (c *Client) DeleteEnrollment(ctx context.Context, req *eventarcpb.DeleteEnrollmentRequest, ...) (*DeleteEnrollmentOperation, error)
- func (c *Client) DeleteEnrollmentOperation(name string) *DeleteEnrollmentOperation
- func (c *Client) DeleteGoogleApiSource(ctx context.Context, req *eventarcpb.DeleteGoogleApiSourceRequest, ...) (*DeleteGoogleApiSourceOperation, error)
- func (c *Client) DeleteGoogleApiSourceOperation(name string) *DeleteGoogleApiSourceOperation
- func (c *Client) DeleteMessageBus(ctx context.Context, req *eventarcpb.DeleteMessageBusRequest, ...) (*DeleteMessageBusOperation, error)
- func (c *Client) DeleteMessageBusOperation(name string) *DeleteMessageBusOperation
- func (c *Client) DeleteOperation(ctx context.Context, req *longrunningpb.DeleteOperationRequest, ...) error
- func (c *Client) DeletePipeline(ctx context.Context, req *eventarcpb.DeletePipelineRequest, ...) (*DeletePipelineOperation, error)
- func (c *Client) DeletePipelineOperation(name string) *DeletePipelineOperation
- func (c *Client) DeleteTrigger(ctx context.Context, req *eventarcpb.DeleteTriggerRequest, ...) (*DeleteTriggerOperation, error)
- func (c *Client) DeleteTriggerOperation(name string) *DeleteTriggerOperation
- func (c *Client) GetChannel(ctx context.Context, req *eventarcpb.GetChannelRequest, opts ...gax.CallOption) (*eventarcpb.Channel, error)
- func (c *Client) GetChannelConnection(ctx context.Context, req *eventarcpb.GetChannelConnectionRequest, ...) (*eventarcpb.ChannelConnection, error)
- func (c *Client) GetEnrollment(ctx context.Context, req *eventarcpb.GetEnrollmentRequest, ...) (*eventarcpb.Enrollment, error)
- func (c *Client) GetGoogleApiSource(ctx context.Context, req *eventarcpb.GetGoogleApiSourceRequest, ...) (*eventarcpb.GoogleApiSource, error)
- func (c *Client) GetGoogleChannelConfig(ctx context.Context, req *eventarcpb.GetGoogleChannelConfigRequest, ...) (*eventarcpb.GoogleChannelConfig, error)
- func (c *Client) GetIamPolicy(ctx context.Context, req *iampb.GetIamPolicyRequest, opts ...gax.CallOption) (*iampb.Policy, error)
- func (c *Client) GetLocation(ctx context.Context, req *locationpb.GetLocationRequest, ...) (*locationpb.Location, error)
- func (c *Client) GetMessageBus(ctx context.Context, req *eventarcpb.GetMessageBusRequest, ...) (*eventarcpb.MessageBus, error)
- func (c *Client) GetOperation(ctx context.Context, req *longrunningpb.GetOperationRequest, ...) (*longrunningpb.Operation, error)
- func (c *Client) GetPipeline(ctx context.Context, req *eventarcpb.GetPipelineRequest, ...) (*eventarcpb.Pipeline, error)
- func (c *Client) GetProvider(ctx context.Context, req *eventarcpb.GetProviderRequest, ...) (*eventarcpb.Provider, error)
- func (c *Client) GetTrigger(ctx context.Context, req *eventarcpb.GetTriggerRequest, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
- func (c *Client) ListChannelConnections(ctx context.Context, req *eventarcpb.ListChannelConnectionsRequest, ...) *ChannelConnectionIterator
- func (c *Client) ListChannels(ctx context.Context, req *eventarcpb.ListChannelsRequest, ...) *ChannelIterator
- func (c *Client) ListEnrollments(ctx context.Context, req *eventarcpb.ListEnrollmentsRequest, ...) *EnrollmentIterator
- func (c *Client) ListGoogleApiSources(ctx context.Context, req *eventarcpb.ListGoogleApiSourcesRequest, ...) *GoogleApiSourceIterator
- func (c *Client) ListLocations(ctx context.Context, req *locationpb.ListLocationsRequest, ...) *LocationIterator
- func (c *Client) ListMessageBusEnrollments(ctx context.Context, req *eventarcpb.ListMessageBusEnrollmentsRequest, ...) *StringIterator
- func (c *Client) ListMessageBuses(ctx context.Context, req *eventarcpb.ListMessageBusesRequest, ...) *MessageBusIterator
- func (c *Client) ListOperations(ctx context.Context, req *longrunningpb.ListOperationsRequest, ...) *OperationIterator
- func (c *Client) ListPipelines(ctx context.Context, req *eventarcpb.ListPipelinesRequest, ...) *PipelineIterator
- func (c *Client) ListProviders(ctx context.Context, req *eventarcpb.ListProvidersRequest, ...) *ProviderIterator
- func (c *Client) ListTriggers(ctx context.Context, req *eventarcpb.ListTriggersRequest, ...) *TriggerIterator
- func (c *Client) SetIamPolicy(ctx context.Context, req *iampb.SetIamPolicyRequest, opts ...gax.CallOption) (*iampb.Policy, error)
- func (c *Client) TestIamPermissions(ctx context.Context, req *iampb.TestIamPermissionsRequest, ...) (*iampb.TestIamPermissionsResponse, error)
- func (c *Client) UpdateChannel(ctx context.Context, req *eventarcpb.UpdateChannelRequest, ...) (*UpdateChannelOperation, error)
- func (c *Client) UpdateChannelOperation(name string) *UpdateChannelOperation
- func (c *Client) UpdateEnrollment(ctx context.Context, req *eventarcpb.UpdateEnrollmentRequest, ...) (*UpdateEnrollmentOperation, error)
- func (c *Client) UpdateEnrollmentOperation(name string) *UpdateEnrollmentOperation
- func (c *Client) UpdateGoogleApiSource(ctx context.Context, req *eventarcpb.UpdateGoogleApiSourceRequest, ...) (*UpdateGoogleApiSourceOperation, error)
- func (c *Client) UpdateGoogleApiSourceOperation(name string) *UpdateGoogleApiSourceOperation
- func (c *Client) UpdateGoogleChannelConfig(ctx context.Context, req *eventarcpb.UpdateGoogleChannelConfigRequest, ...) (*eventarcpb.GoogleChannelConfig, error)
- func (c *Client) UpdateMessageBus(ctx context.Context, req *eventarcpb.UpdateMessageBusRequest, ...) (*UpdateMessageBusOperation, error)
- func (c *Client) UpdateMessageBusOperation(name string) *UpdateMessageBusOperation
- func (c *Client) UpdatePipeline(ctx context.Context, req *eventarcpb.UpdatePipelineRequest, ...) (*UpdatePipelineOperation, error)
- func (c *Client) UpdatePipelineOperation(name string) *UpdatePipelineOperation
- func (c *Client) UpdateTrigger(ctx context.Context, req *eventarcpb.UpdateTriggerRequest, ...) (*UpdateTriggerOperation, error)
- func (c *Client) UpdateTriggerOperation(name string) *UpdateTriggerOperation
- type CreateChannelConnectionOperation
- func (op *CreateChannelConnectionOperation) Done() bool
- func (op *CreateChannelConnectionOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *CreateChannelConnectionOperation) Name() string
- func (op *CreateChannelConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
- func (op *CreateChannelConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
- type CreateChannelOperation
- func (op *CreateChannelOperation) Done() bool
- func (op *CreateChannelOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *CreateChannelOperation) Name() string
- func (op *CreateChannelOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
- func (op *CreateChannelOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
- type CreateEnrollmentOperation
- func (op *CreateEnrollmentOperation) Done() bool
- func (op *CreateEnrollmentOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *CreateEnrollmentOperation) Name() string
- func (op *CreateEnrollmentOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
- func (op *CreateEnrollmentOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
- type CreateGoogleApiSourceOperation
- func (op *CreateGoogleApiSourceOperation) Done() bool
- func (op *CreateGoogleApiSourceOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *CreateGoogleApiSourceOperation) Name() string
- func (op *CreateGoogleApiSourceOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
- func (op *CreateGoogleApiSourceOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
- type CreateMessageBusOperation
- func (op *CreateMessageBusOperation) Done() bool
- func (op *CreateMessageBusOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *CreateMessageBusOperation) Name() string
- func (op *CreateMessageBusOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
- func (op *CreateMessageBusOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
- type CreatePipelineOperation
- func (op *CreatePipelineOperation) Done() bool
- func (op *CreatePipelineOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *CreatePipelineOperation) Name() string
- func (op *CreatePipelineOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
- func (op *CreatePipelineOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
- type CreateTriggerOperation
- func (op *CreateTriggerOperation) Done() bool
- func (op *CreateTriggerOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *CreateTriggerOperation) Name() string
- func (op *CreateTriggerOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
- func (op *CreateTriggerOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
- type DeleteChannelConnectionOperation
- func (op *DeleteChannelConnectionOperation) Done() bool
- func (op *DeleteChannelConnectionOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *DeleteChannelConnectionOperation) Name() string
- func (op *DeleteChannelConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
- func (op *DeleteChannelConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
- type DeleteChannelOperation
- func (op *DeleteChannelOperation) Done() bool
- func (op *DeleteChannelOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *DeleteChannelOperation) Name() string
- func (op *DeleteChannelOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
- func (op *DeleteChannelOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
- type DeleteEnrollmentOperation
- func (op *DeleteEnrollmentOperation) Done() bool
- func (op *DeleteEnrollmentOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *DeleteEnrollmentOperation) Name() string
- func (op *DeleteEnrollmentOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
- func (op *DeleteEnrollmentOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
- type DeleteGoogleApiSourceOperation
- func (op *DeleteGoogleApiSourceOperation) Done() bool
- func (op *DeleteGoogleApiSourceOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *DeleteGoogleApiSourceOperation) Name() string
- func (op *DeleteGoogleApiSourceOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
- func (op *DeleteGoogleApiSourceOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
- type DeleteMessageBusOperation
- func (op *DeleteMessageBusOperation) Done() bool
- func (op *DeleteMessageBusOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *DeleteMessageBusOperation) Name() string
- func (op *DeleteMessageBusOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
- func (op *DeleteMessageBusOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
- type DeletePipelineOperation
- func (op *DeletePipelineOperation) Done() bool
- func (op *DeletePipelineOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *DeletePipelineOperation) Name() string
- func (op *DeletePipelineOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
- func (op *DeletePipelineOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
- type DeleteTriggerOperation
- func (op *DeleteTriggerOperation) Done() bool
- func (op *DeleteTriggerOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *DeleteTriggerOperation) Name() string
- func (op *DeleteTriggerOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
- func (op *DeleteTriggerOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
- type EnrollmentIterator
- type GoogleApiSourceIterator
- type LocationIterator
- type MessageBusIterator
- type OperationIterator
- type PipelineIterator
- type ProviderIterator
- type StringIterator
- type TriggerIterator
- type UpdateChannelOperation
- func (op *UpdateChannelOperation) Done() bool
- func (op *UpdateChannelOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *UpdateChannelOperation) Name() string
- func (op *UpdateChannelOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
- func (op *UpdateChannelOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
- type UpdateEnrollmentOperation
- func (op *UpdateEnrollmentOperation) Done() bool
- func (op *UpdateEnrollmentOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *UpdateEnrollmentOperation) Name() string
- func (op *UpdateEnrollmentOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
- func (op *UpdateEnrollmentOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
- type UpdateGoogleApiSourceOperation
- func (op *UpdateGoogleApiSourceOperation) Done() bool
- func (op *UpdateGoogleApiSourceOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *UpdateGoogleApiSourceOperation) Name() string
- func (op *UpdateGoogleApiSourceOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
- func (op *UpdateGoogleApiSourceOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
- type UpdateMessageBusOperation
- func (op *UpdateMessageBusOperation) Done() bool
- func (op *UpdateMessageBusOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *UpdateMessageBusOperation) Name() string
- func (op *UpdateMessageBusOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
- func (op *UpdateMessageBusOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
- type UpdatePipelineOperation
- func (op *UpdatePipelineOperation) Done() bool
- func (op *UpdatePipelineOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *UpdatePipelineOperation) Name() string
- func (op *UpdatePipelineOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
- func (op *UpdatePipelineOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
- type UpdateTriggerOperation
- func (op *UpdateTriggerOperation) Done() bool
- func (op *UpdateTriggerOperation) Metadata() (*eventarcpb.OperationMetadata, error)
- func (op *UpdateTriggerOperation) Name() string
- func (op *UpdateTriggerOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
- func (op *UpdateTriggerOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
Examples ¶
- Client.CancelOperation
- Client.CreateChannel
- Client.CreateChannelConnection
- Client.CreateEnrollment
- Client.CreateGoogleApiSource
- Client.CreateMessageBus
- Client.CreatePipeline
- Client.CreateTrigger
- Client.DeleteChannel
- Client.DeleteChannelConnection
- Client.DeleteEnrollment
- Client.DeleteGoogleApiSource
- Client.DeleteMessageBus
- Client.DeleteOperation
- Client.DeletePipeline
- Client.DeleteTrigger
- Client.GetChannel
- Client.GetChannelConnection
- Client.GetEnrollment
- Client.GetGoogleApiSource
- Client.GetGoogleChannelConfig
- Client.GetIamPolicy
- Client.GetLocation
- Client.GetMessageBus
- Client.GetOperation
- Client.GetPipeline
- Client.GetProvider
- Client.GetTrigger
- Client.ListChannelConnections
- Client.ListChannelConnections (All)
- Client.ListChannels
- Client.ListChannels (All)
- Client.ListEnrollments
- Client.ListEnrollments (All)
- Client.ListGoogleApiSources
- Client.ListGoogleApiSources (All)
- Client.ListLocations
- Client.ListLocations (All)
- Client.ListMessageBusEnrollments
- Client.ListMessageBusEnrollments (All)
- Client.ListMessageBuses
- Client.ListMessageBuses (All)
- Client.ListOperations
- Client.ListOperations (All)
- Client.ListPipelines
- Client.ListPipelines (All)
- Client.ListProviders
- Client.ListProviders (All)
- Client.ListTriggers
- Client.ListTriggers (All)
- Client.SetIamPolicy
- Client.TestIamPermissions
- Client.UpdateChannel
- Client.UpdateEnrollment
- Client.UpdateGoogleApiSource
- Client.UpdateGoogleChannelConfig
- Client.UpdateMessageBus
- Client.UpdatePipeline
- Client.UpdateTrigger
- NewClient
- NewRESTClient
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultAuthScopes ¶
func DefaultAuthScopes() []string
DefaultAuthScopes reports the default set of authentication scopes to use with this package.
Types ¶
type CallOptions ¶
type CallOptions struct { GetTrigger []gax.CallOption ListTriggers []gax.CallOption CreateTrigger []gax.CallOption UpdateTrigger []gax.CallOption DeleteTrigger []gax.CallOption GetChannel []gax.CallOption ListChannels []gax.CallOption CreateChannel []gax.CallOption UpdateChannel []gax.CallOption DeleteChannel []gax.CallOption GetProvider []gax.CallOption ListProviders []gax.CallOption GetChannelConnection []gax.CallOption ListChannelConnections []gax.CallOption CreateChannelConnection []gax.CallOption DeleteChannelConnection []gax.CallOption GetGoogleChannelConfig []gax.CallOption UpdateGoogleChannelConfig []gax.CallOption GetMessageBus []gax.CallOption ListMessageBuses []gax.CallOption ListMessageBusEnrollments []gax.CallOption CreateMessageBus []gax.CallOption UpdateMessageBus []gax.CallOption DeleteMessageBus []gax.CallOption GetEnrollment []gax.CallOption ListEnrollments []gax.CallOption CreateEnrollment []gax.CallOption UpdateEnrollment []gax.CallOption DeleteEnrollment []gax.CallOption GetPipeline []gax.CallOption ListPipelines []gax.CallOption CreatePipeline []gax.CallOption UpdatePipeline []gax.CallOption DeletePipeline []gax.CallOption GetGoogleApiSource []gax.CallOption ListGoogleApiSources []gax.CallOption CreateGoogleApiSource []gax.CallOption UpdateGoogleApiSource []gax.CallOption DeleteGoogleApiSource []gax.CallOption GetLocation []gax.CallOption ListLocations []gax.CallOption GetIamPolicy []gax.CallOption SetIamPolicy []gax.CallOption TestIamPermissions []gax.CallOption CancelOperation []gax.CallOption DeleteOperation []gax.CallOption GetOperation []gax.CallOption ListOperations []gax.CallOption }
CallOptions contains the retry settings for each method of Client.
type ChannelConnectionIterator ¶ added in v1.2.0
type ChannelConnectionIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.ChannelConnection, nextPageToken string, err error) // contains filtered or unexported fields }
ChannelConnectionIterator manages a stream of *eventarcpb.ChannelConnection.
func (*ChannelConnectionIterator) All ¶ added in v1.14.1
func (it *ChannelConnectionIterator) All() iter.Seq2[*eventarcpb.ChannelConnection, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*ChannelConnectionIterator) Next ¶ added in v1.2.0
func (it *ChannelConnectionIterator) Next() (*eventarcpb.ChannelConnection, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*ChannelConnectionIterator) PageInfo ¶ added in v1.2.0
func (it *ChannelConnectionIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type ChannelIterator ¶ added in v1.2.0
type ChannelIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.Channel, nextPageToken string, err error) // contains filtered or unexported fields }
ChannelIterator manages a stream of *eventarcpb.Channel.
func (*ChannelIterator) All ¶ added in v1.14.1
func (it *ChannelIterator) All() iter.Seq2[*eventarcpb.Channel, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*ChannelIterator) Next ¶ added in v1.2.0
func (it *ChannelIterator) Next() (*eventarcpb.Channel, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*ChannelIterator) PageInfo ¶ added in v1.2.0
func (it *ChannelIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type Client ¶
type Client struct { // The call options for this service. CallOptions *CallOptions // LROClient is used internally to handle long-running operations. // It is exposed so that its CallOptions can be modified if required. // Users should not Close this client. LROClient *lroauto.OperationsClient // contains filtered or unexported fields }
Client is a client for interacting with Eventarc API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
Eventarc allows users to subscribe to various events that are provided by Google Cloud services and forward them to supported destinations.
func NewClient ¶
NewClient creates a new eventarc client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.
Eventarc allows users to subscribe to various events that are provided by Google Cloud services and forward them to supported destinations.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func NewRESTClient ¶ added in v1.10.0
NewRESTClient creates a new eventarc rest client.
Eventarc allows users to subscribe to various events that are provided by Google Cloud services and forward them to supported destinations.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewRESTClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func (*Client) CancelOperation ¶ added in v1.9.0
func (c *Client) CancelOperation(ctx context.Context, req *longrunningpb.CancelOperationRequest, opts ...gax.CallOption) error
CancelOperation is a utility method from google.longrunning.Operations.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &longrunningpb.CancelOperationRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/longrunning/autogen/longrunningpb#CancelOperationRequest. } err = c.CancelOperation(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) Close ¶
Close closes the connection to the API service. The user should invoke this when the client is no longer required.
func (*Client) Connection
deprecated
func (c *Client) Connection() *grpc.ClientConn
Connection returns a connection to the API service.
Deprecated: Connections are now pooled so this method does not always return the same resource.
func (*Client) CreateChannel ¶ added in v1.2.0
func (c *Client) CreateChannel(ctx context.Context, req *eventarcpb.CreateChannelRequest, opts ...gax.CallOption) (*CreateChannelOperation, error)
CreateChannel create a new channel in a particular project and location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreateChannelRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreateChannelRequest. } op, err := c.CreateChannel(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreateChannelConnection ¶ added in v1.2.0
func (c *Client) CreateChannelConnection(ctx context.Context, req *eventarcpb.CreateChannelConnectionRequest, opts ...gax.CallOption) (*CreateChannelConnectionOperation, error)
CreateChannelConnection create a new ChannelConnection in a particular project and location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreateChannelConnectionRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreateChannelConnectionRequest. } op, err := c.CreateChannelConnection(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreateChannelConnectionOperation ¶ added in v1.2.0
func (c *Client) CreateChannelConnectionOperation(name string) *CreateChannelConnectionOperation
CreateChannelConnectionOperation returns a new CreateChannelConnectionOperation from a given name. The name must be that of a previously created CreateChannelConnectionOperation, possibly from a different process.
func (*Client) CreateChannelOperation ¶ added in v1.2.0
func (c *Client) CreateChannelOperation(name string) *CreateChannelOperation
CreateChannelOperation returns a new CreateChannelOperation from a given name. The name must be that of a previously created CreateChannelOperation, possibly from a different process.
func (*Client) CreateEnrollment ¶ added in v1.15.0
func (c *Client) CreateEnrollment(ctx context.Context, req *eventarcpb.CreateEnrollmentRequest, opts ...gax.CallOption) (*CreateEnrollmentOperation, error)
CreateEnrollment create a new Enrollment in a particular project and location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreateEnrollmentRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreateEnrollmentRequest. } op, err := c.CreateEnrollment(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreateEnrollmentOperation ¶ added in v1.15.0
func (c *Client) CreateEnrollmentOperation(name string) *CreateEnrollmentOperation
CreateEnrollmentOperation returns a new CreateEnrollmentOperation from a given name. The name must be that of a previously created CreateEnrollmentOperation, possibly from a different process.
func (*Client) CreateGoogleApiSource ¶ added in v1.15.0
func (c *Client) CreateGoogleApiSource(ctx context.Context, req *eventarcpb.CreateGoogleApiSourceRequest, opts ...gax.CallOption) (*CreateGoogleApiSourceOperation, error)
CreateGoogleApiSource create a new GoogleApiSource in a particular project and location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreateGoogleApiSourceRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreateGoogleApiSourceRequest. } op, err := c.CreateGoogleApiSource(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreateGoogleApiSourceOperation ¶ added in v1.15.0
func (c *Client) CreateGoogleApiSourceOperation(name string) *CreateGoogleApiSourceOperation
CreateGoogleApiSourceOperation returns a new CreateGoogleApiSourceOperation from a given name. The name must be that of a previously created CreateGoogleApiSourceOperation, possibly from a different process.
func (*Client) CreateMessageBus ¶ added in v1.15.0
func (c *Client) CreateMessageBus(ctx context.Context, req *eventarcpb.CreateMessageBusRequest, opts ...gax.CallOption) (*CreateMessageBusOperation, error)
CreateMessageBus create a new MessageBus in a particular project and location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreateMessageBusRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreateMessageBusRequest. } op, err := c.CreateMessageBus(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreateMessageBusOperation ¶ added in v1.15.0
func (c *Client) CreateMessageBusOperation(name string) *CreateMessageBusOperation
CreateMessageBusOperation returns a new CreateMessageBusOperation from a given name. The name must be that of a previously created CreateMessageBusOperation, possibly from a different process.
func (*Client) CreatePipeline ¶ added in v1.15.0
func (c *Client) CreatePipeline(ctx context.Context, req *eventarcpb.CreatePipelineRequest, opts ...gax.CallOption) (*CreatePipelineOperation, error)
CreatePipeline create a new Pipeline in a particular project and location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreatePipelineRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreatePipelineRequest. } op, err := c.CreatePipeline(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreatePipelineOperation ¶ added in v1.15.0
func (c *Client) CreatePipelineOperation(name string) *CreatePipelineOperation
CreatePipelineOperation returns a new CreatePipelineOperation from a given name. The name must be that of a previously created CreatePipelineOperation, possibly from a different process.
func (*Client) CreateTrigger ¶
func (c *Client) CreateTrigger(ctx context.Context, req *eventarcpb.CreateTriggerRequest, opts ...gax.CallOption) (*CreateTriggerOperation, error)
CreateTrigger create a new trigger in a particular project and location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.CreateTriggerRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#CreateTriggerRequest. } op, err := c.CreateTrigger(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreateTriggerOperation ¶
func (c *Client) CreateTriggerOperation(name string) *CreateTriggerOperation
CreateTriggerOperation returns a new CreateTriggerOperation from a given name. The name must be that of a previously created CreateTriggerOperation, possibly from a different process.
func (*Client) DeleteChannel ¶ added in v1.2.0
func (c *Client) DeleteChannel(ctx context.Context, req *eventarcpb.DeleteChannelRequest, opts ...gax.CallOption) (*DeleteChannelOperation, error)
DeleteChannel delete a single channel.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.DeleteChannelRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#DeleteChannelRequest. } op, err := c.DeleteChannel(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteChannelConnection ¶ added in v1.2.0
func (c *Client) DeleteChannelConnection(ctx context.Context, req *eventarcpb.DeleteChannelConnectionRequest, opts ...gax.CallOption) (*DeleteChannelConnectionOperation, error)
DeleteChannelConnection delete a single ChannelConnection.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.DeleteChannelConnectionRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#DeleteChannelConnectionRequest. } op, err := c.DeleteChannelConnection(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteChannelConnectionOperation ¶ added in v1.2.0
func (c *Client) DeleteChannelConnectionOperation(name string) *DeleteChannelConnectionOperation
DeleteChannelConnectionOperation returns a new DeleteChannelConnectionOperation from a given name. The name must be that of a previously created DeleteChannelConnectionOperation, possibly from a different process.
func (*Client) DeleteChannelOperation ¶ added in v1.2.0
func (c *Client) DeleteChannelOperation(name string) *DeleteChannelOperation
DeleteChannelOperation returns a new DeleteChannelOperation from a given name. The name must be that of a previously created DeleteChannelOperation, possibly from a different process.
func (*Client) DeleteEnrollment ¶ added in v1.15.0
func (c *Client) DeleteEnrollment(ctx context.Context, req *eventarcpb.DeleteEnrollmentRequest, opts ...gax.CallOption) (*DeleteEnrollmentOperation, error)
DeleteEnrollment delete a single Enrollment.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.DeleteEnrollmentRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#DeleteEnrollmentRequest. } op, err := c.DeleteEnrollment(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteEnrollmentOperation ¶ added in v1.15.0
func (c *Client) DeleteEnrollmentOperation(name string) *DeleteEnrollmentOperation
DeleteEnrollmentOperation returns a new DeleteEnrollmentOperation from a given name. The name must be that of a previously created DeleteEnrollmentOperation, possibly from a different process.
func (*Client) DeleteGoogleApiSource ¶ added in v1.15.0
func (c *Client) DeleteGoogleApiSource(ctx context.Context, req *eventarcpb.DeleteGoogleApiSourceRequest, opts ...gax.CallOption) (*DeleteGoogleApiSourceOperation, error)
DeleteGoogleApiSource delete a single GoogleApiSource.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.DeleteGoogleApiSourceRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#DeleteGoogleApiSourceRequest. } op, err := c.DeleteGoogleApiSource(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteGoogleApiSourceOperation ¶ added in v1.15.0
func (c *Client) DeleteGoogleApiSourceOperation(name string) *DeleteGoogleApiSourceOperation
DeleteGoogleApiSourceOperation returns a new DeleteGoogleApiSourceOperation from a given name. The name must be that of a previously created DeleteGoogleApiSourceOperation, possibly from a different process.
func (*Client) DeleteMessageBus ¶ added in v1.15.0
func (c *Client) DeleteMessageBus(ctx context.Context, req *eventarcpb.DeleteMessageBusRequest, opts ...gax.CallOption) (*DeleteMessageBusOperation, error)
DeleteMessageBus delete a single message bus.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.DeleteMessageBusRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#DeleteMessageBusRequest. } op, err := c.DeleteMessageBus(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteMessageBusOperation ¶ added in v1.15.0
func (c *Client) DeleteMessageBusOperation(name string) *DeleteMessageBusOperation
DeleteMessageBusOperation returns a new DeleteMessageBusOperation from a given name. The name must be that of a previously created DeleteMessageBusOperation, possibly from a different process.
func (*Client) DeleteOperation ¶ added in v1.9.0
func (c *Client) DeleteOperation(ctx context.Context, req *longrunningpb.DeleteOperationRequest, opts ...gax.CallOption) error
DeleteOperation is a utility method from google.longrunning.Operations.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &longrunningpb.DeleteOperationRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/longrunning/autogen/longrunningpb#DeleteOperationRequest. } err = c.DeleteOperation(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) DeletePipeline ¶ added in v1.15.0
func (c *Client) DeletePipeline(ctx context.Context, req *eventarcpb.DeletePipelineRequest, opts ...gax.CallOption) (*DeletePipelineOperation, error)
DeletePipeline delete a single pipeline.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.DeletePipelineRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#DeletePipelineRequest. } op, err := c.DeletePipeline(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeletePipelineOperation ¶ added in v1.15.0
func (c *Client) DeletePipelineOperation(name string) *DeletePipelineOperation
DeletePipelineOperation returns a new DeletePipelineOperation from a given name. The name must be that of a previously created DeletePipelineOperation, possibly from a different process.
func (*Client) DeleteTrigger ¶
func (c *Client) DeleteTrigger(ctx context.Context, req *eventarcpb.DeleteTriggerRequest, opts ...gax.CallOption) (*DeleteTriggerOperation, error)
DeleteTrigger delete a single trigger.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.DeleteTriggerRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#DeleteTriggerRequest. } op, err := c.DeleteTrigger(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteTriggerOperation ¶
func (c *Client) DeleteTriggerOperation(name string) *DeleteTriggerOperation
DeleteTriggerOperation returns a new DeleteTriggerOperation from a given name. The name must be that of a previously created DeleteTriggerOperation, possibly from a different process.
func (*Client) GetChannel ¶ added in v1.2.0
func (c *Client) GetChannel(ctx context.Context, req *eventarcpb.GetChannelRequest, opts ...gax.CallOption) (*eventarcpb.Channel, error)
GetChannel get a single Channel.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetChannelRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetChannelRequest. } resp, err := c.GetChannel(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetChannelConnection ¶ added in v1.2.0
func (c *Client) GetChannelConnection(ctx context.Context, req *eventarcpb.GetChannelConnectionRequest, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
GetChannelConnection get a single ChannelConnection.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetChannelConnectionRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetChannelConnectionRequest. } resp, err := c.GetChannelConnection(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetEnrollment ¶ added in v1.15.0
func (c *Client) GetEnrollment(ctx context.Context, req *eventarcpb.GetEnrollmentRequest, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
GetEnrollment get a single Enrollment.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetEnrollmentRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetEnrollmentRequest. } resp, err := c.GetEnrollment(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetGoogleApiSource ¶ added in v1.15.0
func (c *Client) GetGoogleApiSource(ctx context.Context, req *eventarcpb.GetGoogleApiSourceRequest, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
GetGoogleApiSource get a single GoogleApiSource.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetGoogleApiSourceRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetGoogleApiSourceRequest. } resp, err := c.GetGoogleApiSource(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetGoogleChannelConfig ¶ added in v1.9.0
func (c *Client) GetGoogleChannelConfig(ctx context.Context, req *eventarcpb.GetGoogleChannelConfigRequest, opts ...gax.CallOption) (*eventarcpb.GoogleChannelConfig, error)
GetGoogleChannelConfig get a GoogleChannelConfig
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetGoogleChannelConfigRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetGoogleChannelConfigRequest. } resp, err := c.GetGoogleChannelConfig(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetIamPolicy ¶ added in v1.9.0
func (c *Client) GetIamPolicy(ctx context.Context, req *iampb.GetIamPolicyRequest, opts ...gax.CallOption) (*iampb.Policy, error)
GetIamPolicy gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" iampb "cloud.google.com/go/iam/apiv1/iampb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &iampb.GetIamPolicyRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/iam/apiv1/iampb#GetIamPolicyRequest. } resp, err := c.GetIamPolicy(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetLocation ¶ added in v1.9.0
func (c *Client) GetLocation(ctx context.Context, req *locationpb.GetLocationRequest, opts ...gax.CallOption) (*locationpb.Location, error)
GetLocation gets information about a location.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" locationpb "google.golang.org/genproto/googleapis/cloud/location" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &locationpb.GetLocationRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/location#GetLocationRequest. } resp, err := c.GetLocation(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetMessageBus ¶ added in v1.15.0
func (c *Client) GetMessageBus(ctx context.Context, req *eventarcpb.GetMessageBusRequest, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
GetMessageBus get a single MessageBus.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetMessageBusRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetMessageBusRequest. } resp, err := c.GetMessageBus(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetOperation ¶ added in v1.9.0
func (c *Client) GetOperation(ctx context.Context, req *longrunningpb.GetOperationRequest, opts ...gax.CallOption) (*longrunningpb.Operation, error)
GetOperation is a utility method from google.longrunning.Operations.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &longrunningpb.GetOperationRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/longrunning/autogen/longrunningpb#GetOperationRequest. } resp, err := c.GetOperation(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetPipeline ¶ added in v1.15.0
func (c *Client) GetPipeline(ctx context.Context, req *eventarcpb.GetPipelineRequest, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
GetPipeline get a single Pipeline.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetPipelineRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetPipelineRequest. } resp, err := c.GetPipeline(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetProvider ¶ added in v1.6.0
func (c *Client) GetProvider(ctx context.Context, req *eventarcpb.GetProviderRequest, opts ...gax.CallOption) (*eventarcpb.Provider, error)
GetProvider get a single Provider.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetProviderRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetProviderRequest. } resp, err := c.GetProvider(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetTrigger ¶
func (c *Client) GetTrigger(ctx context.Context, req *eventarcpb.GetTriggerRequest, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
GetTrigger get a single trigger.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.GetTriggerRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#GetTriggerRequest. } resp, err := c.GetTrigger(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) ListChannelConnections ¶ added in v1.2.0
func (c *Client) ListChannelConnections(ctx context.Context, req *eventarcpb.ListChannelConnectionsRequest, opts ...gax.CallOption) *ChannelConnectionIterator
ListChannelConnections list channel connections.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListChannelConnectionsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListChannelConnectionsRequest. } it := c.ListChannelConnections(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListChannelConnectionsResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListChannelConnectionsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListChannelConnectionsRequest. } for resp, err := range c.ListChannelConnections(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListChannels ¶ added in v1.2.0
func (c *Client) ListChannels(ctx context.Context, req *eventarcpb.ListChannelsRequest, opts ...gax.CallOption) *ChannelIterator
ListChannels list channels.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListChannelsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListChannelsRequest. } it := c.ListChannels(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListChannelsResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListChannelsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListChannelsRequest. } for resp, err := range c.ListChannels(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListEnrollments ¶ added in v1.15.0
func (c *Client) ListEnrollments(ctx context.Context, req *eventarcpb.ListEnrollmentsRequest, opts ...gax.CallOption) *EnrollmentIterator
ListEnrollments list Enrollments.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListEnrollmentsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListEnrollmentsRequest. } it := c.ListEnrollments(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListEnrollmentsResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListEnrollmentsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListEnrollmentsRequest. } for resp, err := range c.ListEnrollments(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListGoogleApiSources ¶ added in v1.15.0
func (c *Client) ListGoogleApiSources(ctx context.Context, req *eventarcpb.ListGoogleApiSourcesRequest, opts ...gax.CallOption) *GoogleApiSourceIterator
ListGoogleApiSources list GoogleApiSources.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListGoogleApiSourcesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListGoogleApiSourcesRequest. } it := c.ListGoogleApiSources(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListGoogleApiSourcesResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListGoogleApiSourcesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListGoogleApiSourcesRequest. } for resp, err := range c.ListGoogleApiSources(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListLocations ¶ added in v1.9.0
func (c *Client) ListLocations(ctx context.Context, req *locationpb.ListLocationsRequest, opts ...gax.CallOption) *LocationIterator
ListLocations lists information about the supported locations for this service.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" "google.golang.org/api/iterator" locationpb "google.golang.org/genproto/googleapis/cloud/location" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &locationpb.ListLocationsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/location#ListLocationsRequest. } it := c.ListLocations(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*locationpb.ListLocationsResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" locationpb "google.golang.org/genproto/googleapis/cloud/location" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &locationpb.ListLocationsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/location#ListLocationsRequest. } for resp, err := range c.ListLocations(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListMessageBusEnrollments ¶ added in v1.15.0
func (c *Client) ListMessageBusEnrollments(ctx context.Context, req *eventarcpb.ListMessageBusEnrollmentsRequest, opts ...gax.CallOption) *StringIterator
ListMessageBusEnrollments list message bus enrollments.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListMessageBusEnrollmentsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListMessageBusEnrollmentsRequest. } it := c.ListMessageBusEnrollments(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListMessageBusEnrollmentsResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListMessageBusEnrollmentsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListMessageBusEnrollmentsRequest. } for resp, err := range c.ListMessageBusEnrollments(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListMessageBuses ¶ added in v1.15.0
func (c *Client) ListMessageBuses(ctx context.Context, req *eventarcpb.ListMessageBusesRequest, opts ...gax.CallOption) *MessageBusIterator
ListMessageBuses list message buses.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListMessageBusesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListMessageBusesRequest. } it := c.ListMessageBuses(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListMessageBusesResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListMessageBusesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListMessageBusesRequest. } for resp, err := range c.ListMessageBuses(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListOperations ¶ added in v1.9.0
func (c *Client) ListOperations(ctx context.Context, req *longrunningpb.ListOperationsRequest, opts ...gax.CallOption) *OperationIterator
ListOperations is a utility method from google.longrunning.Operations.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &longrunningpb.ListOperationsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/longrunning/autogen/longrunningpb#ListOperationsRequest. } it := c.ListOperations(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*longrunningpb.ListOperationsResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &longrunningpb.ListOperationsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/longrunning/autogen/longrunningpb#ListOperationsRequest. } for resp, err := range c.ListOperations(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListPipelines ¶ added in v1.15.0
func (c *Client) ListPipelines(ctx context.Context, req *eventarcpb.ListPipelinesRequest, opts ...gax.CallOption) *PipelineIterator
ListPipelines list pipelines.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListPipelinesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListPipelinesRequest. } it := c.ListPipelines(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListPipelinesResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListPipelinesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListPipelinesRequest. } for resp, err := range c.ListPipelines(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListProviders ¶ added in v1.6.0
func (c *Client) ListProviders(ctx context.Context, req *eventarcpb.ListProvidersRequest, opts ...gax.CallOption) *ProviderIterator
ListProviders list providers.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListProvidersRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListProvidersRequest. } it := c.ListProviders(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListProvidersResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListProvidersRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListProvidersRequest. } for resp, err := range c.ListProviders(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListTriggers ¶
func (c *Client) ListTriggers(ctx context.Context, req *eventarcpb.ListTriggersRequest, opts ...gax.CallOption) *TriggerIterator
ListTriggers list triggers.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" "google.golang.org/api/iterator" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListTriggersRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListTriggersRequest. } it := c.ListTriggers(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp // If you need to access the underlying RPC response, // you can do so by casting the `Response` as below. // Otherwise, remove this line. Only populated after // first call to Next(). Not safe for concurrent access. _ = it.Response.(*eventarcpb.ListTriggersResponse) } }
Output:
Example (All) ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.ListTriggersRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#ListTriggersRequest. } for resp, err := range c.ListTriggers(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) SetIamPolicy ¶ added in v1.9.0
func (c *Client) SetIamPolicy(ctx context.Context, req *iampb.SetIamPolicyRequest, opts ...gax.CallOption) (*iampb.Policy, error)
SetIamPolicy sets the access control policy on the specified resource. Replaces any existing policy.
Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIED errors.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" iampb "cloud.google.com/go/iam/apiv1/iampb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &iampb.SetIamPolicyRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/iam/apiv1/iampb#SetIamPolicyRequest. } resp, err := c.SetIamPolicy(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) TestIamPermissions ¶ added in v1.9.0
func (c *Client) TestIamPermissions(ctx context.Context, req *iampb.TestIamPermissionsRequest, opts ...gax.CallOption) (*iampb.TestIamPermissionsResponse, error)
TestIamPermissions returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a NOT_FOUND error.
Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may “fail open” without warning.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" iampb "cloud.google.com/go/iam/apiv1/iampb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &iampb.TestIamPermissionsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/iam/apiv1/iampb#TestIamPermissionsRequest. } resp, err := c.TestIamPermissions(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateChannel ¶ added in v1.2.0
func (c *Client) UpdateChannel(ctx context.Context, req *eventarcpb.UpdateChannelRequest, opts ...gax.CallOption) (*UpdateChannelOperation, error)
UpdateChannel update a single channel.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.UpdateChannelRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#UpdateChannelRequest. } op, err := c.UpdateChannel(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateChannelOperation ¶ added in v1.2.0
func (c *Client) UpdateChannelOperation(name string) *UpdateChannelOperation
UpdateChannelOperation returns a new UpdateChannelOperation from a given name. The name must be that of a previously created UpdateChannelOperation, possibly from a different process.
func (*Client) UpdateEnrollment ¶ added in v1.15.0
func (c *Client) UpdateEnrollment(ctx context.Context, req *eventarcpb.UpdateEnrollmentRequest, opts ...gax.CallOption) (*UpdateEnrollmentOperation, error)
UpdateEnrollment update a single Enrollment.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.UpdateEnrollmentRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#UpdateEnrollmentRequest. } op, err := c.UpdateEnrollment(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateEnrollmentOperation ¶ added in v1.15.0
func (c *Client) UpdateEnrollmentOperation(name string) *UpdateEnrollmentOperation
UpdateEnrollmentOperation returns a new UpdateEnrollmentOperation from a given name. The name must be that of a previously created UpdateEnrollmentOperation, possibly from a different process.
func (*Client) UpdateGoogleApiSource ¶ added in v1.15.0
func (c *Client) UpdateGoogleApiSource(ctx context.Context, req *eventarcpb.UpdateGoogleApiSourceRequest, opts ...gax.CallOption) (*UpdateGoogleApiSourceOperation, error)
UpdateGoogleApiSource update a single GoogleApiSource.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.UpdateGoogleApiSourceRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#UpdateGoogleApiSourceRequest. } op, err := c.UpdateGoogleApiSource(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateGoogleApiSourceOperation ¶ added in v1.15.0
func (c *Client) UpdateGoogleApiSourceOperation(name string) *UpdateGoogleApiSourceOperation
UpdateGoogleApiSourceOperation returns a new UpdateGoogleApiSourceOperation from a given name. The name must be that of a previously created UpdateGoogleApiSourceOperation, possibly from a different process.
func (*Client) UpdateGoogleChannelConfig ¶ added in v1.9.0
func (c *Client) UpdateGoogleChannelConfig(ctx context.Context, req *eventarcpb.UpdateGoogleChannelConfigRequest, opts ...gax.CallOption) (*eventarcpb.GoogleChannelConfig, error)
UpdateGoogleChannelConfig update a single GoogleChannelConfig
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.UpdateGoogleChannelConfigRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#UpdateGoogleChannelConfigRequest. } resp, err := c.UpdateGoogleChannelConfig(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateMessageBus ¶ added in v1.15.0
func (c *Client) UpdateMessageBus(ctx context.Context, req *eventarcpb.UpdateMessageBusRequest, opts ...gax.CallOption) (*UpdateMessageBusOperation, error)
UpdateMessageBus update a single message bus.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.UpdateMessageBusRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#UpdateMessageBusRequest. } op, err := c.UpdateMessageBus(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateMessageBusOperation ¶ added in v1.15.0
func (c *Client) UpdateMessageBusOperation(name string) *UpdateMessageBusOperation
UpdateMessageBusOperation returns a new UpdateMessageBusOperation from a given name. The name must be that of a previously created UpdateMessageBusOperation, possibly from a different process.
func (*Client) UpdatePipeline ¶ added in v1.15.0
func (c *Client) UpdatePipeline(ctx context.Context, req *eventarcpb.UpdatePipelineRequest, opts ...gax.CallOption) (*UpdatePipelineOperation, error)
UpdatePipeline update a single pipeline.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.UpdatePipelineRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#UpdatePipelineRequest. } op, err := c.UpdatePipeline(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdatePipelineOperation ¶ added in v1.15.0
func (c *Client) UpdatePipelineOperation(name string) *UpdatePipelineOperation
UpdatePipelineOperation returns a new UpdatePipelineOperation from a given name. The name must be that of a previously created UpdatePipelineOperation, possibly from a different process.
func (*Client) UpdateTrigger ¶
func (c *Client) UpdateTrigger(ctx context.Context, req *eventarcpb.UpdateTriggerRequest, opts ...gax.CallOption) (*UpdateTriggerOperation, error)
UpdateTrigger update a single trigger.
Example ¶
package main import ( "context" eventarc "cloud.google.com/go/eventarc/apiv1" eventarcpb "cloud.google.com/go/eventarc/apiv1/eventarcpb" ) func main() { ctx := context.Background() // This snippet has been automatically generated and should be regarded as a code template only. // It will require modifications to work: // - It may require correct/in-range values for request initialization. // - It may require specifying regional endpoints when creating the service client as shown in: // https://pkg.go.dev/cloud.google.com/go#hdr-Client_Options c, err := eventarc.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &eventarcpb.UpdateTriggerRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/eventarc/apiv1/eventarcpb#UpdateTriggerRequest. } op, err := c.UpdateTrigger(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateTriggerOperation ¶
func (c *Client) UpdateTriggerOperation(name string) *UpdateTriggerOperation
UpdateTriggerOperation returns a new UpdateTriggerOperation from a given name. The name must be that of a previously created UpdateTriggerOperation, possibly from a different process.
type CreateChannelConnectionOperation ¶ added in v1.2.0
type CreateChannelConnectionOperation struct {
// contains filtered or unexported fields
}
CreateChannelConnectionOperation manages a long-running operation from CreateChannelConnection.
func (*CreateChannelConnectionOperation) Done ¶ added in v1.2.0
func (op *CreateChannelConnectionOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateChannelConnectionOperation) Metadata ¶ added in v1.2.0
func (op *CreateChannelConnectionOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*CreateChannelConnectionOperation) Name ¶ added in v1.2.0
func (op *CreateChannelConnectionOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*CreateChannelConnectionOperation) Poll ¶ added in v1.2.0
func (op *CreateChannelConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*CreateChannelConnectionOperation) Wait ¶ added in v1.2.0
func (op *CreateChannelConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type CreateChannelOperation ¶ added in v1.2.0
type CreateChannelOperation struct {
// contains filtered or unexported fields
}
CreateChannelOperation manages a long-running operation from CreateChannel.
func (*CreateChannelOperation) Done ¶ added in v1.2.0
func (op *CreateChannelOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateChannelOperation) Metadata ¶ added in v1.2.0
func (op *CreateChannelOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*CreateChannelOperation) Name ¶ added in v1.2.0
func (op *CreateChannelOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*CreateChannelOperation) Poll ¶ added in v1.2.0
func (op *CreateChannelOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*CreateChannelOperation) Wait ¶ added in v1.2.0
func (op *CreateChannelOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type CreateEnrollmentOperation ¶ added in v1.15.0
type CreateEnrollmentOperation struct {
// contains filtered or unexported fields
}
CreateEnrollmentOperation manages a long-running operation from CreateEnrollment.
func (*CreateEnrollmentOperation) Done ¶ added in v1.15.0
func (op *CreateEnrollmentOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateEnrollmentOperation) Metadata ¶ added in v1.15.0
func (op *CreateEnrollmentOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*CreateEnrollmentOperation) Name ¶ added in v1.15.0
func (op *CreateEnrollmentOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*CreateEnrollmentOperation) Poll ¶ added in v1.15.0
func (op *CreateEnrollmentOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*CreateEnrollmentOperation) Wait ¶ added in v1.15.0
func (op *CreateEnrollmentOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type CreateGoogleApiSourceOperation ¶ added in v1.15.0
type CreateGoogleApiSourceOperation struct {
// contains filtered or unexported fields
}
CreateGoogleApiSourceOperation manages a long-running operation from CreateGoogleApiSource.
func (*CreateGoogleApiSourceOperation) Done ¶ added in v1.15.0
func (op *CreateGoogleApiSourceOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateGoogleApiSourceOperation) Metadata ¶ added in v1.15.0
func (op *CreateGoogleApiSourceOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*CreateGoogleApiSourceOperation) Name ¶ added in v1.15.0
func (op *CreateGoogleApiSourceOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*CreateGoogleApiSourceOperation) Poll ¶ added in v1.15.0
func (op *CreateGoogleApiSourceOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*CreateGoogleApiSourceOperation) Wait ¶ added in v1.15.0
func (op *CreateGoogleApiSourceOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type CreateMessageBusOperation ¶ added in v1.15.0
type CreateMessageBusOperation struct {
// contains filtered or unexported fields
}
CreateMessageBusOperation manages a long-running operation from CreateMessageBus.
func (*CreateMessageBusOperation) Done ¶ added in v1.15.0
func (op *CreateMessageBusOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateMessageBusOperation) Metadata ¶ added in v1.15.0
func (op *CreateMessageBusOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*CreateMessageBusOperation) Name ¶ added in v1.15.0
func (op *CreateMessageBusOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*CreateMessageBusOperation) Poll ¶ added in v1.15.0
func (op *CreateMessageBusOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*CreateMessageBusOperation) Wait ¶ added in v1.15.0
func (op *CreateMessageBusOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type CreatePipelineOperation ¶ added in v1.15.0
type CreatePipelineOperation struct {
// contains filtered or unexported fields
}
CreatePipelineOperation manages a long-running operation from CreatePipeline.
func (*CreatePipelineOperation) Done ¶ added in v1.15.0
func (op *CreatePipelineOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreatePipelineOperation) Metadata ¶ added in v1.15.0
func (op *CreatePipelineOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*CreatePipelineOperation) Name ¶ added in v1.15.0
func (op *CreatePipelineOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*CreatePipelineOperation) Poll ¶ added in v1.15.0
func (op *CreatePipelineOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*CreatePipelineOperation) Wait ¶ added in v1.15.0
func (op *CreatePipelineOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type CreateTriggerOperation ¶
type CreateTriggerOperation struct {
// contains filtered or unexported fields
}
CreateTriggerOperation manages a long-running operation from CreateTrigger.
func (*CreateTriggerOperation) Done ¶
func (op *CreateTriggerOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateTriggerOperation) Metadata ¶
func (op *CreateTriggerOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*CreateTriggerOperation) Name ¶
func (op *CreateTriggerOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*CreateTriggerOperation) Poll ¶
func (op *CreateTriggerOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*CreateTriggerOperation) Wait ¶
func (op *CreateTriggerOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type DeleteChannelConnectionOperation ¶ added in v1.2.0
type DeleteChannelConnectionOperation struct {
// contains filtered or unexported fields
}
DeleteChannelConnectionOperation manages a long-running operation from DeleteChannelConnection.
func (*DeleteChannelConnectionOperation) Done ¶ added in v1.2.0
func (op *DeleteChannelConnectionOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteChannelConnectionOperation) Metadata ¶ added in v1.2.0
func (op *DeleteChannelConnectionOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*DeleteChannelConnectionOperation) Name ¶ added in v1.2.0
func (op *DeleteChannelConnectionOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*DeleteChannelConnectionOperation) Poll ¶ added in v1.2.0
func (op *DeleteChannelConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*DeleteChannelConnectionOperation) Wait ¶ added in v1.2.0
func (op *DeleteChannelConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.ChannelConnection, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type DeleteChannelOperation ¶ added in v1.2.0
type DeleteChannelOperation struct {
// contains filtered or unexported fields
}
DeleteChannelOperation manages a long-running operation from DeleteChannel.
func (*DeleteChannelOperation) Done ¶ added in v1.2.0
func (op *DeleteChannelOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteChannelOperation) Metadata ¶ added in v1.2.0
func (op *DeleteChannelOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*DeleteChannelOperation) Name ¶ added in v1.2.0
func (op *DeleteChannelOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*DeleteChannelOperation) Poll ¶ added in v1.2.0
func (op *DeleteChannelOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*DeleteChannelOperation) Wait ¶ added in v1.2.0
func (op *DeleteChannelOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type DeleteEnrollmentOperation ¶ added in v1.15.0
type DeleteEnrollmentOperation struct {
// contains filtered or unexported fields
}
DeleteEnrollmentOperation manages a long-running operation from DeleteEnrollment.
func (*DeleteEnrollmentOperation) Done ¶ added in v1.15.0
func (op *DeleteEnrollmentOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteEnrollmentOperation) Metadata ¶ added in v1.15.0
func (op *DeleteEnrollmentOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*DeleteEnrollmentOperation) Name ¶ added in v1.15.0
func (op *DeleteEnrollmentOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*DeleteEnrollmentOperation) Poll ¶ added in v1.15.0
func (op *DeleteEnrollmentOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*DeleteEnrollmentOperation) Wait ¶ added in v1.15.0
func (op *DeleteEnrollmentOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type DeleteGoogleApiSourceOperation ¶ added in v1.15.0
type DeleteGoogleApiSourceOperation struct {
// contains filtered or unexported fields
}
DeleteGoogleApiSourceOperation manages a long-running operation from DeleteGoogleApiSource.
func (*DeleteGoogleApiSourceOperation) Done ¶ added in v1.15.0
func (op *DeleteGoogleApiSourceOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteGoogleApiSourceOperation) Metadata ¶ added in v1.15.0
func (op *DeleteGoogleApiSourceOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*DeleteGoogleApiSourceOperation) Name ¶ added in v1.15.0
func (op *DeleteGoogleApiSourceOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*DeleteGoogleApiSourceOperation) Poll ¶ added in v1.15.0
func (op *DeleteGoogleApiSourceOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*DeleteGoogleApiSourceOperation) Wait ¶ added in v1.15.0
func (op *DeleteGoogleApiSourceOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type DeleteMessageBusOperation ¶ added in v1.15.0
type DeleteMessageBusOperation struct {
// contains filtered or unexported fields
}
DeleteMessageBusOperation manages a long-running operation from DeleteMessageBus.
func (*DeleteMessageBusOperation) Done ¶ added in v1.15.0
func (op *DeleteMessageBusOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteMessageBusOperation) Metadata ¶ added in v1.15.0
func (op *DeleteMessageBusOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*DeleteMessageBusOperation) Name ¶ added in v1.15.0
func (op *DeleteMessageBusOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*DeleteMessageBusOperation) Poll ¶ added in v1.15.0
func (op *DeleteMessageBusOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*DeleteMessageBusOperation) Wait ¶ added in v1.15.0
func (op *DeleteMessageBusOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type DeletePipelineOperation ¶ added in v1.15.0
type DeletePipelineOperation struct {
// contains filtered or unexported fields
}
DeletePipelineOperation manages a long-running operation from DeletePipeline.
func (*DeletePipelineOperation) Done ¶ added in v1.15.0
func (op *DeletePipelineOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeletePipelineOperation) Metadata ¶ added in v1.15.0
func (op *DeletePipelineOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*DeletePipelineOperation) Name ¶ added in v1.15.0
func (op *DeletePipelineOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*DeletePipelineOperation) Poll ¶ added in v1.15.0
func (op *DeletePipelineOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*DeletePipelineOperation) Wait ¶ added in v1.15.0
func (op *DeletePipelineOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type DeleteTriggerOperation ¶
type DeleteTriggerOperation struct {
// contains filtered or unexported fields
}
DeleteTriggerOperation manages a long-running operation from DeleteTrigger.
func (*DeleteTriggerOperation) Done ¶
func (op *DeleteTriggerOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteTriggerOperation) Metadata ¶
func (op *DeleteTriggerOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*DeleteTriggerOperation) Name ¶
func (op *DeleteTriggerOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*DeleteTriggerOperation) Poll ¶
func (op *DeleteTriggerOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*DeleteTriggerOperation) Wait ¶
func (op *DeleteTriggerOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type EnrollmentIterator ¶ added in v1.15.0
type EnrollmentIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.Enrollment, nextPageToken string, err error) // contains filtered or unexported fields }
EnrollmentIterator manages a stream of *eventarcpb.Enrollment.
func (*EnrollmentIterator) All ¶ added in v1.15.0
func (it *EnrollmentIterator) All() iter.Seq2[*eventarcpb.Enrollment, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*EnrollmentIterator) Next ¶ added in v1.15.0
func (it *EnrollmentIterator) Next() (*eventarcpb.Enrollment, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*EnrollmentIterator) PageInfo ¶ added in v1.15.0
func (it *EnrollmentIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type GoogleApiSourceIterator ¶ added in v1.15.0
type GoogleApiSourceIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.GoogleApiSource, nextPageToken string, err error) // contains filtered or unexported fields }
GoogleApiSourceIterator manages a stream of *eventarcpb.GoogleApiSource.
func (*GoogleApiSourceIterator) All ¶ added in v1.15.0
func (it *GoogleApiSourceIterator) All() iter.Seq2[*eventarcpb.GoogleApiSource, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*GoogleApiSourceIterator) Next ¶ added in v1.15.0
func (it *GoogleApiSourceIterator) Next() (*eventarcpb.GoogleApiSource, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*GoogleApiSourceIterator) PageInfo ¶ added in v1.15.0
func (it *GoogleApiSourceIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type LocationIterator ¶ added in v1.9.0
type LocationIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*locationpb.Location, nextPageToken string, err error) // contains filtered or unexported fields }
LocationIterator manages a stream of *locationpb.Location.
func (*LocationIterator) All ¶ added in v1.14.1
func (it *LocationIterator) All() iter.Seq2[*locationpb.Location, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*LocationIterator) Next ¶ added in v1.9.0
func (it *LocationIterator) Next() (*locationpb.Location, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*LocationIterator) PageInfo ¶ added in v1.9.0
func (it *LocationIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type MessageBusIterator ¶ added in v1.15.0
type MessageBusIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.MessageBus, nextPageToken string, err error) // contains filtered or unexported fields }
MessageBusIterator manages a stream of *eventarcpb.MessageBus.
func (*MessageBusIterator) All ¶ added in v1.15.0
func (it *MessageBusIterator) All() iter.Seq2[*eventarcpb.MessageBus, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*MessageBusIterator) Next ¶ added in v1.15.0
func (it *MessageBusIterator) Next() (*eventarcpb.MessageBus, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*MessageBusIterator) PageInfo ¶ added in v1.15.0
func (it *MessageBusIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type OperationIterator ¶ added in v1.9.0
type OperationIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*longrunningpb.Operation, nextPageToken string, err error) // contains filtered or unexported fields }
OperationIterator manages a stream of *longrunningpb.Operation.
func (*OperationIterator) All ¶ added in v1.14.1
func (it *OperationIterator) All() iter.Seq2[*longrunningpb.Operation, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*OperationIterator) Next ¶ added in v1.9.0
func (it *OperationIterator) Next() (*longrunningpb.Operation, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*OperationIterator) PageInfo ¶ added in v1.9.0
func (it *OperationIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type PipelineIterator ¶ added in v1.15.0
type PipelineIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.Pipeline, nextPageToken string, err error) // contains filtered or unexported fields }
PipelineIterator manages a stream of *eventarcpb.Pipeline.
func (*PipelineIterator) All ¶ added in v1.15.0
func (it *PipelineIterator) All() iter.Seq2[*eventarcpb.Pipeline, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*PipelineIterator) Next ¶ added in v1.15.0
func (it *PipelineIterator) Next() (*eventarcpb.Pipeline, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*PipelineIterator) PageInfo ¶ added in v1.15.0
func (it *PipelineIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type ProviderIterator ¶ added in v1.6.0
type ProviderIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.Provider, nextPageToken string, err error) // contains filtered or unexported fields }
ProviderIterator manages a stream of *eventarcpb.Provider.
func (*ProviderIterator) All ¶ added in v1.14.1
func (it *ProviderIterator) All() iter.Seq2[*eventarcpb.Provider, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*ProviderIterator) Next ¶ added in v1.6.0
func (it *ProviderIterator) Next() (*eventarcpb.Provider, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*ProviderIterator) PageInfo ¶ added in v1.6.0
func (it *ProviderIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type StringIterator ¶ added in v1.15.0
type StringIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []string, nextPageToken string, err error) // contains filtered or unexported fields }
StringIterator manages a stream of string.
func (*StringIterator) All ¶ added in v1.15.0
func (it *StringIterator) All() iter.Seq2[string, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*StringIterator) Next ¶ added in v1.15.0
func (it *StringIterator) Next() (string, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*StringIterator) PageInfo ¶ added in v1.15.0
func (it *StringIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type TriggerIterator ¶
type TriggerIterator struct { // Response is the raw response for the current page. // It must be cast to the RPC response type. // Calling Next() or InternalFetch() updates this value. Response interface{} // InternalFetch is for use by the Google Cloud Libraries only. // It is not part of the stable interface of this package. // // InternalFetch returns results from a single call to the underlying RPC. // The number of results is no greater than pageSize. // If there are no more results, nextPageToken is empty and err is nil. InternalFetch func(pageSize int, pageToken string) (results []*eventarcpb.Trigger, nextPageToken string, err error) // contains filtered or unexported fields }
TriggerIterator manages a stream of *eventarcpb.Trigger.
func (*TriggerIterator) All ¶ added in v1.14.1
func (it *TriggerIterator) All() iter.Seq2[*eventarcpb.Trigger, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*TriggerIterator) Next ¶
func (it *TriggerIterator) Next() (*eventarcpb.Trigger, error)
Next returns the next result. Its second return value is iterator.Done if there are no more results. Once Next returns Done, all subsequent calls will return Done.
func (*TriggerIterator) PageInfo ¶
func (it *TriggerIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type UpdateChannelOperation ¶ added in v1.2.0
type UpdateChannelOperation struct {
// contains filtered or unexported fields
}
UpdateChannelOperation manages a long-running operation from UpdateChannel.
func (*UpdateChannelOperation) Done ¶ added in v1.2.0
func (op *UpdateChannelOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdateChannelOperation) Metadata ¶ added in v1.2.0
func (op *UpdateChannelOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*UpdateChannelOperation) Name ¶ added in v1.2.0
func (op *UpdateChannelOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*UpdateChannelOperation) Poll ¶ added in v1.2.0
func (op *UpdateChannelOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*UpdateChannelOperation) Wait ¶ added in v1.2.0
func (op *UpdateChannelOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Channel, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type UpdateEnrollmentOperation ¶ added in v1.15.0
type UpdateEnrollmentOperation struct {
// contains filtered or unexported fields
}
UpdateEnrollmentOperation manages a long-running operation from UpdateEnrollment.
func (*UpdateEnrollmentOperation) Done ¶ added in v1.15.0
func (op *UpdateEnrollmentOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdateEnrollmentOperation) Metadata ¶ added in v1.15.0
func (op *UpdateEnrollmentOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*UpdateEnrollmentOperation) Name ¶ added in v1.15.0
func (op *UpdateEnrollmentOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*UpdateEnrollmentOperation) Poll ¶ added in v1.15.0
func (op *UpdateEnrollmentOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*UpdateEnrollmentOperation) Wait ¶ added in v1.15.0
func (op *UpdateEnrollmentOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Enrollment, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type UpdateGoogleApiSourceOperation ¶ added in v1.15.0
type UpdateGoogleApiSourceOperation struct {
// contains filtered or unexported fields
}
UpdateGoogleApiSourceOperation manages a long-running operation from UpdateGoogleApiSource.
func (*UpdateGoogleApiSourceOperation) Done ¶ added in v1.15.0
func (op *UpdateGoogleApiSourceOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdateGoogleApiSourceOperation) Metadata ¶ added in v1.15.0
func (op *UpdateGoogleApiSourceOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*UpdateGoogleApiSourceOperation) Name ¶ added in v1.15.0
func (op *UpdateGoogleApiSourceOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*UpdateGoogleApiSourceOperation) Poll ¶ added in v1.15.0
func (op *UpdateGoogleApiSourceOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*UpdateGoogleApiSourceOperation) Wait ¶ added in v1.15.0
func (op *UpdateGoogleApiSourceOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.GoogleApiSource, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type UpdateMessageBusOperation ¶ added in v1.15.0
type UpdateMessageBusOperation struct {
// contains filtered or unexported fields
}
UpdateMessageBusOperation manages a long-running operation from UpdateMessageBus.
func (*UpdateMessageBusOperation) Done ¶ added in v1.15.0
func (op *UpdateMessageBusOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdateMessageBusOperation) Metadata ¶ added in v1.15.0
func (op *UpdateMessageBusOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*UpdateMessageBusOperation) Name ¶ added in v1.15.0
func (op *UpdateMessageBusOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*UpdateMessageBusOperation) Poll ¶ added in v1.15.0
func (op *UpdateMessageBusOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*UpdateMessageBusOperation) Wait ¶ added in v1.15.0
func (op *UpdateMessageBusOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.MessageBus, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type UpdatePipelineOperation ¶ added in v1.15.0
type UpdatePipelineOperation struct {
// contains filtered or unexported fields
}
UpdatePipelineOperation manages a long-running operation from UpdatePipeline.
func (*UpdatePipelineOperation) Done ¶ added in v1.15.0
func (op *UpdatePipelineOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdatePipelineOperation) Metadata ¶ added in v1.15.0
func (op *UpdatePipelineOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*UpdatePipelineOperation) Name ¶ added in v1.15.0
func (op *UpdatePipelineOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*UpdatePipelineOperation) Poll ¶ added in v1.15.0
func (op *UpdatePipelineOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*UpdatePipelineOperation) Wait ¶ added in v1.15.0
func (op *UpdatePipelineOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Pipeline, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.
type UpdateTriggerOperation ¶
type UpdateTriggerOperation struct {
// contains filtered or unexported fields
}
UpdateTriggerOperation manages a long-running operation from UpdateTrigger.
func (*UpdateTriggerOperation) Done ¶
func (op *UpdateTriggerOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdateTriggerOperation) Metadata ¶
func (op *UpdateTriggerOperation) Metadata() (*eventarcpb.OperationMetadata, error)
Metadata returns metadata associated with the long-running operation. Metadata itself does not contact the server, but Poll does. To get the latest metadata, call this method after a successful call to Poll. If the metadata is not available, the returned metadata and error are both nil.
func (*UpdateTriggerOperation) Name ¶
func (op *UpdateTriggerOperation) Name() string
Name returns the name of the long-running operation. The name is assigned by the server and is unique within the service from which the operation is created.
func (*UpdateTriggerOperation) Poll ¶
func (op *UpdateTriggerOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
Poll fetches the latest state of the long-running operation.
Poll also fetches the latest metadata, which can be retrieved by Metadata.
If Poll fails, the error is returned and op is unmodified. If Poll succeeds and the operation has completed with failure, the error is returned and op.Done will return true. If Poll succeeds and the operation has completed successfully, op.Done will return true, and the response of the operation is returned. If Poll succeeds and the operation has not completed, the returned response and error are both nil.
func (*UpdateTriggerOperation) Wait ¶
func (op *UpdateTriggerOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*eventarcpb.Trigger, error)
Wait blocks until the long-running operation is completed, returning the response and any errors encountered.
See documentation of Poll for error-handling information.