Package cloud.google.com/go/assuredworkloads/apiv1 (v1.13.0)

Note: To get more information about this package, such as access to older versions, viewthis package on pkg.go.dev.

Package assuredworkloads is an auto-generated package for theAssured Workloads API.

General documentation

For information that is relevant for all client libraries please referencehttps://pkg.go.dev/cloud.google.com/go#pkg-overview. Some information on thispage includes:

Example usage

To get started with this package, create a client.

// go get cloud.google.com/go/assuredworkloads/apiv1@latestctx:=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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.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, mentioned above.

req:=&assuredworkloadspb.AcknowledgeViolationRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#AcknowledgeViolationRequest.}resp,err:=c.AcknowledgeViolation(ctx,req)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp

Use of Context

The ctx passed to NewClient is used for authentication requests andfor 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.

Functions

func DefaultAuthScopes

funcDefaultAuthScopes()[]string

DefaultAuthScopes reports the default set of authentication scopes to use with this package.

CallOptions

typeCallOptionsstruct{CreateWorkload[]gax.CallOptionUpdateWorkload[]gax.CallOptionRestrictAllowedResources[]gax.CallOptionDeleteWorkload[]gax.CallOptionGetWorkload[]gax.CallOptionListWorkloads[]gax.CallOptionListViolations[]gax.CallOptionGetViolation[]gax.CallOptionAcknowledgeViolation[]gax.CallOptionGetOperation[]gax.CallOptionListOperations[]gax.CallOption}

CallOptions contains the retry settings for each method of Client.

Client

typeClientstruct{// 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

funcNewClient(ctxcontext.Context,opts...option.ClientOption)(*Client,error)

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

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()// TODO: Use client._=c}

func NewRESTClient

funcNewRESTClient(ctxcontext.Context,opts...option.ClientOption)(*Client,error)

NewRESTClient creates a new assured workloads service rest client.

Service to manage AssuredWorkloads.

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1")funcmain(){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_Optionsc,err:=assuredworkloads.NewRESTClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()// TODO: Use client._=c}

func (*Client) AcknowledgeViolation

AcknowledgeViolation acknowledges an existing violation. By acknowledging a violation, usersacknowledge the existence of a compliance violation in their workload anddecide to ignore it due to a valid business justification. Acknowledgementis a permanent operation and it cannot be reverted.

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.AcknowledgeViolationRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#AcknowledgeViolationRequest.}resp,err:=c.AcknowledgeViolation(ctx,req)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp}

func (*Client) Close

func(c*Client)Close()error

Close closes the connection to the API service. The user should invoke this whenthe 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 alwaysreturn the same resource.

func (*Client) CreateWorkload

CreateWorkload creates Assured Workload.

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.CreateWorkloadRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#CreateWorkloadRequest.}op,err:=c.CreateWorkload(ctx,req)iferr!=nil{// TODO: Handle error.}resp,err:=op.Wait(ctx)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp}

func (*Client) CreateWorkloadOperation

func(c*Client)CreateWorkloadOperation(namestring)*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

DeleteWorkload deletes the workload. Make sure that workload’s direct children are alreadyin a deleted state, otherwise the request will fail with aFAILED_PRECONDITION error.

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.DeleteWorkloadRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#DeleteWorkloadRequest.}err=c.DeleteWorkload(ctx,req)iferr!=nil{// TODO: Handle error.}}

func (*Client) GetOperation

GetOperation is a utility method from google.longrunning.Operations.

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"longrunningpb"cloud.google.com/go/longrunning/autogen/longrunningpb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.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)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp}

func (*Client) GetViolation

GetViolation retrieves Assured Workload Violation based on ID.

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.GetViolationRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#GetViolationRequest.}resp,err:=c.GetViolation(ctx,req)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp}

func (*Client) GetWorkload

GetWorkload gets Assured Workload associated with a CRM Node

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.GetWorkloadRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#GetWorkloadRequest.}resp,err:=c.GetWorkload(ctx,req)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp}

func (*Client) ListOperations

ListOperations is a utility method from google.longrunning.Operations.

Examples

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"longrunningpb"cloud.google.com/go/longrunning/autogen/longrunningpb""google.golang.org/api/iterator")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.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()iferr==iterator.Done{break}iferr!=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)}}
all
packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"longrunningpb"cloud.google.com/go/longrunning/autogen/longrunningpb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&longrunningpb.ListOperationsRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/longrunning/autogen/longrunningpb#ListOperationsRequest.}forresp,err:=rangec.ListOperations(ctx,req).All(){iferr!=nil{// TODO: Handle error and break/return/continue. Iteration will stop after any error.}// TODO: Use resp._=resp}}

func (*Client) ListViolations

