dicom.proto 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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 DICOM import long-running operation.
  20. message ImportDicomLogEntry {
  21. // The source file, in the format `gs://{bucket-id}/{path/to/file}`.
  22. string source = 1;
  23. // The error code and message.
  24. google.rpc.Status error = 2;
  25. }
  26. // A log entry for a DICOM export long-running operation.
  27. message ExportDicomLogEntry {
  28. // The DICOM resource being exported.
  29. string resource_name = 1;
  30. // The error code and message.
  31. google.rpc.Status error = 2;
  32. }
  33. // A log entry for a DICOM store Pub/Sub notification.
  34. message DicomNotificationLogEntry {
  35. // The DICOM resource being created.
  36. string resource_name = 1;
  37. // The Pub/Sub topic that the notification is published on.
  38. string pubsub_topic = 2;
  39. // The error code and message.
  40. google.rpc.Status error = 3;
  41. }
  42. // A log entry for a DICOM streaming export notification.
  43. message DicomStreamLogEntry {
  44. // The DICOM resource being exported.
  45. string resource_name = 1;
  46. // The destination in BigQuery, in the format
  47. // `bq://{projectId}.{bqDatasetId}.{bqTableId}`.
  48. string destination = 2;
  49. // The error code and message.
  50. google.rpc.Status error = 3;
  51. }