class documentation

class SharingMemberPolicy(bb.Union): (source)

View In Hierarchy

External sharing policy 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_allow Check if the union tag is ``allow``.
Method is_forbid Check if the union tag is ``forbid``.
Method is_forbid_with_exclusions Check if the union tag is ``forbid_with_exclusions``.
Method is_other Check if the union tag is ``other``.
Class Variable allow Undocumented
Class Variable forbid Undocumented
Class Variable forbid_with_exclusions Undocumented
Class Variable other Undocumented
Method _process_custom_annotations Undocumented
Class Variable _catch_all Undocumented
def is_allow(self): (source)

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

def is_forbid(self): (source)

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

def is_forbid_with_exclusions(self): (source)

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

def is_other(self): (source)

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

Undocumented

Undocumented

forbid_with_exclusions = (source)

Undocumented

Undocumented

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

Undocumented

_catch_all: str = (source)

Undocumented