Class BinauthzManagementServiceV1Beta1Client (1.8.0)
Stay organized with collections
Save and categorize content based on your preferences.
- 1.79.0 (latest)
- 1.77.0
- 1.75.0
- 1.74.0
- 1.73.0
- 1.72.0
- 1.71.0
- 1.69.0
- 1.67.0
- 1.66.0
- 1.63.0
- 1.62.0
- 1.61.0
- 1.59.0
- 1.58.0
- 1.57.0
- 1.56.0
- 1.55.0
- 1.54.0
- 1.53.0
- 1.52.0
- 1.51.0
- 1.50.0
- 1.48.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.36.0
- 1.35.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.0
- 1.11.0
- 1.10.0
- 1.9.0
- 1.8.0
- 1.7.0
- 1.6.0
- 1.5.0
- 1.4.0
- 1.3.0
- 1.0.6
publicclass BinauthzManagementServiceV1Beta1ClientimplementsBackgroundResourceService 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().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
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.
Implements
BackgroundResourceInherited Members
Static Methods
create()
publicstaticfinalBinauthzManagementServiceV1Beta1Clientcreate()Constructs an instance of BinauthzManagementServiceV1Beta1Client with default settings.
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.
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).
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.
BinauthzManagementServiceV1Beta1Client(BinauthzManagementServiceV1Beta1Stub stub)
protectedBinauthzManagementServiceV1Beta1Client(BinauthzManagementServiceV1Beta1Stubstub)Methods
awaitTermination(long duration, TimeUnit unit)
publicbooleanawaitTermination(longduration,TimeUnitunit)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);
}
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);
}
attestor
Attestor Required. The initial
attestor value. The service will
overwrite the attestor name field
with the resource name, in the format projects/*/attestors/*.
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);
}
attestor
Attestor Required. The initial
attestor value. The service will
overwrite the attestor name field
with the resource name, in the format projects/*/attestors/*.
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();
}
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);
}
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);
}
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);
}
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();
}
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);
}
name
AttestorName Required. The name of the
attestor to retrieve, in the format
projects/*/attestors/*.
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);
}
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);
}
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();
}
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);
}
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);
}
name
PolicyName Required. The resource name of the
policy to retrieve, in the format
projects/*/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);
}
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();
}
getSettings()
publicfinalBinauthzManagementServiceV1Beta1SettingsgetSettings()getStub()
publicBinauthzManagementServiceV1Beta1StubgetStub()isShutdown()
publicbooleanisShutdown()isTerminated()
publicbooleanisTerminated()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);
}
}
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);
}
}
parent
ProjectName Required. The resource name of the project associated with the
attestors, in the format
projects/*.
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);
}
}
parent
String Required. The resource name of the project associated with the
attestors, in the format
projects/*.
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;
}
}
}
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);
}
}
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);
}
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/*.
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);
}
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();
}
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);
}
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.
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);
}
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();
}