resource.proto 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. // Copyright 2019 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. //
  15. syntax = "proto3";
  16. package google.cloud.managedidentities.v1;
  17. import "google/api/field_behavior.proto";
  18. import "google/api/resource.proto";
  19. import "google/protobuf/timestamp.proto";
  20. option csharp_namespace = "Google.Cloud.ManagedIdentities.V1";
  21. option go_package = "google.golang.org/genproto/googleapis/cloud/managedidentities/v1;managedidentities";
  22. option java_multiple_files = true;
  23. option java_outer_classname = "ResourceProto";
  24. option java_package = "com.google.cloud.managedidentities.v1";
  25. option php_namespace = "Google\\Cloud\\ManagedIdentities\\V1";
  26. option ruby_package = "Google::Cloud::ManagedIdentities::V1";
  27. // Represents a managed Microsoft Active Directory domain.
  28. message Domain {
  29. option (google.api.resource) = {
  30. type: "managedidentities.googleapis.com/Domain"
  31. pattern: "projects/{project}/locations/{location}/domains/{domain}"
  32. };
  33. // Represents the different states of a managed domain.
  34. enum State {
  35. // Not set.
  36. STATE_UNSPECIFIED = 0;
  37. // The domain is being created.
  38. CREATING = 1;
  39. // The domain has been created and is fully usable.
  40. READY = 2;
  41. // The domain's configuration is being updated.
  42. UPDATING = 3;
  43. // The domain is being deleted.
  44. DELETING = 4;
  45. // The domain is being repaired and may be unusable. Details
  46. // can be found in the `status_message` field.
  47. REPAIRING = 5;
  48. // The domain is undergoing maintenance.
  49. PERFORMING_MAINTENANCE = 6;
  50. // The domain is not serving requests.
  51. UNAVAILABLE = 7;
  52. }
  53. // Required. The unique name of the domain using the form:
  54. // `projects/{project_id}/locations/global/domains/{domain_name}`.
  55. string name = 1 [(google.api.field_behavior) = REQUIRED];
  56. // Optional. Resource labels that can contain user-provided metadata.
  57. map<string, string> labels = 2 [(google.api.field_behavior) = OPTIONAL];
  58. // Optional. The full names of the Google Compute Engine
  59. // [networks](/compute/docs/networks-and-firewalls#networks) the domain
  60. // instance is connected to. Networks can be added using UpdateDomain.
  61. // The domain is only available on networks listed in `authorized_networks`.
  62. // If CIDR subnets overlap between networks, domain creation will fail.
  63. repeated string authorized_networks = 3 [(google.api.field_behavior) = OPTIONAL];
  64. // Required. The CIDR range of internal addresses that are reserved for this
  65. // domain. Reserved networks must be /24 or larger. Ranges must be
  66. // unique and non-overlapping with existing subnets in
  67. // [Domain].[authorized_networks].
  68. string reserved_ip_range = 4 [(google.api.field_behavior) = REQUIRED];
  69. // Required. Locations where domain needs to be provisioned.
  70. // [regions][compute/docs/regions-zones/]
  71. // e.g. us-west1 or us-east4
  72. // Service supports up to 4 locations at once. Each location will use a /26
  73. // block.
  74. repeated string locations = 5 [(google.api.field_behavior) = REQUIRED];
  75. // Optional. The name of delegated administrator account used to perform
  76. // Active Directory operations. If not specified, `setupadmin` will be used.
  77. string admin = 6 [(google.api.field_behavior) = OPTIONAL];
  78. // Output only. The fully-qualified domain name of the exposed domain used by
  79. // clients to connect to the service. Similar to what would be chosen for an
  80. // Active Directory set up on an internal network.
  81. string fqdn = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
  82. // Output only. The time the instance was created.
  83. google.protobuf.Timestamp create_time = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  84. // Output only. The last update time.
  85. google.protobuf.Timestamp update_time = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  86. // Output only. The current state of this domain.
  87. State state = 13 [(google.api.field_behavior) = OUTPUT_ONLY];
  88. // Output only. Additional information about the current status of this
  89. // domain, if available.
  90. string status_message = 14 [(google.api.field_behavior) = OUTPUT_ONLY];
  91. // Output only. The current trusts associated with the domain.
  92. repeated Trust trusts = 15 [(google.api.field_behavior) = OUTPUT_ONLY];
  93. }
  94. // Represents a relationship between two domains. This allows a controller in
  95. // one domain to authenticate a user in another domain.
  96. message Trust {
  97. // Represents the different states of a domain trust.
  98. enum State {
  99. // Not set.
  100. STATE_UNSPECIFIED = 0;
  101. // The domain trust is being created.
  102. CREATING = 1;
  103. // The domain trust is being updated.
  104. UPDATING = 2;
  105. // The domain trust is being deleted.
  106. DELETING = 3;
  107. // The domain trust is connected.
  108. CONNECTED = 4;
  109. // The domain trust is disconnected.
  110. DISCONNECTED = 5;
  111. }
  112. // Represents the different inter-forest trust types.
  113. enum TrustType {
  114. // Not set.
  115. TRUST_TYPE_UNSPECIFIED = 0;
  116. // The forest trust.
  117. FOREST = 1;
  118. // The external domain trust.
  119. EXTERNAL = 2;
  120. }
  121. // Represents the direction of trust.
  122. // See
  123. // [System.DirectoryServices.ActiveDirectory.TrustDirection](https://docs.microsoft.com/en-us/dotnet/api/system.directoryservices.activedirectory.trustdirection?view=netframework-4.7.2)
  124. // for more information.
  125. enum TrustDirection {
  126. // Not set.
  127. TRUST_DIRECTION_UNSPECIFIED = 0;
  128. // The inbound direction represents the trusting side.
  129. INBOUND = 1;
  130. // The outboud direction represents the trusted side.
  131. OUTBOUND = 2;
  132. // The bidirectional direction represents the trusted / trusting side.
  133. BIDIRECTIONAL = 3;
  134. }
  135. // Required. The fully qualified target domain name which will be in trust with the
  136. // current domain.
  137. string target_domain_name = 1 [(google.api.field_behavior) = REQUIRED];
  138. // Required. The type of trust represented by the trust resource.
  139. TrustType trust_type = 2 [(google.api.field_behavior) = REQUIRED];
  140. // Required. The trust direction, which decides if the current domain is trusted,
  141. // trusting, or both.
  142. TrustDirection trust_direction = 3 [(google.api.field_behavior) = REQUIRED];
  143. // Optional. The trust authentication type, which decides whether the trusted side has
  144. // forest/domain wide access or selective access to an approved set of
  145. // resources.
  146. bool selective_authentication = 4 [(google.api.field_behavior) = OPTIONAL];
  147. // Required. The target DNS server IP addresses which can resolve the remote domain
  148. // involved in the trust.
  149. repeated string target_dns_ip_addresses = 5 [(google.api.field_behavior) = REQUIRED];
  150. // Required. The trust secret used for the handshake with the target domain. This will
  151. // not be stored.
  152. string trust_handshake_secret = 6 [(google.api.field_behavior) = REQUIRED];
  153. // Output only. The time the instance was created.
  154. google.protobuf.Timestamp create_time = 7 [(google.api.field_behavior) = OUTPUT_ONLY];
  155. // Output only. The last update time.
  156. google.protobuf.Timestamp update_time = 8 [(google.api.field_behavior) = OUTPUT_ONLY];
  157. // Output only. The current state of the trust.
  158. State state = 9 [(google.api.field_behavior) = OUTPUT_ONLY];
  159. // Output only. Additional information about the current state of the trust, if available.
  160. string state_description = 11 [(google.api.field_behavior) = OUTPUT_ONLY];
  161. // Output only. The last heartbeat time when the trust was known to be connected.
  162. google.protobuf.Timestamp last_trust_heartbeat_time = 12 [(google.api.field_behavior) = OUTPUT_ONLY];
  163. }