HEX
Server: Apache
System: Linux scp1.abinfocom.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: confeduphaar (1010)
PHP: 8.1.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //lib/mysqlsh/lib/python3.8/site-packages/oci/sch/models/notifications_target_details_response.py
# coding: utf-8
# Copyright (c) 2016, 2025, 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 .target_details_response import TargetDetailsResponse
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 NotificationsTargetDetailsResponse(TargetDetailsResponse):
    """
    The destination topic for data transferred from the source.
    For configuration instructions, see
    `Creating a Connector`__.

    __ https://docs.cloud.oracle.com/iaas/Content/connector-hub/create-service-connector.htm
    """

    def __init__(self, **kwargs):
        """
        Initializes a new NotificationsTargetDetailsResponse object with values from keyword arguments. The default value of the :py:attr:`~oci.sch.models.NotificationsTargetDetailsResponse.kind` attribute
        of this class is ``notifications`` and it should not be changed.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param private_endpoint_metadata:
            The value to assign to the private_endpoint_metadata property of this NotificationsTargetDetailsResponse.
        :type private_endpoint_metadata: oci.sch.models.PrivateEndpointMetadata

        :param kind:
            The value to assign to the kind property of this NotificationsTargetDetailsResponse.
            Allowed values for this property are: "functions", "loggingAnalytics", "monitoring", "notifications", "objectStorage", "streaming"
        :type kind: str

        :param topic_id:
            The value to assign to the topic_id property of this NotificationsTargetDetailsResponse.
        :type topic_id: str

        :param enable_formatted_messaging:
            The value to assign to the enable_formatted_messaging property of this NotificationsTargetDetailsResponse.
        :type enable_formatted_messaging: bool

        """
        self.swagger_types = {
            'private_endpoint_metadata': 'PrivateEndpointMetadata',
            'kind': 'str',
            'topic_id': 'str',
            'enable_formatted_messaging': 'bool'
        }
        self.attribute_map = {
            'private_endpoint_metadata': 'privateEndpointMetadata',
            'kind': 'kind',
            'topic_id': 'topicId',
            'enable_formatted_messaging': 'enableFormattedMessaging'
        }
        self._private_endpoint_metadata = None
        self._kind = None
        self._topic_id = None
        self._enable_formatted_messaging = None
        self._kind = 'notifications'

    @property
    def topic_id(self):
        """
        **[Required]** Gets the topic_id of this NotificationsTargetDetailsResponse.
        The `OCID`__ of the topic.

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


        :return: The topic_id of this NotificationsTargetDetailsResponse.
        :rtype: str
        """
        return self._topic_id

    @topic_id.setter
    def topic_id(self, topic_id):
        """
        Sets the topic_id of this NotificationsTargetDetailsResponse.
        The `OCID`__ of the topic.

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


        :param topic_id: The topic_id of this NotificationsTargetDetailsResponse.
        :type: str
        """
        self._topic_id = topic_id

    @property
    def enable_formatted_messaging(self):
        """
        Gets the enable_formatted_messaging of this NotificationsTargetDetailsResponse.
        Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
        Example: `true`


        :return: The enable_formatted_messaging of this NotificationsTargetDetailsResponse.
        :rtype: bool
        """
        return self._enable_formatted_messaging

    @enable_formatted_messaging.setter
    def enable_formatted_messaging(self, enable_formatted_messaging):
        """
        Sets the enable_formatted_messaging of this NotificationsTargetDetailsResponse.
        Whether to apply a simplified, user-friendly format to the message. Applies only when friendly formatting is supported by the connector source and the subscription protocol.
        Example: `true`


        :param enable_formatted_messaging: The enable_formatted_messaging of this NotificationsTargetDetailsResponse.
        :type: bool
        """
        self._enable_formatted_messaging = enable_formatted_messaging

    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