Class BinauthzManagementServiceV1Beta1Client (1.79.0)

Service Description: Google Cloud Management Service for Binary Authorization admission policies and attestation authorities.

This API implements a REST model with the following objects:

  • Policy
  • Attestor

This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
PolicyNamename=PolicyName.ofProjectName("[PROJECT]");
Policyresponse=binauthzManagementServiceV1Beta1Client.getPolicy(name);
}

Note: close() needs to be called on the BinauthzManagementServiceV1Beta1Client object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

Methods
Method Description Method Variants

GetPolicy

A policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy.

Gets the policy for this project. Returns a default policy if the project does not have one.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getPolicy(GetPolicyRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getPolicy(PolicyName name)

  • getPolicy(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getPolicyCallable()

UpdatePolicy

Creates or updates a project's policy, and returns a copy of the new policy. A policy is always updated as a whole, to avoid race conditions with concurrent policy enforcement (or management!) requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • updatePolicy(UpdatePolicyRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • updatePolicy(Policy policy)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • updatePolicyCallable()

CreateAttestor

Creates an attestor, and returns a copy of the new attestor. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the attestor already exists.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • createAttestor(CreateAttestorRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • createAttestor(ProjectName parent, String attestorId, Attestor attestor)

  • createAttestor(String parent, String attestorId, Attestor attestor)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • createAttestorCallable()

GetAttestor

Gets an attestor. Returns NOT_FOUND if the attestor does not exist.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getAttestor(GetAttestorRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getAttestor(AttestorName name)

  • getAttestor(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getAttestorCallable()

UpdateAttestor

Updates an attestor. Returns NOT_FOUND if the attestor does not exist.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • updateAttestor(UpdateAttestorRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • updateAttestor(Attestor attestor)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • updateAttestorCallable()

ListAttestors

Lists attestors. Returns INVALID_ARGUMENT if the project does not exist.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listAttestors(ListAttestorsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listAttestors(ProjectName parent)

  • listAttestors(String parent)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listAttestorsPagedCallable()

  • listAttestorsCallable()

DeleteAttestor

Deletes an attestor. Returns NOT_FOUND if the attestor does not exist.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteAttestor(DeleteAttestorRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • deleteAttestor(AttestorName name)

  • deleteAttestor(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteAttestorCallable()

See the individual methods for example code.

Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

This class can be customized by passing in a custom instance of BinauthzManagementServiceV1Beta1Settings to create(). For example:

To customize credentials:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
BinauthzManagementServiceV1Beta1SettingsbinauthzManagementServiceV1Beta1Settings=
BinauthzManagementServiceV1Beta1Settings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create(binauthzManagementServiceV1Beta1Settings);

To customize the endpoint:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
BinauthzManagementServiceV1Beta1SettingsbinauthzManagementServiceV1Beta1Settings=
BinauthzManagementServiceV1Beta1Settings.newBuilder().setEndpoint(myEndpoint).build();
BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create(binauthzManagementServiceV1Beta1Settings);

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
BinauthzManagementServiceV1Beta1SettingsbinauthzManagementServiceV1Beta1Settings=
BinauthzManagementServiceV1Beta1Settings.newHttpJsonBuilder().build();
BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create(binauthzManagementServiceV1Beta1Settings);

Please refer to the GitHub repository's samples for more quickstart code snippets.

Inheritance

java.lang.Object > BinauthzManagementServiceV1Beta1Client

Static Methods

create()

publicstaticfinalBinauthzManagementServiceV1Beta1Clientcreate()

Constructs an instance of BinauthzManagementServiceV1Beta1Client with default settings.

Returns
Type Description
BinauthzManagementServiceV1Beta1Client
Exceptions
Type Description
IOException

create(BinauthzManagementServiceV1Beta1Settings settings)

publicstaticfinalBinauthzManagementServiceV1Beta1Clientcreate(BinauthzManagementServiceV1Beta1Settingssettings)

Constructs an instance of BinauthzManagementServiceV1Beta1Client, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
Name Description
settings BinauthzManagementServiceV1Beta1Settings
Returns
Type Description
BinauthzManagementServiceV1Beta1Client
Exceptions
Type Description
IOException

create(BinauthzManagementServiceV1Beta1Stub stub)

publicstaticfinalBinauthzManagementServiceV1Beta1Clientcreate(BinauthzManagementServiceV1Beta1Stubstub)

Constructs an instance of BinauthzManagementServiceV1Beta1Client, using the given stub for making calls. This is for advanced usage - prefer using create(BinauthzManagementServiceV1Beta1Settings).

Parameter
Name Description
stub BinauthzManagementServiceV1Beta1Stub
Returns
Type Description
BinauthzManagementServiceV1Beta1Client

Constructors

BinauthzManagementServiceV1Beta1Client(BinauthzManagementServiceV1Beta1Settings settings)

protectedBinauthzManagementServiceV1Beta1Client(BinauthzManagementServiceV1Beta1Settingssettings)

Constructs an instance of BinauthzManagementServiceV1Beta1Client, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.

Parameter
Name Description
settings BinauthzManagementServiceV1Beta1Settings

BinauthzManagementServiceV1Beta1Client(BinauthzManagementServiceV1Beta1Stub stub)

protectedBinauthzManagementServiceV1Beta1Client(BinauthzManagementServiceV1Beta1Stubstub)
Parameter
Name Description
stub BinauthzManagementServiceV1Beta1Stub

Methods

awaitTermination(long duration, TimeUnit unit)

publicbooleanawaitTermination(longduration,TimeUnitunit)
Parameters
Name Description
duration long
unit TimeUnit
Returns
Type Description
boolean
Exceptions
Type Description
InterruptedException

close()

publicfinalvoidclose()

createAttestor(CreateAttestorRequest request)

publicfinalAttestorcreateAttestor(CreateAttestorRequestrequest)

Creates an attestor, and returns a copy of the new attestor. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the attestor already exists.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
CreateAttestorRequestrequest=
CreateAttestorRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setAttestorId("attestorId2055733027")
.setAttestor(Attestor.newBuilder().build())
.build();
Attestorresponse=binauthzManagementServiceV1Beta1Client.createAttestor(request);
}
Parameter
Name Description
request CreateAttestorRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
Attestor

createAttestor(ProjectName parent, String attestorId, Attestor attestor)

publicfinalAttestorcreateAttestor(ProjectNameparent,StringattestorId,Attestorattestor)

Creates an attestor, and returns a copy of the new attestor. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the attestor already exists.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
ProjectNameparent=ProjectName.of("[PROJECT]");
StringattestorId="attestorId2055733027";
Attestorattestor=Attestor.newBuilder().build();
Attestorresponse=
binauthzManagementServiceV1Beta1Client.createAttestor(parent,attestorId,attestor);
}
Parameters
Name Description
parent ProjectName

Required. The parent of this attestor.

attestorId String

Required. The attestors ID.

attestor Attestor

Required. The initial attestor value. The service will overwrite the attestor name field with the resource name, in the format projects/*/attestors/*.

Returns
Type Description
Attestor

createAttestor(String parent, String attestorId, Attestor attestor)

publicfinalAttestorcreateAttestor(Stringparent,StringattestorId,Attestorattestor)

Creates an attestor, and returns a copy of the new attestor. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the attestor already exists.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
Stringparent=ProjectName.of("[PROJECT]").toString();
StringattestorId="attestorId2055733027";
Attestorattestor=Attestor.newBuilder().build();
Attestorresponse=
binauthzManagementServiceV1Beta1Client.createAttestor(parent,attestorId,attestor);
}
Parameters
Name Description
parent String

Required. The parent of this attestor.

attestorId String

Required. The attestors ID.

attestor Attestor

Required. The initial attestor value. The service will overwrite the attestor name field with the resource name, in the format projects/*/attestors/*.

Returns
Type Description
Attestor

createAttestorCallable()

publicfinalUnaryCallable<CreateAttestorRequest,Attestor>createAttestorCallable()

Creates an attestor, and returns a copy of the new attestor. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the attestor already exists.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
CreateAttestorRequestrequest=
CreateAttestorRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setAttestorId("attestorId2055733027")
.setAttestor(Attestor.newBuilder().build())
.build();
ApiFuture<Attestor>future=
binauthzManagementServiceV1Beta1Client.createAttestorCallable().futureCall(request);
// Do something.
Attestorresponse=future.get();
}
Returns
Type Description
UnaryCallable<CreateAttestorRequest,Attestor>

deleteAttestor(AttestorName name)

publicfinalvoiddeleteAttestor(AttestorNamename)

Deletes an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
AttestorNamename=AttestorName.of("[PROJECT]","[ATTESTOR]");
binauthzManagementServiceV1Beta1Client.deleteAttestor(name);
}
Parameter
Name Description
name AttestorName

Required. The name of the attestors to delete, in the format projects/*/attestors/*.

deleteAttestor(DeleteAttestorRequest request)

publicfinalvoiddeleteAttestor(DeleteAttestorRequestrequest)

Deletes an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
DeleteAttestorRequestrequest=
DeleteAttestorRequest.newBuilder()
.setName(AttestorName.of("[PROJECT]","[ATTESTOR]").toString())
.build();
binauthzManagementServiceV1Beta1Client.deleteAttestor(request);
}
Parameter
Name Description
request DeleteAttestorRequest

The request object containing all of the parameters for the API call.

deleteAttestor(String name)

publicfinalvoiddeleteAttestor(Stringname)

Deletes an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
Stringname=AttestorName.of("[PROJECT]","[ATTESTOR]").toString();
binauthzManagementServiceV1Beta1Client.deleteAttestor(name);
}
Parameter
Name Description
name String

Required. The name of the attestors to delete, in the format projects/*/attestors/*.

deleteAttestorCallable()

publicfinalUnaryCallable<DeleteAttestorRequest,Empty>deleteAttestorCallable()

Deletes an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
DeleteAttestorRequestrequest=
DeleteAttestorRequest.newBuilder()
.setName(AttestorName.of("[PROJECT]","[ATTESTOR]").toString())
.build();
ApiFuture<Empty>future=
binauthzManagementServiceV1Beta1Client.deleteAttestorCallable().futureCall(request);
// Do something.
future.get();
}
Returns
Type Description
UnaryCallable<DeleteAttestorRequest,Empty>

getAttestor(AttestorName name)

publicfinalAttestorgetAttestor(AttestorNamename)

Gets an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
AttestorNamename=AttestorName.of("[PROJECT]","[ATTESTOR]");
Attestorresponse=binauthzManagementServiceV1Beta1Client.getAttestor(name);
}
Parameter
Name Description
name AttestorName

Required. The name of the attestor to retrieve, in the format projects/*/attestors/*.

Returns
Type Description
Attestor

getAttestor(GetAttestorRequest request)

publicfinalAttestorgetAttestor(GetAttestorRequestrequest)

Gets an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
GetAttestorRequestrequest=
GetAttestorRequest.newBuilder()
.setName(AttestorName.of("[PROJECT]","[ATTESTOR]").toString())
.build();
Attestorresponse=binauthzManagementServiceV1Beta1Client.getAttestor(request);
}
Parameter
Name Description
request GetAttestorRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
Attestor

getAttestor(String name)

publicfinalAttestorgetAttestor(Stringname)

Gets an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
Stringname=AttestorName.of("[PROJECT]","[ATTESTOR]").toString();
Attestorresponse=binauthzManagementServiceV1Beta1Client.getAttestor(name);
}
Parameter
Name Description
name String

Required. The name of the attestor to retrieve, in the format projects/*/attestors/*.

Returns
Type Description
Attestor

getAttestorCallable()

publicfinalUnaryCallable<GetAttestorRequest,Attestor>getAttestorCallable()

Gets an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
GetAttestorRequestrequest=
GetAttestorRequest.newBuilder()
.setName(AttestorName.of("[PROJECT]","[ATTESTOR]").toString())
.build();
ApiFuture<Attestor>future=
binauthzManagementServiceV1Beta1Client.getAttestorCallable().futureCall(request);
// Do something.
Attestorresponse=future.get();
}
Returns
Type Description
UnaryCallable<GetAttestorRequest,Attestor>

getPolicy(GetPolicyRequest request)

publicfinalPolicygetPolicy(GetPolicyRequestrequest)

A policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy.

Gets the policy for this project. Returns a default policy if the project does not have one.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
GetPolicyRequestrequest=
GetPolicyRequest.newBuilder()
.setName(PolicyName.ofProjectName("[PROJECT]").toString())
.build();
Policyresponse=binauthzManagementServiceV1Beta1Client.getPolicy(request);
}
Parameter
Name Description
request GetPolicyRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
Policy

getPolicy(PolicyName name)

publicfinalPolicygetPolicy(PolicyNamename)

A policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy.

Gets the policy for this project. Returns a default policy if the project does not have one.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
PolicyNamename=PolicyName.ofProjectName("[PROJECT]");
Policyresponse=binauthzManagementServiceV1Beta1Client.getPolicy(name);
}
Parameter
Name Description
name PolicyName

Required. The resource name of the policy to retrieve, in the format projects/*/policy.

Returns
Type Description
Policy

getPolicy(String name)

publicfinalPolicygetPolicy(Stringname)

A policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy.

Gets the policy for this project. Returns a default policy if the project does not have one.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
Stringname=PolicyName.ofProjectName("[PROJECT]").toString();
Policyresponse=binauthzManagementServiceV1Beta1Client.getPolicy(name);
}
Parameter
Name Description
name String

Required. The resource name of the policy to retrieve, in the format projects/*/policy.

Returns
Type Description
Policy

getPolicyCallable()

publicfinalUnaryCallable<GetPolicyRequest,Policy>getPolicyCallable()

A policy specifies the attestors that must attest to a container image, before the project is allowed to deploy that image. There is at most one policy per project. All image admission requests are permitted if a project has no policy.

Gets the policy for this project. Returns a default policy if the project does not have one.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
GetPolicyRequestrequest=
GetPolicyRequest.newBuilder()
.setName(PolicyName.ofProjectName("[PROJECT]").toString())
.build();
ApiFuture<Policy>future=
binauthzManagementServiceV1Beta1Client.getPolicyCallable().futureCall(request);
// Do something.
Policyresponse=future.get();
}
Returns
Type Description
UnaryCallable<GetPolicyRequest,Policy>

getSettings()

publicfinalBinauthzManagementServiceV1Beta1SettingsgetSettings()
Returns
Type Description
BinauthzManagementServiceV1Beta1Settings

getStub()

publicBinauthzManagementServiceV1Beta1StubgetStub()
Returns
Type Description
BinauthzManagementServiceV1Beta1Stub

isShutdown()

publicbooleanisShutdown()
Returns
Type Description
boolean

isTerminated()

publicbooleanisTerminated()
Returns
Type Description
boolean

listAttestors(ListAttestorsRequest request)

publicfinalBinauthzManagementServiceV1Beta1Client.ListAttestorsPagedResponselistAttestors(ListAttestorsRequestrequest)

Lists attestors. Returns INVALID_ARGUMENT if the project does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
ListAttestorsRequestrequest=
ListAttestorsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for(Attestorelement:
binauthzManagementServiceV1Beta1Client.listAttestors(request).iterateAll()){
// doThingsWith(element);
}
}
Parameter
Name Description
request ListAttestorsRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
BinauthzManagementServiceV1Beta1Client.ListAttestorsPagedResponse

listAttestors(ProjectName parent)

publicfinalBinauthzManagementServiceV1Beta1Client.ListAttestorsPagedResponselistAttestors(ProjectNameparent)

Lists attestors. Returns INVALID_ARGUMENT if the project does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
ProjectNameparent=ProjectName.of("[PROJECT]");
for(Attestorelement:
binauthzManagementServiceV1Beta1Client.listAttestors(parent).iterateAll()){
// doThingsWith(element);
}
}
Parameter
Name Description
parent ProjectName

Required. The resource name of the project associated with the attestors, in the format projects/*.

Returns
Type Description
BinauthzManagementServiceV1Beta1Client.ListAttestorsPagedResponse

listAttestors(String parent)

publicfinalBinauthzManagementServiceV1Beta1Client.ListAttestorsPagedResponselistAttestors(Stringparent)

Lists attestors. Returns INVALID_ARGUMENT if the project does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
Stringparent=ProjectName.of("[PROJECT]").toString();
for(Attestorelement:
binauthzManagementServiceV1Beta1Client.listAttestors(parent).iterateAll()){
// doThingsWith(element);
}
}
Parameter
Name Description
parent String

Required. The resource name of the project associated with the attestors, in the format projects/*.

Returns
Type Description
BinauthzManagementServiceV1Beta1Client.ListAttestorsPagedResponse

listAttestorsCallable()

publicfinalUnaryCallable<ListAttestorsRequest,ListAttestorsResponse>listAttestorsCallable()

Lists attestors. Returns INVALID_ARGUMENT if the project does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
ListAttestorsRequestrequest=
ListAttestorsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while(true){
ListAttestorsResponseresponse=
binauthzManagementServiceV1Beta1Client.listAttestorsCallable().call(request);
for(Attestorelement:response.getAttestorsList()){
// doThingsWith(element);
}
StringnextPageToken=response.getNextPageToken();
if(!Strings.isNullOrEmpty(nextPageToken)){
request=request.toBuilder().setPageToken(nextPageToken).build();
}else{
break;
}
}
}
Returns
Type Description
UnaryCallable<ListAttestorsRequest,ListAttestorsResponse>

listAttestorsPagedCallable()

publicfinalUnaryCallable<ListAttestorsRequest,BinauthzManagementServiceV1Beta1Client.ListAttestorsPagedResponse>listAttestorsPagedCallable()

Lists attestors. Returns INVALID_ARGUMENT if the project does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
ListAttestorsRequestrequest=
ListAttestorsRequest.newBuilder()
.setParent(ProjectName.of("[PROJECT]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Attestor>future=
binauthzManagementServiceV1Beta1Client.listAttestorsPagedCallable().futureCall(request);
// Do something.
for(Attestorelement:future.get().iterateAll()){
// doThingsWith(element);
}
}
Returns
Type Description
UnaryCallable<ListAttestorsRequest,ListAttestorsPagedResponse>

shutdown()

publicvoidshutdown()

shutdownNow()

publicvoidshutdownNow()

updateAttestor(Attestor attestor)

publicfinalAttestorupdateAttestor(Attestorattestor)

Updates an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
Attestorattestor=Attestor.newBuilder().build();
Attestorresponse=binauthzManagementServiceV1Beta1Client.updateAttestor(attestor);
}
Parameter
Name Description
attestor Attestor

Required. The updated attestor value. The service will overwrite the attestor name field with the resource name in the request URL, in the format projects/*/attestors/*.

Returns
Type Description
Attestor

updateAttestor(UpdateAttestorRequest request)

publicfinalAttestorupdateAttestor(UpdateAttestorRequestrequest)

Updates an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
UpdateAttestorRequestrequest=
UpdateAttestorRequest.newBuilder().setAttestor(Attestor.newBuilder().build()).build();
Attestorresponse=binauthzManagementServiceV1Beta1Client.updateAttestor(request);
}
Parameter
Name Description
request UpdateAttestorRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
Attestor

updateAttestorCallable()

publicfinalUnaryCallable<UpdateAttestorRequest,Attestor>updateAttestorCallable()

Updates an attestor. Returns NOT_FOUND if the attestor does not exist.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
UpdateAttestorRequestrequest=
UpdateAttestorRequest.newBuilder().setAttestor(Attestor.newBuilder().build()).build();
ApiFuture<Attestor>future=
binauthzManagementServiceV1Beta1Client.updateAttestorCallable().futureCall(request);
// Do something.
Attestorresponse=future.get();
}
Returns
Type Description
UnaryCallable<UpdateAttestorRequest,Attestor>

updatePolicy(Policy policy)

publicfinalPolicyupdatePolicy(Policypolicy)

Creates or updates a project's policy, and returns a copy of the new policy. A policy is always updated as a whole, to avoid race conditions with concurrent policy enforcement (or management!) requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
Policypolicy=Policy.newBuilder().build();
Policyresponse=binauthzManagementServiceV1Beta1Client.updatePolicy(policy);
}
Parameter
Name Description
policy Policy

Required. A new or updated policy value. The service will overwrite the policy name field with the resource name in the request URL, in the format projects/*/policy.

Returns
Type Description
Policy

updatePolicy(UpdatePolicyRequest request)

publicfinalPolicyupdatePolicy(UpdatePolicyRequestrequest)

Creates or updates a project's policy, and returns a copy of the new policy. A policy is always updated as a whole, to avoid race conditions with concurrent policy enforcement (or management!) requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
UpdatePolicyRequestrequest=
UpdatePolicyRequest.newBuilder().setPolicy(Policy.newBuilder().build()).build();
Policyresponse=binauthzManagementServiceV1Beta1Client.updatePolicy(request);
}
Parameter
Name Description
request UpdatePolicyRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
Policy

updatePolicyCallable()

publicfinalUnaryCallable<UpdatePolicyRequest,Policy>updatePolicyCallable()

Creates or updates a project's policy, and returns a copy of the new policy. A policy is always updated as a whole, to avoid race conditions with concurrent policy enforcement (or management!) requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT if the request is malformed.

Sample code:


// 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://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try(BinauthzManagementServiceV1Beta1ClientbinauthzManagementServiceV1Beta1Client=
BinauthzManagementServiceV1Beta1Client.create()){
UpdatePolicyRequestrequest=
UpdatePolicyRequest.newBuilder().setPolicy(Policy.newBuilder().build()).build();
ApiFuture<Policy>future=
binauthzManagementServiceV1Beta1Client.updatePolicyCallable().futureCall(request);
// Do something.
Policyresponse=future.get();
}
Returns
Type Description
UnaryCallable<UpdatePolicyRequest,Policy>

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

Last updated 2025年11月19日 UTC.