@@ -1569,6 +1569,8 @@ class AdminRole(bb.Union):
15691569
15701570 _catch_all = 'other'
15711571 # Attribute is overwritten below the class definition
1572+ billing_admin = None
1573+ # Attribute is overwritten below the class definition
15721574 limited_admin = None
15731575 # Attribute is overwritten below the class definition
15741576 member_only = None
@@ -1581,6 +1583,14 @@ class AdminRole(bb.Union):
15811583 # Attribute is overwritten below the class definition
15821584 other = None
15831585
1586+ def is_billing_admin(self):
1587+ """
1588+ Check if the union tag is ``billing_admin``.
1589+
1590+ :rtype: bool
1591+ """
1592+ return self._tag == 'billing_admin'
1593+
15841594 def is_limited_admin(self):
15851595 """
15861596 Check if the union tag is ``limited_admin``.
@@ -69352,13 +69362,15 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
6935269362AdminAlertingTriggeredAlertType._all_field_names_ = set(['description'])
6935369363AdminAlertingTriggeredAlertType._all_fields_ = [('description', AdminAlertingTriggeredAlertType.description.validator)]
6935469364
69365+ AdminRole._billing_admin_validator = bv.Void()
6935569366AdminRole._limited_admin_validator = bv.Void()
6935669367AdminRole._member_only_validator = bv.Void()
6935769368AdminRole._support_admin_validator = bv.Void()
6935869369AdminRole._team_admin_validator = bv.Void()
6935969370AdminRole._user_management_admin_validator = bv.Void()
6936069371AdminRole._other_validator = bv.Void()
6936169372AdminRole._tagmap = {
69373+ 'billing_admin': AdminRole._billing_admin_validator,
6936269374 'limited_admin': AdminRole._limited_admin_validator,
6936369375 'member_only': AdminRole._member_only_validator,
6936469376 'support_admin': AdminRole._support_admin_validator,
@@ -69367,6 +69379,7 @@ def _process_custom_annotations(self, annotation_type, field_path, processor):
6936769379 'other': AdminRole._other_validator,
6936869380}
6936969381
69382+ AdminRole.billing_admin = AdminRole('billing_admin')
6937069383AdminRole.limited_admin = AdminRole('limited_admin')
6937169384AdminRole.member_only = AdminRole('member_only')
6937269385AdminRole.support_admin = AdminRole('support_admin')
0 commit comments