File: //lib/mysqlsh/lib/python3.8/site-packages/oci/core/models/vcn_drg_attachment_network_details.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: 20160918
from .drg_attachment_network_details import DrgAttachmentNetworkDetails
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 VcnDrgAttachmentNetworkDetails(DrgAttachmentNetworkDetails):
"""
Specifies details within the VCN.
"""
#: A constant which can be used with the vcn_route_type property of a VcnDrgAttachmentNetworkDetails.
#: This constant has a value of "VCN_CIDRS"
VCN_ROUTE_TYPE_VCN_CIDRS = "VCN_CIDRS"
#: A constant which can be used with the vcn_route_type property of a VcnDrgAttachmentNetworkDetails.
#: This constant has a value of "SUBNET_CIDRS"
VCN_ROUTE_TYPE_SUBNET_CIDRS = "SUBNET_CIDRS"
def __init__(self, **kwargs):
"""
Initializes a new VcnDrgAttachmentNetworkDetails object with values from keyword arguments. The default value of the :py:attr:`~oci.core.models.VcnDrgAttachmentNetworkDetails.type` attribute
of this class is ``VCN`` and it should not be changed.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param type:
The value to assign to the type property of this VcnDrgAttachmentNetworkDetails.
Allowed values for this property are: "VCN", "IPSEC_TUNNEL", "VIRTUAL_CIRCUIT", "REMOTE_PEERING_CONNECTION", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:type type: str
:param id:
The value to assign to the id property of this VcnDrgAttachmentNetworkDetails.
:type id: str
:param route_table_id:
The value to assign to the route_table_id property of this VcnDrgAttachmentNetworkDetails.
:type route_table_id: str
:param vcn_route_type:
The value to assign to the vcn_route_type property of this VcnDrgAttachmentNetworkDetails.
Allowed values for this property are: "VCN_CIDRS", "SUBNET_CIDRS", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:type vcn_route_type: str
"""
self.swagger_types = {
'type': 'str',
'id': 'str',
'route_table_id': 'str',
'vcn_route_type': 'str'
}
self.attribute_map = {
'type': 'type',
'id': 'id',
'route_table_id': 'routeTableId',
'vcn_route_type': 'vcnRouteType'
}
self._type = None
self._id = None
self._route_table_id = None
self._vcn_route_type = None
self._type = 'VCN'
@property
def route_table_id(self):
"""
Gets the route_table_id of this VcnDrgAttachmentNetworkDetails.
The `OCID`__ of the route table the DRG attachment is using.
For information about why you would associate a route table with a DRG attachment, see:
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
:return: The route_table_id of this VcnDrgAttachmentNetworkDetails.
:rtype: str
"""
return self._route_table_id
@route_table_id.setter
def route_table_id(self, route_table_id):
"""
Sets the route_table_id of this VcnDrgAttachmentNetworkDetails.
The `OCID`__ of the route table the DRG attachment is using.
For information about why you would associate a route table with a DRG attachment, see:
* `Transit Routing: Access to Multiple VCNs in Same Region`__
* `Transit Routing: Private Access to Oracle Services`__
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitrouting.htm
__ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm
:param route_table_id: The route_table_id of this VcnDrgAttachmentNetworkDetails.
:type: str
"""
self._route_table_id = route_table_id
@property
def vcn_route_type(self):
"""
Gets the vcn_route_type of this VcnDrgAttachmentNetworkDetails.
Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment.
Routes from the VCN ingress route table are always imported.
Allowed values for this property are: "VCN_CIDRS", "SUBNET_CIDRS", 'UNKNOWN_ENUM_VALUE'.
Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
:return: The vcn_route_type of this VcnDrgAttachmentNetworkDetails.
:rtype: str
"""
return self._vcn_route_type
@vcn_route_type.setter
def vcn_route_type(self, vcn_route_type):
"""
Sets the vcn_route_type of this VcnDrgAttachmentNetworkDetails.
Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment.
Routes from the VCN ingress route table are always imported.
:param vcn_route_type: The vcn_route_type of this VcnDrgAttachmentNetworkDetails.
:type: str
"""
allowed_values = ["VCN_CIDRS", "SUBNET_CIDRS"]
if not value_allowed_none_or_none_sentinel(vcn_route_type, allowed_values):
vcn_route_type = 'UNKNOWN_ENUM_VALUE'
self._vcn_route_type = vcn_route_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