Source code for nipyapi.nifi.models.user_entity

# coding: utf-8

"""
    NiFi Rest Api

    The Rest Api provides programmatic access to command and control a NiFi instance in real time. Start and                                              stop processors, monitor queues, query provenance data, and more. Each endpoint below includes a description,                                             definitions of the expected input and output, potential response codes, and the authorizations required                                             to invoke each service.

    OpenAPI spec version: 1.11.1-SNAPSHOT
    Contact: dev@nifi.apache.org
    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


from pprint import pformat
from six import iteritems
import re


[docs]class UserEntity(object): """ NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. """ """ Attributes: swagger_types (dict): The key is attribute name and the value is attribute type. attribute_map (dict): The key is attribute name and the value is json key in definition. """ swagger_types = { 'revision': 'RevisionDTO', 'id': 'str', 'uri': 'str', 'position': 'PositionDTO', 'permissions': 'PermissionsDTO', 'bulletins': 'list[BulletinEntity]', 'disconnected_node_acknowledged': 'bool', 'component': 'UserDTO' } attribute_map = { 'revision': 'revision', 'id': 'id', 'uri': 'uri', 'position': 'position', 'permissions': 'permissions', 'bulletins': 'bulletins', 'disconnected_node_acknowledged': 'disconnectedNodeAcknowledged', 'component': 'component' } def __init__(self, revision=None, id=None, uri=None, position=None, permissions=None, bulletins=None, disconnected_node_acknowledged=None, component=None): """ UserEntity - a model defined in Swagger """ self._revision = None self._id = None self._uri = None self._position = None self._permissions = None self._bulletins = None self._disconnected_node_acknowledged = None self._component = None if revision is not None: self.revision = revision if id is not None: self.id = id if uri is not None: self.uri = uri if position is not None: self.position = position if permissions is not None: self.permissions = permissions if bulletins is not None: self.bulletins = bulletins if disconnected_node_acknowledged is not None: self.disconnected_node_acknowledged = disconnected_node_acknowledged if component is not None: self.component = component @property def revision(self): """ Gets the revision of this UserEntity. The revision for this request/response. The revision is required for any mutable flow requests and is included in all responses. :return: The revision of this UserEntity. :rtype: RevisionDTO """ return self._revision @revision.setter def revision(self, revision): """ Sets the revision of this UserEntity. The revision for this request/response. The revision is required for any mutable flow requests and is included in all responses. :param revision: The revision of this UserEntity. :type: RevisionDTO """ self._revision = revision @property def id(self): """ Gets the id of this UserEntity. The id of the component. :return: The id of this UserEntity. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this UserEntity. The id of the component. :param id: The id of this UserEntity. :type: str """ self._id = id @property def uri(self): """ Gets the uri of this UserEntity. The URI for futures requests to the component. :return: The uri of this UserEntity. :rtype: str """ return self._uri @uri.setter def uri(self, uri): """ Sets the uri of this UserEntity. The URI for futures requests to the component. :param uri: The uri of this UserEntity. :type: str """ self._uri = uri @property def position(self): """ Gets the position of this UserEntity. The position of this component in the UI if applicable. :return: The position of this UserEntity. :rtype: PositionDTO """ return self._position @position.setter def position(self, position): """ Sets the position of this UserEntity. The position of this component in the UI if applicable. :param position: The position of this UserEntity. :type: PositionDTO """ self._position = position @property def permissions(self): """ Gets the permissions of this UserEntity. The permissions for this component. :return: The permissions of this UserEntity. :rtype: PermissionsDTO """ return self._permissions @permissions.setter def permissions(self, permissions): """ Sets the permissions of this UserEntity. The permissions for this component. :param permissions: The permissions of this UserEntity. :type: PermissionsDTO """ self._permissions = permissions @property def bulletins(self): """ Gets the bulletins of this UserEntity. The bulletins for this component. :return: The bulletins of this UserEntity. :rtype: list[BulletinEntity] """ return self._bulletins @bulletins.setter def bulletins(self, bulletins): """ Sets the bulletins of this UserEntity. The bulletins for this component. :param bulletins: The bulletins of this UserEntity. :type: list[BulletinEntity] """ self._bulletins = bulletins @property def disconnected_node_acknowledged(self): """ Gets the disconnected_node_acknowledged of this UserEntity. Acknowledges that this node is disconnected to allow for mutable requests to proceed. :return: The disconnected_node_acknowledged of this UserEntity. :rtype: bool """ return self._disconnected_node_acknowledged @disconnected_node_acknowledged.setter def disconnected_node_acknowledged(self, disconnected_node_acknowledged): """ Sets the disconnected_node_acknowledged of this UserEntity. Acknowledges that this node is disconnected to allow for mutable requests to proceed. :param disconnected_node_acknowledged: The disconnected_node_acknowledged of this UserEntity. :type: bool """ self._disconnected_node_acknowledged = disconnected_node_acknowledged @property def component(self): """ Gets the component of this UserEntity. :return: The component of this UserEntity. :rtype: UserDTO """ return self._component @component.setter def component(self, component): """ Sets the component of this UserEntity. :param component: The component of this UserEntity. :type: UserDTO """ self._component = component
[docs] def to_dict(self): """ Returns the model properties as a dict """ result = {} for attr, _ in iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value )) elif hasattr(value, "to_dict"): result[attr] = value.to_dict() elif isinstance(value, dict): result[attr] = dict(map( lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item, value.items() )) else: result[attr] = value return result
[docs] def to_str(self): """ Returns the string representation of the model """ return pformat(self.to_dict())
def __repr__(self): """ For `print` and `pprint` """ return self.to_str() def __eq__(self, other): """ Returns true if both objects are equal """ if not isinstance(other, UserEntity): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """ Returns true if both objects are not equal """ return not self == other