operations.proto 2.4 KB

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