HEX
Server: Apache
System: Linux box5514.bluehost.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: smqcdvmy (3893)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: //lib/python3.9/site-packages/oci/sch/models/log_source.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: 20200909


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 LogSource(object):
    """
    The logs for this Logging source.
    """

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

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

        :param log_group_id:
            The value to assign to the log_group_id property of this LogSource.
        :type log_group_id: str

        :param log_id:
            The value to assign to the log_id property of this LogSource.
        :type log_id: str

        """
        self.swagger_types = {
            'compartment_id': 'str',
            'log_group_id': 'str',
            'log_id': 'str'
        }

        self.attribute_map = {
            'compartment_id': 'compartmentId',
            'log_group_id': 'logGroupId',
            'log_id': 'logId'
        }

        self._compartment_id = None
        self._log_group_id = None
        self._log_id = None

    @property
    def compartment_id(self):
        """
        **[Required]** Gets the compartment_id of this LogSource.
        The `OCID`__ of the compartment containing the log source.

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


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

    @compartment_id.setter
    def compartment_id(self, compartment_id):
        """
        Sets the compartment_id of this LogSource.
        The `OCID`__ of the compartment containing the log source.

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


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

    @property
    def log_group_id(self):
        """
        Gets the log_group_id of this LogSource.
        The `OCID`__ of the log group.
        Note: For the Notifications target, only _Audit is allowed.
        Example OCID for _Audit log group: ocid1.tenancy.oc1..exampleuniqueid/_Audit

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


        :return: The log_group_id of this LogSource.
        :rtype: str
        """
        return self._log_group_id

    @log_group_id.setter
    def log_group_id(self, log_group_id):
        """
        Sets the log_group_id of this LogSource.
        The `OCID`__ of the log group.
        Note: For the Notifications target, only _Audit is allowed.
        Example OCID for _Audit log group: ocid1.tenancy.oc1..exampleuniqueid/_Audit

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


        :param log_group_id: The log_group_id of this LogSource.
        :type: str
        """
        self._log_group_id = log_group_id

    @property
    def log_id(self):
        """
        Gets the log_id of this LogSource.
        The `OCID`__ of the log.

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


        :return: The log_id of this LogSource.
        :rtype: str
        """
        return self._log_id

    @log_id.setter
    def log_id(self, log_id):
        """
        Sets the log_id of this LogSource.
        The `OCID`__ of the log.

        __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm


        :param log_id: The log_id of this LogSource.
        :type: str
        """
        self._log_id = log_id

    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