use of com.google.api.services.healthcare.v1.model.Hl7V2NotificationConfig in project java-docs-samples by GoogleCloudPlatform.
the class Hl7v2StorePatch method patchHl7v2Store.
public static void patchHl7v2Store(String hl7v2StoreName, String pubsubTopic) throws IOException {
// String hl7v2StoreName =
// String.format(
// HL7v2_NAME, "your-project-id", "your-region-id", "your-dataset-id", "your-hl7v2-id");
// String pubsubTopic = "projects/your-project-id/topics/your-pubsub-topic";
// Initialize the client, which will be used to interact with the service.
CloudHealthcare client = createClient();
// Fetch the initial state of the HL7v2 store.
Hl7V2Stores.Get getRequest = client.projects().locations().datasets().hl7V2Stores().get(hl7v2StoreName);
Hl7V2Store store = getRequest.execute();
Hl7V2NotificationConfig notificationConfig = new Hl7V2NotificationConfig();
notificationConfig.setPubsubTopic(pubsubTopic);
List<Hl7V2NotificationConfig> notificationConfigs = new ArrayList<Hl7V2NotificationConfig>();
notificationConfigs.add(notificationConfig);
// Update the Hl7v2Store fields as needed as needed. For a full list of Hl7v2Store fields, see:
// https://cloud.google.com/healthcare/docs/reference/rest/v1/projects.locations.datasets.hl7V2Store#Hl7v2Store
store.setNotificationConfigs(notificationConfigs);
// Create request and configure any parameters.
Hl7V2Stores.Patch request = client.projects().locations().datasets().hl7V2Stores().patch(hl7v2StoreName, store).setUpdateMask("notificationConfigs");
// Execute the request and process the results.
store = request.execute();
System.out.println("HL7v2 store patched: \n" + store.toPrettyString());
}
Aggregations