ListViolations lists the Violations in the AssuredWorkload Environment.Callers may also choose to read across multiple Workloads as perAIP-159 (athttps://google.aip.dev/159) by using ‘-’ (the hyphen or dashcharacter) as a wildcard character instead of workload-id in the parent.Format organizations/{org_id}/locations/{location}/workloads/-

Examples

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb""google.golang.org/api/iterator")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.ListViolationsRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#ListViolationsRequest.}it:=c.ListViolations(ctx,req)for{resp,err:=it.Next()iferr==iterator.Done{break}iferr!=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.(*assuredworkloadspb.ListViolationsResponse)}}
all
packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.ListViolationsRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#ListViolationsRequest.}forresp,err:=rangec.ListViolations(ctx,req).All(){iferr!=nil{// TODO: Handle error and break/return/continue. Iteration will stop after any error.}// TODO: Use resp._=resp}}

func (*Client) ListWorkloads

ListWorkloads lists Assured Workloads under a CRM Node.

Examples

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb""google.golang.org/api/iterator")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.ListWorkloadsRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#ListWorkloadsRequest.}it:=c.ListWorkloads(ctx,req)for{resp,err:=it.Next()iferr==iterator.Done{break}iferr!=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.(*assuredworkloadspb.ListWorkloadsResponse)}}
all
packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.ListWorkloadsRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#ListWorkloadsRequest.}forresp,err:=rangec.ListWorkloads(ctx,req).All(){iferr!=nil{// TODO: Handle error and break/return/continue. Iteration will stop after any error.}// TODO: Use resp._=resp}}

func (*Client) RestrictAllowedResources

RestrictAllowedResources restrict the list of resources allowed in the Workload environment.The current list of allowed products can be found athttps://cloud.google.com/assured-workloads/docs/supported-products (athttps://cloud.google.com/assured-workloads/docs/supported-products)In addition to assuredworkloads.workload.update permission, the user shouldalso have orgpolicy.policy.set permission on the folder resourceto use this functionality.

Example

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.RestrictAllowedResourcesRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#RestrictAllowedResourcesRequest.}resp,err:=c.RestrictAllowedResources(ctx,req)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp}

func (*Client) UpdateWorkload

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

packagemainimport("context"assuredworkloads"cloud.google.com/go/assuredworkloads/apiv1"assuredworkloadspb"cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb")funcmain(){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_Optionsc,err:=assuredworkloads.NewClient(ctx)iferr!=nil{// TODO: Handle error.}deferc.Close()req:=&assuredworkloadspb.UpdateWorkloadRequest{// TODO: Fill request struct fields.// See https://pkg.go.dev/cloud.google.com/go/assuredworkloads/apiv1/assuredworkloadspb#UpdateWorkloadRequest.}resp,err:=c.UpdateWorkload(ctx,req)iferr!=nil{// TODO: Handle error.}// TODO: Use resp._=resp}

CreateWorkloadOperation

typeCreateWorkloadOperationstruct{// contains filtered or unexported fields}

CreateWorkloadOperation manages a long-running operation from CreateWorkload.

func (*CreateWorkloadOperation) Done

Done reports whether the long-running operation has completed.

func (*CreateWorkloadOperation) Metadata

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

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

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 andthe 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

Wait blocks until the long-running operation is completed, returning the response and any errors encountered.

See documentation of Poll for error-handling information.

OperationIterator

typeOperationIteratorstruct{// 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.Responseinterface{}// 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.InternalFetchfunc(pageSizeint,pageTokenstring)(results[]*longrunningpb.Operation,nextPageTokenstring,errerror)// contains filtered or unexported fields}

OperationIterator manages a stream of *longrunningpb.Operation.

func (*OperationIterator) All

func(it*OperationIterator)All()iter.Seq2[*longrunningpb.Operation,error]

All returns an iterator. If an error is returned by the iterator, theiterator will stop after that iteration.

func (*OperationIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no moreresults. Once Next returns Done, all subsequent calls will return Done.

func (*OperationIterator) PageInfo

func(it*OperationIterator)PageInfo()*iterator.PageInfo

PageInfo supports pagination. See the [google.golang.org/api/iterator] package for details.

ViolationIterator

typeViolationIteratorstruct{// 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.Responseinterface{}// 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.InternalFetchfunc(pageSizeint,pageTokenstring)(results[]*assuredworkloadspb.Violation,nextPageTokenstring,errerror)// contains filtered or unexported fields}

ViolationIterator manages a stream of *assuredworkloadspb.Violation.

func (*ViolationIterator) All

func(it*ViolationIterator)All()iter.Seq2[*assuredworkloadspb.Violation,error]

All returns an iterator. If an error is returned by the iterator, theiterator will stop after that iteration.

func (*ViolationIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no moreresults. Once Next returns Done, all subsequent calls will return Done.

func (*ViolationIterator) PageInfo

func(it*ViolationIterator)PageInfo()*iterator.PageInfo

PageInfo supports pagination. See the [google.golang.org/api/iterator] package for details.

WorkloadIterator

typeWorkloadIteratorstruct{// 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.Responseinterface{}// 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.InternalFetchfunc(pageSizeint,pageTokenstring)(results[]*assuredworkloadspb.Workload,nextPageTokenstring,errerror)// contains filtered or unexported fields}

WorkloadIterator manages a stream of *assuredworkloadspb.Workload.

func (*WorkloadIterator) All

func(it*WorkloadIterator)All()iter.Seq2[*assuredworkloadspb.Workload,error]

All returns an iterator. If an error is returned by the iterator, theiterator will stop after that iteration.

func (*WorkloadIterator) Next

Next returns the next result. Its second return value is iterator.Done if there are no moreresults. 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.

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-10-30 UTC.