Search in sources :

Example 91 with LocationName

use of com.google.cloud.automl.v1beta1.LocationName in project java-cloudbuild by googleapis.

the class CloudBuildClientTest method listWorkerPoolsExceptionTest.

@Test
public void listWorkerPoolsExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
    mockCloudBuild.addException(exception);
    try {
        LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
        client.listWorkerPools(parent);
        Assert.fail("No exception raised");
    } catch (InvalidArgumentException e) {
    // Expected exception.
    }
}
Also used : InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) StatusRuntimeException(io.grpc.StatusRuntimeException) LocationName(com.google.cloudbuild.v1.LocationName) Test(org.junit.Test)

Example 92 with LocationName

use of com.google.cloud.automl.v1beta1.LocationName in project java-cloudbuild by googleapis.

the class CloudBuildClientTest method createWorkerPoolExceptionTest.

@Test
public void createWorkerPoolExceptionTest() throws Exception {
    StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
    mockCloudBuild.addException(exception);
    try {
        LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
        WorkerPool workerPool = WorkerPool.newBuilder().build();
        String workerPoolId = "workerPoolId-46320779";
        client.createWorkerPoolAsync(parent, workerPool, workerPoolId).get();
        Assert.fail("No exception raised");
    } catch (ExecutionException e) {
        Assert.assertEquals(InvalidArgumentException.class, e.getCause().getClass());
        InvalidArgumentException apiException = ((InvalidArgumentException) e.getCause());
        Assert.assertEquals(StatusCode.Code.INVALID_ARGUMENT, apiException.getStatusCode().getCode());
    }
}
Also used : WorkerPool(com.google.cloudbuild.v1.WorkerPool) InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) StatusRuntimeException(io.grpc.StatusRuntimeException) ExecutionException(java.util.concurrent.ExecutionException) LocationName(com.google.cloudbuild.v1.LocationName) Test(org.junit.Test)

Example 93 with LocationName

use of com.google.cloud.automl.v1beta1.LocationName in project java-servicedirectory by googleapis.

the class NamespacesCreate method createNamespace.

// Create a new namespace.
public static void createNamespace(String projectId, String locationId, String namespaceId) throws IOException {
    // the "close" method on the client to safely clean up any remaining background resources.
    try (RegistrationServiceClient client = RegistrationServiceClient.create()) {
        // The project and location to create the namespace in.
        LocationName parent = LocationName.of(projectId, locationId);
        // The namespace object to create. Here, we use the default instance.
        Namespace namespace = Namespace.newBuilder().build();
        // Send the request to create the namespace.
        Namespace createdNamespace = client.createNamespace(parent, namespace, namespaceId);
        // Process the response.
        System.out.println("Created Namespace: " + createdNamespace.getName());
    }
}
Also used : Namespace(com.google.cloud.servicedirectory.v1.Namespace) RegistrationServiceClient(com.google.cloud.servicedirectory.v1.RegistrationServiceClient) LocationName(com.google.cloud.servicedirectory.v1.LocationName)

Aggregations

Test (org.junit.Test)30 LocationName (com.google.privacy.dlp.v2.LocationName)22 OrganizationLocationName (com.google.privacy.dlp.v2.OrganizationLocationName)22 AutoMlClient (com.google.cloud.automl.v1.AutoMlClient)17 LocationName (com.google.cloud.automl.v1.LocationName)17 AbstractMessage (com.google.protobuf.AbstractMessage)16 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)13 LocationName (com.google.cloud.translate.v3.LocationName)13 TranslationServiceClient (com.google.cloud.translate.v3.TranslationServiceClient)13 StatusRuntimeException (io.grpc.StatusRuntimeException)13 OperationMetadata (com.google.cloud.automl.v1.OperationMetadata)12 AutoMlClient (com.google.cloud.automl.v1beta1.AutoMlClient)12 LocationName (com.google.cloud.automl.v1beta1.LocationName)12 LocationName (com.google.cloud.translate.v3beta1.LocationName)10 TranslationServiceClient (com.google.cloud.translate.v3beta1.TranslationServiceClient)10 Model (com.google.cloud.automl.v1.Model)8 Dataset (com.google.cloud.automl.v1.Dataset)7 Dataset (com.google.cloud.automl.v1beta1.Dataset)6 GcsSource (com.google.cloud.translate.v3.GcsSource)5 ArrayList (java.util.ArrayList)5