@@ -3366,6 +3366,10 @@ class ClassificationPolicyEnumWrapper(bb.Union):
3366
3366
# Attribute is overwritten below the class definition
3367
3367
enabled = None
3368
3368
# Attribute is overwritten below the class definition
3369
+ member_and_team_folders = None
3370
+ # Attribute is overwritten below the class definition
3371
+ team_folders = None
3372
+ # Attribute is overwritten below the class definition
3369
3373
other = None
3370
3374
3371
3375
def is_disabled(self):
@@ -3384,6 +3388,22 @@ def is_enabled(self):
3384
3388
"""
3385
3389
return self._tag == 'enabled'
3386
3390
3391
+ def is_member_and_team_folders(self):
3392
+ """
3393
+ Check if the union tag is ``member_and_team_folders``.
3394
+
3395
+ :rtype: bool
3396
+ """
3397
+ return self._tag == 'member_and_team_folders'
3398
+
3399
+ def is_team_folders(self):
3400
+ """
3401
+ Check if the union tag is ``team_folders``.
3402
+
3403
+ :rtype: bool
3404
+ """
3405
+ return self._tag == 'team_folders'
3406
+
3387
3407
def is_other(self):
3388
3408
"""
3389
3409
Check if the union tag is ``other``.
@@ -69789,15 +69809,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
69789
69809
69790
69810
ClassificationPolicyEnumWrapper._disabled_validator = bv.Void()
69791
69811
ClassificationPolicyEnumWrapper._enabled_validator = bv.Void()
69812
+ ClassificationPolicyEnumWrapper._member_and_team_folders_validator = bv.Void()
69813
+ ClassificationPolicyEnumWrapper._team_folders_validator = bv.Void()
69792
69814
ClassificationPolicyEnumWrapper._other_validator = bv.Void()
69793
69815
ClassificationPolicyEnumWrapper._tagmap = {
69794
69816
'disabled': ClassificationPolicyEnumWrapper._disabled_validator,
69795
69817
'enabled': ClassificationPolicyEnumWrapper._enabled_validator,
69818
+ 'member_and_team_folders': ClassificationPolicyEnumWrapper._member_and_team_folders_validator,
69819
+ 'team_folders': ClassificationPolicyEnumWrapper._team_folders_validator,
69796
69820
'other': ClassificationPolicyEnumWrapper._other_validator,
69797
69821
}
69798
69822
69799
69823
ClassificationPolicyEnumWrapper.disabled = ClassificationPolicyEnumWrapper('disabled')
69800
69824
ClassificationPolicyEnumWrapper.enabled = ClassificationPolicyEnumWrapper('enabled')
69825
+ ClassificationPolicyEnumWrapper.member_and_team_folders = ClassificationPolicyEnumWrapper('member_and_team_folders')
69826
+ ClassificationPolicyEnumWrapper.team_folders = ClassificationPolicyEnumWrapper('team_folders')
69801
69827
ClassificationPolicyEnumWrapper.other = ClassificationPolicyEnumWrapper('other')
69802
69828
69803
69829
ClassificationType._personal_information_validator = bv.Void()
0 commit comments