@@ -81,7 +81,28 @@ class Domain(proto.Message):
81
81
"""
82
82
83
83
class State (proto .Enum ):
84
- r"""Represents the different states of a managed domain."""
84
+ r"""Represents the different states of a managed domain.
85
+
86
+ Values:
87
+ STATE_UNSPECIFIED (0):
88
+ Not set.
89
+ CREATING (1):
90
+ The domain is being created.
91
+ READY (2):
92
+ The domain has been created and is fully
93
+ usable.
94
+ UPDATING (3):
95
+ The domain's configuration is being updated.
96
+ DELETING (4):
97
+ The domain is being deleted.
98
+ REPAIRING (5):
99
+ The domain is being repaired and may be unusable. Details
100
+ can be found in the ``status_message`` field.
101
+ PERFORMING_MAINTENANCE (6):
102
+ The domain is undergoing maintenance.
103
+ UNAVAILABLE (7):
104
+ The domain is not serving requests.
105
+ """
85
106
STATE_UNSPECIFIED = 0
86
107
CREATING = 1
87
108
READY = 2
@@ -192,7 +213,22 @@ class Trust(proto.Message):
192
213
"""
193
214
194
215
class State (proto .Enum ):
195
- r"""Represents the different states of a domain trust."""
216
+ r"""Represents the different states of a domain trust.
217
+
218
+ Values:
219
+ STATE_UNSPECIFIED (0):
220
+ Not set.
221
+ CREATING (1):
222
+ The domain trust is being created.
223
+ UPDATING (2):
224
+ The domain trust is being updated.
225
+ DELETING (3):
226
+ The domain trust is being deleted.
227
+ CONNECTED (4):
228
+ The domain trust is connected.
229
+ DISCONNECTED (5):
230
+ The domain trust is disconnected.
231
+ """
196
232
STATE_UNSPECIFIED = 0
197
233
CREATING = 1
198
234
UPDATING = 2
@@ -201,7 +237,16 @@ class State(proto.Enum):
201
237
DISCONNECTED = 5
202
238
203
239
class TrustType (proto .Enum ):
204
- r"""Represents the different inter-forest trust types."""
240
+ r"""Represents the different inter-forest trust types.
241
+
242
+ Values:
243
+ TRUST_TYPE_UNSPECIFIED (0):
244
+ Not set.
245
+ FOREST (1):
246
+ The forest trust.
247
+ EXTERNAL (2):
248
+ The external domain trust.
249
+ """
205
250
TRUST_TYPE_UNSPECIFIED = 0
206
251
FOREST = 1
207
252
EXTERNAL = 2
@@ -210,6 +255,19 @@ class TrustDirection(proto.Enum):
210
255
r"""Represents the direction of trust. See
211
256
`System.DirectoryServices.ActiveDirectory.TrustDirection <https://docs.microsoft.com/en-us/dotnet/api/system.directoryservices.activedirectory.trustdirection?view=netframework-4.7.2>`__
212
257
for more information.
258
+
259
+ Values:
260
+ TRUST_DIRECTION_UNSPECIFIED (0):
261
+ Not set.
262
+ INBOUND (1):
263
+ The inbound direction represents the trusting
264
+ side.
265
+ OUTBOUND (2):
266
+ The outboud direction represents the trusted
267
+ side.
268
+ BIDIRECTIONAL (3):
269
+ The bidirectional direction represents the
270
+ trusted / trusting side.
213
271
"""
214
272
TRUST_DIRECTION_UNSPECIFIED = 0
215
273
INBOUND = 1
0 commit comments