File manager - Edit - /usr/lib/mysqlsh/lib/python3.9/site-packages/oci/vn_monitoring/models/create_virtual_circuit_details.py
Back
# coding: utf-8 # Copyright (c) 2016, 2026, 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: 20160918 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 CreateVirtualCircuitDetails(object): """ CreateVirtualCircuitDetails model. """ #: A constant which can be used with the type property of a CreateVirtualCircuitDetails. #: This constant has a value of "PUBLIC" TYPE_PUBLIC = "PUBLIC" #: A constant which can be used with the type property of a CreateVirtualCircuitDetails. #: This constant has a value of "PRIVATE" TYPE_PRIVATE = "PRIVATE" def __init__(self, **kwargs): """ Initializes a new CreateVirtualCircuitDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param bandwidth_shape_name: The value to assign to the bandwidth_shape_name property of this CreateVirtualCircuitDetails. :type bandwidth_shape_name: str :param compartment_id: The value to assign to the compartment_id property of this CreateVirtualCircuitDetails. :type compartment_id: str :param cross_connect_mappings: The value to assign to the cross_connect_mappings property of this CreateVirtualCircuitDetails. :type cross_connect_mappings: list[oci.vn_monitoring.models.CrossConnectMapping] :param is_transport_mode: The value to assign to the is_transport_mode property of this CreateVirtualCircuitDetails. :type is_transport_mode: bool :param customer_bgp_asn: The value to assign to the customer_bgp_asn property of this CreateVirtualCircuitDetails. :type customer_bgp_asn: int :param display_name: The value to assign to the display_name property of this CreateVirtualCircuitDetails. :type display_name: str :param gateway_id: The value to assign to the gateway_id property of this CreateVirtualCircuitDetails. :type gateway_id: str :param provider_name: The value to assign to the provider_name property of this CreateVirtualCircuitDetails. :type provider_name: str :param provider_service_id: The value to assign to the provider_service_id property of this CreateVirtualCircuitDetails. :type provider_service_id: str :param provider_service_name: The value to assign to the provider_service_name property of this CreateVirtualCircuitDetails. :type provider_service_name: str :param public_prefixes: The value to assign to the public_prefixes property of this CreateVirtualCircuitDetails. :type public_prefixes: list[oci.vn_monitoring.models.CreateVirtualCircuitPublicPrefixDetails] :param region: The value to assign to the region property of this CreateVirtualCircuitDetails. :type region: str :param type: The value to assign to the type property of this CreateVirtualCircuitDetails. Allowed values for this property are: "PUBLIC", "PRIVATE" :type type: str """ self.swagger_types = { 'bandwidth_shape_name': 'str', 'compartment_id': 'str', 'cross_connect_mappings': 'list[CrossConnectMapping]', 'is_transport_mode': 'bool', 'customer_bgp_asn': 'int', 'display_name': 'str', 'gateway_id': 'str', 'provider_name': 'str', 'provider_service_id': 'str', 'provider_service_name': 'str', 'public_prefixes': 'list[CreateVirtualCircuitPublicPrefixDetails]', 'region': 'str', 'type': 'str' } self.attribute_map = { 'bandwidth_shape_name': 'bandwidthShapeName', 'compartment_id': 'compartmentId', 'cross_connect_mappings': 'crossConnectMappings', 'is_transport_mode': 'isTransportMode', 'customer_bgp_asn': 'customerBgpAsn', 'display_name': 'displayName', 'gateway_id': 'gatewayId', 'provider_name': 'providerName', 'provider_service_id': 'providerServiceId', 'provider_service_name': 'providerServiceName', 'public_prefixes': 'publicPrefixes', 'region': 'region', 'type': 'type' } self._bandwidth_shape_name = None self._compartment_id = None self._cross_connect_mappings = None self._is_transport_mode = None self._customer_bgp_asn = None self._display_name = None self._gateway_id = None self._provider_name = None self._provider_service_id = None self._provider_service_name = None self._public_prefixes = None self._region = None self._type = None @property def bandwidth_shape_name(self): """ Gets the bandwidth_shape_name of this CreateVirtualCircuitDetails. The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see :func:`list_fast_connect_provider_virtual_circuit_bandwidth_shapes`. Example: `10 Gbps` :return: The bandwidth_shape_name of this CreateVirtualCircuitDetails. :rtype: str """ return self._bandwidth_shape_name @bandwidth_shape_name.setter def bandwidth_shape_name(self, bandwidth_shape_name): """ Sets the bandwidth_shape_name of this CreateVirtualCircuitDetails. The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see :func:`list_fast_connect_provider_virtual_circuit_bandwidth_shapes`. Example: `10 Gbps` :param bandwidth_shape_name: The bandwidth_shape_name of this CreateVirtualCircuitDetails. :type: str """ self._bandwidth_shape_name = bandwidth_shape_name @property def compartment_id(self): """ **[Required]** Gets the compartment_id of this CreateVirtualCircuitDetails. The `OCID`__ of the compartment to contain the virtual circuit. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The compartment_id of this CreateVirtualCircuitDetails. :rtype: str """ return self._compartment_id @compartment_id.setter def compartment_id(self, compartment_id): """ Sets the compartment_id of this CreateVirtualCircuitDetails. The `OCID`__ of the compartment to contain the virtual circuit. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param compartment_id: The compartment_id of this CreateVirtualCircuitDetails. :type: str """ self._compartment_id = compartment_id @property def cross_connect_mappings(self): """ Gets the cross_connect_mappings of this CreateVirtualCircuitDetails. Create a `CrossConnectMapping` for each cross-connect or cross-connect group this virtual circuit will run on. :return: The cross_connect_mappings of this CreateVirtualCircuitDetails. :rtype: list[oci.vn_monitoring.models.CrossConnectMapping] """ return self._cross_connect_mappings @cross_connect_mappings.setter def cross_connect_mappings(self, cross_connect_mappings): """ Sets the cross_connect_mappings of this CreateVirtualCircuitDetails. Create a `CrossConnectMapping` for each cross-connect or cross-connect group this virtual circuit will run on. :param cross_connect_mappings: The cross_connect_mappings of this CreateVirtualCircuitDetails. :type: list[oci.vn_monitoring.models.CrossConnectMapping] """ self._cross_connect_mappings = cross_connect_mappings @property def is_transport_mode(self): """ Gets the is_transport_mode of this CreateVirtualCircuitDetails. Set to `true` for the virtual circuit to carry only encrypted traffic, or set to `false` for the virtual circuit to carry unencrypted traffic. If this is not set, the default is `false`. :return: The is_transport_mode of this CreateVirtualCircuitDetails. :rtype: bool """ return self._is_transport_mode @is_transport_mode.setter def is_transport_mode(self, is_transport_mode): """ Sets the is_transport_mode of this CreateVirtualCircuitDetails. Set to `true` for the virtual circuit to carry only encrypted traffic, or set to `false` for the virtual circuit to carry unencrypted traffic. If this is not set, the default is `false`. :param is_transport_mode: The is_transport_mode of this CreateVirtualCircuitDetails. :type: bool """ self._is_transport_mode = is_transport_mode @property def customer_bgp_asn(self): """ Gets the customer_bgp_asn of this CreateVirtualCircuitDetails. Your BGP ASN (either public or private). Provide this value only if there's a BGP session that goes from your edge router to Oracle. Otherwise, leave this empty or null. :return: The customer_bgp_asn of this CreateVirtualCircuitDetails. :rtype: int """ return self._customer_bgp_asn @customer_bgp_asn.setter def customer_bgp_asn(self, customer_bgp_asn): """ Sets the customer_bgp_asn of this CreateVirtualCircuitDetails. Your BGP ASN (either public or private). Provide this value only if there's a BGP session that goes from your edge router to Oracle. Otherwise, leave this empty or null. :param customer_bgp_asn: The customer_bgp_asn of this CreateVirtualCircuitDetails. :type: int """ self._customer_bgp_asn = customer_bgp_asn @property def display_name(self): """ Gets the display_name of this CreateVirtualCircuitDetails. A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. :return: The display_name of this CreateVirtualCircuitDetails. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this CreateVirtualCircuitDetails. A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. :param display_name: The display_name of this CreateVirtualCircuitDetails. :type: str """ self._display_name = display_name @property def gateway_id(self): """ Gets the gateway_id of this CreateVirtualCircuitDetails. For private virtual circuits only. The `OCID`__ of the :class:`Drg` that this virtual circuit uses. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The gateway_id of this CreateVirtualCircuitDetails. :rtype: str """ return self._gateway_id @gateway_id.setter def gateway_id(self, gateway_id): """ Sets the gateway_id of this CreateVirtualCircuitDetails. For private virtual circuits only. The `OCID`__ of the :class:`Drg` that this virtual circuit uses. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param gateway_id: The gateway_id of this CreateVirtualCircuitDetails. :type: str """ self._gateway_id = gateway_id @property def provider_name(self): """ Gets the provider_name of this CreateVirtualCircuitDetails. Deprecated. Instead use `providerServiceId`. To get a list of the provider names, see :func:`list_fast_connect_provider_services`. :return: The provider_name of this CreateVirtualCircuitDetails. :rtype: str """ return self._provider_name @provider_name.setter def provider_name(self, provider_name): """ Sets the provider_name of this CreateVirtualCircuitDetails. Deprecated. Instead use `providerServiceId`. To get a list of the provider names, see :func:`list_fast_connect_provider_services`. :param provider_name: The provider_name of this CreateVirtualCircuitDetails. :type: str """ self._provider_name = provider_name @property def provider_service_id(self): """ Gets the provider_service_id of this CreateVirtualCircuitDetails. The `OCID`__ of the service offered by the provider (if you're connecting via a provider). To get a list of the available service offerings, see :func:`list_fast_connect_provider_services`. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :return: The provider_service_id of this CreateVirtualCircuitDetails. :rtype: str """ return self._provider_service_id @provider_service_id.setter def provider_service_id(self, provider_service_id): """ Sets the provider_service_id of this CreateVirtualCircuitDetails. The `OCID`__ of the service offered by the provider (if you're connecting via a provider). To get a list of the available service offerings, see :func:`list_fast_connect_provider_services`. __ https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param provider_service_id: The provider_service_id of this CreateVirtualCircuitDetails. :type: str """ self._provider_service_id = provider_service_id @property def provider_service_name(self): """ Gets the provider_service_name of this CreateVirtualCircuitDetails. Deprecated. Instead use `providerServiceId`. To get a list of the provider names, see :func:`list_fast_connect_provider_services`. :return: The provider_service_name of this CreateVirtualCircuitDetails. :rtype: str """ return self._provider_service_name @provider_service_name.setter def provider_service_name(self, provider_service_name): """ Sets the provider_service_name of this CreateVirtualCircuitDetails. Deprecated. Instead use `providerServiceId`. To get a list of the provider names, see :func:`list_fast_connect_provider_services`. :param provider_service_name: The provider_service_name of this CreateVirtualCircuitDetails. :type: str """ self._provider_service_name = provider_service_name @property def public_prefixes(self): """ Gets the public_prefixes of this CreateVirtualCircuitDetails. For a public virtual circuit. The public IP prefixes (CIDRs) the customer wants to advertise across the connection. :return: The public_prefixes of this CreateVirtualCircuitDetails. :rtype: list[oci.vn_monitoring.models.CreateVirtualCircuitPublicPrefixDetails] """ return self._public_prefixes @public_prefixes.setter def public_prefixes(self, public_prefixes): """ Sets the public_prefixes of this CreateVirtualCircuitDetails. For a public virtual circuit. The public IP prefixes (CIDRs) the customer wants to advertise across the connection. :param public_prefixes: The public_prefixes of this CreateVirtualCircuitDetails. :type: list[oci.vn_monitoring.models.CreateVirtualCircuitPublicPrefixDetails] """ self._public_prefixes = public_prefixes @property def region(self): """ Gets the region of this CreateVirtualCircuitDetails. The Oracle Cloud Infrastructure region where this virtual circuit is located. Example: `phx` :return: The region of this CreateVirtualCircuitDetails. :rtype: str """ return self._region @region.setter def region(self, region): """ Sets the region of this CreateVirtualCircuitDetails. The Oracle Cloud Infrastructure region where this virtual circuit is located. Example: `phx` :param region: The region of this CreateVirtualCircuitDetails. :type: str """ self._region = region @property def type(self): """ **[Required]** Gets the type of this CreateVirtualCircuitDetails. The type of IP addresses used in this virtual circuit. PRIVATE means `RFC 1918`__ addresses (10.0.0.0/8, 172.16/12, and 192.168/16). __ https://tools.ietf.org/html/rfc1918 Allowed values for this property are: "PUBLIC", "PRIVATE" :return: The type of this CreateVirtualCircuitDetails. :rtype: str """ return self._type @type.setter def type(self, type): """ Sets the type of this CreateVirtualCircuitDetails. The type of IP addresses used in this virtual circuit. PRIVATE means `RFC 1918`__ addresses (10.0.0.0/8, 172.16/12, and 192.168/16). __ https://tools.ietf.org/html/rfc1918 :param type: The type of this CreateVirtualCircuitDetails. :type: str """ allowed_values = ["PUBLIC", "PRIVATE"] if not value_allowed_none_or_none_sentinel(type, allowed_values): raise ValueError( f"Invalid value for `type`, must be None or one of {allowed_values}" ) self._type = type 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
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings