class documentation

class ClassificationPolicyEnumWrapper(bb.Union): (source)

View In Hierarchy

Policy for controlling team access to the classification feature 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.

Method is_disabled Check if the union tag is ``disabled``.
Method is_enabled Check if the union tag is ``enabled``.
Method is_member_and_team_folders Check if the union tag is ``member_and_team_folders``.
Method is_other Check if the union tag is ``other``.
Method is_team_folders Check if the union tag is ``team_folders``.
Class Variable disabled Undocumented
Class Variable enabled Undocumented
Class Variable member_and_team_folders Undocumented
Class Variable other Undocumented
Class Variable team_folders Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_disabled(self): (source)

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

def is_enabled(self): (source)

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

def is_member_and_team_folders(self): (source)

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

def is_other(self): (source)

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

def is_team_folders(self): (source)

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

disabled = (source)

Undocumented

Undocumented

member_and_team_folders = (source)

Undocumented

Undocumented

team_folders = (source)

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented