use of com.google.cloud.bigquery.connection.v1.ConnectionName in project java-bigqueryconnection by googleapis.
the class ConnectionServiceClientTest method getConnectionExceptionTest.
@Test
public void getConnectionExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
mockConnectionService.addException(exception);
try {
ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
client.getConnection(name);
Assert.fail("No exception raised");
} catch (InvalidArgumentException e) {
// Expected exception.
}
}
use of com.google.cloud.bigquery.connection.v1.ConnectionName in project java-bigqueryconnection by googleapis.
the class ConnectionServiceClientTest method getConnectionTest.
@Test
public void getConnectionTest() throws Exception {
Connection expectedResponse = Connection.newBuilder().setName(ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]").toString()).setFriendlyName("friendlyName461933014").setDescription("description-1724546052").setCreationTime(1932333101).setLastModifiedTime(-671513446).setHasCredential(true).build();
mockConnectionService.addResponse(expectedResponse);
ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
Connection actualResponse = client.getConnection(name);
Assert.assertEquals(expectedResponse, actualResponse);
List<AbstractMessage> actualRequests = mockConnectionService.getRequests();
Assert.assertEquals(1, actualRequests.size());
GetConnectionRequest actualRequest = ((GetConnectionRequest) actualRequests.get(0));
Assert.assertEquals(name.toString(), actualRequest.getName());
Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
use of com.google.cloud.bigquery.connection.v1.ConnectionName in project java-bigqueryconnection by googleapis.
the class UpdateConnection method updateConnection.
public static void updateConnection(String projectId, String location, String connectionId, Connection connection) throws IOException {
try (ConnectionServiceClient client = ConnectionServiceClient.create()) {
ConnectionName name = ConnectionName.of(projectId, location, connectionId);
FieldMask updateMask = FieldMaskUtil.fromString("description");
UpdateConnectionRequest request = UpdateConnectionRequest.newBuilder().setName(name.toString()).setConnection(connection).setUpdateMask(updateMask).build();
Connection response = client.updateConnection(request);
System.out.println("Connection updated successfully :" + response.getDescription());
}
}
use of com.google.cloud.bigquery.connection.v1.ConnectionName in project java-spring-boot-2021 by hocyadav.
the class GoogleBigQueryImpl method getConnection.
public static void getConnection(String projectId, String location, String connectionId) throws IOException {
try (ConnectionServiceClient client = ConnectionServiceClient.create()) {
ConnectionName name = ConnectionName.of(projectId, location, connectionId);
GetConnectionRequest request = GetConnectionRequest.newBuilder().setName(name.toString()).build();
Connection response = client.getConnection(request);
System.out.println("Connection info retrieved successfully :" + response.getName());
}
}
use of com.google.cloud.bigquery.connection.v1.ConnectionName in project java-bigqueryconnection by googleapis.
the class ConnectionServiceClientTest method deleteConnectionExceptionTest.
@Test
public void deleteConnectionExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
mockConnectionService.addException(exception);
try {
ConnectionName name = ConnectionName.of("[PROJECT]", "[LOCATION]", "[CONNECTION]");
client.deleteConnection(name);
Assert.fail("No exception raised");
} catch (InvalidArgumentException e) {
// Expected exception.
}
}
Aggregations