hl7v2.proto 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Copyright 2022 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.healthcare.logging;
  16. import "google/rpc/status.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/healthcare/logging;logging";
  18. option java_package = "com.google.cloud.healthcare.logging";
  19. // A log entry for a HL7v2 import long-running operation.
  20. message ImportHl7V2LogEntry {
  21. // The source in Cloud Storage (for example,
  22. // `gs://{bucket_id}/{path/to/file}`).
  23. string source = 1;
  24. // The error code and message.
  25. google.rpc.Status error = 2;
  26. }
  27. // A log entry for a HL7v2 store Pub/Sub notification.
  28. message Hl7V2NotificationLogEntry {
  29. // The HL7v2 message being created (for example,
  30. // `projects/{projectId}/locations/{locationId}/datasets/{datasetId}/hl7V2Stores/{hl7v2StoreId}/messages/{hl7v2MessageId}`).
  31. string resource_name = 1;
  32. // The Pub/Sub topic that the notification is published on.
  33. string pubsub_topic = 2;
  34. // The error code and message.
  35. google.rpc.Status error = 3;
  36. }