Module ncache.client.enum.TagSearchOptions

Expand source code
from enum import Enum


class TagSearchOptions(Enum):
    """
    Enumeration that defines the tag search options.
    """
    BY_ALL_TAGS = 1
    """
    Search objects that have all of the tags in common.
    """
    BY_ANY_TAG = 2
    """
    Search objects that have any of the specified tags in common.
    """

Classes

class TagSearchOptions (value, names=None, *, module=None, qualname=None, type=None, start=1)

Enumeration that defines the tag search options.

Expand source code
class TagSearchOptions(Enum):
    """
    Enumeration that defines the tag search options.
    """
    BY_ALL_TAGS = 1
    """
    Search objects that have all of the tags in common.
    """
    BY_ANY_TAG = 2
    """
    Search objects that have any of the specified tags in common.
    """

Ancestors

  • enum.Enum

Class variables

var BY_ALL_TAGS

Search objects that have all of the tags in common.

var BY_ANY_TAG

Search objects that have any of the specified tags in common.