endpoint.proto 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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.servicedirectory.v1beta1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. import "google/protobuf/timestamp.proto";
  19. option cc_enable_arenas = true;
  20. option csharp_namespace = "Google.Cloud.ServiceDirectory.V1Beta1";
  21. option go_package = "google.golang.org/genproto/googleapis/cloud/servicedirectory/v1beta1;servicedirectory";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "EndpointProto";
  24. option java_package = "com.google.cloud.servicedirectory.v1beta1";
  25. option php_namespace = "Google\\Cloud\\ServiceDirectory\\V1beta1";
  26. option ruby_package = "Google::Cloud::ServiceDirectory::V1beta1";
  27. option (google.api.resource_definition) = {
  28. type: "servicedirectory.googleapis.com/Network"
  29. pattern: "projects/{project}/locations/global/networks/{network}"
  30. };
  31. // An individual endpoint that provides a
  32. // [service][google.cloud.servicedirectory.v1beta1.Service]. The service must
  33. // already exist to create an endpoint.
  34. message Endpoint {
  35. option (google.api.resource) = {
  36. type: "servicedirectory.googleapis.com/Endpoint"
  37. pattern: "projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}/endpoints/{endpoint}"
  38. };
  39. // Immutable. The resource name for the endpoint in the format
  40. // `projects/*/locations/*/namespaces/*/services/*/endpoints/*`.
  41. string name = 1 [(google.api.field_behavior) = IMMUTABLE];
  42. // Optional. An IPv4 or IPv6 address. Service Directory rejects bad addresses like:
  43. //
  44. // * `8.8.8`
  45. // * `8.8.8.8:53`
  46. // * `test:bad:address`
  47. // * `[::1]`
  48. // * `[::1]:8080`
  49. //
  50. // Limited to 45 characters.
  51. string address = 2 [(google.api.field_behavior) = OPTIONAL];
  52. // Optional. Service Directory rejects values outside of `[0, 65535]`.
  53. int32 port = 3 [(google.api.field_behavior) = OPTIONAL];
  54. // Optional. Metadata for the endpoint. This data can be consumed by service
  55. // clients.
  56. //
  57. // Restrictions:
  58. //
  59. // * The entire metadata dictionary may contain up to 512 characters,
  60. // spread accoss all key-value pairs. Metadata that goes beyond this
  61. // limit are rejected
  62. // * Valid metadata keys have two segments: an optional prefix and name,
  63. // separated by a slash (/). The name segment is required and must be 63
  64. // characters or less, beginning and ending with an alphanumeric character
  65. // ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and
  66. // alphanumerics between. The prefix is optional. If specified, the prefix
  67. // must be a DNS subdomain: a series of DNS labels separated by dots (.),
  68. // not longer than 253 characters in total, followed by a slash (/).
  69. // Metadata that fails to meet these requirements are rejected
  70. // * The `(*.)google.com/` and `(*.)googleapis.com/` prefixes are reserved
  71. // for system metadata managed by Service Directory. If the user tries
  72. // to write to these keyspaces, those entries are silently ignored by
  73. // the system
  74. //
  75. // Note: This field is equivalent to the `annotations` field in the v1 API.
  76. // They have the same syntax and read/write to the same location in Service
  77. // Directory.
  78. map<string, string> metadata = 4 [(google.api.field_behavior) = OPTIONAL];
  79. // Immutable. The Google Compute Engine network (VPC) of the endpoint in the format
  80. // `projects/<project number>/locations/global/networks/*`.
  81. //
  82. // The project must be specified by project number (project id is rejected).
  83. // Incorrectly formatted networks are rejected, but no other validation
  84. // is performed on this field (ex. network or project existence, reachability,
  85. // or permissions).
  86. string network = 5 [
  87. (google.api.field_behavior) = IMMUTABLE,
  88. (google.api.resource_reference) = {
  89. type: "servicedirectory.googleapis.com/Network"
  90. }
  91. ];
  92. // Output only. The timestamp when the endpoint was created.
  93. google.protobuf.Timestamp create_time = 6 [(google.api.field_behavior) = OUTPUT_ONLY];
  94. // Output only. The timestamp when the endpoint was last updated.
  95. google.protobuf.Timestamp update_time = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  96. }