use of com.google.cloud.tasks.v2.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());
}
}
Aggregations