|
96 | 96 |
|
97 | 97 |
|
98 | 98 | class ContentType(proto.Enum):
|
99 |
| - r"""Asset content type.""" |
| 99 | + r"""Asset content type. |
| 100 | +
|
| 101 | + Values: |
| 102 | + CONTENT_TYPE_UNSPECIFIED (0): |
| 103 | + Unspecified content type. |
| 104 | + RESOURCE (1): |
| 105 | + Resource metadata. |
| 106 | + IAM_POLICY (2): |
| 107 | + The actual IAM policy set on a resource. |
| 108 | + ORG_POLICY (4): |
| 109 | + The organization policy set on an asset. |
| 110 | + ACCESS_POLICY (5): |
| 111 | + The Access Context Manager policy set on an |
| 112 | + asset. |
| 113 | + OS_INVENTORY (6): |
| 114 | + The runtime OS Inventory information. |
| 115 | + RELATIONSHIP (7): |
| 116 | + The related resources. |
| 117 | + """ |
100 | 118 | CONTENT_TYPE_UNSPECIFIED = 0
|
101 | 119 | RESOURCE = 1
|
102 | 120 | IAM_POLICY = 2
|
@@ -871,6 +889,25 @@ class PartitionKey(proto.Enum):
|
871 | 889 | partition key is a timestamp column, the actual partition is based
|
872 | 890 | on its date value (expressed in UTC. see details in
|
873 | 891 | https://cloud.google.com/bigquery/docs/partitioned-tables#date_timestamp_partitioned_tables).
|
| 892 | +
|
| 893 | + Values: |
| 894 | + PARTITION_KEY_UNSPECIFIED (0): |
| 895 | + Unspecified partition key. If used, it means |
| 896 | + using non-partitioned table. |
| 897 | + READ_TIME (1): |
| 898 | + The time when the snapshot is taken. If specified as |
| 899 | + partition key, the result table(s) is partitoned by the |
| 900 | + additional timestamp column, readTime. If [read_time] in |
| 901 | + ExportAssetsRequest is specified, the readTime column's |
| 902 | + value will be the same as it. Otherwise, its value will be |
| 903 | + the current time that is used to take the snapshot. |
| 904 | + REQUEST_TIME (2): |
| 905 | + The time when the request is received and |
| 906 | + started to be processed. If specified as |
| 907 | + partition key, the result table(s) is partitoned |
| 908 | + by the requestTime column, an additional |
| 909 | + timestamp column representing when the request |
| 910 | + was received. |
874 | 911 | """
|
875 | 912 | PARTITION_KEY_UNSPECIFIED = 0
|
876 | 913 | READ_TIME = 1
|
@@ -1958,6 +1995,17 @@ class PartitionKey(proto.Enum):
|
1958 | 1995 | reduce query cost by filtering partitions. Refer to
|
1959 | 1996 | https://cloud.google.com/bigquery/docs/partitioned-tables for
|
1960 | 1997 | details.
|
| 1998 | +
|
| 1999 | + Values: |
| 2000 | + PARTITION_KEY_UNSPECIFIED (0): |
| 2001 | + Unspecified partition key. Tables won't be |
| 2002 | + partitioned using this option. |
| 2003 | + REQUEST_TIME (1): |
| 2004 | + The time when the request is received. If |
| 2005 | + specified as partition key, the result table(s) |
| 2006 | + is partitoned by the RequestTime column, an |
| 2007 | + additional timestamp column representing when |
| 2008 | + the request was received. |
1961 | 2009 | """
|
1962 | 2010 | PARTITION_KEY_UNSPECIFIED = 0
|
1963 | 2011 | REQUEST_TIME = 1
|
@@ -2362,7 +2410,20 @@ class AnalyzeMoveRequest(proto.Message):
|
2362 | 2410 | """
|
2363 | 2411 |
|
2364 | 2412 | class AnalysisView(proto.Enum):
|
2365 |
| - r"""View enum for supporting partial analysis responses.""" |
| 2413 | + r"""View enum for supporting partial analysis responses. |
| 2414 | +
|
| 2415 | + Values: |
| 2416 | + ANALYSIS_VIEW_UNSPECIFIED (0): |
| 2417 | + The default/unset value. |
| 2418 | + The API will default to the FULL view. |
| 2419 | + FULL (1): |
| 2420 | + Full analysis including all level of impacts |
| 2421 | + of the specified resource move. |
| 2422 | + BASIC (2): |
| 2423 | + Basic analysis only including blockers which |
| 2424 | + will prevent the specified resource move at |
| 2425 | + runtime. |
| 2426 | + """ |
2366 | 2427 | ANALYSIS_VIEW_UNSPECIFIED = 0
|
2367 | 2428 | FULL = 1
|
2368 | 2429 | BASIC = 2
|
@@ -3196,6 +3257,19 @@ class ConstraintDefault(proto.Enum):
|
3196 | 3257 | r"""Specifies the default behavior in the absence of any ``Policy`` for
|
3197 | 3258 | the ``Constraint``. This must not be
|
3198 | 3259 | ``CONSTRAINT_DEFAULT_UNSPECIFIED``.
|
| 3260 | +
|
| 3261 | + Values: |
| 3262 | + CONSTRAINT_DEFAULT_UNSPECIFIED (0): |
| 3263 | + This is only used for distinguishing unset |
| 3264 | + values and should never be used. |
| 3265 | + ALLOW (1): |
| 3266 | + Indicate that all values are allowed for list |
| 3267 | + constraints. Indicate that enforcement is off |
| 3268 | + for boolean constraints. |
| 3269 | + DENY (2): |
| 3270 | + Indicate that all values are denied for list |
| 3271 | + constraints. Indicate that enforcement is on for |
| 3272 | + boolean constraints. |
3199 | 3273 | """
|
3200 | 3274 | CONSTRAINT_DEFAULT_UNSPECIFIED = 0
|
3201 | 3275 | ALLOW = 1
|
@@ -3309,14 +3383,36 @@ class MethodType(proto.Enum):
|
3309 | 3383 | If the constraint applies only when create VMs, the method_types
|
3310 | 3384 | will be "CREATE" only. If the constraint applied when create or
|
3311 | 3385 | delete VMs, the method_types will be "CREATE" and "DELETE".
|
| 3386 | +
|
| 3387 | + Values: |
| 3388 | + METHOD_TYPE_UNSPECIFIED (0): |
| 3389 | + Unspecified. Will results in user error. |
| 3390 | + CREATE (1): |
| 3391 | + Constraint applied when creating the |
| 3392 | + resource. |
| 3393 | + UPDATE (2): |
| 3394 | + Constraint applied when updating the |
| 3395 | + resource. |
| 3396 | + DELETE (3): |
| 3397 | + Constraint applied when deleting the |
| 3398 | + resource. |
3312 | 3399 | """
|
3313 | 3400 | METHOD_TYPE_UNSPECIFIED = 0
|
3314 | 3401 | CREATE = 1
|
3315 | 3402 | UPDATE = 2
|
3316 | 3403 | DELETE = 3
|
3317 | 3404 |
|
3318 | 3405 | class ActionType(proto.Enum):
|
3319 |
| - r"""Allow or deny type.""" |
| 3406 | + r"""Allow or deny type. |
| 3407 | +
|
| 3408 | + Values: |
| 3409 | + ACTION_TYPE_UNSPECIFIED (0): |
| 3410 | + Unspecified. Will results in user error. |
| 3411 | + ALLOW (1): |
| 3412 | + Allowed action type. |
| 3413 | + DENY (2): |
| 3414 | + Deny action type. |
| 3415 | + """ |
3320 | 3416 | ACTION_TYPE_UNSPECIFIED = 0
|
3321 | 3417 | ALLOW = 1
|
3322 | 3418 | DENY = 2
|
|
0 commit comments