@Generated(value="by gapic-generator-java") public class CertificateAuthorityServiceClient extends Object implements com.google.api.gax.core.BackgroundResource
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
Certificate certificate = Certificate.newBuilder().build();
String certificateId = "certificateId-644529902";
Certificate response =
certificateAuthorityServiceClient.createCertificate(parent, certificate, certificateId);
}
Note: close() needs to be called on the CertificateAuthorityServiceClient 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:
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 CertificateAuthorityServiceSettings 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
CertificateAuthorityServiceSettings certificateAuthorityServiceSettings =
CertificateAuthorityServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create(certificateAuthorityServiceSettings);
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
CertificateAuthorityServiceSettings certificateAuthorityServiceSettings =
CertificateAuthorityServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create(certificateAuthorityServiceSettings);
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
CertificateAuthorityServiceSettings certificateAuthorityServiceSettings =
CertificateAuthorityServiceSettings.newHttpJsonBuilder().build();
CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create(certificateAuthorityServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier | Constructor and Description |
|---|---|
protected |
CertificateAuthorityServiceClient(CertificateAuthorityServiceSettings settings)
Constructs an instance of CertificateAuthorityServiceClient, using the given settings.
|
protected |
CertificateAuthorityServiceClient(CertificateAuthorityServiceStub stub) |
| Modifier and Type | Method and Description |
|---|---|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
activateCertificateAuthorityAsync(ActivateCertificateAuthorityRequest request)
Activate a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
is in state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
activateCertificateAuthorityAsync(CertificateAuthorityName name)
Activate a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
is in state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
activateCertificateAuthorityAsync(String name)
Activate a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
is in state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
com.google.api.gax.rpc.UnaryCallable<ActivateCertificateAuthorityRequest,com.google.longrunning.Operation> |
activateCertificateAuthorityCallable()
Activate a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
is in state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
com.google.api.gax.rpc.OperationCallable<ActivateCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> |
activateCertificateAuthorityOperationCallable()
Activate a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
is in state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static CertificateAuthorityServiceClient |
create()
Constructs an instance of CertificateAuthorityServiceClient with default settings.
|
static CertificateAuthorityServiceClient |
create(CertificateAuthorityServiceSettings settings)
Constructs an instance of CertificateAuthorityServiceClient, using the given settings.
|
static CertificateAuthorityServiceClient |
create(CertificateAuthorityServiceStub stub)
Constructs an instance of CertificateAuthorityServiceClient, using the given stub for making
calls.
|
com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> |
createCaPoolAsync(CreateCaPoolRequest request)
Create a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> |
createCaPoolAsync(LocationName parent,
CaPool caPool,
String caPoolId)
Create a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> |
createCaPoolAsync(String parent,
CaPool caPool,
String caPoolId)
Create a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.UnaryCallable<CreateCaPoolRequest,com.google.longrunning.Operation> |
createCaPoolCallable()
Create a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.OperationCallable<CreateCaPoolRequest,CaPool,OperationMetadata> |
createCaPoolOperationCallable()
Create a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
Certificate |
createCertificate(CaPoolName parent,
Certificate certificate,
String certificateId)
Create a new [Certificate][google.cloud.security.privateca.v1.Certificate] in a given Project,
Location from a particular [CaPool][google.cloud.security.privateca.v1.CaPool].
|
Certificate |
createCertificate(CreateCertificateRequest request)
Create a new [Certificate][google.cloud.security.privateca.v1.Certificate] in a given Project,
Location from a particular [CaPool][google.cloud.security.privateca.v1.CaPool].
|
Certificate |
createCertificate(String parent,
Certificate certificate,
String certificateId)
Create a new [Certificate][google.cloud.security.privateca.v1.Certificate] in a given Project,
Location from a particular [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
createCertificateAuthorityAsync(CaPoolName parent,
CertificateAuthority certificateAuthority,
String certificateAuthorityId)
Create a new [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in
a given Project and Location.
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
createCertificateAuthorityAsync(CreateCertificateAuthorityRequest request)
Create a new [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in
a given Project and Location.
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
createCertificateAuthorityAsync(String parent,
CertificateAuthority certificateAuthority,
String certificateAuthorityId)
Create a new [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in
a given Project and Location.
|
com.google.api.gax.rpc.UnaryCallable<CreateCertificateAuthorityRequest,com.google.longrunning.Operation> |
createCertificateAuthorityCallable()
Create a new [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in
a given Project and Location.
|
com.google.api.gax.rpc.OperationCallable<CreateCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> |
createCertificateAuthorityOperationCallable()
Create a new [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in
a given Project and Location.
|
com.google.api.gax.rpc.UnaryCallable<CreateCertificateRequest,Certificate> |
createCertificateCallable()
Create a new [Certificate][google.cloud.security.privateca.v1.Certificate] in a given Project,
Location from a particular [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> |
createCertificateTemplateAsync(CreateCertificateTemplateRequest request)
Create a new [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in a
given Project and Location.
|
com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> |
createCertificateTemplateAsync(LocationName parent,
CertificateTemplate certificateTemplate,
String certificateTemplateId)
Create a new [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in a
given Project and Location.
|
com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> |
createCertificateTemplateAsync(String parent,
CertificateTemplate certificateTemplate,
String certificateTemplateId)
Create a new [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in a
given Project and Location.
|
com.google.api.gax.rpc.UnaryCallable<CreateCertificateTemplateRequest,com.google.longrunning.Operation> |
createCertificateTemplateCallable()
Create a new [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in a
given Project and Location.
|
com.google.api.gax.rpc.OperationCallable<CreateCertificateTemplateRequest,CertificateTemplate,OperationMetadata> |
createCertificateTemplateOperationCallable()
Create a new [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in a
given Project and Location.
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> |
deleteCaPoolAsync(CaPoolName name)
Delete a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> |
deleteCaPoolAsync(DeleteCaPoolRequest request)
Delete a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> |
deleteCaPoolAsync(String name)
Delete a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.UnaryCallable<DeleteCaPoolRequest,com.google.longrunning.Operation> |
deleteCaPoolCallable()
Delete a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.OperationCallable<DeleteCaPoolRequest,com.google.protobuf.Empty,OperationMetadata> |
deleteCaPoolOperationCallable()
Delete a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
deleteCertificateAuthorityAsync(CertificateAuthorityName name)
Delete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
deleteCertificateAuthorityAsync(DeleteCertificateAuthorityRequest request)
Delete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
deleteCertificateAuthorityAsync(String name)
Delete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<DeleteCertificateAuthorityRequest,com.google.longrunning.Operation> |
deleteCertificateAuthorityCallable()
Delete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.OperationCallable<DeleteCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> |
deleteCertificateAuthorityOperationCallable()
Delete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> |
deleteCertificateTemplateAsync(CertificateTemplateName name)
DeleteCertificateTemplate deletes a
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> |
deleteCertificateTemplateAsync(DeleteCertificateTemplateRequest request)
DeleteCertificateTemplate deletes a
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> |
deleteCertificateTemplateAsync(String name)
DeleteCertificateTemplate deletes a
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.rpc.UnaryCallable<DeleteCertificateTemplateRequest,com.google.longrunning.Operation> |
deleteCertificateTemplateCallable()
DeleteCertificateTemplate deletes a
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.rpc.OperationCallable<DeleteCertificateTemplateRequest,com.google.protobuf.Empty,OperationMetadata> |
deleteCertificateTemplateOperationCallable()
DeleteCertificateTemplate deletes a
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
disableCertificateAuthorityAsync(CertificateAuthorityName name)
Disable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
disableCertificateAuthorityAsync(DisableCertificateAuthorityRequest request)
Disable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
disableCertificateAuthorityAsync(String name)
Disable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<DisableCertificateAuthorityRequest,com.google.longrunning.Operation> |
disableCertificateAuthorityCallable()
Disable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.OperationCallable<DisableCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> |
disableCertificateAuthorityOperationCallable()
Disable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
enableCertificateAuthorityAsync(CertificateAuthorityName name)
Enable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
enableCertificateAuthorityAsync(EnableCertificateAuthorityRequest request)
Enable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
enableCertificateAuthorityAsync(String name)
Enable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<EnableCertificateAuthorityRequest,com.google.longrunning.Operation> |
enableCertificateAuthorityCallable()
Enable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.OperationCallable<EnableCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> |
enableCertificateAuthorityOperationCallable()
Enable a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
FetchCaCertsResponse |
fetchCaCerts(CaPoolName caPool)
FetchCaCerts returns the current trust anchor for the
[CaPool][google.cloud.security.privateca.v1.CaPool].
|
FetchCaCertsResponse |
fetchCaCerts(FetchCaCertsRequest request)
FetchCaCerts returns the current trust anchor for the
[CaPool][google.cloud.security.privateca.v1.CaPool].
|
FetchCaCertsResponse |
fetchCaCerts(String caPool)
FetchCaCerts returns the current trust anchor for the
[CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.UnaryCallable<FetchCaCertsRequest,FetchCaCertsResponse> |
fetchCaCertsCallable()
FetchCaCerts returns the current trust anchor for the
[CaPool][google.cloud.security.privateca.v1.CaPool].
|
FetchCertificateAuthorityCsrResponse |
fetchCertificateAuthorityCsr(CertificateAuthorityName name)
Fetch a certificate signing request (CSR) from a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that is in
state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
FetchCertificateAuthorityCsrResponse |
fetchCertificateAuthorityCsr(FetchCertificateAuthorityCsrRequest request)
Fetch a certificate signing request (CSR) from a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that is in
state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
FetchCertificateAuthorityCsrResponse |
fetchCertificateAuthorityCsr(String name)
Fetch a certificate signing request (CSR) from a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that is in
state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
com.google.api.gax.rpc.UnaryCallable<FetchCertificateAuthorityCsrRequest,FetchCertificateAuthorityCsrResponse> |
fetchCertificateAuthorityCsrCallable()
Fetch a certificate signing request (CSR) from a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that is in
state
[AWAITING_USER_ACTIVATION][google.cloud.security.privateca.v1.CertificateAuthority.State.AWAITING_USER_ACTIVATION]
and is of type
[SUBORDINATE][google.cloud.security.privateca.v1.CertificateAuthority.Type.SUBORDINATE].
|
CaPool |
getCaPool(CaPoolName name)
Returns a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
CaPool |
getCaPool(GetCaPoolRequest request)
Returns a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
CaPool |
getCaPool(String name)
Returns a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.UnaryCallable<GetCaPoolRequest,CaPool> |
getCaPoolCallable()
Returns a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
Certificate |
getCertificate(CertificateName name)
Returns a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
Certificate |
getCertificate(GetCertificateRequest request)
Returns a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
Certificate |
getCertificate(String name)
Returns a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
CertificateAuthority |
getCertificateAuthority(CertificateAuthorityName name)
Returns a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
CertificateAuthority |
getCertificateAuthority(GetCertificateAuthorityRequest request)
Returns a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
CertificateAuthority |
getCertificateAuthority(String name)
Returns a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<GetCertificateAuthorityRequest,CertificateAuthority> |
getCertificateAuthorityCallable()
Returns a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<GetCertificateRequest,Certificate> |
getCertificateCallable()
Returns a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
CertificateRevocationList |
getCertificateRevocationList(CertificateRevocationListName name)
Returns a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
CertificateRevocationList |
getCertificateRevocationList(GetCertificateRevocationListRequest request)
Returns a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
CertificateRevocationList |
getCertificateRevocationList(String name)
Returns a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
com.google.api.gax.rpc.UnaryCallable<GetCertificateRevocationListRequest,CertificateRevocationList> |
getCertificateRevocationListCallable()
Returns a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
CertificateTemplate |
getCertificateTemplate(CertificateTemplateName name)
Returns a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
CertificateTemplate |
getCertificateTemplate(GetCertificateTemplateRequest request)
Returns a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
CertificateTemplate |
getCertificateTemplate(String name)
Returns a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.rpc.UnaryCallable<GetCertificateTemplateRequest,CertificateTemplate> |
getCertificateTemplateCallable()
Returns a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.httpjson.longrunning.OperationsClient |
getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
com.google.iam.v1.Policy |
getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
Gets the access control policy for a resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
getIamPolicyCallable()
Gets the access control policy for a resource.
|
com.google.cloud.location.Location |
getLocation(com.google.cloud.location.GetLocationRequest request)
Gets information about a location.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> |
getLocationCallable()
Gets information about a location.
|
com.google.longrunning.OperationsClient |
getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
CertificateAuthorityServiceSettings |
getSettings() |
CertificateAuthorityServiceStub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
CertificateAuthorityServiceClient.ListCaPoolsPagedResponse |
listCaPools(ListCaPoolsRequest request)
Lists [CaPools][google.cloud.security.privateca.v1.CaPool].
|
CertificateAuthorityServiceClient.ListCaPoolsPagedResponse |
listCaPools(LocationName parent)
Lists [CaPools][google.cloud.security.privateca.v1.CaPool].
|
CertificateAuthorityServiceClient.ListCaPoolsPagedResponse |
listCaPools(String parent)
Lists [CaPools][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.UnaryCallable<ListCaPoolsRequest,ListCaPoolsResponse> |
listCaPoolsCallable()
Lists [CaPools][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.UnaryCallable<ListCaPoolsRequest,CertificateAuthorityServiceClient.ListCaPoolsPagedResponse> |
listCaPoolsPagedCallable()
Lists [CaPools][google.cloud.security.privateca.v1.CaPool].
|
CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse |
listCertificateAuthorities(CaPoolName parent)
Lists [CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority].
|
CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse |
listCertificateAuthorities(ListCertificateAuthoritiesRequest request)
Lists [CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority].
|
CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse |
listCertificateAuthorities(String parent)
Lists [CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificateAuthoritiesRequest,ListCertificateAuthoritiesResponse> |
listCertificateAuthoritiesCallable()
Lists [CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificateAuthoritiesRequest,CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse> |
listCertificateAuthoritiesPagedCallable()
Lists [CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority].
|
CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse |
listCertificateRevocationLists(CertificateAuthorityName parent)
Lists
[CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
|
CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse |
listCertificateRevocationLists(ListCertificateRevocationListsRequest request)
Lists
[CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
|
CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse |
listCertificateRevocationLists(String parent)
Lists
[CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificateRevocationListsRequest,ListCertificateRevocationListsResponse> |
listCertificateRevocationListsCallable()
Lists
[CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificateRevocationListsRequest,CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse> |
listCertificateRevocationListsPagedCallable()
Lists
[CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList].
|
CertificateAuthorityServiceClient.ListCertificatesPagedResponse |
listCertificates(CaPoolName parent)
Lists [Certificates][google.cloud.security.privateca.v1.Certificate].
|
CertificateAuthorityServiceClient.ListCertificatesPagedResponse |
listCertificates(ListCertificatesRequest request)
Lists [Certificates][google.cloud.security.privateca.v1.Certificate].
|
CertificateAuthorityServiceClient.ListCertificatesPagedResponse |
listCertificates(String parent)
Lists [Certificates][google.cloud.security.privateca.v1.Certificate].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificatesRequest,ListCertificatesResponse> |
listCertificatesCallable()
Lists [Certificates][google.cloud.security.privateca.v1.Certificate].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificatesRequest,CertificateAuthorityServiceClient.ListCertificatesPagedResponse> |
listCertificatesPagedCallable()
Lists [Certificates][google.cloud.security.privateca.v1.Certificate].
|
CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse |
listCertificateTemplates(ListCertificateTemplatesRequest request)
Lists [CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate].
|
CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse |
listCertificateTemplates(LocationName parent)
Lists [CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate].
|
CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse |
listCertificateTemplates(String parent)
Lists [CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificateTemplatesRequest,ListCertificateTemplatesResponse> |
listCertificateTemplatesCallable()
Lists [CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.rpc.UnaryCallable<ListCertificateTemplatesRequest,CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse> |
listCertificateTemplatesPagedCallable()
Lists [CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate].
|
CertificateAuthorityServiceClient.ListLocationsPagedResponse |
listLocations(com.google.cloud.location.ListLocationsRequest request)
Lists information about the supported locations for this service.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> |
listLocationsCallable()
Lists information about the supported locations for this service.
|
com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,CertificateAuthorityServiceClient.ListLocationsPagedResponse> |
listLocationsPagedCallable()
Lists information about the supported locations for this service.
|
Certificate |
revokeCertificate(CertificateName name)
Revoke a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
Certificate |
revokeCertificate(RevokeCertificateRequest request)
Revoke a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
Certificate |
revokeCertificate(String name)
Revoke a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
com.google.api.gax.rpc.UnaryCallable<RevokeCertificateRequest,Certificate> |
revokeCertificateCallable()
Revoke a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
com.google.iam.v1.Policy |
setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Sets the access control policy on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
setIamPolicyCallable()
Sets the access control policy on the specified resource.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified resource.
|
com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> |
testIamPermissionsCallable()
Returns permissions that a caller has on the specified resource.
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
undeleteCertificateAuthorityAsync(CertificateAuthorityName name)
Undelete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
has been deleted.
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
undeleteCertificateAuthorityAsync(String name)
Undelete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
has been deleted.
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
undeleteCertificateAuthorityAsync(UndeleteCertificateAuthorityRequest request)
Undelete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
has been deleted.
|
com.google.api.gax.rpc.UnaryCallable<UndeleteCertificateAuthorityRequest,com.google.longrunning.Operation> |
undeleteCertificateAuthorityCallable()
Undelete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
has been deleted.
|
com.google.api.gax.rpc.OperationCallable<UndeleteCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> |
undeleteCertificateAuthorityOperationCallable()
Undelete a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] that
has been deleted.
|
com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> |
updateCaPoolAsync(CaPool caPool,
com.google.protobuf.FieldMask updateMask)
Update a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> |
updateCaPoolAsync(UpdateCaPoolRequest request)
Update a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.UnaryCallable<UpdateCaPoolRequest,com.google.longrunning.Operation> |
updateCaPoolCallable()
Update a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
com.google.api.gax.rpc.OperationCallable<UpdateCaPoolRequest,CaPool,OperationMetadata> |
updateCaPoolOperationCallable()
Update a [CaPool][google.cloud.security.privateca.v1.CaPool].
|
Certificate |
updateCertificate(Certificate certificate,
com.google.protobuf.FieldMask updateMask)
Update a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
Certificate |
updateCertificate(UpdateCertificateRequest request)
Update a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
updateCertificateAuthorityAsync(CertificateAuthority certificateAuthority,
com.google.protobuf.FieldMask updateMask)
Update a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> |
updateCertificateAuthorityAsync(UpdateCertificateAuthorityRequest request)
Update a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<UpdateCertificateAuthorityRequest,com.google.longrunning.Operation> |
updateCertificateAuthorityCallable()
Update a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.OperationCallable<UpdateCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> |
updateCertificateAuthorityOperationCallable()
Update a [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority].
|
com.google.api.gax.rpc.UnaryCallable<UpdateCertificateRequest,Certificate> |
updateCertificateCallable()
Update a [Certificate][google.cloud.security.privateca.v1.Certificate].
|
com.google.api.gax.longrunning.OperationFuture<CertificateRevocationList,OperationMetadata> |
updateCertificateRevocationListAsync(CertificateRevocationList certificateRevocationList,
com.google.protobuf.FieldMask updateMask)
Update a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
com.google.api.gax.longrunning.OperationFuture<CertificateRevocationList,OperationMetadata> |
updateCertificateRevocationListAsync(UpdateCertificateRevocationListRequest request)
Update a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
com.google.api.gax.rpc.UnaryCallable<UpdateCertificateRevocationListRequest,com.google.longrunning.Operation> |
updateCertificateRevocationListCallable()
Update a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
com.google.api.gax.rpc.OperationCallable<UpdateCertificateRevocationListRequest,CertificateRevocationList,OperationMetadata> |
updateCertificateRevocationListOperationCallable()
Update a
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList].
|
com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> |
updateCertificateTemplateAsync(CertificateTemplate certificateTemplate,
com.google.protobuf.FieldMask updateMask)
Update a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> |
updateCertificateTemplateAsync(UpdateCertificateTemplateRequest request)
Update a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.rpc.UnaryCallable<UpdateCertificateTemplateRequest,com.google.longrunning.Operation> |
updateCertificateTemplateCallable()
Update a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
com.google.api.gax.rpc.OperationCallable<UpdateCertificateTemplateRequest,CertificateTemplate,OperationMetadata> |
updateCertificateTemplateOperationCallable()
Update a [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate].
|
protected CertificateAuthorityServiceClient(CertificateAuthorityServiceSettings settings) throws IOException
IOExceptionprotected CertificateAuthorityServiceClient(CertificateAuthorityServiceStub stub)
public static final CertificateAuthorityServiceClient create() throws IOException
IOExceptionpublic static final CertificateAuthorityServiceClient create(CertificateAuthorityServiceSettings settings) throws IOException
IOExceptionpublic static final CertificateAuthorityServiceClient create(CertificateAuthorityServiceStub stub)
public final CertificateAuthorityServiceSettings getSettings()
public CertificateAuthorityServiceStub getStub()
public final com.google.longrunning.OperationsClient getOperationsClient()
@BetaApi public final com.google.api.gax.httpjson.longrunning.OperationsClient getHttpJsonOperationsClient()
public final Certificate createCertificate(CaPoolName parent, Certificate certificate, String certificateId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
Certificate certificate = Certificate.newBuilder().build();
String certificateId = "certificateId-644529902";
Certificate response =
certificateAuthorityServiceClient.createCertificate(parent, certificate, certificateId);
}
parent - Required. The resource name of the
[CaPool][google.cloud.security.privateca.v1.CaPool] associated with the
[Certificate][google.cloud.security.privateca.v1.Certificate], in the format
`projects/*/locations/*/caPools/*`.certificate - Required. A [Certificate][google.cloud.security.privateca.v1.Certificate]
with initial field values.certificateId - Optional. It must be unique within a location and match the regular
expression `[a-zA-Z0-9_-]{1,63}`. This field is required when using a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
Enterprise [CertificateAuthority.Tier][], but is optional and its value is ignored
otherwise.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Certificate createCertificate(String parent, Certificate certificate, String certificateId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString();
Certificate certificate = Certificate.newBuilder().build();
String certificateId = "certificateId-644529902";
Certificate response =
certificateAuthorityServiceClient.createCertificate(parent, certificate, certificateId);
}
parent - Required. The resource name of the
[CaPool][google.cloud.security.privateca.v1.CaPool] associated with the
[Certificate][google.cloud.security.privateca.v1.Certificate], in the format
`projects/*/locations/*/caPools/*`.certificate - Required. A [Certificate][google.cloud.security.privateca.v1.Certificate]
with initial field values.certificateId - Optional. It must be unique within a location and match the regular
expression `[a-zA-Z0-9_-]{1,63}`. This field is required when using a
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
Enterprise [CertificateAuthority.Tier][], but is optional and its value is ignored
otherwise.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Certificate createCertificate(CreateCertificateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateRequest request =
CreateCertificateRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setCertificateId("certificateId-644529902")
.setCertificate(Certificate.newBuilder().build())
.setRequestId("requestId693933066")
.setValidateOnly(true)
.setIssuingCertificateAuthorityId("issuingCertificateAuthorityId-559908707")
.build();
Certificate response = certificateAuthorityServiceClient.createCertificate(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<CreateCertificateRequest,Certificate> createCertificateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateRequest request =
CreateCertificateRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setCertificateId("certificateId-644529902")
.setCertificate(Certificate.newBuilder().build())
.setRequestId("requestId693933066")
.setValidateOnly(true)
.setIssuingCertificateAuthorityId("issuingCertificateAuthorityId-559908707")
.build();
ApiFuture<Certificate> future =
certificateAuthorityServiceClient.createCertificateCallable().futureCall(request);
// Do something.
Certificate response = future.get();
}
public final Certificate getCertificate(CertificateName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateName name =
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]");
Certificate response = certificateAuthorityServiceClient.getCertificate(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.Certificate.name] of the
[Certificate][google.cloud.security.privateca.v1.Certificate] to get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Certificate getCertificate(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]").toString();
Certificate response = certificateAuthorityServiceClient.getCertificate(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.Certificate.name] of the
[Certificate][google.cloud.security.privateca.v1.Certificate] to get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Certificate getCertificate(GetCertificateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateRequest request =
GetCertificateRequest.newBuilder()
.setName(
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]")
.toString())
.build();
Certificate response = certificateAuthorityServiceClient.getCertificate(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetCertificateRequest,Certificate> getCertificateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateRequest request =
GetCertificateRequest.newBuilder()
.setName(
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]")
.toString())
.build();
ApiFuture<Certificate> future =
certificateAuthorityServiceClient.getCertificateCallable().futureCall(request);
// Do something.
Certificate response = future.get();
}
public final CertificateAuthorityServiceClient.ListCertificatesPagedResponse listCertificates(CaPoolName parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
for (Certificate element :
certificateAuthorityServiceClient.listCertificates(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[Certificates][google.cloud.security.privateca.v1.Certificate], in the format
`projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificatesPagedResponse listCertificates(String parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString();
for (Certificate element :
certificateAuthorityServiceClient.listCertificates(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[Certificates][google.cloud.security.privateca.v1.Certificate], in the format
`projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificatesPagedResponse listCertificates(ListCertificatesRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificatesRequest request =
ListCertificatesRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
for (Certificate element :
certificateAuthorityServiceClient.listCertificates(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListCertificatesRequest,CertificateAuthorityServiceClient.ListCertificatesPagedResponse> listCertificatesPagedCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificatesRequest request =
ListCertificatesRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<Certificate> future =
certificateAuthorityServiceClient.listCertificatesPagedCallable().futureCall(request);
// Do something.
for (Certificate element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListCertificatesRequest,ListCertificatesResponse> listCertificatesCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificatesRequest request =
ListCertificatesRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListCertificatesResponse response =
certificateAuthorityServiceClient.listCertificatesCallable().call(request);
for (Certificate element : response.getCertificatesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final Certificate revokeCertificate(CertificateName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateName name =
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]");
Certificate response = certificateAuthorityServiceClient.revokeCertificate(name);
}
name - Required. The resource name for this
[Certificate][google.cloud.security.privateca.v1.Certificate] in the format
`projects/*/locations/*/caPools/*/certificates/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Certificate revokeCertificate(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]").toString();
Certificate response = certificateAuthorityServiceClient.revokeCertificate(name);
}
name - Required. The resource name for this
[Certificate][google.cloud.security.privateca.v1.Certificate] in the format
`projects/*/locations/*/caPools/*/certificates/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Certificate revokeCertificate(RevokeCertificateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
RevokeCertificateRequest request =
RevokeCertificateRequest.newBuilder()
.setName(
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]")
.toString())
.setReason(RevocationReason.forNumber(0))
.setRequestId("requestId693933066")
.build();
Certificate response = certificateAuthorityServiceClient.revokeCertificate(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<RevokeCertificateRequest,Certificate> revokeCertificateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
RevokeCertificateRequest request =
RevokeCertificateRequest.newBuilder()
.setName(
CertificateName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE]")
.toString())
.setReason(RevocationReason.forNumber(0))
.setRequestId("requestId693933066")
.build();
ApiFuture<Certificate> future =
certificateAuthorityServiceClient.revokeCertificateCallable().futureCall(request);
// Do something.
Certificate response = future.get();
}
public final Certificate updateCertificate(Certificate certificate, com.google.protobuf.FieldMask updateMask)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
Certificate certificate = Certificate.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Certificate response =
certificateAuthorityServiceClient.updateCertificate(certificate, updateMask);
}
certificate - Required. [Certificate][google.cloud.security.privateca.v1.Certificate] with
updated values.updateMask - Required. A list of fields to be updated in this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Certificate updateCertificate(UpdateCertificateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateRequest request =
UpdateCertificateRequest.newBuilder()
.setCertificate(Certificate.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
Certificate response = certificateAuthorityServiceClient.updateCertificate(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<UpdateCertificateRequest,Certificate> updateCertificateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateRequest request =
UpdateCertificateRequest.newBuilder()
.setCertificate(Certificate.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Certificate> future =
certificateAuthorityServiceClient.updateCertificateCallable().futureCall(request);
// Do something.
Certificate response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> activateCertificateAuthorityAsync(CertificateAuthorityName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
CertificateAuthority response =
certificateAuthorityServiceClient.activateCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> activateCertificateAuthorityAsync(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
CertificateAuthority response =
certificateAuthorityServiceClient.activateCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> activateCertificateAuthorityAsync(ActivateCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ActivateCertificateAuthorityRequest request =
ActivateCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setPemCaCertificate("pemCaCertificate2100567073")
.setSubordinateConfig(SubordinateConfig.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.activateCertificateAuthorityAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<ActivateCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> activateCertificateAuthorityOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ActivateCertificateAuthorityRequest request =
ActivateCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setPemCaCertificate("pemCaCertificate2100567073")
.setSubordinateConfig(SubordinateConfig.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateAuthority, OperationMetadata> future =
certificateAuthorityServiceClient
.activateCertificateAuthorityOperationCallable()
.futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<ActivateCertificateAuthorityRequest,com.google.longrunning.Operation> activateCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ActivateCertificateAuthorityRequest request =
ActivateCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setPemCaCertificate("pemCaCertificate2100567073")
.setSubordinateConfig(SubordinateConfig.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.activateCertificateAuthorityCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> createCertificateAuthorityAsync(CaPoolName parent, CertificateAuthority certificateAuthority, String certificateAuthorityId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
CertificateAuthority certificateAuthority = CertificateAuthority.newBuilder().build();
String certificateAuthorityId = "certificateAuthorityId-1652580953";
CertificateAuthority response =
certificateAuthorityServiceClient
.createCertificateAuthorityAsync(parent, certificateAuthority, certificateAuthorityId)
.get();
}
parent - Required. The resource name of the
[CaPool][google.cloud.security.privateca.v1.CaPool] associated with the
[CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority], in the
format `projects/*/locations/*/caPools/*`.certificateAuthority - Required. A
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] with
initial field values.certificateAuthorityId - Required. It must be unique within a location and match the
regular expression `[a-zA-Z0-9_-]{1,63}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> createCertificateAuthorityAsync(String parent, CertificateAuthority certificateAuthority, String certificateAuthorityId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString();
CertificateAuthority certificateAuthority = CertificateAuthority.newBuilder().build();
String certificateAuthorityId = "certificateAuthorityId-1652580953";
CertificateAuthority response =
certificateAuthorityServiceClient
.createCertificateAuthorityAsync(parent, certificateAuthority, certificateAuthorityId)
.get();
}
parent - Required. The resource name of the
[CaPool][google.cloud.security.privateca.v1.CaPool] associated with the
[CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority], in the
format `projects/*/locations/*/caPools/*`.certificateAuthority - Required. A
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] with
initial field values.certificateAuthorityId - Required. It must be unique within a location and match the
regular expression `[a-zA-Z0-9_-]{1,63}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> createCertificateAuthorityAsync(CreateCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateAuthorityRequest request =
CreateCertificateAuthorityRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setCertificateAuthorityId("certificateAuthorityId-1652580953")
.setCertificateAuthority(CertificateAuthority.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.createCertificateAuthorityAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<CreateCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> createCertificateAuthorityOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateAuthorityRequest request =
CreateCertificateAuthorityRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setCertificateAuthorityId("certificateAuthorityId-1652580953")
.setCertificateAuthority(CertificateAuthority.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateAuthority, OperationMetadata> future =
certificateAuthorityServiceClient
.createCertificateAuthorityOperationCallable()
.futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<CreateCertificateAuthorityRequest,com.google.longrunning.Operation> createCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateAuthorityRequest request =
CreateCertificateAuthorityRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setCertificateAuthorityId("certificateAuthorityId-1652580953")
.setCertificateAuthority(CertificateAuthority.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.createCertificateAuthorityCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> disableCertificateAuthorityAsync(CertificateAuthorityName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
CertificateAuthority response =
certificateAuthorityServiceClient.disableCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> disableCertificateAuthorityAsync(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
CertificateAuthority response =
certificateAuthorityServiceClient.disableCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> disableCertificateAuthorityAsync(DisableCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DisableCertificateAuthorityRequest request =
DisableCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.setIgnoreDependentResources(true)
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.disableCertificateAuthorityAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DisableCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> disableCertificateAuthorityOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DisableCertificateAuthorityRequest request =
DisableCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.setIgnoreDependentResources(true)
.build();
OperationFuture<CertificateAuthority, OperationMetadata> future =
certificateAuthorityServiceClient
.disableCertificateAuthorityOperationCallable()
.futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DisableCertificateAuthorityRequest,com.google.longrunning.Operation> disableCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DisableCertificateAuthorityRequest request =
DisableCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.setIgnoreDependentResources(true)
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.disableCertificateAuthorityCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> enableCertificateAuthorityAsync(CertificateAuthorityName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
CertificateAuthority response =
certificateAuthorityServiceClient.enableCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> enableCertificateAuthorityAsync(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
CertificateAuthority response =
certificateAuthorityServiceClient.enableCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> enableCertificateAuthorityAsync(EnableCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
EnableCertificateAuthorityRequest request =
EnableCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.enableCertificateAuthorityAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<EnableCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> enableCertificateAuthorityOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
EnableCertificateAuthorityRequest request =
EnableCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateAuthority, OperationMetadata> future =
certificateAuthorityServiceClient
.enableCertificateAuthorityOperationCallable()
.futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<EnableCertificateAuthorityRequest,com.google.longrunning.Operation> enableCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
EnableCertificateAuthorityRequest request =
EnableCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.enableCertificateAuthorityCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final FetchCertificateAuthorityCsrResponse fetchCertificateAuthorityCsr(CertificateAuthorityName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
FetchCertificateAuthorityCsrResponse response =
certificateAuthorityServiceClient.fetchCertificateAuthorityCsr(name);
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final FetchCertificateAuthorityCsrResponse fetchCertificateAuthorityCsr(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
FetchCertificateAuthorityCsrResponse response =
certificateAuthorityServiceClient.fetchCertificateAuthorityCsr(name);
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final FetchCertificateAuthorityCsrResponse fetchCertificateAuthorityCsr(FetchCertificateAuthorityCsrRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
FetchCertificateAuthorityCsrRequest request =
FetchCertificateAuthorityCsrRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.build();
FetchCertificateAuthorityCsrResponse response =
certificateAuthorityServiceClient.fetchCertificateAuthorityCsr(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<FetchCertificateAuthorityCsrRequest,FetchCertificateAuthorityCsrResponse> fetchCertificateAuthorityCsrCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
FetchCertificateAuthorityCsrRequest request =
FetchCertificateAuthorityCsrRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.build();
ApiFuture<FetchCertificateAuthorityCsrResponse> future =
certificateAuthorityServiceClient
.fetchCertificateAuthorityCsrCallable()
.futureCall(request);
// Do something.
FetchCertificateAuthorityCsrResponse response = future.get();
}
public final CertificateAuthority getCertificateAuthority(CertificateAuthorityName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
CertificateAuthority response =
certificateAuthorityServiceClient.getCertificateAuthority(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.CertificateAuthority.name]
of the [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] to
get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthority getCertificateAuthority(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
CertificateAuthority response =
certificateAuthorityServiceClient.getCertificateAuthority(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.CertificateAuthority.name]
of the [CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] to
get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthority getCertificateAuthority(GetCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateAuthorityRequest request =
GetCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.getCertificateAuthority(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetCertificateAuthorityRequest,CertificateAuthority> getCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateAuthorityRequest request =
GetCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.build();
ApiFuture<CertificateAuthority> future =
certificateAuthorityServiceClient.getCertificateAuthorityCallable().futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse listCertificateAuthorities(CaPoolName parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
for (CertificateAuthority element :
certificateAuthorityServiceClient.listCertificateAuthorities(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the
[CaPool][google.cloud.security.privateca.v1.CaPool] associated with the
[CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority], in the
format `projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse listCertificateAuthorities(String parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString();
for (CertificateAuthority element :
certificateAuthorityServiceClient.listCertificateAuthorities(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the
[CaPool][google.cloud.security.privateca.v1.CaPool] associated with the
[CertificateAuthorities][google.cloud.security.privateca.v1.CertificateAuthority], in the
format `projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse listCertificateAuthorities(ListCertificateAuthoritiesRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateAuthoritiesRequest request =
ListCertificateAuthoritiesRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
for (CertificateAuthority element :
certificateAuthorityServiceClient.listCertificateAuthorities(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListCertificateAuthoritiesRequest,CertificateAuthorityServiceClient.ListCertificateAuthoritiesPagedResponse> listCertificateAuthoritiesPagedCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateAuthoritiesRequest request =
ListCertificateAuthoritiesRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<CertificateAuthority> future =
certificateAuthorityServiceClient
.listCertificateAuthoritiesPagedCallable()
.futureCall(request);
// Do something.
for (CertificateAuthority element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListCertificateAuthoritiesRequest,ListCertificateAuthoritiesResponse> listCertificateAuthoritiesCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateAuthoritiesRequest request =
ListCertificateAuthoritiesRequest.newBuilder()
.setParent(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListCertificateAuthoritiesResponse response =
certificateAuthorityServiceClient.listCertificateAuthoritiesCallable().call(request);
for (CertificateAuthority element : response.getCertificateAuthoritiesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> undeleteCertificateAuthorityAsync(CertificateAuthorityName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
CertificateAuthority response =
certificateAuthorityServiceClient.undeleteCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> undeleteCertificateAuthorityAsync(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
CertificateAuthority response =
certificateAuthorityServiceClient.undeleteCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> undeleteCertificateAuthorityAsync(UndeleteCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UndeleteCertificateAuthorityRequest request =
UndeleteCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.undeleteCertificateAuthorityAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UndeleteCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> undeleteCertificateAuthorityOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UndeleteCertificateAuthorityRequest request =
UndeleteCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateAuthority, OperationMetadata> future =
certificateAuthorityServiceClient
.undeleteCertificateAuthorityOperationCallable()
.futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UndeleteCertificateAuthorityRequest,com.google.longrunning.Operation> undeleteCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UndeleteCertificateAuthorityRequest request =
UndeleteCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.undeleteCertificateAuthorityCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> deleteCertificateAuthorityAsync(CertificateAuthorityName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
CertificateAuthority response =
certificateAuthorityServiceClient.deleteCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> deleteCertificateAuthorityAsync(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
CertificateAuthority response =
certificateAuthorityServiceClient.deleteCertificateAuthorityAsync(name).get();
}
name - Required. The resource name for this
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] in the
format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> deleteCertificateAuthorityAsync(DeleteCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCertificateAuthorityRequest request =
DeleteCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.setIgnoreActiveCertificates(true)
.setSkipGracePeriod(true)
.setIgnoreDependentResources(true)
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.deleteCertificateAuthorityAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> deleteCertificateAuthorityOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCertificateAuthorityRequest request =
DeleteCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.setIgnoreActiveCertificates(true)
.setSkipGracePeriod(true)
.setIgnoreDependentResources(true)
.build();
OperationFuture<CertificateAuthority, OperationMetadata> future =
certificateAuthorityServiceClient
.deleteCertificateAuthorityOperationCallable()
.futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteCertificateAuthorityRequest,com.google.longrunning.Operation> deleteCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCertificateAuthorityRequest request =
DeleteCertificateAuthorityRequest.newBuilder()
.setName(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setRequestId("requestId693933066")
.setIgnoreActiveCertificates(true)
.setSkipGracePeriod(true)
.setIgnoreDependentResources(true)
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.deleteCertificateAuthorityCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> updateCertificateAuthorityAsync(CertificateAuthority certificateAuthority, com.google.protobuf.FieldMask updateMask)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthority certificateAuthority = CertificateAuthority.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
CertificateAuthority response =
certificateAuthorityServiceClient
.updateCertificateAuthorityAsync(certificateAuthority, updateMask)
.get();
}
certificateAuthority - Required.
[CertificateAuthority][google.cloud.security.privateca.v1.CertificateAuthority] with
updated values.updateMask - Required. A list of fields to be updated in this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateAuthority,OperationMetadata> updateCertificateAuthorityAsync(UpdateCertificateAuthorityRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateAuthorityRequest request =
UpdateCertificateAuthorityRequest.newBuilder()
.setCertificateAuthority(CertificateAuthority.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CertificateAuthority response =
certificateAuthorityServiceClient.updateCertificateAuthorityAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UpdateCertificateAuthorityRequest,CertificateAuthority,OperationMetadata> updateCertificateAuthorityOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateAuthorityRequest request =
UpdateCertificateAuthorityRequest.newBuilder()
.setCertificateAuthority(CertificateAuthority.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateAuthority, OperationMetadata> future =
certificateAuthorityServiceClient
.updateCertificateAuthorityOperationCallable()
.futureCall(request);
// Do something.
CertificateAuthority response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UpdateCertificateAuthorityRequest,com.google.longrunning.Operation> updateCertificateAuthorityCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateAuthorityRequest request =
UpdateCertificateAuthorityRequest.newBuilder()
.setCertificateAuthority(CertificateAuthority.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.updateCertificateAuthorityCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> createCaPoolAsync(LocationName parent, CaPool caPool, String caPoolId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
CaPool caPool = CaPool.newBuilder().build();
String caPoolId = "caPoolId-970668971";
CaPool response =
certificateAuthorityServiceClient.createCaPoolAsync(parent, caPool, caPoolId).get();
}
parent - Required. The resource name of the location associated with the
[CaPool][google.cloud.security.privateca.v1.CaPool], in the format
`projects/*/locations/*`.caPool - Required. A [CaPool][google.cloud.security.privateca.v1.CaPool] with initial
field values.caPoolId - Required. It must be unique within a location and match the regular expression
`[a-zA-Z0-9_-]{1,63}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> createCaPoolAsync(String parent, CaPool caPool, String caPoolId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
CaPool caPool = CaPool.newBuilder().build();
String caPoolId = "caPoolId-970668971";
CaPool response =
certificateAuthorityServiceClient.createCaPoolAsync(parent, caPool, caPoolId).get();
}
parent - Required. The resource name of the location associated with the
[CaPool][google.cloud.security.privateca.v1.CaPool], in the format
`projects/*/locations/*`.caPool - Required. A [CaPool][google.cloud.security.privateca.v1.CaPool] with initial
field values.caPoolId - Required. It must be unique within a location and match the regular expression
`[a-zA-Z0-9_-]{1,63}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> createCaPoolAsync(CreateCaPoolRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCaPoolRequest request =
CreateCaPoolRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setCaPoolId("caPoolId-970668971")
.setCaPool(CaPool.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CaPool response = certificateAuthorityServiceClient.createCaPoolAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<CreateCaPoolRequest,CaPool,OperationMetadata> createCaPoolOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCaPoolRequest request =
CreateCaPoolRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setCaPoolId("caPoolId-970668971")
.setCaPool(CaPool.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CaPool, OperationMetadata> future =
certificateAuthorityServiceClient.createCaPoolOperationCallable().futureCall(request);
// Do something.
CaPool response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<CreateCaPoolRequest,com.google.longrunning.Operation> createCaPoolCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCaPoolRequest request =
CreateCaPoolRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setCaPoolId("caPoolId-970668971")
.setCaPool(CaPool.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient.createCaPoolCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> updateCaPoolAsync(CaPool caPool, com.google.protobuf.FieldMask updateMask)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPool caPool = CaPool.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
CaPool response =
certificateAuthorityServiceClient.updateCaPoolAsync(caPool, updateMask).get();
}
caPool - Required. [CaPool][google.cloud.security.privateca.v1.CaPool] with updated
values.updateMask - Required. A list of fields to be updated in this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CaPool,OperationMetadata> updateCaPoolAsync(UpdateCaPoolRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCaPoolRequest request =
UpdateCaPoolRequest.newBuilder()
.setCaPool(CaPool.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CaPool response = certificateAuthorityServiceClient.updateCaPoolAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UpdateCaPoolRequest,CaPool,OperationMetadata> updateCaPoolOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCaPoolRequest request =
UpdateCaPoolRequest.newBuilder()
.setCaPool(CaPool.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CaPool, OperationMetadata> future =
certificateAuthorityServiceClient.updateCaPoolOperationCallable().futureCall(request);
// Do something.
CaPool response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UpdateCaPoolRequest,com.google.longrunning.Operation> updateCaPoolCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCaPoolRequest request =
UpdateCaPoolRequest.newBuilder()
.setCaPool(CaPool.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient.updateCaPoolCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final CaPool getCaPool(CaPoolName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName name = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
CaPool response = certificateAuthorityServiceClient.getCaPool(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.CaPool.name] of the
[CaPool][google.cloud.security.privateca.v1.CaPool] to get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CaPool getCaPool(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString();
CaPool response = certificateAuthorityServiceClient.getCaPool(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.CaPool.name] of the
[CaPool][google.cloud.security.privateca.v1.CaPool] to get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CaPool getCaPool(GetCaPoolRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCaPoolRequest request =
GetCaPoolRequest.newBuilder()
.setName(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.build();
CaPool response = certificateAuthorityServiceClient.getCaPool(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetCaPoolRequest,CaPool> getCaPoolCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCaPoolRequest request =
GetCaPoolRequest.newBuilder()
.setName(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.build();
ApiFuture<CaPool> future =
certificateAuthorityServiceClient.getCaPoolCallable().futureCall(request);
// Do something.
CaPool response = future.get();
}
public final CertificateAuthorityServiceClient.ListCaPoolsPagedResponse listCaPools(LocationName parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (CaPool element : certificateAuthorityServiceClient.listCaPools(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[CaPools][google.cloud.security.privateca.v1.CaPool], in the format
`projects/*/locations/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCaPoolsPagedResponse listCaPools(String parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (CaPool element : certificateAuthorityServiceClient.listCaPools(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[CaPools][google.cloud.security.privateca.v1.CaPool], in the format
`projects/*/locations/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCaPoolsPagedResponse listCaPools(ListCaPoolsRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCaPoolsRequest request =
ListCaPoolsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
for (CaPool element : certificateAuthorityServiceClient.listCaPools(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListCaPoolsRequest,CertificateAuthorityServiceClient.ListCaPoolsPagedResponse> listCaPoolsPagedCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCaPoolsRequest request =
ListCaPoolsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<CaPool> future =
certificateAuthorityServiceClient.listCaPoolsPagedCallable().futureCall(request);
// Do something.
for (CaPool element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListCaPoolsRequest,ListCaPoolsResponse> listCaPoolsCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCaPoolsRequest request =
ListCaPoolsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListCaPoolsResponse response =
certificateAuthorityServiceClient.listCaPoolsCallable().call(request);
for (CaPool element : response.getCaPoolsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> deleteCaPoolAsync(CaPoolName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName name = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
certificateAuthorityServiceClient.deleteCaPoolAsync(name).get();
}
name - Required. The resource name for this
[CaPool][google.cloud.security.privateca.v1.CaPool] in the format
`projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> deleteCaPoolAsync(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString();
certificateAuthorityServiceClient.deleteCaPoolAsync(name).get();
}
name - Required. The resource name for this
[CaPool][google.cloud.security.privateca.v1.CaPool] in the format
`projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> deleteCaPoolAsync(DeleteCaPoolRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCaPoolRequest request =
DeleteCaPoolRequest.newBuilder()
.setName(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setRequestId("requestId693933066")
.setIgnoreDependentResources(true)
.build();
certificateAuthorityServiceClient.deleteCaPoolAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteCaPoolRequest,com.google.protobuf.Empty,OperationMetadata> deleteCaPoolOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCaPoolRequest request =
DeleteCaPoolRequest.newBuilder()
.setName(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setRequestId("requestId693933066")
.setIgnoreDependentResources(true)
.build();
OperationFuture<Empty, OperationMetadata> future =
certificateAuthorityServiceClient.deleteCaPoolOperationCallable().futureCall(request);
// Do something.
future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteCaPoolRequest,com.google.longrunning.Operation> deleteCaPoolCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCaPoolRequest request =
DeleteCaPoolRequest.newBuilder()
.setName(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setRequestId("requestId693933066")
.setIgnoreDependentResources(true)
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient.deleteCaPoolCallable().futureCall(request);
// Do something.
future.get();
}
public final FetchCaCertsResponse fetchCaCerts(CaPoolName caPool)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CaPoolName caPool = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]");
FetchCaCertsResponse response = certificateAuthorityServiceClient.fetchCaCerts(caPool);
}
caPool - Required. The resource name for the
[CaPool][google.cloud.security.privateca.v1.CaPool] in the format
`projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final FetchCaCertsResponse fetchCaCerts(String caPool)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String caPool = CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString();
FetchCaCertsResponse response = certificateAuthorityServiceClient.fetchCaCerts(caPool);
}
caPool - Required. The resource name for the
[CaPool][google.cloud.security.privateca.v1.CaPool] in the format
`projects/*/locations/*/caPools/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final FetchCaCertsResponse fetchCaCerts(FetchCaCertsRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
FetchCaCertsRequest request =
FetchCaCertsRequest.newBuilder()
.setCaPool(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setRequestId("requestId693933066")
.build();
FetchCaCertsResponse response = certificateAuthorityServiceClient.fetchCaCerts(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<FetchCaCertsRequest,FetchCaCertsResponse> fetchCaCertsCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
FetchCaCertsRequest request =
FetchCaCertsRequest.newBuilder()
.setCaPool(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setRequestId("requestId693933066")
.build();
ApiFuture<FetchCaCertsResponse> future =
certificateAuthorityServiceClient.fetchCaCertsCallable().futureCall(request);
// Do something.
FetchCaCertsResponse response = future.get();
}
public final CertificateRevocationList getCertificateRevocationList(CertificateRevocationListName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateRevocationListName name =
CertificateRevocationListName.of(
"[PROJECT]",
"[LOCATION]",
"[CA_POOL]",
"[CERTIFICATE_AUTHORITY]",
"[CERTIFICATE_REVOCATION_LIST]");
CertificateRevocationList response =
certificateAuthorityServiceClient.getCertificateRevocationList(name);
}
name - Required. The
[name][google.cloud.security.privateca.v1.CertificateRevocationList.name] of the
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList]
to get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateRevocationList getCertificateRevocationList(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateRevocationListName.of(
"[PROJECT]",
"[LOCATION]",
"[CA_POOL]",
"[CERTIFICATE_AUTHORITY]",
"[CERTIFICATE_REVOCATION_LIST]")
.toString();
CertificateRevocationList response =
certificateAuthorityServiceClient.getCertificateRevocationList(name);
}
name - Required. The
[name][google.cloud.security.privateca.v1.CertificateRevocationList.name] of the
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList]
to get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateRevocationList getCertificateRevocationList(GetCertificateRevocationListRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateRevocationListRequest request =
GetCertificateRevocationListRequest.newBuilder()
.setName(
CertificateRevocationListName.of(
"[PROJECT]",
"[LOCATION]",
"[CA_POOL]",
"[CERTIFICATE_AUTHORITY]",
"[CERTIFICATE_REVOCATION_LIST]")
.toString())
.build();
CertificateRevocationList response =
certificateAuthorityServiceClient.getCertificateRevocationList(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetCertificateRevocationListRequest,CertificateRevocationList> getCertificateRevocationListCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateRevocationListRequest request =
GetCertificateRevocationListRequest.newBuilder()
.setName(
CertificateRevocationListName.of(
"[PROJECT]",
"[LOCATION]",
"[CA_POOL]",
"[CERTIFICATE_AUTHORITY]",
"[CERTIFICATE_REVOCATION_LIST]")
.toString())
.build();
ApiFuture<CertificateRevocationList> future =
certificateAuthorityServiceClient
.getCertificateRevocationListCallable()
.futureCall(request);
// Do something.
CertificateRevocationList response = future.get();
}
public final CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse listCertificateRevocationLists(CertificateAuthorityName parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateAuthorityName parent =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]");
for (CertificateRevocationList element :
certificateAuthorityServiceClient.listCertificateRevocationLists(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList],
in the format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse listCertificateRevocationLists(String parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent =
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString();
for (CertificateRevocationList element :
certificateAuthorityServiceClient.listCertificateRevocationLists(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[CertificateRevocationLists][google.cloud.security.privateca.v1.CertificateRevocationList],
in the format `projects/*/locations/*/caPools/*/certificateAuthorities/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse listCertificateRevocationLists(ListCertificateRevocationListsRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateRevocationListsRequest request =
ListCertificateRevocationListsRequest.newBuilder()
.setParent(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
for (CertificateRevocationList element :
certificateAuthorityServiceClient.listCertificateRevocationLists(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListCertificateRevocationListsRequest,CertificateAuthorityServiceClient.ListCertificateRevocationListsPagedResponse> listCertificateRevocationListsPagedCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateRevocationListsRequest request =
ListCertificateRevocationListsRequest.newBuilder()
.setParent(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<CertificateRevocationList> future =
certificateAuthorityServiceClient
.listCertificateRevocationListsPagedCallable()
.futureCall(request);
// Do something.
for (CertificateRevocationList element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListCertificateRevocationListsRequest,ListCertificateRevocationListsResponse> listCertificateRevocationListsCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateRevocationListsRequest request =
ListCertificateRevocationListsRequest.newBuilder()
.setParent(
CertificateAuthorityName.of(
"[PROJECT]", "[LOCATION]", "[CA_POOL]", "[CERTIFICATE_AUTHORITY]")
.toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListCertificateRevocationListsResponse response =
certificateAuthorityServiceClient
.listCertificateRevocationListsCallable()
.call(request);
for (CertificateRevocationList element : response.getCertificateRevocationListsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateRevocationList,OperationMetadata> updateCertificateRevocationListAsync(CertificateRevocationList certificateRevocationList, com.google.protobuf.FieldMask updateMask)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateRevocationList certificateRevocationList =
CertificateRevocationList.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
CertificateRevocationList response =
certificateAuthorityServiceClient
.updateCertificateRevocationListAsync(certificateRevocationList, updateMask)
.get();
}
certificateRevocationList - Required.
[CertificateRevocationList][google.cloud.security.privateca.v1.CertificateRevocationList]
with updated values.updateMask - Required. A list of fields to be updated in this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateRevocationList,OperationMetadata> updateCertificateRevocationListAsync(UpdateCertificateRevocationListRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateRevocationListRequest request =
UpdateCertificateRevocationListRequest.newBuilder()
.setCertificateRevocationList(CertificateRevocationList.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CertificateRevocationList response =
certificateAuthorityServiceClient.updateCertificateRevocationListAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UpdateCertificateRevocationListRequest,CertificateRevocationList,OperationMetadata> updateCertificateRevocationListOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateRevocationListRequest request =
UpdateCertificateRevocationListRequest.newBuilder()
.setCertificateRevocationList(CertificateRevocationList.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateRevocationList, OperationMetadata> future =
certificateAuthorityServiceClient
.updateCertificateRevocationListOperationCallable()
.futureCall(request);
// Do something.
CertificateRevocationList response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UpdateCertificateRevocationListRequest,com.google.longrunning.Operation> updateCertificateRevocationListCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateRevocationListRequest request =
UpdateCertificateRevocationListRequest.newBuilder()
.setCertificateRevocationList(CertificateRevocationList.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient
.updateCertificateRevocationListCallable()
.futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> createCertificateTemplateAsync(LocationName parent, CertificateTemplate certificateTemplate, String certificateTemplateId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
CertificateTemplate certificateTemplate = CertificateTemplate.newBuilder().build();
String certificateTemplateId = "certificateTemplateId1920134188";
CertificateTemplate response =
certificateAuthorityServiceClient
.createCertificateTemplateAsync(parent, certificateTemplate, certificateTemplateId)
.get();
}
parent - Required. The resource name of the location associated with the
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate], in the
format `projects/*/locations/*`.certificateTemplate - Required. A
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] with initial
field values.certificateTemplateId - Required. It must be unique within a location and match the
regular expression `[a-zA-Z0-9_-]{1,63}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> createCertificateTemplateAsync(String parent, CertificateTemplate certificateTemplate, String certificateTemplateId)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
CertificateTemplate certificateTemplate = CertificateTemplate.newBuilder().build();
String certificateTemplateId = "certificateTemplateId1920134188";
CertificateTemplate response =
certificateAuthorityServiceClient
.createCertificateTemplateAsync(parent, certificateTemplate, certificateTemplateId)
.get();
}
parent - Required. The resource name of the location associated with the
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate], in the
format `projects/*/locations/*`.certificateTemplate - Required. A
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] with initial
field values.certificateTemplateId - Required. It must be unique within a location and match the
regular expression `[a-zA-Z0-9_-]{1,63}`com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> createCertificateTemplateAsync(CreateCertificateTemplateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateTemplateRequest request =
CreateCertificateTemplateRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setCertificateTemplateId("certificateTemplateId1920134188")
.setCertificateTemplate(CertificateTemplate.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CertificateTemplate response =
certificateAuthorityServiceClient.createCertificateTemplateAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<CreateCertificateTemplateRequest,CertificateTemplate,OperationMetadata> createCertificateTemplateOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateTemplateRequest request =
CreateCertificateTemplateRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setCertificateTemplateId("certificateTemplateId1920134188")
.setCertificateTemplate(CertificateTemplate.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateTemplate, OperationMetadata> future =
certificateAuthorityServiceClient
.createCertificateTemplateOperationCallable()
.futureCall(request);
// Do something.
CertificateTemplate response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<CreateCertificateTemplateRequest,com.google.longrunning.Operation> createCertificateTemplateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CreateCertificateTemplateRequest request =
CreateCertificateTemplateRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setCertificateTemplateId("certificateTemplateId1920134188")
.setCertificateTemplate(CertificateTemplate.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient.createCertificateTemplateCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> deleteCertificateTemplateAsync(CertificateTemplateName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateTemplateName name =
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]");
certificateAuthorityServiceClient.deleteCertificateTemplateAsync(name).get();
}
name - Required. The resource name for this
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in the format
`projects/*/locations/*/certificateTemplates/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> deleteCertificateTemplateAsync(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]")
.toString();
certificateAuthorityServiceClient.deleteCertificateTemplateAsync(name).get();
}
name - Required. The resource name for this
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] in the format
`projects/*/locations/*/certificateTemplates/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<com.google.protobuf.Empty,OperationMetadata> deleteCertificateTemplateAsync(DeleteCertificateTemplateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCertificateTemplateRequest request =
DeleteCertificateTemplateRequest.newBuilder()
.setName(
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]")
.toString())
.setRequestId("requestId693933066")
.build();
certificateAuthorityServiceClient.deleteCertificateTemplateAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeleteCertificateTemplateRequest,com.google.protobuf.Empty,OperationMetadata> deleteCertificateTemplateOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCertificateTemplateRequest request =
DeleteCertificateTemplateRequest.newBuilder()
.setName(
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]")
.toString())
.setRequestId("requestId693933066")
.build();
OperationFuture<Empty, OperationMetadata> future =
certificateAuthorityServiceClient
.deleteCertificateTemplateOperationCallable()
.futureCall(request);
// Do something.
future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeleteCertificateTemplateRequest,com.google.longrunning.Operation> deleteCertificateTemplateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
DeleteCertificateTemplateRequest request =
DeleteCertificateTemplateRequest.newBuilder()
.setName(
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]")
.toString())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient.deleteCertificateTemplateCallable().futureCall(request);
// Do something.
future.get();
}
public final CertificateTemplate getCertificateTemplate(CertificateTemplateName name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateTemplateName name =
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]");
CertificateTemplate response = certificateAuthorityServiceClient.getCertificateTemplate(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.CertificateTemplate.name]
of the [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] to
get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateTemplate getCertificateTemplate(String name)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String name =
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]")
.toString();
CertificateTemplate response = certificateAuthorityServiceClient.getCertificateTemplate(name);
}
name - Required. The [name][google.cloud.security.privateca.v1.CertificateTemplate.name]
of the [CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] to
get.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateTemplate getCertificateTemplate(GetCertificateTemplateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateTemplateRequest request =
GetCertificateTemplateRequest.newBuilder()
.setName(
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]")
.toString())
.build();
CertificateTemplate response =
certificateAuthorityServiceClient.getCertificateTemplate(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetCertificateTemplateRequest,CertificateTemplate> getCertificateTemplateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetCertificateTemplateRequest request =
GetCertificateTemplateRequest.newBuilder()
.setName(
CertificateTemplateName.of("[PROJECT]", "[LOCATION]", "[CERTIFICATE_TEMPLATE]")
.toString())
.build();
ApiFuture<CertificateTemplate> future =
certificateAuthorityServiceClient.getCertificateTemplateCallable().futureCall(request);
// Do something.
CertificateTemplate response = future.get();
}
public final CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse listCertificateTemplates(LocationName parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (CertificateTemplate element :
certificateAuthorityServiceClient.listCertificateTemplates(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate], in the
format `projects/*/locations/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse listCertificateTemplates(String parent)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (CertificateTemplate element :
certificateAuthorityServiceClient.listCertificateTemplates(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The resource name of the location associated with the
[CertificateTemplates][google.cloud.security.privateca.v1.CertificateTemplate], in the
format `projects/*/locations/*`.com.google.api.gax.rpc.ApiException - if the remote call failspublic final CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse listCertificateTemplates(ListCertificateTemplatesRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateTemplatesRequest request =
ListCertificateTemplatesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
for (CertificateTemplate element :
certificateAuthorityServiceClient.listCertificateTemplates(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListCertificateTemplatesRequest,CertificateAuthorityServiceClient.ListCertificateTemplatesPagedResponse> listCertificateTemplatesPagedCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateTemplatesRequest request =
ListCertificateTemplatesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<CertificateTemplate> future =
certificateAuthorityServiceClient
.listCertificateTemplatesPagedCallable()
.futureCall(request);
// Do something.
for (CertificateTemplate element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListCertificateTemplatesRequest,ListCertificateTemplatesResponse> listCertificateTemplatesCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListCertificateTemplatesRequest request =
ListCertificateTemplatesRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListCertificateTemplatesResponse response =
certificateAuthorityServiceClient.listCertificateTemplatesCallable().call(request);
for (CertificateTemplate element : response.getCertificateTemplatesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> updateCertificateTemplateAsync(CertificateTemplate certificateTemplate, com.google.protobuf.FieldMask updateMask)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
CertificateTemplate certificateTemplate = CertificateTemplate.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
CertificateTemplate response =
certificateAuthorityServiceClient
.updateCertificateTemplateAsync(certificateTemplate, updateMask)
.get();
}
certificateTemplate - Required.
[CertificateTemplate][google.cloud.security.privateca.v1.CertificateTemplate] with updated
values.updateMask - Required. A list of fields to be updated in this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<CertificateTemplate,OperationMetadata> updateCertificateTemplateAsync(UpdateCertificateTemplateRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateTemplateRequest request =
UpdateCertificateTemplateRequest.newBuilder()
.setCertificateTemplate(CertificateTemplate.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
CertificateTemplate response =
certificateAuthorityServiceClient.updateCertificateTemplateAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<UpdateCertificateTemplateRequest,CertificateTemplate,OperationMetadata> updateCertificateTemplateOperationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateTemplateRequest request =
UpdateCertificateTemplateRequest.newBuilder()
.setCertificateTemplate(CertificateTemplate.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<CertificateTemplate, OperationMetadata> future =
certificateAuthorityServiceClient
.updateCertificateTemplateOperationCallable()
.futureCall(request);
// Do something.
CertificateTemplate response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<UpdateCertificateTemplateRequest,com.google.longrunning.Operation> updateCertificateTemplateCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
UpdateCertificateTemplateRequest request =
UpdateCertificateTemplateRequest.newBuilder()
.setCertificateTemplate(CertificateTemplate.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
certificateAuthorityServiceClient.updateCertificateTemplateCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final CertificateAuthorityServiceClient.ListLocationsPagedResponse listLocations(com.google.cloud.location.ListLocationsRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Location element :
certificateAuthorityServiceClient.listLocations(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,CertificateAuthorityServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Location> future =
certificateAuthorityServiceClient.listLocationsPagedCallable().futureCall(request);
// Do something.
for (Location element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse> listLocationsCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
ListLocationsRequest request =
ListLocationsRequest.newBuilder()
.setName("name3373707")
.setFilter("filter-1274492040")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListLocationsResponse response =
certificateAuthorityServiceClient.listLocationsCallable().call(request);
for (Location element : response.getLocationsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.cloud.location.Location getLocation(com.google.cloud.location.GetLocationRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = certificateAuthorityServiceClient.getLocation(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location> getLocationCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
ApiFuture<Location> future =
certificateAuthorityServiceClient.getLocationCallable().futureCall(request);
// Do something.
Location response = future.get();
}
public final com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request)
Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = certificateAuthorityServiceClient.setIamPolicy(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> setIamPolicyCallable()
Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED`errors.
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future =
certificateAuthorityServiceClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request)
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = certificateAuthorityServiceClient.getIamPolicy(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> getIamPolicyCallable()
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future =
certificateAuthorityServiceClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
public final com.google.iam.v1.TestIamPermissionsResponse testIamPermissions(com.google.iam.v1.TestIamPermissionsRequest request)
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response =
certificateAuthorityServiceClient.testIamPermissions(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> testIamPermissionsCallable()
Note: This operation is designed to be used for buildingpermission-aware UIs and command-line tools, not for authorizationchecking. This operation may "fail open" without warning.
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 (CertificateAuthorityServiceClient certificateAuthorityServiceClient =
CertificateAuthorityServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(CaPoolName.of("[PROJECT]", "[LOCATION]", "[CA_POOL]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
certificateAuthorityServiceClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponse response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2023 Google LLC. All rights reserved.