Documentation ¶
Overview ¶
Package storagetransfer is an auto-generated package for the Storage Transfer API.
Transfers data from external data sources to a Google Cloud Storage bucket or between Google Cloud Storage buckets.
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 := storagetransfer.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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.CreateAgentPoolRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#CreateAgentPoolRequest. } resp, err := c.CreateAgentPool(ctx, req) 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 AgentPoolIterator
- type CallOptions
- 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) CreateAgentPool(ctx context.Context, req *storagetransferpb.CreateAgentPoolRequest, ...) (*storagetransferpb.AgentPool, error)
- func (c *Client) CreateTransferJob(ctx context.Context, req *storagetransferpb.CreateTransferJobRequest, ...) (*storagetransferpb.TransferJob, error)
- func (c *Client) DeleteAgentPool(ctx context.Context, req *storagetransferpb.DeleteAgentPoolRequest, ...) error
- func (c *Client) DeleteTransferJob(ctx context.Context, req *storagetransferpb.DeleteTransferJobRequest, ...) error
- func (c *Client) GetAgentPool(ctx context.Context, req *storagetransferpb.GetAgentPoolRequest, ...) (*storagetransferpb.AgentPool, error)
- func (c *Client) GetGoogleServiceAccount(ctx context.Context, req *storagetransferpb.GetGoogleServiceAccountRequest, ...) (*storagetransferpb.GoogleServiceAccount, error)
- func (c *Client) GetOperation(ctx context.Context, req *longrunningpb.GetOperationRequest, ...) (*longrunningpb.Operation, error)
- func (c *Client) GetTransferJob(ctx context.Context, req *storagetransferpb.GetTransferJobRequest, ...) (*storagetransferpb.TransferJob, error)
- func (c *Client) ListAgentPools(ctx context.Context, req *storagetransferpb.ListAgentPoolsRequest, ...) *AgentPoolIterator
- func (c *Client) ListOperations(ctx context.Context, req *longrunningpb.ListOperationsRequest, ...) *OperationIterator
- func (c *Client) ListTransferJobs(ctx context.Context, req *storagetransferpb.ListTransferJobsRequest, ...) *TransferJobIterator
- func (c *Client) PauseTransferOperation(ctx context.Context, req *storagetransferpb.PauseTransferOperationRequest, ...) error
- func (c *Client) ResumeTransferOperation(ctx context.Context, req *storagetransferpb.ResumeTransferOperationRequest, ...) error
- func (c *Client) RunTransferJob(ctx context.Context, req *storagetransferpb.RunTransferJobRequest, ...) (*RunTransferJobOperation, error)
- func (c *Client) RunTransferJobOperation(name string) *RunTransferJobOperation
- func (c *Client) UpdateAgentPool(ctx context.Context, req *storagetransferpb.UpdateAgentPoolRequest, ...) (*storagetransferpb.AgentPool, error)
- func (c *Client) UpdateTransferJob(ctx context.Context, req *storagetransferpb.UpdateTransferJobRequest, ...) (*storagetransferpb.TransferJob, error)
- type OperationIterator
- type RunTransferJobOperation
- func (op *RunTransferJobOperation) Done() bool
- func (op *RunTransferJobOperation) Metadata() (*storagetransferpb.TransferOperation, error)
- func (op *RunTransferJobOperation) Name() string
- func (op *RunTransferJobOperation) Poll(ctx context.Context, opts ...gax.CallOption) error
- func (op *RunTransferJobOperation) Wait(ctx context.Context, opts ...gax.CallOption) error
- type TransferJobIterator
Examples ¶
- Client.CancelOperation
- Client.CreateAgentPool
- Client.CreateTransferJob
- Client.DeleteAgentPool
- Client.DeleteTransferJob
- Client.GetAgentPool
- Client.GetGoogleServiceAccount
- Client.GetOperation
- Client.GetTransferJob
- Client.ListAgentPools
- Client.ListAgentPools (All)
- Client.ListOperations
- Client.ListOperations (All)
- Client.ListTransferJobs
- Client.ListTransferJobs (All)
- Client.PauseTransferOperation
- Client.ResumeTransferOperation
- Client.RunTransferJob
- Client.UpdateAgentPool
- Client.UpdateTransferJob
- 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 AgentPoolIterator ¶ added in v1.3.0
type AgentPoolIterator 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 []*storagetransferpb.AgentPool, nextPageToken string, err error) // contains filtered or unexported fields }
AgentPoolIterator manages a stream of *storagetransferpb.AgentPool.
func (*AgentPoolIterator) All ¶ added in v1.11.1
func (it *AgentPoolIterator) All() iter.Seq2[*storagetransferpb.AgentPool, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*AgentPoolIterator) Next ¶ added in v1.3.0
func (it *AgentPoolIterator) Next() (*storagetransferpb.AgentPool, 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 (*AgentPoolIterator) PageInfo ¶ added in v1.3.0
func (it *AgentPoolIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type CallOptions ¶
type CallOptions struct { GetGoogleServiceAccount []gax.CallOption CreateTransferJob []gax.CallOption UpdateTransferJob []gax.CallOption GetTransferJob []gax.CallOption ListTransferJobs []gax.CallOption PauseTransferOperation []gax.CallOption ResumeTransferOperation []gax.CallOption RunTransferJob []gax.CallOption DeleteTransferJob []gax.CallOption CreateAgentPool []gax.CallOption UpdateAgentPool []gax.CallOption GetAgentPool []gax.CallOption ListAgentPools []gax.CallOption DeleteAgentPool []gax.CallOption CancelOperation []gax.CallOption GetOperation []gax.CallOption ListOperations []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 Storage Transfer API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
Storage Transfer Service and its protos. Transfers data between between Google Cloud Storage buckets or from a data source external to Google to a Cloud Storage bucket.
func NewClient ¶
NewClient creates a new storage transfer service client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.
Storage Transfer Service and its protos. Transfers data between between Google Cloud Storage buckets or from a data source external to Google to a Cloud Storage bucket.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func NewRESTClient ¶ added in v1.7.0
NewRESTClient creates a new storage transfer service rest client.
Storage Transfer Service and its protos. Transfers data between between Google Cloud Storage buckets or from a data source external to Google to a Cloud Storage bucket.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/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 := storagetransfer.NewRESTClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() // TODO: Use client. _ = c }
Output:
func (*Client) CancelOperation ¶ added in v1.4.0
func (c *Client) CancelOperation(ctx context.Context, req *longrunningpb.CancelOperationRequest, opts ...gax.CallOption) error
CancelOperation cancels a transfer. Use the transferOperations.get method to check if the cancellation succeeded or if the operation completed despite the cancel request.
When you cancel an operation, the currently running transfer is interrupted. For recurring transfer jobs, the next instance of the transfer job will still run. For example, if your job is configured to run every day at 1pm and you cancel Monday’s operation at 1:05pm, Monday’s transfer will stop. However, a transfer job will still be attempted on Tuesday.
This applies only to currently running operations. If an operation is not currently running, cancel does nothing.
When you cancel a job, the next job computes a delta of files and may repair any inconsistent state. For instance, if you run a job every day, and today’s job found 10 new files and transferred five files before you canceled the job, tomorrow’s transfer operation will compute a new delta with the five files that were not copied today plus any new files discovered tomorrow.
Example ¶
package main import ( "context" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" storagetransfer "cloud.google.com/go/storagetransfer/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 := storagetransfer.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) CreateAgentPool ¶ added in v1.3.0
func (c *Client) CreateAgentPool(ctx context.Context, req *storagetransferpb.CreateAgentPoolRequest, opts ...gax.CallOption) (*storagetransferpb.AgentPool, error)
CreateAgentPool creates an agent pool resource.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.CreateAgentPoolRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#CreateAgentPoolRequest. } resp, err := c.CreateAgentPool(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) CreateTransferJob ¶
func (c *Client) CreateTransferJob(ctx context.Context, req *storagetransferpb.CreateTransferJobRequest, opts ...gax.CallOption) (*storagetransferpb.TransferJob, error)
CreateTransferJob creates a transfer job that runs periodically.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.CreateTransferJobRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#CreateTransferJobRequest. } resp, err := c.CreateTransferJob(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) DeleteAgentPool ¶ added in v1.3.0
func (c *Client) DeleteAgentPool(ctx context.Context, req *storagetransferpb.DeleteAgentPoolRequest, opts ...gax.CallOption) error
DeleteAgentPool deletes an agent pool.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.DeleteAgentPoolRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#DeleteAgentPoolRequest. } err = c.DeleteAgentPool(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) DeleteTransferJob ¶ added in v1.4.0
func (c *Client) DeleteTransferJob(ctx context.Context, req *storagetransferpb.DeleteTransferJobRequest, opts ...gax.CallOption) error
DeleteTransferJob deletes a transfer job. Deleting a transfer job sets its status to DELETED.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.DeleteTransferJobRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#DeleteTransferJobRequest. } err = c.DeleteTransferJob(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) GetAgentPool ¶ added in v1.3.0
func (c *Client) GetAgentPool(ctx context.Context, req *storagetransferpb.GetAgentPoolRequest, opts ...gax.CallOption) (*storagetransferpb.AgentPool, error)
GetAgentPool gets an agent pool.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.GetAgentPoolRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#GetAgentPoolRequest. } resp, err := c.GetAgentPool(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetGoogleServiceAccount ¶
func (c *Client) GetGoogleServiceAccount(ctx context.Context, req *storagetransferpb.GetGoogleServiceAccountRequest, opts ...gax.CallOption) (*storagetransferpb.GoogleServiceAccount, error)
GetGoogleServiceAccount returns the Google service account that is used by Storage Transfer Service to access buckets in the project where transfers run or in other projects. Each Google service account is associated with one Google Cloud project. Users should add this service account to the Google Cloud Storage bucket ACLs to grant access to Storage Transfer Service. This service account is created and owned by Storage Transfer Service and can only be used by Storage Transfer Service.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.GetGoogleServiceAccountRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#GetGoogleServiceAccountRequest. } resp, err := c.GetGoogleServiceAccount(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) GetOperation ¶ added in v1.4.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" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" storagetransfer "cloud.google.com/go/storagetransfer/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 := storagetransfer.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) GetTransferJob ¶
func (c *Client) GetTransferJob(ctx context.Context, req *storagetransferpb.GetTransferJobRequest, opts ...gax.CallOption) (*storagetransferpb.TransferJob, error)
GetTransferJob gets a transfer job.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.GetTransferJobRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#GetTransferJobRequest. } resp, err := c.GetTransferJob(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) ListAgentPools ¶ added in v1.3.0
func (c *Client) ListAgentPools(ctx context.Context, req *storagetransferpb.ListAgentPoolsRequest, opts ...gax.CallOption) *AgentPoolIterator
ListAgentPools lists agent pools.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" "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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.ListAgentPoolsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#ListAgentPoolsRequest. } it := c.ListAgentPools(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.(*storagetransferpb.ListAgentPoolsResponse) } }
Output:
Example (All) ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.ListAgentPoolsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#ListAgentPoolsRequest. } for resp, err := range c.ListAgentPools(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) ListOperations ¶ added in v1.4.0
func (c *Client) ListOperations(ctx context.Context, req *longrunningpb.ListOperationsRequest, opts ...gax.CallOption) *OperationIterator
ListOperations lists transfer operations. Operations are ordered by their creation time in reverse chronological order.
Example ¶
package main import ( "context" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" "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 := storagetransfer.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" longrunningpb "cloud.google.com/go/longrunning/autogen/longrunningpb" storagetransfer "cloud.google.com/go/storagetransfer/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 := storagetransfer.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) ListTransferJobs ¶
func (c *Client) ListTransferJobs(ctx context.Context, req *storagetransferpb.ListTransferJobsRequest, opts ...gax.CallOption) *TransferJobIterator
ListTransferJobs lists transfer jobs.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" "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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.ListTransferJobsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#ListTransferJobsRequest. } it := c.ListTransferJobs(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.(*storagetransferpb.ListTransferJobsResponse) } }
Output:
Example (All) ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.ListTransferJobsRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#ListTransferJobsRequest. } for resp, err := range c.ListTransferJobs(ctx, req).All() { if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp } }
Output:
func (*Client) PauseTransferOperation ¶
func (c *Client) PauseTransferOperation(ctx context.Context, req *storagetransferpb.PauseTransferOperationRequest, opts ...gax.CallOption) error
PauseTransferOperation pauses a transfer operation.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.PauseTransferOperationRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#PauseTransferOperationRequest. } err = c.PauseTransferOperation(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) ResumeTransferOperation ¶
func (c *Client) ResumeTransferOperation(ctx context.Context, req *storagetransferpb.ResumeTransferOperationRequest, opts ...gax.CallOption) error
ResumeTransferOperation resumes a transfer operation that is paused.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.ResumeTransferOperationRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#ResumeTransferOperationRequest. } err = c.ResumeTransferOperation(ctx, req) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) RunTransferJob ¶
func (c *Client) RunTransferJob(ctx context.Context, req *storagetransferpb.RunTransferJobRequest, opts ...gax.CallOption) (*RunTransferJobOperation, error)
RunTransferJob starts a new operation for the specified transfer job. A TransferJob has a maximum of one active TransferOperation. If this method is called while a TransferOperation is active, an error is returned.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.RunTransferJobRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#RunTransferJobRequest. } op, err := c.RunTransferJob(ctx, req) if err != nil { // TODO: Handle error. } err = op.Wait(ctx) if err != nil { // TODO: Handle error. } }
Output:
func (*Client) RunTransferJobOperation ¶
func (c *Client) RunTransferJobOperation(name string) *RunTransferJobOperation
RunTransferJobOperation returns a new RunTransferJobOperation from a given name. The name must be that of a previously created RunTransferJobOperation, possibly from a different process.
func (*Client) UpdateAgentPool ¶ added in v1.3.0
func (c *Client) UpdateAgentPool(ctx context.Context, req *storagetransferpb.UpdateAgentPoolRequest, opts ...gax.CallOption) (*storagetransferpb.AgentPool, error)
UpdateAgentPool updates an existing agent pool resource.
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.UpdateAgentPoolRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#UpdateAgentPoolRequest. } resp, err := c.UpdateAgentPool(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
func (*Client) UpdateTransferJob ¶
func (c *Client) UpdateTransferJob(ctx context.Context, req *storagetransferpb.UpdateTransferJobRequest, opts ...gax.CallOption) (*storagetransferpb.TransferJob, error)
UpdateTransferJob updates a transfer job. Updating a job’s transfer spec does not affect transfer operations that are running already.
Note: The job’s status field can be modified using this RPC (for example, to set a job’s status to DELETED, DISABLED, or ENABLED).
Example ¶
package main import ( "context" storagetransfer "cloud.google.com/go/storagetransfer/apiv1" storagetransferpb "cloud.google.com/go/storagetransfer/apiv1/storagetransferpb" ) 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 := storagetransfer.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &storagetransferpb.UpdateTransferJobRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/cloud.google.com/go/storagetransfer/apiv1/storagetransferpb#UpdateTransferJobRequest. } resp, err := c.UpdateTransferJob(ctx, req) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp }
Output:
type OperationIterator ¶ added in v1.4.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.11.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.4.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.4.0
func (it *OperationIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
type RunTransferJobOperation ¶
type RunTransferJobOperation struct {
// contains filtered or unexported fields
}
RunTransferJobOperation manages a long-running operation from RunTransferJob.
func (*RunTransferJobOperation) Done ¶
func (op *RunTransferJobOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*RunTransferJobOperation) Metadata ¶
func (op *RunTransferJobOperation) Metadata() (*storagetransferpb.TransferOperation, 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 (*RunTransferJobOperation) Name ¶
func (op *RunTransferJobOperation) 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 (*RunTransferJobOperation) Poll ¶
func (op *RunTransferJobOperation) 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 (*RunTransferJobOperation) Wait ¶
func (op *RunTransferJobOperation) 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 TransferJobIterator ¶
type TransferJobIterator 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 []*storagetransferpb.TransferJob, nextPageToken string, err error) // contains filtered or unexported fields }
TransferJobIterator manages a stream of *storagetransferpb.TransferJob.
func (*TransferJobIterator) All ¶ added in v1.11.1
func (it *TransferJobIterator) All() iter.Seq2[*storagetransferpb.TransferJob, error]
All returns an iterator. If an error is returned by the iterator, the iterator will stop after that iteration.
func (*TransferJobIterator) Next ¶
func (it *TransferJobIterator) Next() (*storagetransferpb.TransferJob, 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 (*TransferJobIterator) PageInfo ¶
func (it *TransferJobIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.