Class AppConnectorsServiceClient (0.39.0)

GitHub RepositoryProduct Reference

Service Description: API Overview:

The beyondcorp.googleapis.com service implements the Google Cloud BeyondCorp API.

Data Model:

The AppConnectorsService exposes the following resource:

  • AppConnectors, named as follows: projects/{project_id}/locations/{location_id}/appConnectors/{app_connector_id}.

The AppConnectorsService provides methods to manage (create/read/update/delete) BeyondCorp AppConnectors.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   AppConnectorName name = AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]");
   AppConnector response = appConnectorsServiceClient.getAppConnector(name);
 }
 

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

Methods
MethodDescriptionMethod Variants

ListAppConnectors

Lists AppConnectors in a given project and location.

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

  • listAppConnectors(ListAppConnectorsRequest request)

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

  • listAppConnectors(LocationName parent)

  • listAppConnectors(String parent)

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

  • listAppConnectorsPagedCallable()

  • listAppConnectorsCallable()

GetAppConnector

Gets details of a single AppConnector.

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

  • getAppConnector(GetAppConnectorRequest request)

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

  • getAppConnector(AppConnectorName name)

  • getAppConnector(String name)

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

  • getAppConnectorCallable()

CreateAppConnector

Creates a new AppConnector in a given project and location.

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

  • createAppConnectorAsync(CreateAppConnectorRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • createAppConnectorAsync(LocationName parent, AppConnector appConnector, String appConnectorId)

  • createAppConnectorAsync(String parent, AppConnector appConnector, String appConnectorId)

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

  • createAppConnectorOperationCallable()

  • createAppConnectorCallable()

UpdateAppConnector

Updates the parameters of a single AppConnector.

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

  • updateAppConnectorAsync(UpdateAppConnectorRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • updateAppConnectorAsync(AppConnector appConnector, FieldMask updateMask)

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

  • updateAppConnectorOperationCallable()

  • updateAppConnectorCallable()

DeleteAppConnector

Deletes a single AppConnector.

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

  • deleteAppConnectorAsync(DeleteAppConnectorRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • deleteAppConnectorAsync(AppConnectorName name)

  • deleteAppConnectorAsync(String name)

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

  • deleteAppConnectorOperationCallable()

  • deleteAppConnectorCallable()

ReportStatus

Report status for a given connector.

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

  • reportStatusAsync(ReportStatusRequest request)

Methods that return long-running operations have "Async" method variants that return OperationFuture, which is used to track polling of the service.

  • reportStatusAsync(AppConnectorName appConnector, ResourceInfo resourceInfo)

  • reportStatusAsync(String appConnector, ResourceInfo resourceInfo)

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

  • reportStatusOperationCallable()

  • reportStatusCallable()

ListLocations

Lists information about the supported locations for this service.

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

  • listLocations(ListLocationsRequest request)

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

  • listLocationsPagedCallable()

  • listLocationsCallable()

GetLocation

Gets information about a location.

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

  • getLocation(GetLocationRequest request)

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

  • getLocationCallable()

SetIamPolicy

Sets the access control policy on the specified resource. Replacesany existing policy.

Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIEDerrors.

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

  • setIamPolicy(SetIamPolicyRequest request)

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

  • setIamPolicyCallable()

GetIamPolicy

Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

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

  • getIamPolicy(GetIamPolicyRequest request)

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

  • getIamPolicyCallable()

TestIamPermissions

Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a NOT_FOUND error.

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.

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

  • testIamPermissions(TestIamPermissionsRequest request)

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

  • testIamPermissionsCallable()

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 AppConnectorsServiceSettings 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
 AppConnectorsServiceSettings appConnectorsServiceSettings =
     AppConnectorsServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create(appConnectorsServiceSettings);
 

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
 AppConnectorsServiceSettings appConnectorsServiceSettings =
     AppConnectorsServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create(appConnectorsServiceSettings);
 

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

Inheritance

java.lang.Object > AppConnectorsServiceClient

Static Methods

create()

public static final AppConnectorsServiceClient create()

Constructs an instance of AppConnectorsServiceClient with default settings.

Returns
TypeDescription
AppConnectorsServiceClient
Exceptions
TypeDescription
IOException

create(AppConnectorsServiceSettings settings)

public static final AppConnectorsServiceClient create(AppConnectorsServiceSettings settings)

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

Parameter
NameDescription
settingsAppConnectorsServiceSettings
Returns
TypeDescription
AppConnectorsServiceClient
Exceptions
TypeDescription
IOException

create(AppConnectorsServiceStub stub)

public static final AppConnectorsServiceClient create(AppConnectorsServiceStub stub)

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

Parameter
NameDescription
stubAppConnectorsServiceStub
Returns
TypeDescription
AppConnectorsServiceClient

Constructors

AppConnectorsServiceClient(AppConnectorsServiceSettings settings)

protected AppConnectorsServiceClient(AppConnectorsServiceSettings settings)

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

Parameter
NameDescription
settingsAppConnectorsServiceSettings

AppConnectorsServiceClient(AppConnectorsServiceStub stub)

protected AppConnectorsServiceClient(AppConnectorsServiceStub stub)
Parameter
NameDescription
stubAppConnectorsServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
NameDescription
durationlong
unitTimeUnit
Returns
TypeDescription
boolean
Exceptions
TypeDescription
InterruptedException

close()

public final void close()

createAppConnectorAsync(CreateAppConnectorRequest request)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> createAppConnectorAsync(CreateAppConnectorRequest request)

Creates a new AppConnector in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   CreateAppConnectorRequest request =
       CreateAppConnectorRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setAppConnectorId("appConnectorId374103399")
           .setAppConnector(AppConnector.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   AppConnector response = appConnectorsServiceClient.createAppConnectorAsync(request).get();
 }
 
Parameter
NameDescription
requestCreateAppConnectorRequest

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

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

createAppConnectorAsync(LocationName parent, AppConnector appConnector, String appConnectorId)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> createAppConnectorAsync(LocationName parent, AppConnector appConnector, String appConnectorId)

Creates a new AppConnector in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
   AppConnector appConnector = AppConnector.newBuilder().build();
   String appConnectorId = "appConnectorId374103399";
   AppConnector response =
       appConnectorsServiceClient
           .createAppConnectorAsync(parent, appConnector, appConnectorId)
           .get();
 }
 
Parameters
NameDescription
parentLocationName

Required. The resource project name of the AppConnector location using the form: projects/{project_id}/locations/{location_id}

appConnectorAppConnector

Required. A BeyondCorp AppConnector resource.

appConnectorIdString

Optional. User-settable AppConnector resource ID.

* Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

createAppConnectorAsync(String parent, AppConnector appConnector, String appConnectorId)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> createAppConnectorAsync(String parent, AppConnector appConnector, String appConnectorId)

Creates a new AppConnector in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
   AppConnector appConnector = AppConnector.newBuilder().build();
   String appConnectorId = "appConnectorId374103399";
   AppConnector response =
       appConnectorsServiceClient
           .createAppConnectorAsync(parent, appConnector, appConnectorId)
           .get();
 }
 
Parameters
NameDescription
parentString

Required. The resource project name of the AppConnector location using the form: projects/{project_id}/locations/{location_id}

appConnectorAppConnector

Required. A BeyondCorp AppConnector resource.

appConnectorIdString

Optional. User-settable AppConnector resource ID.

* Must start with a letter. * Must contain between 4-63 characters from /a-z-/. * Must end with a number or a letter.

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

createAppConnectorCallable()

public final UnaryCallable<CreateAppConnectorRequest,Operation> createAppConnectorCallable()

Creates a new AppConnector in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   CreateAppConnectorRequest request =
       CreateAppConnectorRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setAppConnectorId("appConnectorId374103399")
           .setAppConnector(AppConnector.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   ApiFuture<Operation> future =
       appConnectorsServiceClient.createAppConnectorCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<CreateAppConnectorRequest,Operation>

createAppConnectorOperationCallable()

public final OperationCallable<CreateAppConnectorRequest,AppConnector,AppConnectorOperationMetadata> createAppConnectorOperationCallable()

Creates a new AppConnector in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   CreateAppConnectorRequest request =
       CreateAppConnectorRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setAppConnectorId("appConnectorId374103399")
           .setAppConnector(AppConnector.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   OperationFuture<AppConnector, AppConnectorOperationMetadata> future =
       appConnectorsServiceClient.createAppConnectorOperationCallable().futureCall(request);
   // Do something.
   AppConnector response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<CreateAppConnectorRequest,AppConnector,AppConnectorOperationMetadata>

deleteAppConnectorAsync(AppConnectorName name)

public final OperationFuture<Empty,AppConnectorOperationMetadata> deleteAppConnectorAsync(AppConnectorName name)

Deletes a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   AppConnectorName name = AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]");
   appConnectorsServiceClient.deleteAppConnectorAsync(name).get();
 }
 
Parameter
NameDescription
nameAppConnectorName

Required. BeyondCorp AppConnector name using the form: projects/{project_id}/locations/{location_id}/appConnectors/{app_connector_id}

Returns
TypeDescription
OperationFuture<Empty,AppConnectorOperationMetadata>

deleteAppConnectorAsync(DeleteAppConnectorRequest request)

public final OperationFuture<Empty,AppConnectorOperationMetadata> deleteAppConnectorAsync(DeleteAppConnectorRequest request)

Deletes a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   DeleteAppConnectorRequest request =
       DeleteAppConnectorRequest.newBuilder()
           .setName(AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   appConnectorsServiceClient.deleteAppConnectorAsync(request).get();
 }
 
Parameter
NameDescription
requestDeleteAppConnectorRequest

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

Returns
TypeDescription
OperationFuture<Empty,AppConnectorOperationMetadata>

deleteAppConnectorAsync(String name)

public final OperationFuture<Empty,AppConnectorOperationMetadata> deleteAppConnectorAsync(String name)

Deletes a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   String name = AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString();
   appConnectorsServiceClient.deleteAppConnectorAsync(name).get();
 }
 
