Package assuredworkloads is an auto-generated package for the Assured Workloads API.
NOTE: This package is in beta. It is not stable, and may be subject to changes.
Example usage
To get started with this package, create a client.
ctx := context.Background() c, err := assuredworkloads.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 := assuredworkloads.NewClient(ctx) if err != nil { // TODO: Handle error. } defer c.Close() req := &assuredworkloadspb.CreateWorkloadRequest{ // TODO: Fill request struct fields. // See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1#CreateWorkloadRequest. } op, err := c.CreateWorkload(ctx, req) if err != nil { // TODO: Handle error. } resp, err := op.Wait(ctx) if err != nil { // TODO: Handle error. } // TODO: Use resp. _ = resp
Use of Context
The ctx passed to NewClient is used for authentication requests and for creating the underlying connection, but is not used for subsequent calls. Individual methods on the client use the ctx given to them.
To close the open connection, use the Close() method.
For information about setting deadlines, reusing contexts, and more please visit https://pkg.go.dev/cloud.google.com/go.
Functions
func DefaultAuthScopes
func DefaultAuthScopes() []string
DefaultAuthScopes reports the default set of authentication scopes to use with this package.
CallOptions
type CallOptions struct {
CreateWorkload []gax.CallOption
UpdateWorkload []gax.CallOption
DeleteWorkload []gax.CallOption
GetWorkload []gax.CallOption
ListWorkloads []gax.CallOption
}
CallOptions contains the retry settings for each method of Client.
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 Assured Workloads API. Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
Service to manage AssuredWorkloads.
func NewClient
NewClient creates a new assured workloads service client based on gRPC. The returned client must be Closed when it is done being used to clean up its underlying connections.
Service to manage AssuredWorkloads.
Example
package main
import (
"context"
assuredworkloads "cloud.google.com/go/assuredworkloads/apiv1beta1"
)
func main() {
ctx := context.Background()
c, err := assuredworkloads.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
// TODO: Use client.
_ = c
}
func NewRESTClient
NewRESTClient creates a new assured workloads service rest client.
Service to manage AssuredWorkloads.
Example
package main
import (
"context"
assuredworkloads "cloud.google.com/go/assuredworkloads/apiv1beta1"
)
func main() {
ctx := context.Background()
c, err := assuredworkloads.NewRESTClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
// TODO: Use client.
_ = c
}
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) CreateWorkload
func (c *Client) CreateWorkload(ctx context.Context, req *assuredworkloadspb.CreateWorkloadRequest, opts ...gax.CallOption) (*CreateWorkloadOperation, error)
CreateWorkload creates Assured Workload.
Example
package main
import (
"context"
assuredworkloads "cloud.google.com/go/assuredworkloads/apiv1beta1"
assuredworkloadspb "google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1"
)
func main() {
ctx := context.Background()
c, err := assuredworkloads.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &assuredworkloadspb.CreateWorkloadRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1#CreateWorkloadRequest.
}
op, err := c.CreateWorkload(ctx, req)
if err != nil {
// TODO: Handle error.
}
resp, err := op.Wait(ctx)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*Client) CreateWorkloadOperation
func (c *Client) CreateWorkloadOperation(name string) *CreateWorkloadOperation
CreateWorkloadOperation returns a new CreateWorkloadOperation from a given name. The name must be that of a previously created CreateWorkloadOperation, possibly from a different process.
func (*Client) DeleteWorkload
func (c *Client) DeleteWorkload(ctx context.Context, req *assuredworkloadspb.DeleteWorkloadRequest, opts ...gax.CallOption) error
DeleteWorkload deletes the workload. Make sure that workload’s direct children are already in a deleted state, otherwise the request will fail with a FAILED_PRECONDITION error.
Example
package main
import (
"context"
assuredworkloads "cloud.google.com/go/assuredworkloads/apiv1beta1"
assuredworkloadspb "google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1"
)
func main() {
ctx := context.Background()
c, err := assuredworkloads.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &assuredworkloadspb.DeleteWorkloadRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1#DeleteWorkloadRequest.
}
err = c.DeleteWorkload(ctx, req)
if err != nil {
// TODO: Handle error.
}
}
func (*Client) GetWorkload
func (c *Client) GetWorkload(ctx context.Context, req *assuredworkloadspb.GetWorkloadRequest, opts ...gax.CallOption) (*assuredworkloadspb.Workload, error)
GetWorkload gets Assured Workload associated with a CRM Node
Example
package main
import (
"context"
assuredworkloads "cloud.google.com/go/assuredworkloads/apiv1beta1"
assuredworkloadspb "google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1"
)
func main() {
ctx := context.Background()
c, err := assuredworkloads.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &assuredworkloadspb.GetWorkloadRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1#GetWorkloadRequest.
}
resp, err := c.GetWorkload(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
func (*Client) ListWorkloads
func (c *Client) ListWorkloads(ctx context.Context, req *assuredworkloadspb.ListWorkloadsRequest, opts ...gax.CallOption) *WorkloadIterator
ListWorkloads lists Assured Workloads under a CRM Node.
Example
package main
import (
"context"
assuredworkloads "cloud.google.com/go/assuredworkloads/apiv1beta1"
"google.golang.org/api/iterator"
assuredworkloadspb "google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1"
)
func main() {
ctx := context.Background()
c, err := assuredworkloads.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &assuredworkloadspb.ListWorkloadsRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1#ListWorkloadsRequest.
}
it := c.ListWorkloads(ctx, req)
for {
resp, err := it.Next()
if err == iterator.Done {
break
}
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
}
func (*Client) UpdateWorkload
func (c *Client) UpdateWorkload(ctx context.Context, req *assuredworkloadspb.UpdateWorkloadRequest, opts ...gax.CallOption) (*assuredworkloadspb.Workload, error)
UpdateWorkload updates an existing workload. Currently allows updating of workload display_name and labels. For force updates don’t set etag field in the Workload. Only one update operation per workload can be in progress.
Example
package main
import (
"context"
assuredworkloads "cloud.google.com/go/assuredworkloads/apiv1beta1"
assuredworkloadspb "google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1"
)
func main() {
ctx := context.Background()
c, err := assuredworkloads.NewClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
req := &assuredworkloadspb.UpdateWorkloadRequest{
// TODO: Fill request struct fields.
// See https://pkg.go.dev/google.golang.org/genproto/googleapis/cloud/assuredworkloads/v1beta1#UpdateWorkloadRequest.
}
resp, err := c.UpdateWorkload(ctx, req)
if err != nil {
// TODO: Handle error.
}
// TODO: Use resp.
_ = resp
}
CreateWorkloadOperation
type CreateWorkloadOperation struct {
// contains filtered or unexported fields
}
CreateWorkloadOperation manages a long-running operation from CreateWorkload.
func (*CreateWorkloadOperation) Done
func (op *CreateWorkloadOperation) Done() bool
Done reports whether the long-running operation has completed.
func (*CreateWorkloadOperation) Metadata
func (op *CreateWorkloadOperation) Metadata() (*assuredworkloadspb.CreateWorkloadOperationMetadata, 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 (*CreateWorkloadOperation) Name
func (op *CreateWorkloadOperation) 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 (*CreateWorkloadOperation) Poll
func (op *CreateWorkloadOperation) Poll(ctx context.Context, opts ...gax.CallOption) (*assuredworkloadspb.Workload, 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 (*CreateWorkloadOperation) Wait
func (op *CreateWorkloadOperation) Wait(ctx context.Context, opts ...gax.CallOption) (*assuredworkloadspb.Workload, 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.
WorkloadIterator
type WorkloadIterator 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 []*assuredworkloadspb.Workload, nextPageToken string, err error)
// contains filtered or unexported fields
}
WorkloadIterator manages a stream of *assuredworkloadspb.Workload.
func (*WorkloadIterator) Next
func (it *WorkloadIterator) Next() (*assuredworkloadspb.Workload, 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 (*WorkloadIterator) PageInfo
func (it *WorkloadIterator) PageInfo() *iterator.PageInfo
PageInfo supports pagination. See the google.golang.org/api/iterator package for details.