operations.proto 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // Copyright 2021 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.orchestration.airflow.service.v1;
  16. import "google/protobuf/timestamp.proto";
  17. option go_package = "google.golang.org/genproto/googleapis/cloud/orchestration/airflow/service/v1;service";
  18. option java_multiple_files = true;
  19. option java_outer_classname = "OperationsProto";
  20. option java_package = "com.google.cloud.orchestration.airflow.service.v1";
  21. // Metadata describing an operation.
  22. message OperationMetadata {
  23. // An enum describing the overall state of an operation.
  24. enum State {
  25. option allow_alias = true;
  26. // Unused.
  27. STATE_UNSPECIFIED = 0;
  28. // The operation has been created but is not yet started.
  29. PENDING = 1;
  30. // The operation is underway.
  31. RUNNING = 2;
  32. // The operation completed successfully.
  33. SUCCEEDED = 3;
  34. SUCCESSFUL = 3;
  35. // The operation is no longer running but did not succeed.
  36. FAILED = 4;
  37. }
  38. // Type of longrunning operation.
  39. enum Type {
  40. // Unused.
  41. TYPE_UNSPECIFIED = 0;
  42. // A resource creation operation.
  43. CREATE = 1;
  44. // A resource deletion operation.
  45. DELETE = 2;
  46. // A resource update operation.
  47. UPDATE = 3;
  48. // A resource check operation.
  49. CHECK = 4;
  50. }
  51. // Output only. The current operation state.
  52. State state = 1;
  53. // Output only. The type of operation being performed.
  54. Type operation_type = 2;
  55. // Output only. The resource being operated on, as a [relative resource name](
  56. // /apis/design/resource_names#relative_resource_name).
  57. string resource = 3;
  58. // Output only. The UUID of the resource being operated on.
  59. string resource_uuid = 4;
  60. // Output only. The time the operation was submitted to the server.
  61. google.protobuf.Timestamp create_time = 5;
  62. // Output only. The time when the operation terminated, regardless of its success.
  63. // This field is unset if the operation is still ongoing.
  64. google.protobuf.Timestamp end_time = 6;
  65. }