Parameter
NameDescription
nameString

Required. BeyondCorp AppConnector name using the form: projects/{project_id}/locations/{location_id}/appConnectors/{app_connector_id}

Returns
TypeDescription
OperationFuture<Empty,AppConnectorOperationMetadata>

deleteAppConnectorCallable()

public final UnaryCallable<DeleteAppConnectorRequest,Operation> deleteAppConnectorCallable()

Deletes a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   DeleteAppConnectorRequest request =
       DeleteAppConnectorRequest.newBuilder()
           .setName(AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   ApiFuture<Operation> future =
       appConnectorsServiceClient.deleteAppConnectorCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
UnaryCallable<DeleteAppConnectorRequest,Operation>

deleteAppConnectorOperationCallable()

public final OperationCallable<DeleteAppConnectorRequest,Empty,AppConnectorOperationMetadata> deleteAppConnectorOperationCallable()

Deletes a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   DeleteAppConnectorRequest request =
       DeleteAppConnectorRequest.newBuilder()
           .setName(AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   OperationFuture<Empty, AppConnectorOperationMetadata> future =
       appConnectorsServiceClient.deleteAppConnectorOperationCallable().futureCall(request);
   // Do something.
   future.get();
 }
 
Returns
TypeDescription
OperationCallable<DeleteAppConnectorRequest,Empty,AppConnectorOperationMetadata>

getAppConnector(AppConnectorName name)

public final AppConnector getAppConnector(AppConnectorName name)

Gets details of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   AppConnectorName name = AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]");
   AppConnector response = appConnectorsServiceClient.getAppConnector(name);
 }
 
