- 2.53.0 (latest)
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.6
- 2.4.0
- 2.2.4
- 2.1.11
public class ConnectionServiceClient implements BackgroundResource
Service Description: Manages external data source connections and credentials.
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 for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Connection connection = Connection.newBuilder().build();
String connectionId = "connectionId1923106969";
Connection response =
connectionServiceClient.createConnection(parent, connection, connectionId);
}
Note: close() needs to be called on the ConnectionServiceClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of ConnectionServiceSettings to create(). For example:
To customize credentials:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
ConnectionServiceSettings connectionServiceSettings =
ConnectionServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ConnectionServiceClient connectionServiceClient =
ConnectionServiceClient.create(connectionServiceSettings);
To customize the endpoint:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
ConnectionServiceSettings connectionServiceSettings =
ConnectionServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
ConnectionServiceClient connectionServiceClient =
ConnectionServiceClient.create(connectionServiceSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
ConnectionServiceSettings connectionServiceSettings =
ConnectionServiceSettings.newBuilder()
.setTransportChannelProvider(
ConnectionServiceSettings.defaultHttpJsonTransportProviderBuilder().build())
.build();
ConnectionServiceClient connectionServiceClient =
ConnectionServiceClient.create(connectionServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Implements
BackgroundResourceStatic Methods
create()
public static final ConnectionServiceClient create()
Constructs an instance of ConnectionServiceClient with default settings.
Type | Description |
ConnectionServiceClient |
Type | Description |
IOException |
create(ConnectionServiceSettings settings)
public static final ConnectionServiceClient create(ConnectionServiceSettings settings)
Constructs an instance of ConnectionServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Name | Description |
settings | ConnectionServiceSettings |
Type | Description |
ConnectionServiceClient |
Type | Description |
IOException |
create(ConnectionServiceStub stub)
public static final ConnectionServiceClient create(ConnectionServiceStub stub)
Constructs an instance of ConnectionServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(ConnectionServiceSettings).
Name | Description |
stub | ConnectionServiceStub |
Type | Description |
ConnectionServiceClient |
Constructors
ConnectionServiceClient(ConnectionServiceSettings settings)
protected ConnectionServiceClient(ConnectionServiceSettings settings)
Constructs an instance of ConnectionServiceClient, 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.
Name | Description |
settings | ConnectionServiceSettings |
ConnectionServiceClient(ConnectionServiceStub stub)
protected ConnectionServiceClient(ConnectionServiceStub stub)
Name | Description |
stub | ConnectionServiceStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Name | Description |
duration | long |
unit | TimeUnit |
Type | Description |
boolean |
Type | Description |
InterruptedException |
close()
public final void close()
createConnection(CreateConnectionRequest request)
public final Connection createConnection(CreateConnectionRequest request)
Creates a new connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
CreateConnectionRequest request =
CreateConnectionRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setConnectionId("connectionId1923106969")
.setConnection(Connection.newBuilder().build())
.build();
Connection response = connectionServiceClient.createConnection(request);
}
Name | Description |
request | CreateConnectionRequest The request object containing all of the parameters for the API call. |
Type | Description |
Connection |
createConnection(LocationName parent, Connection connection, String connectionId)
public final Connection createConnection(LocationName parent, Connection connection, String connectionId)
Creates a new connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Connection connection = Connection.newBuilder().build();
String connectionId = "connectionId1923106969";
Connection response =
connectionServiceClient.createConnection(parent, connection, connectionId);
}
Name | Description |
parent | LocationName Required. Parent resource name. Must be in the format
|
connection | Connection Required. Connection to create. |
connectionId | String Optional. Connection id that should be assigned to the created connection. |
Type | Description |
Connection |
createConnection(String parent, Connection connection, String connectionId)
public final Connection createConnection(String parent, Connection connection, String connectionId)
Creates a new connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
Connection connection = Connection.newBuilder().build();
String connectionId = "connectionId1923106969";
Connection response =
connectionServiceClient.createConnection(parent, connection, connectionId);
}
Name | Description |
parent | String Required. Parent resource name. Must be in the format
|
connection | Connection Required. Connection to create. |
connectionId | String Optional. Connection id that should be assigned to the created connection. |
Type | Description |
Connection |
createConnectionCallable()
public final UnaryCallable<CreateConnectionRequest,Connection> createConnectionCallable()
Creates a new connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
CreateConnectionRequest request =
CreateConnectionRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setConnectionId("connectionId1923106969")
.setConnection(Connection.newBuilder().build())
.build();
ApiFuture<Connection> future =
connectionServiceClient.createConnectionCallable().futureCall(request);
// Do something.
Connection response = future.get();
}
Type | Description |
UnaryCallable<CreateConnectionRequest,Connection> |
deleteConnection(ConnectionName name)
public final void deleteConnection(ConnectionName name)
Deletes connection and associated credential.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
connectionServiceClient.deleteConnection(name);
}
Name | Description |
name | ConnectionName Required. Name of the deleted connection, for example:
|
deleteConnection(DeleteConnectionRequest request)
public final void deleteConnection(DeleteConnectionRequest request)
Deletes connection and associated credential.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
DeleteConnectionRequest request =
DeleteConnectionRequest.newBuilder()
.setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.build();
connectionServiceClient.deleteConnection(request);
}
Name | Description |
request | DeleteConnectionRequest The request object containing all of the parameters for the API call. |
deleteConnection(String name)
public final void deleteConnection(String name)
Deletes connection and associated credential.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
connectionServiceClient.deleteConnection(name);
}
Name | Description |
name | String Required. Name of the deleted connection, for example:
|
deleteConnectionCallable()
public final UnaryCallable<DeleteConnectionRequest,Empty> deleteConnectionCallable()
Deletes connection and associated credential.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
DeleteConnectionRequest request =
DeleteConnectionRequest.newBuilder()
.setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.build();
ApiFuture<Empty> future =
connectionServiceClient.deleteConnectionCallable().futureCall(request);
// Do something.
future.get();
}
Type | Description |
UnaryCallable<DeleteConnectionRequest,Empty> |
getConnection(ConnectionName name)
public final Connection getConnection(ConnectionName name)
Returns specified connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
Connection response = connectionServiceClient.getConnection(name);
}
Name | Description |
name | ConnectionName Required. Name of the requested connection, for example:
|
Type | Description |
Connection |
getConnection(GetConnectionRequest request)
public final Connection getConnection(GetConnectionRequest request)
Returns specified connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
GetConnectionRequest request =
GetConnectionRequest.newBuilder()
.setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.build();
Connection response = connectionServiceClient.getConnection(request);
}
Name | Description |
request | GetConnectionRequest The request object containing all of the parameters for the API call. |
Type | Description |
Connection |
getConnection(String name)
public final Connection getConnection(String name)
Returns specified connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
Connection response = connectionServiceClient.getConnection(name);
}
Name | Description |
name | String Required. Name of the requested connection, for example:
|
Type | Description |
Connection |
getConnectionCallable()
public final UnaryCallable<GetConnectionRequest,Connection> getConnectionCallable()
Returns specified connection.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
GetConnectionRequest request =
GetConnectionRequest.newBuilder()
.setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.build();
ApiFuture<Connection> future =
connectionServiceClient.getConnectionCallable().futureCall(request);
// Do something.
Connection response = future.get();
}
Type | Description |
UnaryCallable<GetConnectionRequest,Connection> |
getIamPolicy(ResourceName resource, GetPolicyOptions options)
public final Policy getIamPolicy(ResourceName resource, GetPolicyOptions options)
Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ResourceName resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
GetPolicyOptions options = GetPolicyOptions.newBuilder().build();
Policy response = connectionServiceClient.getIamPolicy(resource, options);
}
Name | Description |
resource | com.google.api.resourcenames.ResourceName REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field. |
options | com.google.iam.v1.GetPolicyOptions OPTIONAL: A |
Type | Description |
com.google.iam.v1.Policy |
getIamPolicy(GetIamPolicyRequest request)
public final Policy getIamPolicy(GetIamPolicyRequest request)
Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
Policy response = connectionServiceClient.getIamPolicy(request);
}
Name | Description |
request | com.google.iam.v1.GetIamPolicyRequest The request object containing all of the parameters for the API call. |
Type | Description |
com.google.iam.v1.Policy |
getIamPolicy(String resource, GetPolicyOptions options)
public final Policy getIamPolicy(String resource, GetPolicyOptions options)
Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
GetPolicyOptions options = GetPolicyOptions.newBuilder().build();
Policy response = connectionServiceClient.getIamPolicy(resource, options);
}
Name | Description |
resource | String REQUIRED: The resource for which the policy is being requested. See the operation documentation for the appropriate value for this field. |
options | com.google.iam.v1.GetPolicyOptions OPTIONAL: A |
Type | Description |
com.google.iam.v1.Policy |
getIamPolicyCallable()
public final UnaryCallable<GetIamPolicyRequest,Policy> getIamPolicyCallable()
Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
GetIamPolicyRequest request =
GetIamPolicyRequest.newBuilder()
.setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.setOptions(GetPolicyOptions.newBuilder().build())
.build();
ApiFuture<Policy> future = connectionServiceClient.getIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
Type | Description |
UnaryCallable<com.google.iam.v1.GetIamPolicyRequest,com.google.iam.v1.Policy> |
getSettings()
public final ConnectionServiceSettings getSettings()
Type | Description |
ConnectionServiceSettings |
getStub()
public ConnectionServiceStub getStub()
Type | Description |
ConnectionServiceStub |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
listConnections(ListConnectionsRequest request)
public final ConnectionServiceClient.ListConnectionsPagedResponse listConnections(ListConnectionsRequest request)
Returns a list of connections in the given project.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ListConnectionsRequest request =
ListConnectionsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (Connection element : connectionServiceClient.listConnections(request).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
request | ListConnectionsRequest The request object containing all of the parameters for the API call. |
Type | Description |
ConnectionServiceClient.ListConnectionsPagedResponse |
listConnections(LocationName parent)
public final ConnectionServiceClient.ListConnectionsPagedResponse listConnections(LocationName parent)
Returns a list of connections in the given project.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
for (Connection element : connectionServiceClient.listConnections(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | LocationName Required. Parent resource name. Must be in the form:
|
Type | Description |
ConnectionServiceClient.ListConnectionsPagedResponse |
listConnections(String parent)
public final ConnectionServiceClient.ListConnectionsPagedResponse listConnections(String parent)
Returns a list of connections in the given project.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String parent = LocationName.of("[PROJECT]", "[LOCATION]").toString();
for (Connection element : connectionServiceClient.listConnections(parent).iterateAll()) {
// doThingsWith(element);
}
}
Name | Description |
parent | String Required. Parent resource name. Must be in the form:
|
Type | Description |
ConnectionServiceClient.ListConnectionsPagedResponse |
listConnectionsCallable()
public final UnaryCallable<ListConnectionsRequest,ListConnectionsResponse> listConnectionsCallable()
Returns a list of connections in the given project.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ListConnectionsRequest request =
ListConnectionsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListConnectionsResponse response =
connectionServiceClient.listConnectionsCallable().call(request);
for (Connection element : response.getConnectionsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Type | Description |
UnaryCallable<ListConnectionsRequest,ListConnectionsResponse> |
listConnectionsPagedCallable()
public final UnaryCallable<ListConnectionsRequest,ConnectionServiceClient.ListConnectionsPagedResponse> listConnectionsPagedCallable()
Returns a list of connections in the given project.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ListConnectionsRequest request =
ListConnectionsRequest.newBuilder()
.setParent(LocationName.of("[PROJECT]", "[LOCATION]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<Connection> future =
connectionServiceClient.listConnectionsPagedCallable().futureCall(request);
// Do something.
for (Connection element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Type | Description |
UnaryCallable<ListConnectionsRequest,ListConnectionsPagedResponse> |
setIamPolicy(ResourceName resource, Policy policy)
public final Policy setIamPolicy(ResourceName resource, Policy policy)
Sets the access control policy on the specified resource. Replaces any existing policy.
Can return NOT_FOUND
, INVALID_ARGUMENT
, and PERMISSION_DENIED
errors.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ResourceName resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
Policy policy = Policy.newBuilder().build();
Policy response = connectionServiceClient.setIamPolicy(resource, policy);
}
Name | Description |
resource | com.google.api.resourcenames.ResourceName REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field. |
policy | com.google.iam.v1.Policy REQUIRED: The complete policy to be applied to the |
Type | Description |
com.google.iam.v1.Policy |
setIamPolicy(SetIamPolicyRequest request)
public final Policy setIamPolicy(SetIamPolicyRequest request)
Sets the access control policy on the specified resource. Replaces any existing policy.
Can return NOT_FOUND
, INVALID_ARGUMENT
, and PERMISSION_DENIED
errors.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Policy response = connectionServiceClient.setIamPolicy(request);
}
Name | Description |
request | com.google.iam.v1.SetIamPolicyRequest The request object containing all of the parameters for the API call. |
Type | Description |
com.google.iam.v1.Policy |
setIamPolicy(String resource, Policy policy)
public final Policy setIamPolicy(String resource, Policy policy)
Sets the access control policy on the specified resource. Replaces any existing policy.
Can return NOT_FOUND
, INVALID_ARGUMENT
, and PERMISSION_DENIED
errors.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
Policy policy = Policy.newBuilder().build();
Policy response = connectionServiceClient.setIamPolicy(resource, policy);
}
Name | Description |
resource | String REQUIRED: The resource for which the policy is being specified. See the operation documentation for the appropriate value for this field. |
policy | com.google.iam.v1.Policy REQUIRED: The complete policy to be applied to the |
Type | Description |
com.google.iam.v1.Policy |
setIamPolicyCallable()
public final UnaryCallable<SetIamPolicyRequest,Policy> setIamPolicyCallable()
Sets the access control policy on the specified resource. Replaces any existing policy.
Can return NOT_FOUND
, INVALID_ARGUMENT
, and PERMISSION_DENIED
errors.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
SetIamPolicyRequest request =
SetIamPolicyRequest.newBuilder()
.setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.setPolicy(Policy.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Policy> future = connectionServiceClient.setIamPolicyCallable().futureCall(request);
// Do something.
Policy response = future.get();
}
Type | Description |
UnaryCallable<com.google.iam.v1.SetIamPolicyRequest,com.google.iam.v1.Policy> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
testIamPermissions(ResourceName resource, List<String> permissions)
public final TestIamPermissionsResponse testIamPermissions(ResourceName resource, List<String> permissions)
Returns permissions that a caller has on the specified resource. If the resource does not
exist, this will return an empty set of permissions, not a NOT_FOUND
error.
Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ResourceName resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
List<String> permissions = new ArrayList<>();
TestIamPermissionsResponse response =
connectionServiceClient.testIamPermissions(resource, permissions);
}
Name | Description |
resource | com.google.api.resourcenames.ResourceName REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field. |
permissions | List<String> The set of permissions to check for the |
Type | Description |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(TestIamPermissionsRequest request)
public final TestIamPermissionsResponse testIamPermissions(TestIamPermissionsRequest request)
Returns permissions that a caller has on the specified resource. If the resource does not
exist, this will return an empty set of permissions, not a NOT_FOUND
error.
Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
TestIamPermissionsResponse response = connectionServiceClient.testIamPermissions(request);
}
Name | Description |
request | com.google.iam.v1.TestIamPermissionsRequest The request object containing all of the parameters for the API call. |
Type | Description |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissions(String resource, List<String> permissions)
public final TestIamPermissionsResponse testIamPermissions(String resource, List<String> permissions)
Returns permissions that a caller has on the specified resource. If the resource does not
exist, this will return an empty set of permissions, not a NOT_FOUND
error.
Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String resource = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
List<String> permissions = new ArrayList<>();
TestIamPermissionsResponse response =
connectionServiceClient.testIamPermissions(resource, permissions);
}
Name | Description |
resource | String REQUIRED: The resource for which the policy detail is being requested. See the operation documentation for the appropriate value for this field. |
permissions | List<String> The set of permissions to check for the |
Type | Description |
com.google.iam.v1.TestIamPermissionsResponse |
testIamPermissionsCallable()
public final UnaryCallable<TestIamPermissionsRequest,TestIamPermissionsResponse> testIamPermissionsCallable()
Returns permissions that a caller has on the specified resource. If the resource does not
exist, this will return an empty set of permissions, not a NOT_FOUND
error.
Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
TestIamPermissionsRequest request =
TestIamPermissionsRequest.newBuilder()
.setResource(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.addAllPermissions(new ArrayList<String>())
.build();
ApiFuture<TestIamPermissionsResponse> future =
connectionServiceClient.testIamPermissionsCallable().futureCall(request);
// Do something.
TestIamPermissionsResponse response = future.get();
}
Type | Description |
UnaryCallable<com.google.iam.v1.TestIamPermissionsRequest,com.google.iam.v1.TestIamPermissionsResponse> |
updateConnection(ConnectionName name, Connection connection, FieldMask updateMask)
public final Connection updateConnection(ConnectionName name, Connection connection, FieldMask updateMask)
Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
Connection connection = Connection.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Connection response = connectionServiceClient.updateConnection(name, connection, updateMask);
}
Name | Description |
name | ConnectionName Required. Name of the connection to update, for example:
|
connection | Connection Required. Connection containing the updated fields. |
updateMask | FieldMask Required. Update mask for the connection fields to be updated. |
Type | Description |
Connection |
updateConnection(UpdateConnectionRequest request)
public final Connection updateConnection(UpdateConnectionRequest request)
Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
UpdateConnectionRequest request =
UpdateConnectionRequest.newBuilder()
.setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.setConnection(Connection.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
Connection response = connectionServiceClient.updateConnection(request);
}
Name | Description |
request | UpdateConnectionRequest The request object containing all of the parameters for the API call. |
Type | Description |
Connection |
updateConnection(String name, Connection connection, FieldMask updateMask)
public final Connection updateConnection(String name, Connection connection, FieldMask updateMask)
Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
String name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString();
Connection connection = Connection.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Connection response = connectionServiceClient.updateConnection(name, connection, updateMask);
}
Name | Description |
name | String Required. Name of the connection to update, for example:
|
connection | Connection Required. Connection containing the updated fields. |
updateMask | FieldMask Required. Update mask for the connection fields to be updated. |
Type | Description |
Connection |
updateConnectionCallable()
public final UnaryCallable<UpdateConnectionRequest,Connection> updateConnectionCallable()
Updates the specified connection. For security reasons, also resets credential if connection properties are in the update field mask.
Sample code:
// This snippet has been automatically generated for illustrative purposes only.
// It may require modifications to work in your environment.
try (ConnectionServiceClient connectionServiceClient = ConnectionServiceClient.create()) {
UpdateConnectionRequest request =
UpdateConnectionRequest.newBuilder()
.setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString())
.setConnection(Connection.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<Connection> future =
connectionServiceClient.updateConnectionCallable().futureCall(request);
// Do something.
Connection response = future.get();
}
Type | Description |
UnaryCallable<UpdateConnectionRequest,Connection> |