namespace.proto 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // Copyright 2020 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.v1;
  16. import "google/api/field_behavior.proto";
  17. import "google/api/resource.proto";
  18. option cc_enable_arenas = true;
  19. option csharp_namespace = "Google.Cloud.ServiceDirectory.V1";
  20. option go_package = "google.golang.org/genproto/googleapis/cloud/servicedirectory/v1;servicedirectory";
  21. option java_multiple_files = true;
  22. option java_outer_classname = "NamespaceProto";
  23. option java_package = "com.google.cloud.servicedirectory.v1";
  24. option php_namespace = "Google\\Cloud\\ServiceDirectory\\V1";
  25. option ruby_package = "Google::Cloud::ServiceDirectory::V1";
  26. // A container for [services][google.cloud.servicedirectory.v1.Service].
  27. // Namespaces allow administrators to group services together and define
  28. // permissions for a collection of services.
  29. message Namespace {
  30. option (google.api.resource) = {
  31. type: "servicedirectory.googleapis.com/Namespace"
  32. pattern: "projects/{project}/locations/{location}/namespaces/{namespace}"
  33. };
  34. // Immutable. The resource name for the namespace in the format
  35. // `projects/*/locations/*/namespaces/*`.
  36. string name = 1 [(google.api.field_behavior) = IMMUTABLE];
  37. // Optional. Resource labels associated with this Namespace.
  38. // No more than 64 user labels can be associated with a given resource. Label
  39. // keys and values can be no longer than 63 characters.
  40. map<string, string> labels = 2 [(google.api.field_behavior) = OPTIONAL];
  41. }