common.proto 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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.networkconnectivity.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/protobuf/timestamp.proto";
  19. option csharp_namespace = "Google.Cloud.NetworkConnectivity.V1";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/networkconnectivity/v1;networkconnectivity";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "CommonProto";
  23. option java_package = "com.google.cloud.networkconnectivity.v1";
  24. option php_namespace = "Google\\Cloud\\NetworkConnectivity\\V1";
  25. option ruby_package = "Google::Cloud::NetworkConnectivity::V1";
  26. option (google.api.resource_definition) = {
  27. type: "compute.googleapis.com/InterconnectAttachment"
  28. pattern: "projects/{project}/regions/{region}/interconnectAttachments/{resource_id}"
  29. };
  30. option (google.api.resource_definition) = {
  31. type: "compute.googleapis.com/Network"
  32. pattern: "projects/{project}/global/networks/{resource_id}"
  33. };
  34. // Represents the metadata of the long-running operation.
  35. message OperationMetadata {
  36. // Output only. The time the operation was created.
  37. google.protobuf.Timestamp create_time = 1 [(google.api.field_behavior) = OUTPUT_ONLY];
  38. // Output only. The time the operation finished running.
  39. google.protobuf.Timestamp end_time = 2 [(google.api.field_behavior) = OUTPUT_ONLY];
  40. // Output only. Server-defined resource path for the target of the operation.
  41. string target = 3 [(google.api.field_behavior) = OUTPUT_ONLY];
  42. // Output only. Name of the verb executed by the operation.
  43. string verb = 4 [(google.api.field_behavior) = OUTPUT_ONLY];
  44. // Output only. Human-readable status of the operation, if any.
  45. string status_message = 5 [(google.api.field_behavior) = OUTPUT_ONLY];
  46. // Output only. Identifies whether the user has requested cancellation
  47. // of the operation. Operations that have been cancelled successfully
  48. // have [Operation.error][] value with a [google.rpc.Status.code][google.rpc.Status.code] of 1,
  49. // corresponding to `Code.CANCELLED`.
  50. bool requested_cancellation = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  51. // Output only. API version used to start the operation.
  52. string api_version = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  53. }