class documentation

class RolloutMethod(bb.Union): (source)

View In Hierarchy

This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar team_policies.RolloutMethod.unlink_all: Unlink all. :ivar team_policies.RolloutMethod.unlink_most_inactive: Unlink devices with the most inactivity. :ivar team_policies.RolloutMethod.add_member_to_exceptions: Add member to Exceptions.

Method is_add_member_to_exceptions Check if the union tag is ``add_member_to_exceptions``.
Method is_unlink_all Check if the union tag is ``unlink_all``.
Method is_unlink_most_inactive Check if the union tag is ``unlink_most_inactive``.
Class Variable add_member_to_exceptions Undocumented
Class Variable unlink_all Undocumented
Class Variable unlink_most_inactive Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_add_member_to_exceptions(self): (source)

Check if the union tag is ``add_member_to_exceptions``. :rtype: bool

def is_unlink_all(self): (source)

Check if the union tag is ``unlink_all``. :rtype: bool

def is_unlink_most_inactive(self): (source)

Check if the union tag is ``unlink_most_inactive``. :rtype: bool

add_member_to_exceptions = (source)

Undocumented

unlink_all = (source)

Undocumented

unlink_most_inactive = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)

Undocumented

_catch_all = (source)

Undocumented