403Webshell
Server IP : 162.144.4.212  /  Your IP : 216.73.216.108
Web Server : Apache
System : Linux gator2125.hostgator.com 5.14.0-162.23.1.9991722448259.nf.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 31 18:11:45 UTC 2024 x86_64
User : cozeellc ( 2980)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /usr/lib/python3.9/site-packages/oci/operator_access_control/models/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /usr/lib/python3.9/site-packages/oci/operator_access_control/models/operator_control_assignment.py
# coding: utf-8
# Copyright (c) 2016, 2024, Oracle and/or its affiliates.  All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.

# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630


from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel  # noqa: F401
from oci.decorators import init_model_state_from_kwargs


@init_model_state_from_kwargs
class OperatorControlAssignment(object):
    """
    An Operator Control Assignment identifies the target resource that is placed under the governance of an Operator Control. Creating an Operator Control Assignment Assignment with a time duration ensures that
    human accesses to the target resource will be governed by Operator Control for the duration specified.
    """

    #: A constant which can be used with the resource_type property of a OperatorControlAssignment.
    #: This constant has a value of "EXACC"
    RESOURCE_TYPE_EXACC = "EXACC"

    #: A constant which can be used with the resource_type property of a OperatorControlAssignment.
    #: This constant has a value of "EXADATAINFRASTRUCTURE"
    RESOURCE_TYPE_EXADATAINFRASTRUCTURE = "EXADATAINFRASTRUCTURE"

    #: A constant which can be used with the resource_type property of a OperatorControlAssignment.
    #: This constant has a value of "AUTONOMOUSVMCLUSTER"
    RESOURCE_TYPE_AUTONOMOUSVMCLUSTER = "AUTONOMOUSVMCLUSTER"

    #: A constant which can be used with the resource_type property of a OperatorControlAssignment.
    #: This constant has a value of "CLOUDAUTONOMOUSVMCLUSTER"
    RESOURCE_TYPE_CLOUDAUTONOMOUSVMCLUSTER = "CLOUDAUTONOMOUSVMCLUSTER"

    #: A constant which can be used with the resource_type property of a OperatorControlAssignment.
    #: This constant has a value of "CCCINFRASTRUCTURE"
    RESOURCE_TYPE_CCCINFRASTRUCTURE = "CCCINFRASTRUCTURE"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "CREATED"
    LIFECYCLE_STATE_CREATED = "CREATED"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "APPLIED"
    LIFECYCLE_STATE_APPLIED = "APPLIED"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "APPLYFAILED"
    LIFECYCLE_STATE_APPLYFAILED = "APPLYFAILED"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "UPDATING"
    LIFECYCLE_STATE_UPDATING = "UPDATING"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "UPDATEFAILED"
    LIFECYCLE_STATE_UPDATEFAILED = "UPDATEFAILED"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "DELETING"
    LIFECYCLE_STATE_DELETING = "DELETING"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "DELETED"
    LIFECYCLE_STATE_DELETED = "DELETED"

    #: A constant which can be used with the lifecycle_state property of a OperatorControlAssignment.
    #: This constant has a value of "DELETIONFAILED"
    LIFECYCLE_STATE_DELETIONFAILED = "DELETIONFAILED"

    def __init__(self, **kwargs):
        """
        Initializes a new OperatorControlAssignment object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param id:
            The value to assign to the id property of this OperatorControlAssignment.
        :type id: str

        :param operator_control_id:
            The value to assign to the operator_control_id property of this OperatorControlAssignment.
        :type operator_control_id: str

        :param resource_id:
            The value to assign to the resource_id property of this OperatorControlAssignment.
        :type resource_id: str

        :param resource_name:
            The value to assign to the resource_name property of this OperatorControlAssignment.
        :type resource_name: str

        :param resource_compartment_id:
            The value to assign to the resource_compartment_id property of this OperatorControlAssignment.
        :type resource_compartment_id: str

        :param compartment_id:
            The value to assign to the compartment_id property of this OperatorControlAssignment.
        :type compartment_id: str

        :param resource_type:
            The value to assign to the resource_type property of this OperatorControlAssignment.
            Allowed values for this property are: "EXACC", "EXADATAINFRASTRUCTURE", "AUTONOMOUSVMCLUSTER", "CLOUDAUTONOMOUSVMCLUSTER", "CCCINFRASTRUCTURE", 'UNKNOWN_ENUM_VALUE'.
            Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
        :type resource_type: str

        :param time_assignment_from:
            The value to assign to the time_assignment_from property of this OperatorControlAssignment.
        :type time_assignment_from: datetime

        :param time_assignment_to:
            The value to assign to the time_assignment_to property of this OperatorControlAssignment.
        :type time_assignment_to: datetime

        :param is_enforced_always:
            The value to assign to the is_enforced_always property of this OperatorControlAssignment.
        :type is_enforced_always: bool

        :param lifecycle_state:
            The value to assign to the lifecycle_state property of this OperatorControlAssignment.
            Allowed values for this property are: "CREATED", "APPLIED", "APPLYFAILED", "UPDATING", "UPDATEFAILED", "DELETING", "DELETED", "DELETIONFAILED", 'UNKNOWN_ENUM_VALUE'.
            Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
        :type lifecycle_state: str

        :param lifecycle_details:
            The value to assign to the lifecycle_details property of this OperatorControlAssignment.
        :type lifecycle_details: str

        :param assigner_id:
            The value to assign to the assigner_id property of this OperatorControlAssignment.
        :type assigner_id: str

        :param time_of_assignment:
            The value to assign to the time_of_assignment property of this OperatorControlAssignment.
        :type time_of_assignment: datetime

        :param comment:
            The value to assign to the comment property of this OperatorControlAssignment.
        :type comment: str

        :param unassigner_id:
            The value to assign to the unassigner_id property of this OperatorControlAssignment.
        :type unassigner_id: str

        :param time_of_deletion:
            The value to assign to the time_of_deletion property of this OperatorControlAssignment.
        :type time_of_deletion: datetime

        :param detachment_description:
            The value to assign to the detachment_description property of this OperatorControlAssignment.
        :type detachment_description: str

        :param is_log_forwarded:
            The value to assign to the is_log_forwarded property of this OperatorControlAssignment.
        :type is_log_forwarded: bool

        :param remote_syslog_server_address:
            The value to assign to the remote_syslog_server_address property of this OperatorControlAssignment.
        :type remote_syslog_server_address: str

        :param remote_syslog_server_port:
            The value to assign to the remote_syslog_server_port property of this OperatorControlAssignment.
        :type remote_syslog_server_port: int

        :param remote_syslog_server_ca_cert:
            The value to assign to the remote_syslog_server_ca_cert property of this OperatorControlAssignment.
        :type remote_syslog_server_ca_cert: str

        :param is_hypervisor_log_forwarded:
            The value to assign to the is_hypervisor_log_forwarded property of this OperatorControlAssignment.
        :type is_hypervisor_log_forwarded: bool

        :param op_control_name:
            The value to assign to the op_control_name property of this OperatorControlAssignment.
        :type op_control_name: str

        :param is_auto_approve_during_maintenance:
            The value to assign to the is_auto_approve_during_maintenance property of this OperatorControlAssignment.
        :type is_auto_approve_during_maintenance: bool

        :param error_code:
            The value to assign to the error_code property of this OperatorControlAssignment.
        :type error_code: int

        :param error_message:
            The value to assign to the error_message property of this OperatorControlAssignment.
        :type error_message: str

        :param is_default_assignment:
            The value to assign to the is_default_assignment property of this OperatorControlAssignment.
        :type is_default_assignment: bool

        :param freeform_tags:
            The value to assign to the freeform_tags property of this OperatorControlAssignment.
        :type freeform_tags: dict(str, str)

        :param defined_tags:
            The value to assign to the defined_tags property of this OperatorControlAssignment.
        :type defined_tags: dict(str, dict(str, object))

        """
        self.swagger_types = {
            'id': 'str',
            'operator_control_id': 'str',
            'resource_id': 'str',
            'resource_name': 'str',
            'resource_compartment_id': 'str',
            'compartment_id': 'str',
            'resource_type': 'str',
            'time_assignment_from': 'datetime',
            'time_assignment_to': 'datetime',
            'is_enforced_always': 'bool',
            'lifecycle_state': 'str',
            'lifecycle_details': 'str',
            'assigner_id': 'str',
            'time_of_assignment': 'datetime',
            'comment': 'str',
            'unassigner_id': 'str',
            'time_of_deletion': 'datetime',
            'detachment_description': 'str',
            'is_log_forwarded': 'bool',
            'remote_syslog_server_address': 'str',
            'remote_syslog_server_port': 'int',
            'remote_syslog_server_ca_cert': 'str',
            'is_hypervisor_log_forwarded': 'bool',
            'op_control_name': 'str',
            'is_auto_approve_during_maintenance': 'bool',
            'error_code': 'int',
            'error_message': 'str',
            'is_default_assignment': 'bool',
            'freeform_tags': 'dict(str, str)',
            'defined_tags': 'dict(str, dict(str, object))'
        }

        self.attribute_map = {
            'id': 'id',
            'operator_control_id': 'operatorControlId',
            'resource_id': 'resourceId',
            'resource_name': 'resourceName',
            'resource_compartment_id': 'resourceCompartmentId',
            'compartment_id': 'compartmentId',
            'resource_type': 'resourceType',
            'time_assignment_from': 'timeAssignmentFrom',
            'time_assignment_to': 'timeAssignmentTo',
            'is_enforced_always': 'isEnforcedAlways',
            'lifecycle_state': 'lifecycleState',
            'lifecycle_details': 'lifecycleDetails',
            'assigner_id': 'assignerId',
            'time_of_assignment': 'timeOfAssignment',
            'comment': 'comment',
            'unassigner_id': 'unassignerId',
            'time_of_deletion': 'timeOfDeletion',
            'detachment_description': 'detachmentDescription',
            'is_log_forwarded': 'isLogForwarded',
            'remote_syslog_server_address': 'remoteSyslogServerAddress',
            'remote_syslog_server_port': 'remoteSyslogServerPort',
            'remote_syslog_server_ca_cert': 'remoteSyslogServerCACert',
            'is_hypervisor_log_forwarded': 'isHypervisorLogForwarded',
            'op_control_name': 'opControlName',
            'is_auto_approve_during_maintenance': 'isAutoApproveDuringMaintenance',
            'error_code': 'errorCode',
            'error_message': 'errorMessage',
            'is_default_assignment': 'isDefaultAssignment',
            'freeform_tags': 'freeformTags',
            'defined_tags': 'definedTags'
        }

        self._id = None
        self._operator_control_id = None
        self._resource_id = None
        self._resource_name = None
        self._resource_compartment_id = None
        self._compartment_id = None
        self._resource_type = None
        self._time_assignment_from = None
        self._time_assignment_to = None
        self._is_enforced_always = None
        self._lifecycle_state = None
        self._lifecycle_details = None
        self._assigner_id = None
        self._time_of_assignment = None
        self._comment = None
        self._unassigner_id = None
        self._time_of_deletion = None
        self._detachment_description = None
        self._is_log_forwarded = None
        self._remote_syslog_server_address = None
        self._remote_syslog_server_port = None
        self._remote_syslog_server_ca_cert = None
        self._is_hypervisor_log_forwarded = None
        self._op_control_name = None
        self._is_auto_approve_during_maintenance = None
        self._error_code = None
        self._error_message = None
        self._is_default_assignment = None
        self._freeform_tags = None
        self._defined_tags = None

    @property
    def id(self):
        """
        **[Required]** Gets the id of this OperatorControlAssignment.
        The OCID of the operator control assignment.


        :return: The id of this OperatorControlAssignment.
        :rtype: str
        """
        return self._id

    @id.setter
    def id(self, id):
        """
        Sets the id of this OperatorControlAssignment.
        The OCID of the operator control assignment.


        :param id: The id of this OperatorControlAssignment.
        :type: str
        """
        self._id = id

    @property
    def operator_control_id(self):
        """
        **[Required]** Gets the operator_control_id of this OperatorControlAssignment.
        The OCID of the operator control.


        :return: The operator_control_id of this OperatorControlAssignment.
        :rtype: str
        """
        return self._operator_control_id

    @operator_control_id.setter
    def operator_control_id(self, operator_control_id):
        """
        Sets the operator_control_id of this OperatorControlAssignment.
        The OCID of the operator control.


        :param operator_control_id: The operator_control_id of this OperatorControlAssignment.
        :type: str
        """
        self._operator_control_id = operator_control_id

    @property
    def resource_id(self):
        """
        **[Required]** Gets the resource_id of this OperatorControlAssignment.
        The OCID of the target resource.


        :return: The resource_id of this OperatorControlAssignment.
        :rtype: str
        """
        return self._resource_id

    @resource_id.setter
    def resource_id(self, resource_id):
        """
        Sets the resource_id of this OperatorControlAssignment.
        The OCID of the target resource.


        :param resource_id: The resource_id of this OperatorControlAssignment.
        :type: str
        """
        self._resource_id = resource_id

    @property
    def resource_name(self):
        """
        **[Required]** Gets the resource_name of this OperatorControlAssignment.
        Name of the target resource.


        :return: The resource_name of this OperatorControlAssignment.
        :rtype: str
        """
        return self._resource_name

    @resource_name.setter
    def resource_name(self, resource_name):
        """
        Sets the resource_name of this OperatorControlAssignment.
        Name of the target resource.


        :param resource_name: The resource_name of this OperatorControlAssignment.
        :type: str
        """
        self._resource_name = resource_name

    @property
    def resource_compartment_id(self):
        """
        Gets the resource_compartment_id of this OperatorControlAssignment.
        The OCID of the compartment that contains the target resource.


        :return: The resource_compartment_id of this OperatorControlAssignment.
        :rtype: str
        """
        return self._resource_compartment_id

    @resource_compartment_id.setter
    def resource_compartment_id(self, resource_compartment_id):
        """
        Sets the resource_compartment_id of this OperatorControlAssignment.
        The OCID of the compartment that contains the target resource.


        :param resource_compartment_id: The resource_compartment_id of this OperatorControlAssignment.
        :type: str
        """
        self._resource_compartment_id = resource_compartment_id

    @property
    def compartment_id(self):
        """
        Gets the compartment_id of this OperatorControlAssignment.
        The OCID of the comparment that contains the operator control assignment.


        :return: The compartment_id of this OperatorControlAssignment.
        :rtype: str
        """
        return self._compartment_id

    @compartment_id.setter
    def compartment_id(self, compartment_id):
        """
        Sets the compartment_id of this OperatorControlAssignment.
        The OCID of the comparment that contains the operator control assignment.


        :param compartment_id: The compartment_id of this OperatorControlAssignment.
        :type: str
        """
        self._compartment_id = compartment_id

    @property
    def resource_type(self):
        """
        Gets the resource_type of this OperatorControlAssignment.
        resourceType for which the OperatorControlAssignment is applicable

        Allowed values for this property are: "EXACC", "EXADATAINFRASTRUCTURE", "AUTONOMOUSVMCLUSTER", "CLOUDAUTONOMOUSVMCLUSTER", "CCCINFRASTRUCTURE", 'UNKNOWN_ENUM_VALUE'.
        Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.


        :return: The resource_type of this OperatorControlAssignment.
        :rtype: str
        """
        return self._resource_type

    @resource_type.setter
    def resource_type(self, resource_type):
        """
        Sets the resource_type of this OperatorControlAssignment.
        resourceType for which the OperatorControlAssignment is applicable


        :param resource_type: The resource_type of this OperatorControlAssignment.
        :type: str
        """
        allowed_values = ["EXACC", "EXADATAINFRASTRUCTURE", "AUTONOMOUSVMCLUSTER", "CLOUDAUTONOMOUSVMCLUSTER", "CCCINFRASTRUCTURE"]
        if not value_allowed_none_or_none_sentinel(resource_type, allowed_values):
            resource_type = 'UNKNOWN_ENUM_VALUE'
        self._resource_type = resource_type

    @property
    def time_assignment_from(self):
        """
        Gets the time_assignment_from of this OperatorControlAssignment.
        The time at which the target resource will be brought under the governance of the operator control expressed in `RFC 3339`__ timestamp format.
        Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :return: The time_assignment_from of this OperatorControlAssignment.
        :rtype: datetime
        """
        return self._time_assignment_from

    @time_assignment_from.setter
    def time_assignment_from(self, time_assignment_from):
        """
        Sets the time_assignment_from of this OperatorControlAssignment.
        The time at which the target resource will be brought under the governance of the operator control expressed in `RFC 3339`__ timestamp format.
        Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :param time_assignment_from: The time_assignment_from of this OperatorControlAssignment.
        :type: datetime
        """
        self._time_assignment_from = time_assignment_from

    @property
    def time_assignment_to(self):
        """
        Gets the time_assignment_to of this OperatorControlAssignment.
        The time at which the target resource will leave the governance of the operator control expressed in `RFC 3339`__ timestamp format.
        Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :return: The time_assignment_to of this OperatorControlAssignment.
        :rtype: datetime
        """
        return self._time_assignment_to

    @time_assignment_to.setter
    def time_assignment_to(self, time_assignment_to):
        """
        Sets the time_assignment_to of this OperatorControlAssignment.
        The time at which the target resource will leave the governance of the operator control expressed in `RFC 3339`__ timestamp format.
        Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :param time_assignment_to: The time_assignment_to of this OperatorControlAssignment.
        :type: datetime
        """
        self._time_assignment_to = time_assignment_to

    @property
    def is_enforced_always(self):
        """
        Gets the is_enforced_always of this OperatorControlAssignment.
        If set, then the target resource is always governed by the operator control.


        :return: The is_enforced_always of this OperatorControlAssignment.
        :rtype: bool
        """
        return self._is_enforced_always

    @is_enforced_always.setter
    def is_enforced_always(self, is_enforced_always):
        """
        Sets the is_enforced_always of this OperatorControlAssignment.
        If set, then the target resource is always governed by the operator control.


        :param is_enforced_always: The is_enforced_always of this OperatorControlAssignment.
        :type: bool
        """
        self._is_enforced_always = is_enforced_always

    @property
    def lifecycle_state(self):
        """
        Gets the lifecycle_state of this OperatorControlAssignment.
        The current lifcycle state of the OperatorControl.

        Allowed values for this property are: "CREATED", "APPLIED", "APPLYFAILED", "UPDATING", "UPDATEFAILED", "DELETING", "DELETED", "DELETIONFAILED", 'UNKNOWN_ENUM_VALUE'.
        Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.


        :return: The lifecycle_state of this OperatorControlAssignment.
        :rtype: str
        """
        return self._lifecycle_state

    @lifecycle_state.setter
    def lifecycle_state(self, lifecycle_state):
        """
        Sets the lifecycle_state of this OperatorControlAssignment.
        The current lifcycle state of the OperatorControl.


        :param lifecycle_state: The lifecycle_state of this OperatorControlAssignment.
        :type: str
        """
        allowed_values = ["CREATED", "APPLIED", "APPLYFAILED", "UPDATING", "UPDATEFAILED", "DELETING", "DELETED", "DELETIONFAILED"]
        if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values):
            lifecycle_state = 'UNKNOWN_ENUM_VALUE'
        self._lifecycle_state = lifecycle_state

    @property
    def lifecycle_details(self):
        """
        Gets the lifecycle_details of this OperatorControlAssignment.
        More in detail about the lifeCycleState.


        :return: The lifecycle_details of this OperatorControlAssignment.
        :rtype: str
        """
        return self._lifecycle_details

    @lifecycle_details.setter
    def lifecycle_details(self, lifecycle_details):
        """
        Sets the lifecycle_details of this OperatorControlAssignment.
        More in detail about the lifeCycleState.


        :param lifecycle_details: The lifecycle_details of this OperatorControlAssignment.
        :type: str
        """
        self._lifecycle_details = lifecycle_details

    @property
    def assigner_id(self):
        """
        Gets the assigner_id of this OperatorControlAssignment.
        The OCID of the user who created this operator control assignment.


        :return: The assigner_id of this OperatorControlAssignment.
        :rtype: str
        """
        return self._assigner_id

    @assigner_id.setter
    def assigner_id(self, assigner_id):
        """
        Sets the assigner_id of this OperatorControlAssignment.
        The OCID of the user who created this operator control assignment.


        :param assigner_id: The assigner_id of this OperatorControlAssignment.
        :type: str
        """
        self._assigner_id = assigner_id

    @property
    def time_of_assignment(self):
        """
        Gets the time_of_assignment of this OperatorControlAssignment.
        Time when the operator control assignment is created in `RFC 3339`__ timestamp format. Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :return: The time_of_assignment of this OperatorControlAssignment.
        :rtype: datetime
        """
        return self._time_of_assignment

    @time_of_assignment.setter
    def time_of_assignment(self, time_of_assignment):
        """
        Sets the time_of_assignment of this OperatorControlAssignment.
        Time when the operator control assignment is created in `RFC 3339`__ timestamp format. Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :param time_of_assignment: The time_of_assignment of this OperatorControlAssignment.
        :type: datetime
        """
        self._time_of_assignment = time_of_assignment

    @property
    def comment(self):
        """
        Gets the comment of this OperatorControlAssignment.
        Comment about the assignment of the operator control to this target resource.


        :return: The comment of this OperatorControlAssignment.
        :rtype: str
        """
        return self._comment

    @comment.setter
    def comment(self, comment):
        """
        Sets the comment of this OperatorControlAssignment.
        Comment about the assignment of the operator control to this target resource.


        :param comment: The comment of this OperatorControlAssignment.
        :type: str
        """
        self._comment = comment

    @property
    def unassigner_id(self):
        """
        Gets the unassigner_id of this OperatorControlAssignment.
        User id who released the operatorControl.


        :return: The unassigner_id of this OperatorControlAssignment.
        :rtype: str
        """
        return self._unassigner_id

    @unassigner_id.setter
    def unassigner_id(self, unassigner_id):
        """
        Sets the unassigner_id of this OperatorControlAssignment.
        User id who released the operatorControl.


        :param unassigner_id: The unassigner_id of this OperatorControlAssignment.
        :type: str
        """
        self._unassigner_id = unassigner_id

    @property
    def time_of_deletion(self):
        """
        Gets the time_of_deletion of this OperatorControlAssignment.
        Time on which the operator control assignment was deleted in `RFC 3339`__timestamp format.Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :return: The time_of_deletion of this OperatorControlAssignment.
        :rtype: datetime
        """
        return self._time_of_deletion

    @time_of_deletion.setter
    def time_of_deletion(self, time_of_deletion):
        """
        Sets the time_of_deletion of this OperatorControlAssignment.
        Time on which the operator control assignment was deleted in `RFC 3339`__timestamp format.Example: '2020-05-22T21:10:29.600Z'

        __ https://tools.ietf.org/html/rfc3339


        :param time_of_deletion: The time_of_deletion of this OperatorControlAssignment.
        :type: datetime
        """
        self._time_of_deletion = time_of_deletion

    @property
    def detachment_description(self):
        """
        Gets the detachment_description of this OperatorControlAssignment.
        description containing reason for releasing of OperatorControl.


        :return: The detachment_description of this OperatorControlAssignment.
        :rtype: str
        """
        return self._detachment_description

    @detachment_description.setter
    def detachment_description(self, detachment_description):
        """
        Sets the detachment_description of this OperatorControlAssignment.
        description containing reason for releasing of OperatorControl.


        :param detachment_description: The detachment_description of this OperatorControlAssignment.
        :type: str
        """
        self._detachment_description = detachment_description

    @property
    def is_log_forwarded(self):
        """
        Gets the is_log_forwarded of this OperatorControlAssignment.
        If set indicates that the audit logs are being forwarded to the relevant remote logging server


        :return: The is_log_forwarded of this OperatorControlAssignment.
        :rtype: bool
        """
        return self._is_log_forwarded

    @is_log_forwarded.setter
    def is_log_forwarded(self, is_log_forwarded):
        """
        Sets the is_log_forwarded of this OperatorControlAssignment.
        If set indicates that the audit logs are being forwarded to the relevant remote logging server


        :param is_log_forwarded: The is_log_forwarded of this OperatorControlAssignment.
        :type: bool
        """
        self._is_log_forwarded = is_log_forwarded

    @property
    def remote_syslog_server_address(self):
        """
        Gets the remote_syslog_server_address of this OperatorControlAssignment.
        The address of the remote syslog server where the audit logs are being forwarded to. Address in host or IP format.


        :return: The remote_syslog_server_address of this OperatorControlAssignment.
        :rtype: str
        """
        return self._remote_syslog_server_address

    @remote_syslog_server_address.setter
    def remote_syslog_server_address(self, remote_syslog_server_address):
        """
        Sets the remote_syslog_server_address of this OperatorControlAssignment.
        The address of the remote syslog server where the audit logs are being forwarded to. Address in host or IP format.


        :param remote_syslog_server_address: The remote_syslog_server_address of this OperatorControlAssignment.
        :type: str
        """
        self._remote_syslog_server_address = remote_syslog_server_address

    @property
    def remote_syslog_server_port(self):
        """
        Gets the remote_syslog_server_port of this OperatorControlAssignment.
        The listening port of the remote syslog server. The port range is 0 - 65535. Only TCP supported.


        :return: The remote_syslog_server_port of this OperatorControlAssignment.
        :rtype: int
        """
        return self._remote_syslog_server_port

    @remote_syslog_server_port.setter
    def remote_syslog_server_port(self, remote_syslog_server_port):
        """
        Sets the remote_syslog_server_port of this OperatorControlAssignment.
        The listening port of the remote syslog server. The port range is 0 - 65535. Only TCP supported.


        :param remote_syslog_server_port: The remote_syslog_server_port of this OperatorControlAssignment.
        :type: int
        """
        self._remote_syslog_server_port = remote_syslog_server_port

    @property
    def remote_syslog_server_ca_cert(self):
        """
        Gets the remote_syslog_server_ca_cert of this OperatorControlAssignment.
        The CA certificate of the remote syslog server.


        :return: The remote_syslog_server_ca_cert of this OperatorControlAssignment.
        :rtype: str
        """
        return self._remote_syslog_server_ca_cert

    @remote_syslog_server_ca_cert.setter
    def remote_syslog_server_ca_cert(self, remote_syslog_server_ca_cert):
        """
        Sets the remote_syslog_server_ca_cert of this OperatorControlAssignment.
        The CA certificate of the remote syslog server.


        :param remote_syslog_server_ca_cert: The remote_syslog_server_ca_cert of this OperatorControlAssignment.
        :type: str
        """
        self._remote_syslog_server_ca_cert = remote_syslog_server_ca_cert

    @property
    def is_hypervisor_log_forwarded(self):
        """
        Gets the is_hypervisor_log_forwarded of this OperatorControlAssignment.
        If set, then the hypervisor audit logs will be forwarded to the relevant remote syslog server


        :return: The is_hypervisor_log_forwarded of this OperatorControlAssignment.
        :rtype: bool
        """
        return self._is_hypervisor_log_forwarded

    @is_hypervisor_log_forwarded.setter
    def is_hypervisor_log_forwarded(self, is_hypervisor_log_forwarded):
        """
        Sets the is_hypervisor_log_forwarded of this OperatorControlAssignment.
        If set, then the hypervisor audit logs will be forwarded to the relevant remote syslog server


        :param is_hypervisor_log_forwarded: The is_hypervisor_log_forwarded of this OperatorControlAssignment.
        :type: bool
        """
        self._is_hypervisor_log_forwarded = is_hypervisor_log_forwarded

    @property
    def op_control_name(self):
        """
        Gets the op_control_name of this OperatorControlAssignment.
        Name of the operator control name associated.


        :return: The op_control_name of this OperatorControlAssignment.
        :rtype: str
        """
        return self._op_control_name

    @op_control_name.setter
    def op_control_name(self, op_control_name):
        """
        Sets the op_control_name of this OperatorControlAssignment.
        Name of the operator control name associated.


        :param op_control_name: The op_control_name of this OperatorControlAssignment.
        :type: str
        """
        self._op_control_name = op_control_name

    @property
    def is_auto_approve_during_maintenance(self):
        """
        Gets the is_auto_approve_during_maintenance of this OperatorControlAssignment.
        The boolean if true would autoApprove during maintenance.


        :return: The is_auto_approve_during_maintenance of this OperatorControlAssignment.
        :rtype: bool
        """
        return self._is_auto_approve_during_maintenance

    @is_auto_approve_during_maintenance.setter
    def is_auto_approve_during_maintenance(self, is_auto_approve_during_maintenance):
        """
        Sets the is_auto_approve_during_maintenance of this OperatorControlAssignment.
        The boolean if true would autoApprove during maintenance.


        :param is_auto_approve_during_maintenance: The is_auto_approve_during_maintenance of this OperatorControlAssignment.
        :type: bool
        """
        self._is_auto_approve_during_maintenance = is_auto_approve_during_maintenance

    @property
    def error_code(self):
        """
        Gets the error_code of this OperatorControlAssignment.
        The code identifying the error occurred during Assignment operation.


        :return: The error_code of this OperatorControlAssignment.
        :rtype: int
        """
        return self._error_code

    @error_code.setter
    def error_code(self, error_code):
        """
        Sets the error_code of this OperatorControlAssignment.
        The code identifying the error occurred during Assignment operation.


        :param error_code: The error_code of this OperatorControlAssignment.
        :type: int
        """
        self._error_code = error_code

    @property
    def error_message(self):
        """
        Gets the error_message of this OperatorControlAssignment.
        The message describing the error occurred during Assignment operation.


        :return: The error_message of this OperatorControlAssignment.
        :rtype: str
        """
        return self._error_message

    @error_message.setter
    def error_message(self, error_message):
        """
        Sets the error_message of this OperatorControlAssignment.
        The message describing the error occurred during Assignment operation.


        :param error_message: The error_message of this OperatorControlAssignment.
        :type: str
        """
        self._error_message = error_message

    @property
    def is_default_assignment(self):
        """
        Gets the is_default_assignment of this OperatorControlAssignment.
        Whether the assignment is a default assignment.


        :return: The is_default_assignment of this OperatorControlAssignment.
        :rtype: bool
        """
        return self._is_default_assignment

    @is_default_assignment.setter
    def is_default_assignment(self, is_default_assignment):
        """
        Sets the is_default_assignment of this OperatorControlAssignment.
        Whether the assignment is a default assignment.


        :param is_default_assignment: The is_default_assignment of this OperatorControlAssignment.
        :type: bool
        """
        self._is_default_assignment = is_default_assignment

    @property
    def freeform_tags(self):
        """
        Gets the freeform_tags of this OperatorControlAssignment.
        Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.


        :return: The freeform_tags of this OperatorControlAssignment.
        :rtype: dict(str, str)
        """
        return self._freeform_tags

    @freeform_tags.setter
    def freeform_tags(self, freeform_tags):
        """
        Sets the freeform_tags of this OperatorControlAssignment.
        Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only.


        :param freeform_tags: The freeform_tags of this OperatorControlAssignment.
        :type: dict(str, str)
        """
        self._freeform_tags = freeform_tags

    @property
    def defined_tags(self):
        """
        Gets the defined_tags of this OperatorControlAssignment.
        Defined tags for this resource. Each key is predefined and scoped to a namespace.


        :return: The defined_tags of this OperatorControlAssignment.
        :rtype: dict(str, dict(str, object))
        """
        return self._defined_tags

    @defined_tags.setter
    def defined_tags(self, defined_tags):
        """
        Sets the defined_tags of this OperatorControlAssignment.
        Defined tags for this resource. Each key is predefined and scoped to a namespace.


        :param defined_tags: The defined_tags of this OperatorControlAssignment.
        :type: dict(str, dict(str, object))
        """
        self._defined_tags = defined_tags

    def __repr__(self):
        return formatted_flat_dict(self)

    def __eq__(self, other):
        if other is None:
            return False

        return self.__dict__ == other.__dict__

    def __ne__(self, other):
        return not self == other

Youez - 2016 - github.com/yon3zu
LinuXploit