@@ -3366,6 +3366,10 @@ class ClassificationPolicyEnumWrapper(bb.Union):
33663366 # Attribute is overwritten below the class definition
33673367 enabled = None
33683368 # 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
33693373 other = None
33703374
33713375 def is_disabled(self):
@@ -3384,6 +3388,22 @@ def is_enabled(self):
33843388 """
33853389 return self._tag == 'enabled'
33863390
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+
33873407 def is_other(self):
33883408 """
33893409 Check if the union tag is ``other``.
@@ -69789,15 +69809,21 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
6978969809
6979069810ClassificationPolicyEnumWrapper._disabled_validator = bv.Void()
6979169811ClassificationPolicyEnumWrapper._enabled_validator = bv.Void()
69812+ ClassificationPolicyEnumWrapper._member_and_team_folders_validator = bv.Void()
69813+ ClassificationPolicyEnumWrapper._team_folders_validator = bv.Void()
6979269814ClassificationPolicyEnumWrapper._other_validator = bv.Void()
6979369815ClassificationPolicyEnumWrapper._tagmap = {
6979469816 'disabled': ClassificationPolicyEnumWrapper._disabled_validator,
6979569817 'enabled': ClassificationPolicyEnumWrapper._enabled_validator,
69818+ 'member_and_team_folders': ClassificationPolicyEnumWrapper._member_and_team_folders_validator,
69819+ 'team_folders': ClassificationPolicyEnumWrapper._team_folders_validator,
6979669820 'other': ClassificationPolicyEnumWrapper._other_validator,
6979769821}
6979869822
6979969823ClassificationPolicyEnumWrapper.disabled = ClassificationPolicyEnumWrapper('disabled')
6980069824ClassificationPolicyEnumWrapper.enabled = ClassificationPolicyEnumWrapper('enabled')
69825+ ClassificationPolicyEnumWrapper.member_and_team_folders = ClassificationPolicyEnumWrapper('member_and_team_folders')
69826+ ClassificationPolicyEnumWrapper.team_folders = ClassificationPolicyEnumWrapper('team_folders')
6980169827ClassificationPolicyEnumWrapper.other = ClassificationPolicyEnumWrapper('other')
6980269828
6980369829ClassificationType._personal_information_validator = bv.Void()
0 commit comments