Documentation ¶
Overview ¶
Package datastream is an auto-generated package for the Datastream API.
Example usage ¶
To get started with this package, create a client.
ctx := context.Background() c, err := datastream.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() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.ListConnectionProfilesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#ListConnectionProfilesRequest. } it := c.ListConnectionProfiles(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } 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.
For information about setting deadlines, reusing contexts, and more please visit https://pkg.go.dev/cloud.google.com/go.
Index ¶
- func DefaultAuthScopes() []string
- type CallOptions
- type Client
- func (c *Client) Close() error
- func (c *Client) Connection() *grpc.ClientConn
- func (c *Client) CreateConnectionProfile(ctx context.Context, req *datastreampb.CreateConnectionProfileRequest, ...) (*CreateConnectionProfileOperation, error)
- func (c *Client) CreateConnectionProfileOperation(name string) *CreateConnectionProfileOperation
- func (c *Client) CreatePrivateConnection(ctx context.Context, req *datastreampb.CreatePrivateConnectionRequest, ...) (*CreatePrivateConnectionOperation, error)
- func (c *Client) CreatePrivateConnectionOperation(name string) *CreatePrivateConnectionOperation
- func (c *Client) CreateRoute(ctx context.Context, req *datastreampb.CreateRouteRequest, ...) (*CreateRouteOperation, error)
- func (c *Client) CreateRouteOperation(name string) *CreateRouteOperation
- func (c *Client) CreateStream(ctx context.Context, req *datastreampb.CreateStreamRequest, ...) (*CreateStreamOperation, error)
- func (c *Client) CreateStreamOperation(name string) *CreateStreamOperation
- func (c *Client) DeleteConnectionProfile(ctx context.Context, req *datastreampb.DeleteConnectionProfileRequest, ...) (*DeleteConnectionProfileOperation, error)
- func (c *Client) DeleteConnectionProfileOperation(name string) *DeleteConnectionProfileOperation
- func (c *Client) DeletePrivateConnection(ctx context.Context, req *datastreampb.DeletePrivateConnectionRequest, ...) (*DeletePrivateConnectionOperation, error)
- func (c *Client) DeletePrivateConnectionOperation(name string) *DeletePrivateConnectionOperation
- func (c *Client) DeleteRoute(ctx context.Context, req *datastreampb.DeleteRouteRequest, ...) (*DeleteRouteOperation, error)
- func (c *Client) DeleteRouteOperation(name string) *DeleteRouteOperation
- func (c *Client) DeleteStream(ctx context.Context, req *datastreampb.DeleteStreamRequest, ...) (*DeleteStreamOperation, error)
- func (c *Client) DeleteStreamOperation(name string) *DeleteStreamOperation
- func (c *Client) DiscoverConnectionProfile(ctx context.Context, req *datastreampb.DiscoverConnectionProfileRequest, ...) (*datastreampb.DiscoverConnectionProfileResponse, error)
- func (c *Client) FetchStaticIps(ctx context.Context, req *datastreampb.FetchStaticIpsRequest, ...) *StringIterator
- func (c *Client) GetConnectionProfile(ctx context.Context, req *datastreampb.GetConnectionProfileRequest, ...) (*datastreampb.ConnectionProfile, error)
- func (c *Client) GetLocation(ctx context.Context, req *locationpb.GetLocationRequest, ...) (*locationpb.Location, error)
- func (c *Client) GetPrivateConnection(ctx context.Context, req *datastreampb.GetPrivateConnectionRequest, ...) (*datastreampb.PrivateConnection, error)
- func (c *Client) GetRoute(ctx context.Context, req *datastreampb.GetRouteRequest, opts ...gax.CallOption) (*datastreampb.Route, error)
- func (c *Client) GetStream(ctx context.Context, req *datastreampb.GetStreamRequest, ...) (*datastreampb.Stream, error)
- func (c *Client) GetStreamObject(ctx context.Context, req *datastreampb.GetStreamObjectRequest, ...) (*datastreampb.StreamObject, error)
- func (c *Client) ListConnectionProfiles(ctx context.Context, req *datastreampb.ListConnectionProfilesRequest, ...) *ConnectionProfileIterator
- func (c *Client) ListLocations(ctx context.Context, req *locationpb.ListLocationsRequest, ...) *LocationIterator
- func (c *Client) ListPrivateConnections(ctx context.Context, req *datastreampb.ListPrivateConnectionsRequest, ...) *PrivateConnectionIterator
- func (c *Client) ListRoutes(ctx context.Context, req *datastreampb.ListRoutesRequest, ...) *RouteIterator
- func (c *Client) ListStreamObjects(ctx context.Context, req *datastreampb.ListStreamObjectsRequest, ...) *StreamObjectIterator
- func (c *Client) ListStreams(ctx context.Context, req *datastreampb.ListStreamsRequest, ...) *StreamIterator
- func (c *Client) LookupStreamObject(ctx context.Context, req *datastreampb.LookupStreamObjectRequest, ...) (*datastreampb.StreamObject, error)
- func (c *Client) StartBackfillJob(ctx context.Context, req *datastreampb.StartBackfillJobRequest, ...) (*datastreampb.StartBackfillJobResponse, error)
- func (c *Client) StopBackfillJob(ctx context.Context, req *datastreampb.StopBackfillJobRequest, ...) (*datastreampb.StopBackfillJobResponse, error)
- func (c *Client) UpdateConnectionProfile(ctx context.Context, req *datastreampb.UpdateConnectionProfileRequest, ...) (*UpdateConnectionProfileOperation, error)
- func (c *Client) UpdateConnectionProfileOperation(name string) *UpdateConnectionProfileOperation
- func (c *Client) UpdateStream(ctx context.Context, req *datastreampb.UpdateStreamRequest, ...) (*UpdateStreamOperation, error)
- func (c *Client) UpdateStreamOperation(name string) *UpdateStreamOperation
- type ConnectionProfileIterator
- type CreateConnectionProfileOperation
- func (op *CreateConnectionProfileOperation) Done() bool
- func (op *CreateConnectionProfileOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *CreateConnectionProfileOperation) Name() string
- func (op *CreateConnectionProfileOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, error)
- func (op *CreateConnectionProfileOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, error)
- type CreatePrivateConnectionOperation
- func (op *CreatePrivateConnectionOperation) Done() bool
- func (op *CreatePrivateConnectionOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *CreatePrivateConnectionOperation) Name() string
- func (op *CreatePrivateConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.PrivateConnection, error)
- func (op *CreatePrivateConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.PrivateConnection, error)
- type CreateRouteOperation
- func (op *CreateRouteOperation) Done() bool
- func (op *CreateRouteOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *CreateRouteOperation) Name() string
- func (op *CreateRouteOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Route, error)
- func (op *CreateRouteOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Route, error)
- type CreateStreamOperation
- func (op *CreateStreamOperation) Done() bool
- func (op *CreateStreamOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *CreateStreamOperation) Name() string
- func (op *CreateStreamOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, error)
- func (op *CreateStreamOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, error)
- type DeleteConnectionProfileOperation
- func (op *DeleteConnectionProfileOperation) Done() bool
- func (op *DeleteConnectionProfileOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *DeleteConnectionProfileOperation) Name() string
- func (op *DeleteConnectionProfileOperation) Poll(ctx context.Context, opts ...gax.CallOption) error
- func (op *DeleteConnectionProfileOperation) Wait(ctx context.Context, opts ...gax.CallOption) error
- type DeletePrivateConnectionOperation
- func (op *DeletePrivateConnectionOperation) Done() bool
- func (op *DeletePrivateConnectionOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *DeletePrivateConnectionOperation) Name() string
- func (op *DeletePrivateConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) error
- func (op *DeletePrivateConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) error
- type DeleteRouteOperation
- func (op *DeleteRouteOperation) Done() bool
- func (op *DeleteRouteOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *DeleteRouteOperation) Name() string
- func (op *DeleteRouteOperation) Poll(ctx context.Context, opts ...gax.CallOption) error
- func (op *DeleteRouteOperation) Wait(ctx context.Context, opts ...gax.CallOption) error
- type DeleteStreamOperation
- func (op *DeleteStreamOperation) Done() bool
- func (op *DeleteStreamOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *DeleteStreamOperation) Name() string
- func (op *DeleteStreamOperation) Poll(ctx context.Context, opts ...gax.CallOption) error
- func (op *DeleteStreamOperation) Wait(ctx context.Context, opts ...gax.CallOption) error
- type LocationIterator
- type PrivateConnectionIterator
- type RouteIterator
- type StreamIterator
- type StreamObjectIterator
- type StringIterator
- type UpdateConnectionProfileOperation
- func (op *UpdateConnectionProfileOperation) Done() bool
- func (op *UpdateConnectionProfileOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *UpdateConnectionProfileOperation) Name() string
- func (op *UpdateConnectionProfileOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, error)
- func (op *UpdateConnectionProfileOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, error)
- type UpdateStreamOperation
- func (op *UpdateStreamOperation) Done() bool
- func (op *UpdateStreamOperation) Metadata() (*datastreampb.OperationMetadata, error)
- func (op *UpdateStreamOperation) Name() string
- func (op *UpdateStreamOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, error)
- func (op *UpdateStreamOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, error)
Examples ¶
- Client.CreateConnectionProfile
- Client.CreatePrivateConnection
- Client.CreateRoute
- Client.CreateStream
- Client.DeleteConnectionProfile
- Client.DeletePrivateConnection
- Client.DeleteRoute
- Client.DeleteStream
- Client.DiscoverConnectionProfile
- Client.FetchStaticIps
- Client.GetConnectionProfile
- Client.GetLocation
- Client.GetPrivateConnection
- Client.GetRoute
- Client.GetStream
- Client.GetStreamObject
- Client.ListConnectionProfiles
- Client.ListLocations
- Client.ListPrivateConnections
- Client.ListRoutes
- Client.ListStreamObjects
- Client.ListStreams
- Client.LookupStreamObject
- Client.StartBackfillJob
- Client.StopBackfillJob
- Client.UpdateConnectionProfile
- Client.UpdateStream
- NewClient
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 { ListConnectionProfiles []gax.CallOption GetConnectionProfile []gax.CallOption CreateConnectionProfile []gax.CallOption UpdateConnectionProfile []gax.CallOption DeleteConnectionProfile []gax.CallOption DiscoverConnectionProfile []gax.CallOption ListStreams []gax.CallOption GetStream []gax.CallOption CreateStream []gax.CallOption UpdateStream []gax.CallOption DeleteStream []gax.CallOption GetStreamObject []gax.CallOption LookupStreamObject []gax.CallOption ListStreamObjects []gax.CallOption StartBackfillJob []gax.CallOption StopBackfillJob []gax.CallOption FetchStaticIps []gax.CallOption CreatePrivateConnection []gax.CallOption GetPrivateConnection []gax.CallOption ListPrivateConnections []gax.CallOption DeletePrivateConnection []gax.CallOption CreateRoute []gax.CallOption GetRoute []gax.CallOption ListRoutes []gax.CallOption DeleteRoute []gax.CallOption GetLocation []gax.CallOption ListLocations []gax.CallOption }
CallOptions contains the retry settings for each method of Client.
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 Datastream API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
Datastream service
func NewClient ¶
NewClient creates a new datastream client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.
Datastream service
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
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 ¶
func (c *Client) Connection() *grpc.ClientConn
Connection returns a connection to the API service.
Deprecated.
func (*Client) CreateConnectionProfile ¶
func (c *Client) CreateConnectionProfile(ctx context.Context, req *datastreampb.CreateConnectionProfileRequest, opts ...gax.CallOption) (*CreateConnectionProfileOperation, error)
CreateConnectionProfile use this method to create a connection profile in a project and location.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.CreateConnectionProfileRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#CreateConnectionProfileRequest. } op, err := c.CreateConnectionProfile(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) CreateConnectionProfileOperation ¶
func (c *Client) CreateConnectionProfileOperation(name string) *CreateConnectionProfileOperation
CreateConnectionProfileOperation returns a new CreateConnectionProfileOperation from a given name. The name must be that of a previously created CreateConnectionProfileOperation, possibly from a different process.
func (*Client) CreatePrivateConnection ¶
func (c *Client) CreatePrivateConnection(ctx context.Context, req *datastreampb.CreatePrivateConnectionRequest, opts ...gax.CallOption) (*CreatePrivateConnectionOperation, error)
CreatePrivateConnection use this method to create a private connectivity configuration.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.CreatePrivateConnectionRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#CreatePrivateConnectionRequest. } op, err := c.CreatePrivateConnection(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) CreatePrivateConnectionOperation ¶
func (c *Client) CreatePrivateConnectionOperation(name string) *CreatePrivateConnectionOperation
CreatePrivateConnectionOperation returns a new CreatePrivateConnectionOperation from a given name. The name must be that of a previously created CreatePrivateConnectionOperation, possibly from a different process.
func (*Client) CreateRoute ¶
func (c *Client) CreateRoute(ctx context.Context, req *datastreampb.CreateRouteRequest, opts ...gax.CallOption) (*CreateRouteOperation, error)
CreateRoute use this method to create a route for a private connectivity configuration in a project and location.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.CreateRouteRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#CreateRouteRequest. } op, err := c.CreateRoute(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) CreateRouteOperation ¶
func (c *Client) CreateRouteOperation(name string) *CreateRouteOperation
CreateRouteOperation returns a new CreateRouteOperation from a given name. The name must be that of a previously created CreateRouteOperation, possibly from a different process.
func (*Client) CreateStream ¶
func (c *Client) CreateStream(ctx context.Context, req *datastreampb.CreateStreamRequest, opts ...gax.CallOption) (*CreateStreamOperation, error)
CreateStream use this method to create a stream.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.CreateStreamRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#CreateStreamRequest. } op, err := c.CreateStream(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) CreateStreamOperation ¶
func (c *Client) CreateStreamOperation(name string) *CreateStreamOperation
CreateStreamOperation returns a new CreateStreamOperation from a given name. The name must be that of a previously created CreateStreamOperation, possibly from a different process.
func (*Client) DeleteConnectionProfile ¶
func (c *Client) DeleteConnectionProfile(ctx context.Context, req *datastreampb.DeleteConnectionProfileRequest, opts ...gax.CallOption) (*DeleteConnectionProfileOperation, error)
DeleteConnectionProfile use this method to delete a connection profile.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.DeleteConnectionProfileRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#DeleteConnectionProfileRequest. } op, err := c.DeleteConnectionProfile(ctx, req) if err != nil { // TODO: Handle error. } err = op.Wait(ctx) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) DeleteConnectionProfileOperation ¶
func (c *Client) DeleteConnectionProfileOperation(name string) *DeleteConnectionProfileOperation
DeleteConnectionProfileOperation returns a new DeleteConnectionProfileOperation from a given name. The name must be that of a previously created DeleteConnectionProfileOperation, possibly from a different process.
func (*Client) DeletePrivateConnection ¶
func (c *Client) DeletePrivateConnection(ctx context.Context, req *datastreampb.DeletePrivateConnectionRequest, opts ...gax.CallOption) (*DeletePrivateConnectionOperation, error)
DeletePrivateConnection use this method to delete a private connectivity configuration.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.DeletePrivateConnectionRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#DeletePrivateConnectionRequest. } op, err := c.DeletePrivateConnection(ctx, req) if err != nil { // TODO: Handle error. } err = op.Wait(ctx) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) DeletePrivateConnectionOperation ¶
func (c *Client) DeletePrivateConnectionOperation(name string) *DeletePrivateConnectionOperation
DeletePrivateConnectionOperation returns a new DeletePrivateConnectionOperation from a given name. The name must be that of a previously created DeletePrivateConnectionOperation, possibly from a different process.
func (*Client) DeleteRoute ¶
func (c *Client) DeleteRoute(ctx context.Context, req *datastreampb.DeleteRouteRequest, opts ...gax.CallOption) (*DeleteRouteOperation, error)
DeleteRoute use this method to delete a route.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.DeleteRouteRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#DeleteRouteRequest. } op, err := c.DeleteRoute(ctx, req) if err != nil { // TODO: Handle error. } err = op.Wait(ctx) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) DeleteRouteOperation ¶
func (c *Client) DeleteRouteOperation(name string) *DeleteRouteOperation
DeleteRouteOperation returns a new DeleteRouteOperation from a given name. The name must be that of a previously created DeleteRouteOperation, possibly from a different process.
func (*Client) DeleteStream ¶
func (c *Client) DeleteStream(ctx context.Context, req *datastreampb.DeleteStreamRequest, opts ...gax.CallOption) (*DeleteStreamOperation, error)
DeleteStream use this method to delete a stream.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.DeleteStreamRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#DeleteStreamRequest. } op, err := c.DeleteStream(ctx, req) if err != nil { // TODO: Handle error. } err = op.Wait(ctx) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) DeleteStreamOperation ¶
func (c *Client) DeleteStreamOperation(name string) *DeleteStreamOperation
DeleteStreamOperation returns a new DeleteStreamOperation from a given name. The name must be that of a previously created DeleteStreamOperation, possibly from a different process.
func (*Client) DiscoverConnectionProfile ¶
func (c *Client) DiscoverConnectionProfile(ctx context.Context, req *datastreampb.DiscoverConnectionProfileRequest, opts ...gax.CallOption) (*datastreampb.DiscoverConnectionProfileResponse, error)
DiscoverConnectionProfile use this method to discover a connection profile. The discover API call exposes the data objects and metadata belonging to the profile. Typically, a request returns children data objects of a parent data object that’s optionally supplied in the request.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.DiscoverConnectionProfileRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#DiscoverConnectionProfileRequest. } resp, err := c.DiscoverConnectionProfile(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) FetchStaticIps ¶
func (c *Client) FetchStaticIps(ctx context.Context, req *datastreampb.FetchStaticIpsRequest, opts ...gax.CallOption) *StringIterator
FetchStaticIps the FetchStaticIps API call exposes the static IP addresses used by Datastream.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" "google.golang.org/api/iterator" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.FetchStaticIpsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#FetchStaticIpsRequest. } it := c.FetchStaticIps(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) GetConnectionProfile ¶
func (c *Client) GetConnectionProfile(ctx context.Context, req *datastreampb.GetConnectionProfileRequest, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, error)
GetConnectionProfile use this method to get details about a connection profile.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.GetConnectionProfileRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#GetConnectionProfileRequest. } resp, err := c.GetConnectionProfile(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetLocation ¶
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" datastream "cloud.google.com/go/datastream/apiv1" locationpb "google.golang.org/genproto/googleapis/cloud/location" ) func main() { ctx := context.Background() c, err := datastream.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) GetPrivateConnection ¶
func (c *Client) GetPrivateConnection(ctx context.Context, req *datastreampb.GetPrivateConnectionRequest, opts ...gax.CallOption) (*datastreampb.PrivateConnection, error)
GetPrivateConnection use this method to get details about a private connectivity configuration.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.GetPrivateConnectionRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#GetPrivateConnectionRequest. } resp, err := c.GetPrivateConnection(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetRoute ¶
func (c *Client) GetRoute(ctx context.Context, req *datastreampb.GetRouteRequest, opts ...gax.CallOption) (*datastreampb.Route, error)
GetRoute use this method to get details about a route.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.GetRouteRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#GetRouteRequest. } resp, err := c.GetRoute(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetStream ¶
func (c *Client) GetStream(ctx context.Context, req *datastreampb.GetStreamRequest, opts ...gax.CallOption) (*datastreampb.Stream, error)
GetStream use this method to get details about a stream.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.GetStreamRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#GetStreamRequest. } resp, err := c.GetStream(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetStreamObject ¶
func (c *Client) GetStreamObject(ctx context.Context, req *datastreampb.GetStreamObjectRequest, opts ...gax.CallOption) (*datastreampb.StreamObject, error)
GetStreamObject use this method to get details about a stream object.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.GetStreamObjectRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#GetStreamObjectRequest. } resp, err := c.GetStreamObject(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) ListConnectionProfiles ¶
func (c *Client) ListConnectionProfiles(ctx context.Context, req *datastreampb.ListConnectionProfilesRequest, opts ...gax.CallOption) *ConnectionProfileIterator
ListConnectionProfiles use this method to list connection profiles created in a project and location.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" "google.golang.org/api/iterator" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.ListConnectionProfilesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#ListConnectionProfilesRequest. } it := c.ListConnectionProfiles(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListLocations ¶
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" datastream "cloud.google.com/go/datastream/apiv1" "google.golang.org/api/iterator" locationpb "google.golang.org/genproto/googleapis/cloud/location" ) func main() { ctx := context.Background() c, err := datastream.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 } }
Output:
func (*Client) ListPrivateConnections ¶
func (c *Client) ListPrivateConnections(ctx context.Context, req *datastreampb.ListPrivateConnectionsRequest, opts ...gax.CallOption) *PrivateConnectionIterator
ListPrivateConnections use this method to list private connectivity configurations in a project and location.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" "google.golang.org/api/iterator" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.ListPrivateConnectionsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#ListPrivateConnectionsRequest. } it := c.ListPrivateConnections(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListRoutes ¶
func (c *Client) ListRoutes(ctx context.Context, req *datastreampb.ListRoutesRequest, opts ...gax.CallOption) *RouteIterator
ListRoutes use this method to list routes created for a private connectivity configuration in a project and location.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" "google.golang.org/api/iterator" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.ListRoutesRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#ListRoutesRequest. } it := c.ListRoutes(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListStreamObjects ¶
func (c *Client) ListStreamObjects(ctx context.Context, req *datastreampb.ListStreamObjectsRequest, opts ...gax.CallOption) *StreamObjectIterator
ListStreamObjects use this method to list the objects of a specific stream.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" "google.golang.org/api/iterator" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.ListStreamObjectsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#ListStreamObjectsRequest. } it := c.ListStreamObjects(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListStreams ¶
func (c *Client) ListStreams(ctx context.Context, req *datastreampb.ListStreamsRequest, opts ...gax.CallOption) *StreamIterator
ListStreams use this method to list streams in a project and location.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" "google.golang.org/api/iterator" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.ListStreamsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#ListStreamsRequest. } it := c.ListStreams(ctx, req) for { resp, err := it.Next() if err == iterator.Done { break } if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) LookupStreamObject ¶
func (c *Client) LookupStreamObject(ctx context.Context, req *datastreampb.LookupStreamObjectRequest, opts ...gax.CallOption) (*datastreampb.StreamObject, error)
LookupStreamObject use this method to look up a stream object by its source object identifier.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.LookupStreamObjectRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#LookupStreamObjectRequest. } resp, err := c.LookupStreamObject(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) StartBackfillJob ¶
func (c *Client) StartBackfillJob(ctx context.Context, req *datastreampb.StartBackfillJobRequest, opts ...gax.CallOption) (*datastreampb.StartBackfillJobResponse, error)
StartBackfillJob use this method to start a backfill job for the specified stream object.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.StartBackfillJobRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#StartBackfillJobRequest. } resp, err := c.StartBackfillJob(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) StopBackfillJob ¶
func (c *Client) StopBackfillJob(ctx context.Context, req *datastreampb.StopBackfillJobRequest, opts ...gax.CallOption) (*datastreampb.StopBackfillJobResponse, error)
StopBackfillJob use this method to stop a backfill job for the specified stream object.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.StopBackfillJobRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#StopBackfillJobRequest. } resp, err := c.StopBackfillJob(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateConnectionProfile ¶
func (c *Client) UpdateConnectionProfile(ctx context.Context, req *datastreampb.UpdateConnectionProfileRequest, opts ...gax.CallOption) (*UpdateConnectionProfileOperation, error)
UpdateConnectionProfile use this method to update the parameters of a connection profile.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.UpdateConnectionProfileRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#UpdateConnectionProfileRequest. } op, err := c.UpdateConnectionProfile(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) UpdateConnectionProfileOperation ¶
func (c *Client) UpdateConnectionProfileOperation(name string) *UpdateConnectionProfileOperation
UpdateConnectionProfileOperation returns a new UpdateConnectionProfileOperation from a given name. The name must be that of a previously created UpdateConnectionProfileOperation, possibly from a different process.
func (*Client) UpdateStream ¶
func (c *Client) UpdateStream(ctx context.Context, req *datastreampb.UpdateStreamRequest, opts ...gax.CallOption) (*UpdateStreamOperation, error)
UpdateStream use this method to update the configuration of a stream.
Example ¶
package main import ( "context" datastream "cloud.google.com/go/datastream/apiv1" datastreampb "google.golang.org/genproto/googleapis/cloud/datastream/v1" ) func main() { ctx := context.Background() c, err := datastream.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &datastreampb.UpdateStreamRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/datastream/v1#UpdateStreamRequest. } op, err := c.UpdateStream(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) UpdateStreamOperation ¶
func (c *Client) UpdateStreamOperation(name string) *UpdateStreamOperation
UpdateStreamOperation returns a new UpdateStreamOperation from a given name. The name must be that of a previously created UpdateStreamOperation, possibly from a different process.
type ConnectionProfileIterator ¶
type ConnectionProfileIterator 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 []*datastreampb.ConnectionProfile, nextPageToken string, err error) // contains filtered or unexported fields }
ConnectionProfileIterator manages a stream of *datastreampb.ConnectionProfile.
func (*ConnectionProfileIterator) Next ¶
func (it *ConnectionProfileIterator) Next() (*datastreampb.ConnectionProfile, 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 (*ConnectionProfileIterator) PageInfo ¶
func (it *ConnectionProfileIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type CreateConnectionProfileOperation ¶
type CreateConnectionProfileOperation struct {
// contains filtered or unexported fields
}
CreateConnectionProfileOperation manages a long-running operation from CreateConnectionProfile.
func (*CreateConnectionProfileOperation) Done ¶
func (op *CreateConnectionProfileOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateConnectionProfileOperation) Metadata ¶
func (op *CreateConnectionProfileOperation) Metadata() (*datastreampb.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 (*CreateConnectionProfileOperation) Name ¶
func (op *CreateConnectionProfileOperation) 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 (*CreateConnectionProfileOperation) Poll ¶
func (op *CreateConnectionProfileOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, 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 (*CreateConnectionProfileOperation) Wait ¶
func (op *CreateConnectionProfileOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, 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 CreatePrivateConnectionOperation ¶
type CreatePrivateConnectionOperation struct {
// contains filtered or unexported fields
}
CreatePrivateConnectionOperation manages a long-running operation from CreatePrivateConnection.
func (*CreatePrivateConnectionOperation) Done ¶
func (op *CreatePrivateConnectionOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreatePrivateConnectionOperation) Metadata ¶
func (op *CreatePrivateConnectionOperation) Metadata() (*datastreampb.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 (*CreatePrivateConnectionOperation) Name ¶
func (op *CreatePrivateConnectionOperation) 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 (*CreatePrivateConnectionOperation) Poll ¶
func (op *CreatePrivateConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.PrivateConnection, 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 (*CreatePrivateConnectionOperation) Wait ¶
func (op *CreatePrivateConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.PrivateConnection, 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 CreateRouteOperation ¶
type CreateRouteOperation struct {
// contains filtered or unexported fields
}
CreateRouteOperation manages a long-running operation from CreateRoute.
func (*CreateRouteOperation) Done ¶
func (op *CreateRouteOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateRouteOperation) Metadata ¶
func (op *CreateRouteOperation) Metadata() (*datastreampb.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 (*CreateRouteOperation) Name ¶
func (op *CreateRouteOperation) 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 (*CreateRouteOperation) Poll ¶
func (op *CreateRouteOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Route, 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 (*CreateRouteOperation) Wait ¶
func (op *CreateRouteOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Route, 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 CreateStreamOperation ¶
type CreateStreamOperation struct {
// contains filtered or unexported fields
}
CreateStreamOperation manages a long-running operation from CreateStream.
func (*CreateStreamOperation) Done ¶
func (op *CreateStreamOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateStreamOperation) Metadata ¶
func (op *CreateStreamOperation) Metadata() (*datastreampb.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 (*CreateStreamOperation) Name ¶
func (op *CreateStreamOperation) 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 (*CreateStreamOperation) Poll ¶
func (op *CreateStreamOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, 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 (*CreateStreamOperation) Wait ¶
func (op *CreateStreamOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, 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 DeleteConnectionProfileOperation ¶
type DeleteConnectionProfileOperation struct {
// contains filtered or unexported fields
}
DeleteConnectionProfileOperation manages a long-running operation from DeleteConnectionProfile.
func (*DeleteConnectionProfileOperation) Done ¶
func (op *DeleteConnectionProfileOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteConnectionProfileOperation) Metadata ¶
func (op *DeleteConnectionProfileOperation) Metadata() (*datastreampb.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 (*DeleteConnectionProfileOperation) Name ¶
func (op *DeleteConnectionProfileOperation) 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 (*DeleteConnectionProfileOperation) Poll ¶
func (op *DeleteConnectionProfileOperation) Poll(ctx context.Context, opts ...gax.CallOption) 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 (*DeleteConnectionProfileOperation) Wait ¶
func (op *DeleteConnectionProfileOperation) Wait(ctx context.Context, opts ...gax.CallOption) 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 DeletePrivateConnectionOperation ¶
type DeletePrivateConnectionOperation struct {
// contains filtered or unexported fields
}
DeletePrivateConnectionOperation manages a long-running operation from DeletePrivateConnection.
func (*DeletePrivateConnectionOperation) Done ¶
func (op *DeletePrivateConnectionOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeletePrivateConnectionOperation) Metadata ¶
func (op *DeletePrivateConnectionOperation) Metadata() (*datastreampb.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 (*DeletePrivateConnectionOperation) Name ¶
func (op *DeletePrivateConnectionOperation) 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 (*DeletePrivateConnectionOperation) Poll ¶
func (op *DeletePrivateConnectionOperation) Poll(ctx context.Context, opts ...gax.CallOption) 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 (*DeletePrivateConnectionOperation) Wait ¶
func (op *DeletePrivateConnectionOperation) Wait(ctx context.Context, opts ...gax.CallOption) 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 DeleteRouteOperation ¶
type DeleteRouteOperation struct {
// contains filtered or unexported fields
}
DeleteRouteOperation manages a long-running operation from DeleteRoute.
func (*DeleteRouteOperation) Done ¶
func (op *DeleteRouteOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteRouteOperation) Metadata ¶
func (op *DeleteRouteOperation) Metadata() (*datastreampb.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 (*DeleteRouteOperation) Name ¶
func (op *DeleteRouteOperation) 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 (*DeleteRouteOperation) Poll ¶
func (op *DeleteRouteOperation) Poll(ctx context.Context, opts ...gax.CallOption) 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 (*DeleteRouteOperation) Wait ¶
func (op *DeleteRouteOperation) Wait(ctx context.Context, opts ...gax.CallOption) 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 DeleteStreamOperation ¶
type DeleteStreamOperation struct {
// contains filtered or unexported fields
}
DeleteStreamOperation manages a long-running operation from DeleteStream.
func (*DeleteStreamOperation) Done ¶
func (op *DeleteStreamOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*DeleteStreamOperation) Metadata ¶
func (op *DeleteStreamOperation) Metadata() (*datastreampb.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 (*DeleteStreamOperation) Name ¶
func (op *DeleteStreamOperation) 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 (*DeleteStreamOperation) Poll ¶
func (op *DeleteStreamOperation) Poll(ctx context.Context, opts ...gax.CallOption) 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 (*DeleteStreamOperation) Wait ¶
func (op *DeleteStreamOperation) Wait(ctx context.Context, opts ...gax.CallOption) 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 LocationIterator ¶
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) Next ¶
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 ¶
func (it *LocationIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type PrivateConnectionIterator ¶
type PrivateConnectionIterator 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 []*datastreampb.PrivateConnection, nextPageToken string, err error) // contains filtered or unexported fields }
PrivateConnectionIterator manages a stream of *datastreampb.PrivateConnection.
func (*PrivateConnectionIterator) Next ¶
func (it *PrivateConnectionIterator) Next() (*datastreampb.PrivateConnection, 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 (*PrivateConnectionIterator) PageInfo ¶
func (it *PrivateConnectionIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type RouteIterator ¶
type RouteIterator 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 []*datastreampb.Route, nextPageToken string, err error) // contains filtered or unexported fields }
RouteIterator manages a stream of *datastreampb.Route.
func (*RouteIterator) Next ¶
func (it *RouteIterator) Next() (*datastreampb.Route, 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 (*RouteIterator) PageInfo ¶
func (it *RouteIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type StreamIterator ¶
type StreamIterator 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 []*datastreampb.Stream, nextPageToken string, err error) // contains filtered or unexported fields }
StreamIterator manages a stream of *datastreampb.Stream.
func (*StreamIterator) Next ¶
func (it *StreamIterator) Next() (*datastreampb.Stream, 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 (*StreamIterator) PageInfo ¶
func (it *StreamIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type StreamObjectIterator ¶
type StreamObjectIterator 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 []*datastreampb.StreamObject, nextPageToken string, err error) // contains filtered or unexported fields }
StreamObjectIterator manages a stream of *datastreampb.StreamObject.
func (*StreamObjectIterator) Next ¶
func (it *StreamObjectIterator) Next() (*datastreampb.StreamObject, 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 (*StreamObjectIterator) PageInfo ¶
func (it *StreamObjectIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type StringIterator ¶
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) Next ¶
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 ¶
func (it *StringIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type UpdateConnectionProfileOperation ¶
type UpdateConnectionProfileOperation struct {
// contains filtered or unexported fields
}
UpdateConnectionProfileOperation manages a long-running operation from UpdateConnectionProfile.
func (*UpdateConnectionProfileOperation) Done ¶
func (op *UpdateConnectionProfileOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdateConnectionProfileOperation) Metadata ¶
func (op *UpdateConnectionProfileOperation) Metadata() (*datastreampb.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 (*UpdateConnectionProfileOperation) Name ¶
func (op *UpdateConnectionProfileOperation) 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 (*UpdateConnectionProfileOperation) Poll ¶
func (op *UpdateConnectionProfileOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, 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 (*UpdateConnectionProfileOperation) Wait ¶
func (op *UpdateConnectionProfileOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.ConnectionProfile, 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 UpdateStreamOperation ¶
type UpdateStreamOperation struct {
// contains filtered or unexported fields
}
UpdateStreamOperation manages a long-running operation from UpdateStream.
func (*UpdateStreamOperation) Done ¶
func (op *UpdateStreamOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*UpdateStreamOperation) Metadata ¶
func (op *UpdateStreamOperation) Metadata() (*datastreampb.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 (*UpdateStreamOperation) Name ¶
func (op *UpdateStreamOperation) 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 (*UpdateStreamOperation) Poll ¶
func (op *UpdateStreamOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, 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 (*UpdateStreamOperation) Wait ¶
func (op *UpdateStreamOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*datastreampb.Stream, 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.