Parameter
NameDescription
nameAppConnectorName

Required. BeyondCorp AppConnector name using the form: projects/{project_id}/locations/{location_id}/appConnectors/{app_connector_id}

Returns
TypeDescription
AppConnector

getAppConnector(GetAppConnectorRequest request)

public final AppConnector getAppConnector(GetAppConnectorRequest request)

Gets details of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   GetAppConnectorRequest request =
       GetAppConnectorRequest.newBuilder()
           .setName(AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .build();
   AppConnector response = appConnectorsServiceClient.getAppConnector(request);
 }
 
Parameter
NameDescription
requestGetAppConnectorRequest

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

Returns
TypeDescription
AppConnector

getAppConnector(String name)

public final AppConnector getAppConnector(String name)

Gets details of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   String name = AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString();
   AppConnector response = appConnectorsServiceClient.getAppConnector(name);
 }
 
Parameter
NameDescription
nameString

Required. BeyondCorp AppConnector name using the form: projects/{project_id}/locations/{location_id}/appConnectors/{app_connector_id}

Returns
TypeDescription
AppConnector

getAppConnectorCallable()

public final UnaryCallable<GetAppConnectorRequest,AppConnector> getAppConnectorCallable()

Gets details of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   GetAppConnectorRequest request =
       GetAppConnectorRequest.newBuilder()
           .setName(AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .build();
   ApiFuture<AppConnector> future =
       appConnectorsServiceClient.getAppConnectorCallable().futureCall(request);
   // Do something.
   AppConnector response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<GetAppConnectorRequest,AppConnector>

getIamPolicy(GetIamPolicyRequest request)

public final Policy getIamPolicy(GetIamPolicyRequest request)

Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   GetIamPolicyRequest request =
       GetIamPolicyRequest.newBuilder()
           .setResource(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setOptions(GetPolicyOptions.newBuilder().build())
           .build();
   Policy response = appConnectorsServiceClient.getIamPolicy(request);
 }
 
Parameter
NameDescription
requestcom.google.iam.v1.GetIamPolicyRequest

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

Returns
TypeDescription
com.google.iam.v1.Policy

getIamPolicyCallable()

public final UnaryCallable<GetIamPolicyRequest,Policy> getIamPolicyCallable()

Gets the access control policy for a resource. Returns an empty policyif the resource exists and does not have a policy set.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   GetIamPolicyRequest request =
       GetIamPolicyRequest.newBuilder()
           .setResource(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setOptions(GetPolicyOptions.newBuilder().build())
           .build();
   ApiFuture<Policy> future =
       appConnectorsServiceClient.getIamPolicyCallable().futureCall(request);
   // Do something.
   Policy response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy>

getLocation(GetLocationRequest request)

public final Location getLocation(GetLocationRequest request)

Gets information about a location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   Location response = appConnectorsServiceClient.getLocation(request);
 }
 
Parameter
NameDescription
requestcom.google.cloud.location.GetLocationRequest

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

Returns
TypeDescription
com.google.cloud.location.Location

getLocationCallable()

public final UnaryCallable<GetLocationRequest,Location> getLocationCallable()

Gets information about a location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   ApiFuture<Location> future =
       appConnectorsServiceClient.getLocationCallable().futureCall(request);
   // Do something.
   Location response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<com.google.cloud.location.GetLocationRequest,com.google.cloud.location.Location>

getOperationsClient()

public final OperationsClient getOperationsClient()

Returns the OperationsClient that can be used to query the status of a long-running operation returned by another API method call.

Returns
TypeDescription
OperationsClient

getSettings()

public final AppConnectorsServiceSettings getSettings()
Returns
TypeDescription
AppConnectorsServiceSettings

getStub()

public AppConnectorsServiceStub getStub()
Returns
TypeDescription
AppConnectorsServiceStub

isShutdown()

public boolean isShutdown()
Returns
TypeDescription
boolean

isTerminated()

public boolean isTerminated()
Returns
TypeDescription
boolean

listAppConnectors(ListAppConnectorsRequest request)

public final AppConnectorsServiceClient.ListAppConnectorsPagedResponse listAppConnectors(ListAppConnectorsRequest request)

Lists AppConnectors in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ListAppConnectorsRequest request =
       ListAppConnectorsRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setOrderBy("orderBy-1207110587")
           .build();
   for (AppConnector element :
       appConnectorsServiceClient.listAppConnectors(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestListAppConnectorsRequest

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

Returns
TypeDescription
AppConnectorsServiceClient.ListAppConnectorsPagedResponse

listAppConnectors(LocationName parent)

public final AppConnectorsServiceClient.ListAppConnectorsPagedResponse listAppConnectors(LocationName parent)

Lists AppConnectors in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
   for (AppConnector element :
       appConnectorsServiceClient.listAppConnectors(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentLocationName

Required. The resource name of the AppConnector location using the form: projects/{project_id}/locations/{location_id}

Returns
TypeDescription
AppConnectorsServiceClient.ListAppConnectorsPagedResponse

listAppConnectors(String parent)

public final AppConnectorsServiceClient.ListAppConnectorsPagedResponse listAppConnectors(String parent)

Lists AppConnectors in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
   for (AppConnector element :
       appConnectorsServiceClient.listAppConnectors(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
parentString

Required. The resource name of the AppConnector location using the form: projects/{project_id}/locations/{location_id}

Returns
TypeDescription
AppConnectorsServiceClient.ListAppConnectorsPagedResponse

listAppConnectorsCallable()

public final UnaryCallable<ListAppConnectorsRequest,ListAppConnectorsResponse> listAppConnectorsCallable()

Lists AppConnectors in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ListAppConnectorsRequest request =
       ListAppConnectorsRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setOrderBy("orderBy-1207110587")
           .build();
   while (true) {
     ListAppConnectorsResponse response =
         appConnectorsServiceClient.listAppConnectorsCallable().call(request);
     for (AppConnector element : response.getAppConnectorsList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListAppConnectorsRequest,ListAppConnectorsResponse>

listAppConnectorsPagedCallable()

public final UnaryCallable<ListAppConnectorsRequest,AppConnectorsServiceClient.ListAppConnectorsPagedResponse> listAppConnectorsPagedCallable()

Lists AppConnectors in a given project and location.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ListAppConnectorsRequest request =
       ListAppConnectorsRequest.newBuilder()
           .setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setOrderBy("orderBy-1207110587")
           .build();
   ApiFuture<AppConnector> future =
       appConnectorsServiceClient.listAppConnectorsPagedCallable().futureCall(request);
   // Do something.
   for (AppConnector element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<ListAppConnectorsRequest,ListAppConnectorsPagedResponse>

listLocations(ListLocationsRequest request)

public final AppConnectorsServiceClient.ListLocationsPagedResponse listLocations(ListLocationsRequest request)

Lists information about the supported locations for this service.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   for (Location element : appConnectorsServiceClient.listLocations(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
NameDescription
requestcom.google.cloud.location.ListLocationsRequest

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

Returns
TypeDescription
AppConnectorsServiceClient.ListLocationsPagedResponse

listLocationsCallable()

public final UnaryCallable<ListLocationsRequest,ListLocationsResponse> listLocationsCallable()

Lists information about the supported locations for this service.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   while (true) {
     ListLocationsResponse response =
         appConnectorsServiceClient.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;
     }
   }
 }
 
Returns
TypeDescription
UnaryCallable<com.google.cloud.location.ListLocationsRequest,com.google.cloud.location.ListLocationsResponse>

listLocationsPagedCallable()

public final UnaryCallable<ListLocationsRequest,AppConnectorsServiceClient.ListLocationsPagedResponse> listLocationsPagedCallable()

Lists information about the supported locations for this service.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ListLocationsRequest request =
       ListLocationsRequest.newBuilder()
           .setName("name3373707")
           .setFilter("filter-1274492040")
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .build();
   ApiFuture<Location> future =
       appConnectorsServiceClient.listLocationsPagedCallable().futureCall(request);
   // Do something.
   for (Location element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
TypeDescription
UnaryCallable<com.google.cloud.location.ListLocationsRequest,ListLocationsPagedResponse>

reportStatusAsync(AppConnectorName appConnector, ResourceInfo resourceInfo)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> reportStatusAsync(AppConnectorName appConnector, ResourceInfo resourceInfo)

Report status for a given connector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   AppConnectorName appConnector =
       AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]");
   ResourceInfo resourceInfo = ResourceInfo.newBuilder().build();
   AppConnector response =
       appConnectorsServiceClient.reportStatusAsync(appConnector, resourceInfo).get();
 }
 
Parameters
NameDescription
appConnectorAppConnectorName

Required. BeyondCorp Connector name using the form: projects/{project_id}/locations/{location_id}/connectors/{connector}

resourceInfoResourceInfo

Required. Resource info of the connector.

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

reportStatusAsync(ReportStatusRequest request)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> reportStatusAsync(ReportStatusRequest request)

Report status for a given connector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ReportStatusRequest request =
       ReportStatusRequest.newBuilder()
           .setAppConnector(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setResourceInfo(ResourceInfo.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   AppConnector response = appConnectorsServiceClient.reportStatusAsync(request).get();
 }
 
Parameter
NameDescription
requestReportStatusRequest

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

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

reportStatusAsync(String appConnector, ResourceInfo resourceInfo)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> reportStatusAsync(String appConnector, ResourceInfo resourceInfo)

Report status for a given connector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   String appConnector =
       AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString();
   ResourceInfo resourceInfo = ResourceInfo.newBuilder().build();
   AppConnector response =
       appConnectorsServiceClient.reportStatusAsync(appConnector, resourceInfo).get();
 }
 
Parameters
NameDescription
appConnectorString

Required. BeyondCorp Connector name using the form: projects/{project_id}/locations/{location_id}/connectors/{connector}

resourceInfoResourceInfo

Required. Resource info of the connector.

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

reportStatusCallable()

public final UnaryCallable<ReportStatusRequest,Operation> reportStatusCallable()

Report status for a given connector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ReportStatusRequest request =
       ReportStatusRequest.newBuilder()
           .setAppConnector(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setResourceInfo(ResourceInfo.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   ApiFuture<Operation> future =
       appConnectorsServiceClient.reportStatusCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<ReportStatusRequest,Operation>

reportStatusOperationCallable()

public final OperationCallable<ReportStatusRequest,AppConnector,AppConnectorOperationMetadata> reportStatusOperationCallable()

Report status for a given connector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   ReportStatusRequest request =
       ReportStatusRequest.newBuilder()
           .setAppConnector(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setResourceInfo(ResourceInfo.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   OperationFuture<AppConnector, AppConnectorOperationMetadata> future =
       appConnectorsServiceClient.reportStatusOperationCallable().futureCall(request);
   // Do something.
   AppConnector response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<ReportStatusRequest,AppConnector,AppConnectorOperationMetadata>

setIamPolicy(SetIamPolicyRequest request)

public final Policy setIamPolicy(SetIamPolicyRequest request)

Sets the access control policy on the specified resource. Replacesany existing policy.

Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIEDerrors.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   SetIamPolicyRequest request =
       SetIamPolicyRequest.newBuilder()
           .setResource(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setPolicy(Policy.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   Policy response = appConnectorsServiceClient.setIamPolicy(request);
 }
 
Parameter
NameDescription
requestcom.google.iam.v1.SetIamPolicyRequest

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

Returns
TypeDescription
com.google.iam.v1.Policy

setIamPolicyCallable()

public final UnaryCallable<SetIamPolicyRequest,Policy> setIamPolicyCallable()

Sets the access control policy on the specified resource. Replacesany existing policy.

Can return NOT_FOUND, INVALID_ARGUMENT, and PERMISSION_DENIEDerrors.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   SetIamPolicyRequest request =
       SetIamPolicyRequest.newBuilder()
           .setResource(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .setPolicy(Policy.newBuilder().build())
           .setUpdateMask(FieldMask.newBuilder().build())
           .build();
   ApiFuture<Policy> future =
       appConnectorsServiceClient.setIamPolicyCallable().futureCall(request);
   // Do something.
   Policy response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()

testIamPermissions(TestIamPermissionsRequest request)

public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsRequest request)

Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a NOT_FOUND error.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   TestIamPermissionsRequest request =
       TestIamPermissionsRequest.newBuilder()
           .setResource(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .addAllPermissions(new ArrayList<String>())
           .build();
   TestIamPermissionsResponse response = appConnectorsServiceClient.testIamPermissions(request);
 }
 
Parameter
NameDescription
requestcom.google.iam.v1.TestIamPermissionsRequest

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

Returns
TypeDescription
com.google.iam.v1.TestIamPermissionsResponse

testIamPermissionsCallable()

public final UnaryCallable<TestIamPermissionsRequest,TestIamPermissionsResponse> testIamPermissionsCallable()

Returns permissions that a caller has on the specified resource. If theresource does not exist, this will return an empty set ofpermissions, not a NOT_FOUND error.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   TestIamPermissionsRequest request =
       TestIamPermissionsRequest.newBuilder()
           .setResource(
               AppConnectorName.of("[PROJECT]", "[LOCATION]", "[APP_CONNECTOR]").toString())
           .addAllPermissions(new ArrayList<String>())
           .build();
   ApiFuture<TestIamPermissionsResponse> future =
       appConnectorsServiceClient.testIamPermissionsCallable().futureCall(request);
   // Do something.
   TestIamPermissionsResponse response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse>

updateAppConnectorAsync(AppConnector appConnector, FieldMask updateMask)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> updateAppConnectorAsync(AppConnector appConnector, FieldMask updateMask)

Updates the parameters of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   AppConnector appConnector = AppConnector.newBuilder().build();
   FieldMask updateMask = FieldMask.newBuilder().build();
   AppConnector response =
       appConnectorsServiceClient.updateAppConnectorAsync(appConnector, updateMask).get();
 }
 
Parameters
NameDescription
appConnectorAppConnector

Required. AppConnector message with updated fields. Only supported fields specified in update_mask are updated.

updateMaskFieldMask

Required. Mask of fields to update. At least one path must be supplied in this field. The elements of the repeated paths field may only include these fields from [BeyondCorp.AppConnector]:

  • labels
  • display_name

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

updateAppConnectorAsync(UpdateAppConnectorRequest request)

public final OperationFuture<AppConnector,AppConnectorOperationMetadata> updateAppConnectorAsync(UpdateAppConnectorRequest request)

Updates the parameters of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   UpdateAppConnectorRequest request =
       UpdateAppConnectorRequest.newBuilder()
           .setUpdateMask(FieldMask.newBuilder().build())
           .setAppConnector(AppConnector.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   AppConnector response = appConnectorsServiceClient.updateAppConnectorAsync(request).get();
 }
 
Parameter
NameDescription
requestUpdateAppConnectorRequest

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

Returns
TypeDescription
OperationFuture<AppConnector,AppConnectorOperationMetadata>

updateAppConnectorCallable()

public final UnaryCallable<UpdateAppConnectorRequest,Operation> updateAppConnectorCallable()

Updates the parameters of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   UpdateAppConnectorRequest request =
       UpdateAppConnectorRequest.newBuilder()
           .setUpdateMask(FieldMask.newBuilder().build())
           .setAppConnector(AppConnector.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   ApiFuture<Operation> future =
       appConnectorsServiceClient.updateAppConnectorCallable().futureCall(request);
   // Do something.
   Operation response = future.get();
 }
 
Returns
TypeDescription
UnaryCallable<UpdateAppConnectorRequest,Operation>

updateAppConnectorOperationCallable()

public final OperationCallable<UpdateAppConnectorRequest,AppConnector,AppConnectorOperationMetadata> updateAppConnectorOperationCallable()

Updates the parameters of a single AppConnector.

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 (AppConnectorsServiceClient appConnectorsServiceClient =
     AppConnectorsServiceClient.create()) {
   UpdateAppConnectorRequest request =
       UpdateAppConnectorRequest.newBuilder()
           .setUpdateMask(FieldMask.newBuilder().build())
           .setAppConnector(AppConnector.newBuilder().build())
           .setRequestId("requestId693933066")
           .setValidateOnly(true)
           .build();
   OperationFuture<AppConnector, AppConnectorOperationMetadata> future =
       appConnectorsServiceClient.updateAppConnectorOperationCallable().futureCall(request);
   // Do something.
   AppConnector response = future.get();
 }
 
Returns
TypeDescription
OperationCallable<UpdateAppConnectorRequest,AppConnector,AppConnectorOperationMetadata>