ruạṛ
a ���f�Q � @ s8 d dl mZmZmZ d dlmZ eG dd� de��ZdS )� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ s� e Zd ZdZdZdZdZdZdZdZ dd � Z ed d� �Zej dd� �Zed d� �Zej dd� �Zedd� �Zej dd� �Zedd� �Zej dd� �Zedd� �Zej dd� �Zedd� �Zej dd� �Zedd� �Zej dd� �Zedd � �Zej d!d � �Zed"d#� �Zej d$d#� �Zed%d&� �Zej d'd&� �Zed(d)� �Zej d*d)� �Zed+d,� �Zej d-d,� �Zed.d/� �Zej d0d/� �Zed1d2� �Zej d3d2� �Zed4d5� �Zej d6d5� �Zd7d8� Zd9d:� Zd;d<� Zd=S )>�CrossConnecta� For use with Oracle Cloud Infrastructure FastConnect. A cross-connect represents a physical connection between an existing network and Oracle. Customers who are colocated with Oracle in a FastConnect location create and use cross-connects. For more information, see `FastConnect Overview`__. Oracle recommends you create each cross-connect in a :class:`CrossConnectGroup` so you can use link aggregation with the connection. **Note:** If you're a provider who is setting up a physical connection to Oracle so customers can use FastConnect over the connection, be aware that your connection is modeled the same way as a colocated customer's (with `CrossConnect` and `CrossConnectGroup` objects, and so on). To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see `Getting Started with Policies`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/policygetstarted.htm �PENDING_CUSTOMER�PROVISIONING�PROVISIONED�INACTIVE�TERMINATING� TERMINATEDc K s� dddddddddddddddd�| _ ddd d ddd ddddddddd�| _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _d| _d| _dS )a/ Initializes a new CrossConnect 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 CrossConnect. :type compartment_id: str :param cross_connect_group_id: The value to assign to the cross_connect_group_id property of this CrossConnect. :type cross_connect_group_id: str :param defined_tags: The value to assign to the defined_tags property of this CrossConnect. :type defined_tags: dict(str, dict(str, object)) :param display_name: The value to assign to the display_name property of this CrossConnect. :type display_name: str :param freeform_tags: The value to assign to the freeform_tags property of this CrossConnect. :type freeform_tags: dict(str, str) :param id: The value to assign to the id property of this CrossConnect. :type id: str :param lifecycle_state: The value to assign to the lifecycle_state property of this CrossConnect. Allowed values for this property are: "PENDING_CUSTOMER", "PROVISIONING", "PROVISIONED", "INACTIVE", "TERMINATING", "TERMINATED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str :param location_name: The value to assign to the location_name property of this CrossConnect. :type location_name: str :param port_name: The value to assign to the port_name property of this CrossConnect. :type port_name: str :param port_speed_shape_name: The value to assign to the port_speed_shape_name property of this CrossConnect. :type port_speed_shape_name: str :param customer_reference_name: The value to assign to the customer_reference_name property of this CrossConnect. :type customer_reference_name: str :param time_created: The value to assign to the time_created property of this CrossConnect. :type time_created: datetime :param macsec_properties: The value to assign to the macsec_properties property of this CrossConnect. :type macsec_properties: oci.core.models.MacsecProperties :param oci_physical_device_name: The value to assign to the oci_physical_device_name property of this CrossConnect. :type oci_physical_device_name: str :param oci_logical_device_name: The value to assign to the oci_logical_device_name property of this CrossConnect. :type oci_logical_device_name: str �strzdict(str, dict(str, object))zdict(str, str)ZdatetimeZMacsecProperties)�compartment_id�cross_connect_group_id�defined_tags�display_name� freeform_tags�id�lifecycle_state� location_name� port_name�port_speed_shape_name�customer_reference_name�time_created�macsec_properties�oci_physical_device_name�oci_logical_device_nameZ compartmentIdZcrossConnectGroupIdZdefinedTagsZdisplayNameZfreeformTagsr ZlifecycleStateZlocationNameZportNameZportSpeedShapeNameZcustomerReferenceNameZtimeCreatedZmacsecPropertiesZociPhysicalDeviceNameZociLogicalDeviceNameN)Z swagger_typesZ attribute_map�_compartment_id�_cross_connect_group_id� _defined_tags� _display_name�_freeform_tags�_id�_lifecycle_state�_location_name� _port_name�_port_speed_shape_name�_customer_reference_name� _time_created�_macsec_properties�_oci_physical_device_name�_oci_logical_device_name)�self�kwargs� r. �A/usr/lib/python3.9/site-packages/oci/core/models/cross_connect.py�__init__<