a f@sddlmZddlmZddlmZddlmZmZddlm Z ddl m Z m Z ddl mZddlmZmZmZdd lmZdd lmZd d lmZed ZGdddeZdS))absolute_import)requests)six)retrycircuit_breaker) BaseClient)get_config_value_or_defaultvalidate_config)Signer)Sentinel#get_signer_from_authentication_typeAUTHENTICATION_TYPE_FIELD_NAME)InvalidAlloyConfig)OCI_SDK_ENABLED_SERVICES_SET)core_type_mappingZMissingc@s eZdZdZddZddZddZdd Zd d Zd d Z ddZ ddZ ddZ ddZ ddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1Zd2d3Zd4d5Zd6d7Zd8d9Zd:d;Z dd?Z"d@dAZ#dBdCZ$dDdEZ%dFdGZ&dHdIZ'dJdKZ(dLdMZ)dNdOZ*dPdQZ+dRdSZ,dTdUZ-dVdWZ.dXdYZ/dZd[Z0d\d]Z1d^d_Z2d`daZ3dbdcZ4dddeZ5dfdgZ6dhdiZ7djdkZ8dldmZ9dndoZ:dpdqZ;drdsZdxdyZ?dzd{Z@d|d}ZAd~dZBddZCddZDddZEddZFddZGddZHddZIddZJddZKddZLddZMddZNddZOddZPddZQddZRddZSddZTddZUddZVddZWddZXddZYddZZddZ[ddZ\ddZ]ddZ^ddZ_ddZ`ddZaddZbddZcddÄZdddńZeddDŽZfddɄZgdd˄Zhdd̈́ZiddτZjddфZkddӄZlddՄZmddׄZnddلZoddۄZpdd݄Zqdd߄ZrddZsddZtddZuddZvddZwddZxddZyddZzddZ{ddZ|ddZ}ddZ~ddZddZddZddZddZddZddZddZdd Zd d Zd d ZddZddZddZddZddZddZddZddZddZd d!Zd"d#Zd$d%Zd&d'Zd(d)Zd*d+Zd,d-Zd.d/Zd0d1Zd2d3Zd4d5Zd6d7Zd8d9Zd:d;Zd<d=Zd>d?Zd@dAZdBdCZdDdEZdFdGZdHdIZdJdKZdLdMZdNdOZdPdQZdRdSZdTdUZdVdWZdXdYZdZd[Zd\d]Zd^d_Zd`daZdbdcZdddeZdfdgZdhdiZdjdkZdldmZdndoZdpdqZdrdsZdtduZdvdwZdxdyZdzd{Zd|d}Zd~dZddZÐddZĐddZŐddZƐddZǐddZȐddZɐddZʐddZːddZ̐ddZ͐ddZΐddZϐddZАddZѐddZҐddZӐddZԐddZՐddZ֐ddZאddZؐddZِddZڐddZېddZܐddZݐddZސddZߐddZddZddZddZddÄZdĐdńZdƐdDŽZdȐdɄZdʐd˄Zd̐d̈́ZdΐdτZdАdфZdҐdӄZdԐdՄZd֐dׄZdؐdلZdڐdۄZdܐd݄Zdސd߄ZddZddZddZddZddZddZddZddZddZdS(VirtualNetworkClienta4 Use the Core Services API to manage resources such as virtual cloud networks (VCNs), compute instances, and block storage volumes. For more information, see the console documentation for the [Networking](/iaas/Content/Network/Concepts/overview.htm), [Compute](/iaas/Content/Compute/Concepts/computeoverview.htm), and [Block Volume](/iaas/Content/Block/Concepts/overview.htm) services. The required permissions are documented in the [Details for the Core Services](/iaas/Content/Identity/Reference/corepolicyreference.htm) article. c Ks2tdstdt||ddd|vr6|d}nDt|vrHt|}n2t|d|d|d|dt|d |d d }d |d ddi|dd|dt j |dd}d|vr|d|d<|ddurt j |d<d|vr|d|d<t d||t fi||_|d|_|d|_||_||_dS)a Creates a new service client :param dict config: Configuration keys and values as per `SDK and Tool Configuration `__. The :py:meth:`~oci.config.from_file` method can be used to load configuration from a file. Alternatively, a ``dict`` can be passed. You can validate_config the dict using :py:meth:`~oci.config.validate_config` :param str service_endpoint: (optional) The endpoint of the service to call using this client. For example ``https://iaas.us-ashburn-1.oraclecloud.com``. If this keyword argument is not provided then it will be derived using the region in the config parameter. You should only provide this keyword argument if you have an explicit need to specify a service endpoint. :param timeout: (optional) The connection and read timeouts for the client. The default values are connection timeout 10 seconds and read timeout 60 seconds. This keyword argument can be provided as a single float, in which case the value provided is used for both the read and connection timeouts, or as a tuple of two floats. If a tuple is provided then the first value is used as the connection timeout and the second value as the read timeout. :type timeout: float or tuple(float, float) :param signer: (optional) The signer to use when signing requests made by the service client. The default is to use a :py:class:`~oci.signer.Signer` based on the values provided in the config parameter. One use case for this parameter is for `Instance Principals authentication `__ by passing an instance of :py:class:`~oci.auth.signers.InstancePrincipalsSecurityTokenSigner` as the value for this keyword argument :type signer: :py:class:`~oci.signer.AbstractBaseSigner` :param obj retry_strategy: (optional) A retry strategy to apply to all calls made by this service client (i.e. at the client level). There is no retry strategy applied by default. Retry strategies can also be applied at the operation level by passing a ``retry_strategy`` keyword argument as part of calling the operation. Any value provided at the operation level will override whatever is specified at the client level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. A convenience :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` is also available. The specifics of the default retry strategy are described `here `__. :param obj circuit_breaker_strategy: (optional) A circuit breaker strategy to apply to all calls made by this service client (i.e. at the client level). This client uses :py:data:`~oci.circuit_breaker.DEFAULT_CIRCUIT_BREAKER_STRATEGY` as default if no circuit breaker strategy is provided. The specifics of circuit breaker strategy are described `here `__. :param function circuit_breaker_callback: (optional) Callback function to receive any exceptions triggerred by the circuit breaker. :param bool client_level_realm_specific_endpoint_template_enabled: (optional) A boolean flag to indicate whether or not this client should be created with realm specific endpoint template enabled or disable. By default, this will be set as None. :param allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this client should allow control characters in the response object. By default, the client will not allow control characters to be in the response object. ZcoreaThe Alloy configuration has disabled this service, this behavior is controlled by OCI_SDK_ENABLED_SERVICES_SET variable. Please check if your local alloy-config file configured the service you're targeting or contact the cloud provider on the availability of this servicesigner)rtenancyuser fingerprintZkey_file pass_phraseZ key_content)rrrZprivate_key_file_locationrZprivate_key_contentTservice_endpointz /20160918z)https://iaas.{region}.{secondLevelDomain}skip_deserializationFcircuit_breaker_strategy5client_level_realm_specific_endpoint_template_enabled)Zregional_clientr base_pathZservice_endpoint_templateZ#service_endpoint_template_per_realmrrrtimeoutNallow_control_charsZvirtual_networkretry_strategycircuit_breaker_callback)rZis_service_enabledrr getr r r rrZGLOBAL_CIRCUIT_BREAKER_STRATEGYZ DEFAULT_CIRCUIT_BREAKER_STRATEGYrr base_clientrr Z_config_kwargs)selfZconfigkwargsrZbase_client_init_kwargsr&C/usr/lib/python3.9/site-packages/oci/core/virtual_network_client.py__init__"sF3          zVirtualNetworkClient.__init__c sJdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|r t|t j s|j| ||j|j|jj||| | |d| d|||d S|jj||| | |d| d|||d Sd S)a Adds one or more route distribution statements to the specified route distribution. :param str drg_route_distribution_id: (required) The `OCID`__ of the route distribution. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.AddDrgRouteDistributionStatementsDetails add_drg_route_distribution_statements_details: (required) Request with one or more route distribution statements to be inserted into the route distribution. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistributionStatement` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use add_drg_route_distribution_statements API. drgRouteDistributionIdzY/drgRouteDistributions/{drgRouteDistributionId}/actions/addDrgRouteDistributionStatementsPOST%add_drg_route_distribution_statementszshttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistributionStatement/AddDrgRouteDistributionStatementsrcsg|]}|vr|qSr&r&.0Z_keyZexpected_kwargsr&r' zNVirtualNetworkClient.add_drg_route_distribution_statements..z:add_drg_route_distribution_statements got unknown kwargs: cSsi|]\}}|tur||qSr&missingr-kvr&r&r' r0zNVirtualNetworkClient.add_drg_route_distribution_statements..Nr Parameter + cannot be None, whitespace or empty stringapplication/jsonaccept content-typeZoperation_retry_strategyZclient_retry_strategy#list[DrgRouteDistributionStatement]r resource_pathmethod path_params header_paramsbody response_typeroperation_nameapi_reference_linkrequired_argumentsriterkeys ValueError iteritems isinstance string_typeslenstripr"get_preferred_retry_strategyr!rrNoneRetryStrategyadd_opc_client_retries_headeradd_circuit_breaker_callbackr make_retrying_callcall_api)r$drg_route_distribution_idZ-add_drg_route_distribution_statements_detailsr%rHr@rArFrG extra_kwargsrBr4r5rCrr&r.r'r+sj $    z:VirtualNetworkClient.add_drg_route_distribution_statementsc sxdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rNt|t js$|j | |j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a8 Adds one or more static route rules to the specified DRG route table. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.AddDrgRouteRulesDetails add_drg_route_rules_details: (required) Request for one or more route rules to be inserted into the DRG route table. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteRule` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use add_drg_route_rules API. drgRouteTableIdz:/drgRouteTables/{drgRouteTableId}/actions/addDrgRouteRulesr*add_drg_route_ruleszQhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteRule/AddDrgRouteRulesrropc_retry_tokencsg|]}|vr|qSr&r&r,r.r&r'r/r0z.z(add_drg_route_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z.Nrr7r8r9r\r;r<opc-retry-tokencSs&i|]\}}|tur|dur||qSNr1r3r&r&r'r6#r0rr=list[DrgRouteRule]rr?rrJrKrLrMrNrOrPr!r2r"rQrrrRadd_opc_retry_token_if_neededrSrTr rUrV)r$drg_route_table_idZadd_drg_route_rules_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rZsp'$     z(VirtualNetworkClient.add_drg_route_rulesc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Add an IPv6 prefix to a subnet. :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.AddSubnetIpv6CidrDetails add_subnet_ipv6_cidr_details: (required) Details object for adding an IPv6 prefix to a subnet. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use add_ipv6_subnet_cidr API. subnetIdz'/subnets/{subnetId}/actions/addIpv6Cidrr*add_ipv6_subnet_cidrzLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Subnet/AddIpv6SubnetCidrrrr\if_matchopc_request_idcsg|]}|vr|qSr&r&r,r.r&r'r/r0z=VirtualNetworkClient.add_ipv6_subnet_cidr..z)add_ipv6_subnet_cidr got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z=VirtualNetworkClient.add_ipv6_subnet_cidr..Nrr7r8r9r\rgrhr;r<r^if-matchopc-request-idcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=r r@rArBrCrDrrFrGrHra)r$ subnet_idZadd_subnet_ipv6_cidr_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'reHsp0$       z)VirtualNetworkClient.add_ipv6_subnet_cidrc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d} | rft| t js8|j | |j | | |j| j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a] Add an IPv6 prefix to a VCN. The VCN size is always /56 and assigned by Oracle. Once added the IPv6 prefix cannot be removed or modified. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param oci.core.models.AddVcnIpv6CidrDetails add_vcn_ipv6_cidr_details: (optional) Details object for adding an IPv6 VCN CIDR. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use add_ipv6_vcn_cidr API. vcnIdz!/vcns/{vcnId}/actions/addIpv6Cidrr*add_ipv6_vcn_cidrzFhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/AddIpv6VcnCidr)rrrhr\rgadd_vcn_ipv6_cidr_detailscsg|]}|vr|qSr&r&r,r.r&r'r/r0z:VirtualNetworkClient.add_ipv6_vcn_cidr..z&add_ipv6_vcn_cidr got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z:VirtualNetworkClient.add_ipv6_vcn_cidr..Nrr7r8r9rhr\rgr;r<rkr^rjcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rprrlrar$vcn_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rosp1$       z&VirtualNetworkClient.add_ipv6_vcn_cidrc sJdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|r t|t j s|j| ||j|j|jj||| | |d| d|||d S|jj||| | |d| d|||d Sd S)a Adds one or more security rules to the specified network security group. :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.AddNetworkSecurityGroupSecurityRulesDetails add_network_security_group_security_rules_details: (required) Request with one or more security rules to be associated with the network security group. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AddedNetworkSecurityGroupSecurityRules` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use add_network_security_group_security_rules API. networkSecurityGroupIdzH/networkSecurityGroups/{networkSecurityGroupId}/actions/addSecurityRulesr*)add_network_security_group_security_ruleszehttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityRule/AddNetworkSecurityGroupSecurityRulesrcsg|]}|vr|qSr&r&r,r.r&r'r/_r0zRVirtualNetworkClient.add_network_security_group_security_rules..z>add_network_security_group_security_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6hr0zRVirtualNetworkClient.add_network_security_group_security_rules..Nrr7r8r9r:r=Z&AddedNetworkSecurityGroupSecurityRulesrr?rI)r$network_security_group_idZ1add_network_security_group_security_rules_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'ru8sj $    z>VirtualNetworkClient.add_network_security_group_security_rulesc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rXt|t js.|j | |j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a] Adds some or all of a CIDR block to a public IP pool. The CIDR block (or subrange) must not overlap with any other CIDR block already added to this or any other public IP pool. :param str public_ip_pool_id: (required) The `OCID`__ of the public IP pool. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.AddPublicIpPoolCapacityDetails add_public_ip_pool_capacity_details: (required) Byoip Range prefix and a cidr from it :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use add_public_ip_pool_capacity API. publicIpPoolIdz3/publicIpPools/{publicIpPoolId}/actions/addCapacityr*add_public_ip_pool_capacityzXhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/AddPublicIpPoolCapacityrrrhr\csg|]}|vr|qSr&r&r,r.r&r'r/r0zDVirtualNetworkClient.add_public_ip_pool_capacity..z0add_public_ip_pool_capacity got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zDVirtualNetworkClient.add_public_ip_pool_capacity..Nrr7r8r9rhr\r;r<rkr^cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr= PublicIpPoolrr?ra)r$public_ip_pool_idZ#add_public_ip_pool_capacity_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rxsr-$      z0VirtualNetworkClient.add_public_ip_pool_capacityc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Adds a CIDR block to a VCN. The CIDR block you add: - Must be valid. - Must not overlap with another CIDR block in the VCN, a CIDR block of a peered VCN, or the on-premises network CIDR block. - Must not exceed the limit of CIDR blocks allowed per VCN. **Note:** Adding a CIDR block places your VCN in an updating state until the changes are complete. You cannot create or update the VCN's subnets, VLANs, LPGs, or route tables during this operation. The time to completion can take a few minutes. You can use the `GetWorkRequest` operation to check the status of the update. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.AddVcnCidrDetails add_vcn_cidr_details: (required) Details object for deleting a VCN CIDR. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use add_vcn_cidr API. rnz/vcns/{vcnId}/actions/addCidrr* add_vcn_cidrzBhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/AddVcnCidrrrrhr\rgcsg|]}|vr|qSr&r&r,r.r&r'r/Mr0z5VirtualNetworkClient.add_vcn_cidr..z!add_vcn_cidr got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Vr0z5VirtualNetworkClient.add_vcn_cidr..Nrr7r8r9rhr\rgrqcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6cr0rr=rrlra)r$rsZadd_vcn_cidr_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r} sp6$       z!VirtualNetworkClient.add_vcn_cidrc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Begins BGP route advertisements for the BYOIP CIDR block you imported to the Oracle Cloud. The `ByoipRange` resource must be in the PROVISIONED state before the BYOIP CIDR block routes can be advertised with BGP. :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use advertise_byoip_range API. byoipRangeIdz-/byoipRanges/{byoipRangeId}/actions/advertiser*advertise_byoip_rangezRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/AdvertiseByoipRangerrrhcsg|]}|vr|qSr&r&r,r.r&r'r/r0z>VirtualNetworkClient.advertise_byoip_range..z*advertise_byoip_range got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z>VirtualNetworkClient.advertise_byoip_range..Nrr7r8r9rhr;r<rkcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rr@rArBrCrrFrGrHrrJrKrLrMrNrOrPr!r2r"rQrrrRrSrTr rUrVr$byoip_range_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsf"$    z*VirtualNetworkClient.advertise_byoip_rangec sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Adds the specified :class:`Service` to the list of enabled `Service` objects for the specified gateway. You must also set up a route rule with the `cidrBlock` of the `Service` as the rule's destination and the service gateway as the rule's target. See :class:`RouteTable`. **Note:** The `AttachServiceId` operation is an easy way to add an individual `Service` to the service gateway. Compare it with :func:`update_service_gateway`, which replaces the entire existing list of enabled `Service` objects with the list that you provide in the `Update` call. :param str service_gateway_id: (required) The service gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ServiceIdRequestDetails attach_service_details: (required) ServiceId of Service to be attached to a service gateway. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use attach_service_id API. serviceGatewayIdz9/serviceGateways/{serviceGatewayId}/actions/attachServicer*attach_service_idzRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ServiceGateway/AttachServiceIdrrrgcsg|]}|vr|qSr&r&r,r.r&r'r/"r0z:VirtualNetworkClient.attach_service_id..z&attach_service_id got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6+r0z:VirtualNetworkClient.attach_service_id..Nrr7r8r9rgr;r<rjcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r66r0rr=ServiceGatewayrr?r)r$service_gateway_idZattach_service_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsn.$    z&VirtualNetworkClient.attach_service_idc sVdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|d urt j }|r.t|t js|j| ||j|j|jj||| | || d|||d S|jj||| | || d|||d Sd S)a5 Adds one or more customer public IP prefixes to the specified public virtual circuit. Use this operation (and not :func:`update_virtual_circuit`) to add prefixes to the virtual circuit. Oracle must verify the customer's ownership of each prefix before traffic for that prefix will flow across the virtual circuit. :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.BulkAddVirtualCircuitPublicPrefixesDetails bulk_add_virtual_circuit_public_prefixes_details: (required) Request with publix prefixes to be added to the virtual circuit :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use bulk_add_virtual_circuit_public_prefixes API. virtualCircuitIdzA/virtualCircuits/{virtualCircuitId}/actions/bulkAddPublicPrefixesr*(bulk_add_virtual_circuit_public_prefixeszrhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuitPublicPrefix/BulkAddVirtualCircuitPublicPrefixesrcsg|]}|vr|qSr&r&r,r.r&r'r/r0zQVirtualNetworkClient.bulk_add_virtual_circuit_public_prefixes..z=bulk_add_virtual_circuit_public_prefixes got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zQVirtualNetworkClient.bulk_add_virtual_circuit_public_prefixes..Nrr7r8r9r:r=rrlrrJrKrLrMrNrOrPr"rQr!rrDEFAULT_RETRY_STRATEGYrRrSrTr rUrV)r$virtual_circuit_idZ0bulk_add_virtual_circuit_public_prefixes_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rZsj#$   z=VirtualNetworkClient.bulk_add_virtual_circuit_public_prefixesc sVdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|d urt j }|r.t|t js|j| ||j|j|jj||| | || d|||d S|jj||| | || d|||d Sd S)aV Removes one or more customer public IP prefixes from the specified public virtual circuit. Use this operation (and not :func:`update_virtual_circuit`) to remove prefixes from the virtual circuit. When the virtual circuit's state switches back to PROVISIONED, Oracle stops advertising the specified prefixes across the connection. :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.BulkDeleteVirtualCircuitPublicPrefixesDetails bulk_delete_virtual_circuit_public_prefixes_details: (required) Request with public prefixes to be deleted from the virtual circuit. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use bulk_delete_virtual_circuit_public_prefixes API. rzD/virtualCircuits/{virtualCircuitId}/actions/bulkDeletePublicPrefixesr*+bulk_delete_virtual_circuit_public_prefixeszuhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuitPublicPrefix/BulkDeleteVirtualCircuitPublicPrefixesrcsg|]}|vr|qSr&r&r,r.r&r'r/r0zTVirtualNetworkClient.bulk_delete_virtual_circuit_public_prefixes..z@bulk_delete_virtual_circuit_public_prefixes got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zTVirtualNetworkClient.bulk_delete_virtual_circuit_public_prefixes..Nrr7r8r9r:r=rrlr)r$rZ3bulk_delete_virtual_circuit_public_prefixes_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsj#$   z@VirtualNetworkClient.bulk_delete_virtual_circuit_public_prefixesc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a BYOIP CIDR block to a different compartment. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeByoipRangeCompartmentDetails change_byoip_range_compartment_details: (required) Request to change the compartment of a BYOIP CIDR block. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_byoip_range_compartment API. rz5/byoipRanges/{byoipRangeId}/actions/changeCompartmentr*change_byoip_range_compartmentzZhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/ChangeByoipRangeCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/Vr0zGVirtualNetworkClient.change_byoip_range_compartment..z3change_byoip_range_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6_r0zGVirtualNetworkClient.change_byoip_range_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6kr0rr=rrlra)r$rZ&change_byoip_range_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsn/$      z3VirtualNetworkClient.change_byoip_range_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)aD Moves a capture filter to a new compartment in the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str capture_filter_id: (required) The `OCID`__ of the capture filter. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeCaptureFilterCompartmentDetails change_capture_filter_compartment_details: (required) Request to change the compartment of a VTAP. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_capture_filter_compartment API. captureFilterIdz;/captureFilters/{captureFilterId}/actions/changeCompartmentr*!change_capture_filter_compartmentz`https://docs.oracle.com/iaas/api/#/en/iaas/20160918/CaptureFilter/ChangeCaptureFilterCompartmentrrrgrhr\csg|]}|vr|qSr&r&r,r.r&r'r/r0zJVirtualNetworkClient.change_capture_filter_compartment..z6change_capture_filter_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zJVirtualNetworkClient.change_capture_filter_compartment..Nrr7r8r9rgrhr\r;r<rjrkr^cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrlra)r$capture_filter_idZ)change_capture_filter_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsp4$       z6VirtualNetworkClient.change_capture_filter_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|d urt j}|rft|t js>|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)aX Moves a CPE object into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str cpe_id: (required) The `OCID`__ of the CPE. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeCpeCompartmentDetails change_cpe_compartment_details: (required) Request to change the compartment of a CPE. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_cpe_compartment API. cpeIdz'/cpes/{cpeId}/actions/changeCompartmentr*change_cpe_compartmentzLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Cpe/ChangeCpeCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/Er0z?VirtualNetworkClient.change_cpe_compartment..z+change_cpe_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Nr0z?VirtualNetworkClient.change_cpe_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Zr0rr=rrlrrJrKrLrMrNrOrPr!r2r"rQrrrrRrbrSrTr rUrV)r$cpe_idZchange_cpe_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sr/$       z+VirtualNetworkClient.change_cpe_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|d urt j}|rft|t js>|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a cross-connect into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str cross_connect_id: (required) The `OCID`__ of the cross-connect. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeCrossConnectCompartmentDetails change_cross_connect_compartment_details: (required) Request to change the compartment of a Cross Connect. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_cross_connect_compartment API. crossConnectIdz9/crossConnects/{crossConnectId}/actions/changeCompartmentr* change_cross_connect_compartmentz^https://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnect/ChangeCrossConnectCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/r0zIVirtualNetworkClient.change_cross_connect_compartment..z5change_cross_connect_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zIVirtualNetworkClient.change_cross_connect_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrlr)r$cross_connect_idZ(change_cross_connect_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsr/$       z5VirtualNetworkClient.change_cross_connect_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|d urt j}|rft|t js>|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a cross-connect group into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str cross_connect_group_id: (required) The `OCID`__ of the cross-connect group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeCrossConnectGroupCompartmentDetails change_cross_connect_group_compartment_details: (required) Request to change the compartment of a Cross Connect Group. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_cross_connect_group_compartment API. crossConnectGroupIdzC/crossConnectGroups/{crossConnectGroupId}/actions/changeCompartmentr*&change_cross_connect_group_compartmentzhhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectGroup/ChangeCrossConnectGroupCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/1r0zOVirtualNetworkClient.change_cross_connect_group_compartment..z;change_cross_connect_group_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6:r0zOVirtualNetworkClient.change_cross_connect_group_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Fr0rr=rrlr)r$cross_connect_group_idZ.change_cross_connect_group_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsr/$       z;VirtualNetworkClient.change_cross_connect_group_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a set of DHCP options into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str dhcp_id: (required) The `OCID`__ for the set of DHCP options. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeDhcpOptionsCompartmentDetails change_dhcp_options_compartment_details: (required) Request to change the compartment of a set of DHCP Options. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_dhcp_options_compartment API. dhcpIdz)/dhcps/{dhcpId}/actions/changeCompartmentr*change_dhcp_options_compartmentz\https://docs.oracle.com/iaas/api/#/en/iaas/20160918/DhcpOptions/ChangeDhcpOptionsCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/r0zHVirtualNetworkClient.change_dhcp_options_compartment..z4change_dhcp_options_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zHVirtualNetworkClient.change_dhcp_options_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrlra)r$dhcp_idZ'change_dhcp_options_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rksn/$      z4VirtualNetworkClient.change_dhcp_options_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a DRG into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeDrgCompartmentDetails change_drg_compartment_details: (required) Request to change the compartment of a DRG. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_drg_compartment API. drgIdz'/drgs/{drgId}/actions/changeCompartmentr*change_drg_compartmentzLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/ChangeDrgCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/r0z?VirtualNetworkClient.change_drg_compartment..z+change_drg_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6$r0z?VirtualNetworkClient.change_drg_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r60r0rr=rrlra)r$drg_idZchange_drg_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsn/$      z+VirtualNetworkClient.change_drg_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves an internet gateway into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str ig_id: (required) The `OCID`__ of the internet gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeInternetGatewayCompartmentDetails change_internet_gateway_compartment_details: (required) Request to change the compartment of an internet gateway. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_internet_gateway_compartment API. igIdz2/internetGateways/{igId}/actions/changeCompartmentr*#change_internet_gateway_compartmentzdhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/InternetGateway/ChangeInternetGatewayCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/r0zLVirtualNetworkClient.change_internet_gateway_compartment..z8change_internet_gateway_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zLVirtualNetworkClient.change_internet_gateway_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrlra)r$ig_idZ+change_internet_gateway_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rSsn/$      z8VirtualNetworkClient.change_internet_gateway_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|d urt j}|rft|t js>|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves an IPSec connection into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeIPSecConnectionCompartmentDetails change_ip_sec_connection_compartment_details: (required) Request to change the compartment of a IPSec connection. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_ip_sec_connection_compartment API. ipscIdz4/ipsecConnections/{ipscId}/actions/changeCompartmentr*$change_ip_sec_connection_compartmentzdhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnection/ChangeIpSecConnectionCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/ r0zMVirtualNetworkClient.change_ip_sec_connection_compartment..z9change_ip_sec_connection_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zMVirtualNetworkClient.change_ip_sec_connection_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlr)r$ipsc_idZ,change_ip_sec_connection_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsr/$       z9VirtualNetworkClient.change_ip_sec_connection_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a local peering gateway into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str local_peering_gateway_id: (required) The `OCID`__ of the local peering gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeLocalPeeringGatewayCompartmentDetails change_local_peering_gateway_compartment_details: (required) Request to change the compartment of a given local peering gateway. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_local_peering_gateway_compartment API. localPeeringGatewayIdzG/localPeeringGateways/{localPeeringGatewayId}/actions/changeCompartmentr*(change_local_peering_gateway_compartmentzlhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/LocalPeeringGateway/ChangeLocalPeeringGatewayCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/y r0zQVirtualNetworkClient.change_local_peering_gateway_compartment..z=change_local_peering_gateway_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zQVirtualNetworkClient.change_local_peering_gateway_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlra)r$local_peering_gateway_idZ0change_local_peering_gateway_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r= sn/$      z=VirtualNetworkClient.change_local_peering_gateway_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a NAT gateway into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str nat_gateway_id: (required) The NAT gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeNatGatewayCompartmentDetails change_nat_gateway_compartment_details: (required) Request to change the compartment of a given NAT Gateway. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_nat_gateway_compartment API. natGatewayIdz5/natGateways/{natGatewayId}/actions/changeCompartmentr*change_nat_gateway_compartmentzZhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NatGateway/ChangeNatGatewayCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/ r0zGVirtualNetworkClient.change_nat_gateway_compartment..z3change_nat_gateway_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zGVirtualNetworkClient.change_nat_gateway_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlra)r$nat_gateway_idZ&change_nat_gateway_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sn/$      z3VirtualNetworkClient.change_nat_gateway_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a network security group into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeNetworkSecurityGroupCompartmentDetails change_network_security_group_compartment_details: (required) Request to change the compartment of a network security group. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_network_security_group_compartment API. rtzI/networkSecurityGroups/{networkSecurityGroupId}/actions/changeCompartmentr*)change_network_security_group_compartmentznhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/ChangeNetworkSecurityGroupCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/` r0zRVirtualNetworkClient.change_network_security_group_compartment..z>change_network_security_group_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6i r0zRVirtualNetworkClient.change_network_security_group_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6u r0rr=rrlra)r$rvZ1change_network_security_group_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r% sn.$      z>VirtualNetworkClient.change_network_security_group_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a] Moves a public IP into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. This operation applies only to reserved public IPs. Ephemeral public IPs always belong to the same compartment as their VNIC and move accordingly. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str public_ip_id: (required) The `OCID`__ of the public IP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangePublicIpCompartmentDetails change_public_ip_compartment_details: (required) Request to change the compartment of a Public IP. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_public_ip_compartment API. publicIpIdz1/publicIps/{publicIpId}/actions/changeCompartmentr*change_public_ip_compartmentzVhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/ChangePublicIpCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/ r0zEVirtualNetworkClient.change_public_ip_compartment..z1change_public_ip_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zEVirtualNetworkClient.change_public_ip_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlra)r$ public_ip_idZ$change_public_ip_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sn2$      z1VirtualNetworkClient.change_public_ip_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a public IP pool to a different compartment. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str public_ip_pool_id: (required) The `OCID`__ of the public IP pool. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangePublicIpPoolCompartmentDetails change_public_ip_pool_compartment_details: (required) Request to change the compartment of a public IP pool. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_public_ip_pool_compartment API. rwz9/publicIpPools/{publicIpPoolId}/actions/changeCompartmentr*!change_public_ip_pool_compartmentz^https://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/ChangePublicIpPoolCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/K r0zJVirtualNetworkClient.change_public_ip_pool_compartment..z6change_public_ip_pool_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6T r0zJVirtualNetworkClient.change_public_ip_pool_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6` r0rr=rrlra)r$r|Z)change_public_ip_pool_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sn/$      z6VirtualNetworkClient.change_public_ip_pool_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|d urt j}|rft|t js>|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a remote peering connection (RPC) into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str remote_peering_connection_id: (required) The `OCID`__ of the remote peering connection (RPC). __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeRemotePeeringConnectionCompartmentDetails change_remote_peering_connection_compartment_details: (required) Request to change the compartment of a remote peering connection. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_remote_peering_connection_compartment API. remotePeeringConnectionIdzO/remotePeeringConnections/{remotePeeringConnectionId}/actions/changeCompartmentr*,change_remote_peering_connection_compartmentzthttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RemotePeeringConnection/ChangeRemotePeeringConnectionCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/ r0zUVirtualNetworkClient.change_remote_peering_connection_compartment..zAchange_remote_peering_connection_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zUVirtualNetworkClient.change_remote_peering_connection_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlr)r$remote_peering_connection_idZ4change_remote_peering_connection_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sr/$       zAVirtualNetworkClient.change_remote_peering_connection_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a route table into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str rt_id: (required) The `OCID`__ of the route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeRouteTableCompartmentDetails change_route_table_compartment_details: (required) Request to change the compartment of a given route table. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_route_table_compartment API. rtIdz-/routeTables/{rtId}/actions/changeCompartmentr*change_route_table_compartmentzZhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RouteTable/ChangeRouteTableCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/5 r0zGVirtualNetworkClient.change_route_table_compartment..z3change_route_table_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6> r0zGVirtualNetworkClient.change_route_table_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6J r0rr=rrlra)r$rt_idZ&change_route_table_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sn/$      z3VirtualNetworkClient.change_route_table_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a security list into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str security_list_id: (required) The `OCID`__ of the security list. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeSecurityListCompartmentDetails change_security_list_compartment_details: (required) Request to change the compartment of a given security list. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_security_list_compartment API. securityListIdz9/securityLists/{securityListId}/actions/changeCompartmentr* change_security_list_compartmentz^https://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityList/ChangeSecurityListCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/ r0zIVirtualNetworkClient.change_security_list_compartment..z5change_security_list_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zIVirtualNetworkClient.change_security_list_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlra)r$security_list_idZ(change_security_list_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rm sn/$      z5VirtualNetworkClient.change_security_list_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a service gateway into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str service_gateway_id: (required) The service gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeServiceGatewayCompartmentDetails change_service_gateway_compartment_details: (required) Request to change the compartment of a given Service Gateway. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_service_gateway_compartment API. rz=/serviceGateways/{serviceGatewayId}/actions/changeCompartmentr*"change_service_gateway_compartmentzbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ServiceGateway/ChangeServiceGatewayCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/ r0zKVirtualNetworkClient.change_service_gateway_compartment..z7change_service_gateway_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6& r0zKVirtualNetworkClient.change_service_gateway_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r62 r0rr=rrlra)r$rZ*change_service_gateway_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sn/$      z7VirtualNetworkClient.change_service_gateway_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a subnet into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeSubnetCompartmentDetails change_subnet_compartment_details: (required) Request to change the compartment of a given subnet. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_subnet_compartment API. rdz-/subnets/{subnetId}/actions/changeCompartmentr*change_subnet_compartmentzRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Subnet/ChangeSubnetCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/ r0zBVirtualNetworkClient.change_subnet_compartment..z.change_subnet_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zBVirtualNetworkClient.change_subnet_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlra)r$rmZ!change_subnet_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rU sn/$      z.VirtualNetworkClient.change_subnet_compartmentc s~dg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rVt|t js.|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a VCN into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeVcnCompartmentDetails change_vcn_compartment_details: (required) Request to change the compartment of a given VCN. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_vcn_compartment API. rnz'/vcns/{vcnId}/actions/changeCompartmentr*change_vcn_compartmentzLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/ChangeVcnCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/r0z?VirtualNetworkClient.change_vcn_compartment..z+change_vcn_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z?VirtualNetworkClient.change_vcn_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrlra)r$rsZchange_vcn_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sn/$      z+VirtualNetworkClient.change_vcn_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|d urt j}|rft|t js>|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a virtual circuit into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeVirtualCircuitCompartmentDetails change_virtual_circuit_compartment_details: (required) Request to change the compartment of a virtual circuit. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_virtual_circuit_compartment API. rz=/virtualCircuits/{virtualCircuitId}/actions/changeCompartmentr*"change_virtual_circuit_compartmentzbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuit/ChangeVirtualCircuitCompartmentrycsg|]}|vr|qSr&r&r,r.r&r'r/yr0zKVirtualNetworkClient.change_virtual_circuit_compartment..z7change_virtual_circuit_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zKVirtualNetworkClient.change_virtual_circuit_compartment..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrlr)r$rZ*change_virtual_circuit_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r=sr/$       z7VirtualNetworkClient.change_virtual_circuit_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a VLAN into a different compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str vlan_id: (required) The `OCID`__ of the VLAN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeVlanCompartmentDetails change_vlan_compartment_details: (required) Request to change the compartment of a given VLAN. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_vlan_compartment API. vlanIdz)/vlans/{vlanId}/actions/changeCompartmentr*change_vlan_compartmentzNhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vlan/ChangeVlanCompartmentrcsg|]}|vr|qSr&r&r,r.r&r'r/r0z@VirtualNetworkClient.change_vlan_compartment..z,change_vlan_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z@VirtualNetworkClient.change_vlan_compartment..Nrr7r8r9rgrhr\rcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrlra)r$vlan_idZchange_vlan_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsp4$       z,VirtualNetworkClient.change_vlan_compartmentc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Moves a VTAP to a new compartment within the same tenancy. For information about moving resources between compartments, see `Moving Resources to a Different Compartment`__. __ https://docs.cloud.oracle.com/iaas/Content/Identity/Tasks/managingcompartments.htm#moveRes :param str vtap_id: (required) The `OCID`__ of the VTAP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ChangeVtapCompartmentDetails change_vtap_compartment_details: (required) Request to change the compartment that contains a VTAP. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use change_vtap_compartment API. vtapIdz)/vtaps/{vtapId}/actions/changeCompartmentr*change_vtap_compartmentzNhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vtap/ChangeVtapCompartmentrcsg|]}|vr|qSr&r&r,r.r&r'r/pr0z@VirtualNetworkClient.change_vtap_compartment..z,change_vtap_compartment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6yr0z@VirtualNetworkClient.change_vtap_compartment..Nrr7r8r9rgrhr\rcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrlra)r$vtap_idZchange_vtap_compartment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r.sp4$       z,VirtualNetworkClient.change_vtap_compartmentc sFdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|rt|t j s|j| ||j|j|jj||| | || d|||d S|jj||| | || d|||d Sd S)aF Connects this local peering gateway (LPG) to another one in the same region. This operation must be called by the VCN administrator who is designated as the *requestor* in the peering relationship. The *acceptor* must implement an Identity and Access Management (IAM) policy that gives the requestor permission to connect to LPGs in the acceptor's compartment. Without that permission, this operation will fail. For more information, see `VCN Peering`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/VCNpeering.htm :param str local_peering_gateway_id: (required) The `OCID`__ of the local peering gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ConnectLocalPeeringGatewaysDetails connect_local_peering_gateways_details: (required) Details regarding the local peering gateway to connect. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use connect_local_peering_gateways API. rz=/localPeeringGateways/{localPeeringGatewayId}/actions/connectr*connect_local_peering_gatewayszchttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/LocalPeeringGateway/ConnectLocalPeeringGatewaysrcsg|]}|vr|qSr&r&r,r.r&r'r/r0zGVirtualNetworkClient.connect_local_peering_gateways..z3connect_local_peering_gateways got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zGVirtualNetworkClient.connect_local_peering_gateways..Nrr7r8r9r:r=rrlrI)r$rZ&connect_local_peering_gateways_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rsf)$    z3VirtualNetworkClient.connect_local_peering_gatewaysc sVdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|d urt j }|r.t|t js|j| ||j|j|jj||| | || d|||d S|jj||| | || d|||d Sd S)a/ Connects this RPC to another one in a different region. This operation must be called by the VCN administrator who is designated as the *requestor* in the peering relationship. The *acceptor* must implement an Identity and Access Management (IAM) policy that gives the requestor permission to connect to RPCs in the acceptor's compartment. Without that permission, this operation will fail. For more information, see `VCN Peering`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/VCNpeering.htm :param str remote_peering_connection_id: (required) The `OCID`__ of the remote peering connection (RPC). __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ConnectRemotePeeringConnectionsDetails connect_remote_peering_connections_details: (required) Details to connect peering connection with peering connection from remote region :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use connect_remote_peering_connections API. rzE/remotePeeringConnections/{remotePeeringConnectionId}/actions/connectr*"connect_remote_peering_connectionszkhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RemotePeeringConnection/ConnectRemotePeeringConnectionsrcsg|]}|vr|qSr&r&r,r.r&r'r/=r0zKVirtualNetworkClient.connect_remote_peering_connections..z7connect_remote_peering_connections got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Fr0zKVirtualNetworkClient.connect_remote_peering_connections..Nrr7r8r9r:r=rrlr)r$rZ*connect_remote_peering_connections_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r sj)$   z7VirtualNetworkClient.connect_remote_peering_connectionsc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d t|d td } d dt| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a subrange of the BYOIP CIDR block. :param oci.core.models.CreateByoipRangeDetails create_byoip_range_details: (required) Details needed to create a BYOIP CIDR block subrange. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRange` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_byoip_range API. /byoipRangesr*create_byoip_rangezOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/CreateByoipRangerycsg|]}|vr|qSr&r&r,r.r&r'r/r0z;VirtualNetworkClient.create_byoip_range..z'create_byoip_range got unknown kwargs: r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z;VirtualNetworkClient.create_byoip_range..rr= ByoipRanger r@rArCrDrErrFrGrHNrrJrKr!r2rLr"rQrrMrrRrbrSrTr rUrV) r$Zcreate_byoip_range_detailsr%rHr@rArFrGrXrCrr&r.r'rssb&       z'VirtualNetworkClient.create_byoip_rangec sg}d}d}d}d}gdfddt|D}|rFtd|d d |d t|d td } d dt| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a virtual test access point (VTAP) capture filter in the specified compartment. For the purposes of access control, you must provide the `OCID`__ of the compartment that contains the VTAP. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the VTAP, otherwise a default is provided. It does not have to be unique, and you can change it. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateCaptureFilterDetails create_capture_filter_details: (required) Details for creating a capture filter. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CaptureFilter` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_capture_filter API. /captureFiltersr*create_capture_filterzUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CaptureFilter/CreateCaptureFilterrrr\rhcsg|]}|vr|qSr&r&r,r.r&r'r/r0z>VirtualNetworkClient.create_capture_filter..z*create_capture_filter got unknown kwargs: r9r\rhr;r<r^rkcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z>VirtualNetworkClient.create_capture_filter..rr= CaptureFilterrrNr) r$Zcreate_capture_filter_detailsr%rHr@rArFrGrXrCrr&r.r'rsb2       z*VirtualNetworkClient.create_capture_filterc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | durt j } | rt | t j s|j | |j| | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a= Creates a new virtual customer-premises equipment (CPE) object in the specified compartment. For more information, see `Site-to-Site VPN Overview`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the CPE to reside. Notice that the CPE doesn't have to be in the same compartment as the IPSec connection or other Networking Service components. If you're not sure which compartment to use, put the CPE in the same compartment as the DRG. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You must provide the public IP address of your on-premises router. See `CPE Configuration`__. You may optionally specify a *display name* for the CPE, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/overviewIPsec.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/configuringCPE.htm :param oci.core.models.CreateCpeDetails create_cpe_details: (required) Details for creating a CPE. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_cpe API. /cpesr* create_cpezAhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Cpe/CreateCper[csg|]}|vr|qSr&r&r,r.r&r'r/r0z3VirtualNetworkClient.create_cpe..zcreate_cpe got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z3VirtualNetworkClient.create_cpe..rr=NCperrrrJrKr!r2rLr"rQrrrrMrRrbrSrTr rUrV) r$Zcreate_cpe_detailsr%rHr@rArFrGrXrCrr&r.r'rAsd6      zVirtualNetworkClient.create_cpec sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | durt j } | rt | t j s|j | |j| | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a# Creates a new cross-connect. Oracle recommends you create each cross-connect in a :class:`CrossConnectGroup` so you can use link aggregation with the connection. After creating the `CrossConnect` object, you need to go the FastConnect location and request to have the physical cable installed. For more information, see `FastConnect Overview`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the cross-connect to reside. If you're not sure which compartment to use, put the cross-connect in the same compartment with your VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the cross-connect. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateCrossConnectDetails create_cross_connect_details: (required) Details to create a CrossConnect :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_cross_connect API. /crossConnectsr*create_cross_connectzShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnect/CreateCrossConnectr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z=VirtualNetworkClient.create_cross_connect..z)create_cross_connect got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z=VirtualNetworkClient.create_cross_connect..rr=N CrossConnectrrr) r$Zcreate_cross_connect_detailsr%rHr@rArFrGrXrCrr&r.r'rsd9      z)VirtualNetworkClient.create_cross_connectc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | durt j } | rt | t j s|j | |j| | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)an Creates a new cross-connect group to use with Oracle Cloud Infrastructure FastConnect. For more information, see `FastConnect Overview`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the cross-connect group to reside. If you're not sure which compartment to use, put the cross-connect group in the same compartment with your VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the cross-connect group. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateCrossConnectGroupDetails create_cross_connect_group_details: (required) Details to create a CrossConnectGroup :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_cross_connect_group API. /crossConnectGroupsr*create_cross_connect_groupz]https://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectGroup/CreateCrossConnectGroupr[csg|]}|vr|qSr&r&r,r.r&r'r/gr0zCVirtualNetworkClient.create_cross_connect_group..z/create_cross_connect_group got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6qr0zCVirtualNetworkClient.create_cross_connect_group..rr=NCrossConnectGrouprrr) r$Z"create_cross_connect_group_detailsr%rHr@rArFrGrXrCrr&r.r'r&sd5      z/VirtualNetworkClient.create_cross_connect_groupc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new set of DHCP options for the specified VCN. For more information, see :class:`DhcpOptions`. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the set of DHCP options to reside. Notice that the set of options doesn't have to be in the same compartment as the VCN, subnets, or other Networking Service components. If you're not sure which compartment to use, put the set of DHCP options in the same compartment as the VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the set of DHCP options, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateDhcpDetails create_dhcp_details: (required) Request object for creating a new set of DHCP options. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_dhcp_options API. /dhcpsr*create_dhcp_optionszQhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DhcpOptions/CreateDhcpOptionsr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z.z(create_dhcp_options got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z.rr= DhcpOptionsrrNr) r$Zcreate_dhcp_detailsr%rHr@rArFrGrXrCrr&r.r'rs`1      z(VirtualNetworkClient.create_dhcp_optionsc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new dynamic routing gateway (DRG) in the specified compartment. For more information, see `Dynamic Routing Gateways (DRGs)`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the DRG to reside. Notice that the DRG doesn't have to be in the same compartment as the VCN, the DRG attachment, or other Networking Service components. If you're not sure which compartment to use, put the DRG in the same compartment as the VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the DRG, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingDRGs.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateDrgDetails create_drg_details: (required) Details for creating a DRG. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_drg API. /drgsr* create_drgzAhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/CreateDrgr[csg|]}|vr|qSr&r&r,r.r&r'r/>r0z3VirtualNetworkClient.create_drg..zcreate_drg got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Hr0z3VirtualNetworkClient.create_drg..rr=DrgrrNr) r$Zcreate_drg_detailsr%rHr@rArFrGrXrCrr&r.r'rs`2      zVirtualNetworkClient.create_drgc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Attaches the specified DRG to the specified network resource. A VCN can be attached to only one DRG at a time, but a DRG can be attached to more than one VCN. The response includes a `DrgAttachment` object with its own `OCID`__. For more information about DRGs, see `Dynamic Routing Gateways (DRGs)`__. You may optionally specify a *display name* for the attachment, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. For the purposes of access control, the DRG attachment is automatically placed into the currently selected compartment. For more information about compartments and access control, see `Overview of the IAM Service`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingDRGs.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm :param oci.core.models.CreateDrgAttachmentDetails create_drg_attachment_details: (required) Details for creating a `DrgAttachment`. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_drg_attachment API. /drgAttachmentsr*create_drg_attachmentzUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgAttachment/CreateDrgAttachmentr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z>VirtualNetworkClient.create_drg_attachment..z*create_drg_attachment got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z>VirtualNetworkClient.create_drg_attachment..rr= DrgAttachmentrrNr) r$Zcreate_drg_attachment_detailsr%rHr@rArFrGrXrCrr&r.r'rks`0      z*VirtualNetworkClient.create_drg_attachmentc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new route distribution for the specified DRG. Assign the route distribution as an import distribution to a DRG route table using the `UpdateDrgRouteTable` or `CreateDrgRouteTable` operations. Assign the route distribution as an export distribution to a DRG attachment using the `UpdateDrgAttachment` or `CreateDrgAttachment` operations. :param oci.core.models.CreateDrgRouteDistributionDetails create_drg_route_distribution_details: (required) Details for creating a route distribution. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_drg_route_distribution API. /drgRouteDistributionsr*create_drg_route_distributionzchttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistribution/CreateDrgRouteDistributionr[csg|]}|vr|qSr&r&r,r.r&r'r/r0zFVirtualNetworkClient.create_drg_route_distribution..z2create_drg_route_distribution got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0zFVirtualNetworkClient.create_drg_route_distribution..rr=DrgRouteDistributionrrNr) r$Z%create_drg_route_distribution_detailsr%rHr@rArFrGrXrCrr&r.r'rs`%      z2VirtualNetworkClient.create_drg_route_distributionc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new DRG route table for the specified DRG. Assign the DRG route table to a DRG attachment using the `UpdateDrgAttachment` or `CreateDrgAttachment` operations. :param oci.core.models.CreateDrgRouteTableDetails create_drg_route_table_details: (required) Details for creating a DRG route table. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_drg_route_table API. /drgRouteTablesr*create_drg_route_tablezUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteTable/CreateDrgRouteTabler[csg|]}|vr|qSr&r&r,r.r&r'r/ar0z?VirtualNetworkClient.create_drg_route_table..z+create_drg_route_table got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6kr0z?VirtualNetworkClient.create_drg_route_table..rr= DrgRouteTablerrNr) r$Zcreate_drg_route_table_detailsr%rHr@rArFrGrXrCrr&r.r'r2s`#      z+VirtualNetworkClient.create_drg_route_tablec s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new internet gateway for the specified VCN. For more information, see `Access to the Internet`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the Internet Gateway to reside. Notice that the internet gateway doesn't have to be in the same compartment as the VCN or other Networking Service components. If you're not sure which compartment to use, put the Internet Gateway in the same compartment with the VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. You may optionally specify a *display name* for the internet gateway, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. For traffic to flow between a subnet and an internet gateway, you must create a route rule accordingly in the subnet's route table (for example, 0.0.0.0/0 > internet gateway). See :func:`update_route_table`. You must specify whether the internet gateway is enabled when you create it. If it's disabled, that means no traffic will flow to/from the internet even if there's a route rule that enables that traffic. You can later use :func:`update_internet_gateway` to easily disable/enable the gateway without changing the route rule. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingIGs.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm :param oci.core.models.CreateInternetGatewayDetails create_internet_gateway_details: (required) Details for creating a new internet gateway. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_internet_gateway API. /internetGatewaysr*create_internet_gatewayzYhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/InternetGateway/CreateInternetGatewayr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z@VirtualNetworkClient.create_internet_gateway..z,create_internet_gateway got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z@VirtualNetworkClient.create_internet_gateway..rr=InternetGatewayrrNr) r$Zcreate_internet_gateway_detailsr%rHr@rArFrGrXrCrr&r.r'rs`9      z,VirtualNetworkClient.create_internet_gatewayc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | durt j } | rt | t j s|j | |j| | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a* Creates a new IPSec connection between the specified DRG and CPE. For more information, see `Site-to-Site VPN Overview`__. If you configure at least one tunnel to use static routing, then in the request you must provide at least one valid static route (you're allowed a maximum of 10). For example: 10.0.0.0/16. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes. For more information, see the important note in :class:`IPSecConnection`. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the IPSec connection to reside. Notice that the IPSec connection doesn't have to be in the same compartment as the DRG, CPE, or other Networking Service components. If you're not sure which compartment to use, put the IPSec connection in the same compartment as the DRG. For more information about compartments and access control, see `Overview of the IAM Service`__. You may optionally specify a *display name* for the IPSec connection, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. After creating the IPSec connection, you need to configure your on-premises router with tunnel-specific information. For tunnel status and the required configuration information, see: * :class:`IPSecConnectionTunnel` * :class:`IPSecConnectionTunnelSharedSecret` For each tunnel, you need the IP address of Oracle's VPN headend and the shared secret (that is, the pre-shared key). For more information, see `CPE Configuration`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/overviewIPsec.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/configuringCPE.htm :param oci.core.models.CreateIPSecConnectionDetails create_ip_sec_connection_details: (required) Details for creating an `IPSecConnection`. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_ip_sec_connection API. /ipsecConnectionsr*create_ip_sec_connectionzYhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnection/CreateIpSecConnectionr[csg|]}|vr|qSr&r&r,r.r&r'r/Nr0zAVirtualNetworkClient.create_ip_sec_connection..z-create_ip_sec_connection got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Xr0zAVirtualNetworkClient.create_ip_sec_connection..rr=NIPSecConnectionrrr) r$Z create_ip_sec_connection_detailsr%rHr@rArFrGrXrCrr&r.r'rsdB      z-VirtualNetworkClient.create_ip_sec_connectionc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d t|d td } d dt| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates an IPv6 for the specified VNIC. :param oci.core.models.CreateIpv6Details create_ipv6_details: (required) Create IPv6 details. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_ipv6 API. /ipv6r* create_ipv6zChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/CreateIpv6rycsg|]}|vr|qSr&r&r,r.r&r'r/r0z4VirtualNetworkClient.create_ipv6..z create_ipv6 got unknown kwargs: r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z4VirtualNetworkClient.create_ipv6..rr=Ipv6rrNr) r$Zcreate_ipv6_detailsr%rHr@rArFrGrXrCrr&r.r'r}sb&       z VirtualNetworkClient.create_ipv6c s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a{ Creates a new local peering gateway (LPG) for the specified VCN. :param oci.core.models.CreateLocalPeeringGatewayDetails create_local_peering_gateway_details: (required) Details for creating a new local peering gateway. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_local_peering_gateway API. /localPeeringGatewaysr*create_local_peering_gatewayzahttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/LocalPeeringGateway/CreateLocalPeeringGatewayr[csg|]}|vr|qSr&r&r,r.r&r'r/ r0zEVirtualNetworkClient.create_local_peering_gateway..z1create_local_peering_gateway got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0zEVirtualNetworkClient.create_local_peering_gateway..rr=LocalPeeringGatewayrrNr) r$Z$create_local_peering_gateway_detailsr%rHr@rArFrGrXrCrr&r.r'rs`"      z1VirtualNetworkClient.create_local_peering_gatewayc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new NAT gateway for the specified VCN. You must also set up a route rule with the NAT gateway as the rule's target. See :class:`RouteTable`. :param oci.core.models.CreateNatGatewayDetails create_nat_gateway_details: (required) Details for creating a NAT gateway. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_nat_gateway API. /natGatewaysr*create_nat_gatewayzOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NatGateway/CreateNatGatewayr[csg|]}|vr|qSr&r&r,r.r&r'r/hr0z;VirtualNetworkClient.create_nat_gateway..z'create_nat_gateway got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6rr0z;VirtualNetworkClient.create_nat_gateway..rr= NatGatewayrrNr) r$Zcreate_nat_gateway_detailsr%rHr@rArFrGrXrCrr&r.r'r9s`#      z'VirtualNetworkClient.create_nat_gatewayc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)ax Creates a new network security group for the specified VCN. :param oci.core.models.CreateNetworkSecurityGroupDetails create_network_security_group_details: (required) Details for creating a network security group. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_network_security_group API. /networkSecurityGroupsr*create_network_security_groupzchttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/CreateNetworkSecurityGroupr[csg|]}|vr|qSr&r&r,r.r&r'r/r0zFVirtualNetworkClient.create_network_security_group..z2create_network_security_group got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0zFVirtualNetworkClient.create_network_security_group..rr=NetworkSecurityGrouprrNr) r$Z%create_network_security_group_detailsr%rHr@rArFrGrXrCrr&r.r'rs`"      z2VirtualNetworkClient.create_network_security_groupc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a secondary private IP for the specified VNIC. For more information about secondary private IPs, see `IP Addresses`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingIPaddresses.htm :param oci.core.models.CreatePrivateIpDetails create_private_ip_details: (required) Create private IP details. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_private_ip API. /privateIpsr*create_private_ipzMhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/CreatePrivateIpr[csg|]}|vr|qSr&r&r,r.r&r'r/"r0z:VirtualNetworkClient.create_private_ip..z&create_private_ip got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6,r0z:VirtualNetworkClient.create_private_ip..rr= PrivateIprrNr) r$Zcreate_private_ip_detailsr%rHr@rArFrGrXrCrr&r.r'rs`&      z&VirtualNetworkClient.create_private_ipc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a% Creates a public IP. Use the `lifetime` property to specify whether it's an ephemeral or reserved public IP. For information about limits on how many you can create, see `Public IP Addresses`__. * **For an ephemeral public IP assigned to a private IP:** You must also specify a `privateIpId` with the `OCID`__ of the primary private IP you want to assign the public IP to. The public IP is created in the same availability domain as the private IP. An ephemeral public IP must always be assigned to a private IP, and only to the *primary* private IP on a VNIC, not a secondary private IP. Exception: If you create a :class:`NatGateway`, Oracle automatically assigns the NAT gateway a regional ephemeral public IP that you cannot remove. * **For a reserved public IP:** You may also optionally assign the public IP to a private IP by specifying `privateIpId`. Or you can later assign the public IP with :func:`update_public_ip`. **Note:** When assigning a public IP to a private IP, the private IP must not already have a public IP with `lifecycleState` = ASSIGNING or ASSIGNED. If it does, an error is returned. Also, for reserved public IPs, the optional assignment part of this operation is asynchronous. Poll the public IP's `lifecycleState` to determine if the assignment succeeded. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingpublicIPs.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreatePublicIpDetails create_public_ip_details: (required) Create public IP details. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_public_ip API. /publicIpsr*create_public_ipzKhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/CreatePublicIpr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z9VirtualNetworkClient.create_public_ip..z%create_public_ip got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z9VirtualNetworkClient.create_public_ip..rr=PublicIprrNr) r$Zcreate_public_ip_detailsr%rHr@rArFrGrXrCrr&r.r'rOs`9      z%VirtualNetworkClient.create_public_ipc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d t|d td } d dt| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a public IP pool. :param oci.core.models.CreatePublicIpPoolDetails create_public_ip_pool_details: (required) Create Public Ip Pool details :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_public_ip_pool API. /publicIpPoolsr*create_public_ip_poolzShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/CreatePublicIpPoolrycsg|]}|vr|qSr&r&r,r.r&r'r/r0z>VirtualNetworkClient.create_public_ip_pool..z*create_public_ip_pool got unknown kwargs: r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z>VirtualNetworkClient.create_public_ip_pool..rr=r{rrNr) r$Zcreate_public_ip_pool_detailsr%rHr@rArFrGrXrCrr&r.r'r sb&       z*VirtualNetworkClient.create_public_ip_poolc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | durt j } | rt | t j s|j | |j| | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a^ Creates a new remote peering connection (RPC) for the specified DRG. :param oci.core.models.CreateRemotePeeringConnectionDetails create_remote_peering_connection_details: (required) Request to create peering connection to remote region :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_remote_peering_connection API. /remotePeeringConnectionsr* create_remote_peering_connectionzihttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RemotePeeringConnection/CreateRemotePeeringConnectionr[csg|]}|vr|qSr&r&r,r.r&r'r/Pr0zIVirtualNetworkClient.create_remote_peering_connection..z5create_remote_peering_connection got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Zr0zIVirtualNetworkClient.create_remote_peering_connection..rr=NRemotePeeringConnectionrrr) r$Z(create_remote_peering_connection_detailsr%rHr@rArFrGrXrCrr&r.r'r "sd"      z5VirtualNetworkClient.create_remote_peering_connectionc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)aG Creates a new route table for the specified VCN. In the request you must also include at least one route rule for the new route table. For information on the number of rules you can have in a route table, see `Service Limits`__. For general information about route tables in your VCN and the types of targets you can use in route rules, see `Route Tables`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the route table to reside. Notice that the route table doesn't have to be in the same compartment as the VCN, subnets, or other Networking Service components. If you're not sure which compartment to use, put the route table in the same compartment as the VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the route table, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateRouteTableDetails create_route_table_details: (required) Details for creating a new route table. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_route_table API. /routeTablesr*create_route_tablezOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RouteTable/CreateRouteTabler[csg|]}|vr|qSr&r&r,r.r&r'r/r0z;VirtualNetworkClient.create_route_table..z'create_route_table got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z;VirtualNetworkClient.create_route_table..rr= RouteTablerrNr) r$Zcreate_route_table_detailsr%rHr@rArFrGrXrCrr&r.r'rs`6      z'VirtualNetworkClient.create_route_tablec s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new security list for the specified VCN. For more information about security lists, see `Security Lists`__. For information on the number of rules you can have in a security list, see `Service Limits`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the security list to reside. Notice that the security list doesn't have to be in the same compartment as the VCN, subnets, or other Networking Service components. If you're not sure which compartment to use, put the security list in the same compartment as the VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the security list, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securitylists.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateSecurityListDetails create_security_list_details: (required) Details regarding the security list to create. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_security_list API. /securityListsr*create_security_listzShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityList/CreateSecurityListr[csg|]}|vr|qSr&r&r,r.r&r'r//r0z=VirtualNetworkClient.create_security_list..z)create_security_list got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r69r0z=VirtualNetworkClient.create_security_list..rr= SecurityListrrNr) r$Zcreate_security_list_detailsr%rHr@rArFrGrXrCrr&r.r'rs`5      z)VirtualNetworkClient.create_security_listc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)aj Creates a new service gateway in the specified compartment. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the service gateway to reside. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the service gateway, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateServiceGatewayDetails create_service_gateway_details: (required) Details for creating a service gateway. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_service_gateway API. /serviceGatewaysr*create_service_gatewayzWhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ServiceGateway/CreateServiceGatewayr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z?VirtualNetworkClient.create_service_gateway..z+create_service_gateway got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z?VirtualNetworkClient.create_service_gateway..rr=rrrNr) r$Zcreate_service_gateway_detailsr%rHr@rArFrGrXrCrr&r.r'r\s`.      z+VirtualNetworkClient.create_service_gatewayc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new subnet in the specified VCN. You can't change the size of the subnet after creation, so it's important to think about the size of subnets you need before creating them. For more information, see `VCNs and Subnets`__. For information on the number of subnets you can have in a VCN, see `Service Limits`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the subnet to reside. Notice that the subnet doesn't have to be in the same compartment as the VCN, route tables, or other Networking Service components. If you're not sure which compartment to use, put the subnet in the same compartment as the VCN. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally associate a route table with the subnet. If you don't, the subnet will use the VCN's default route table. For more information about route tables, see `Route Tables`__. You may optionally associate a security list with the subnet. If you don't, the subnet will use the VCN's default security list. For more information about security lists, see `Security Lists`__. You may optionally associate a set of DHCP options with the subnet. If you don't, the subnet will use the VCN's default set. For more information about DHCP options, see `DHCP Options`__. You may optionally specify a *display name* for the subnet, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. You can also add a DNS label for the subnet, which is required if you want the Internet and VCN Resolver to resolve hostnames for instances in the subnet. For more information, see `DNS in Your Virtual Cloud Network`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVCNs.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/servicelimits.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securitylists.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingDHCP.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm :param oci.core.models.CreateSubnetDetails create_subnet_details: (required) Details for creating a subnet. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_subnet API. /subnetsr* create_subnetzGhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Subnet/CreateSubnetr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z6VirtualNetworkClient.create_subnet..z"create_subnet got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6#r0z6VirtualNetworkClient.create_subnet..rr=SubnetrrNr) r$Zcreate_subnet_detailsr%rHr@rArFrGrXrCrr&r.r'rs`J      z"VirtualNetworkClient.create_subnetc s g}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new virtual cloud network (VCN). For more information, see `VCNs and Subnets`__. For the VCN, you specify a list of one or more IPv4 CIDR blocks that meet the following criteria: - The CIDR blocks must be valid. - They must not overlap with each other or with the on-premises network CIDR block. - The number of CIDR blocks does not exceed the limit of CIDR blocks allowed per VCN. For a CIDR block, Oracle recommends that you use one of the private IP address ranges specified in `RFC 1918`__ (10.0.0.0/8, 172.16/12, and 192.168/16). Example: 172.16.0.0/16. The CIDR blocks can range from /16 to /30. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the VCN to reside. Consult an Oracle Cloud Infrastructure administrator in your organization if you're not sure which compartment to use. Notice that the VCN doesn't have to be in the same compartment as the subnets or other Networking Service components. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the VCN, otherwise a default is provided. It does not have to be unique, and you can change it. Avoid entering confidential information. You can also add a DNS label for the VCN, which is required if you want the instances to use the Interent and VCN Resolver option for DNS in the VCN. For more information, see `DNS in Your Virtual Cloud Network`__. The VCN automatically comes with a default route table, default security list, and default set of DHCP options. The `OCID`__ for each is returned in the response. You can't delete these default objects, but you can change their contents (that is, change the route rules, security list rules, and so on). The VCN and subnets you create are not accessible until you attach an internet gateway or set up a Site-to-Site VPN or FastConnect. For more information, see `Overview of the Networking Service`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingVCNs.htm __ https://tools.ietf.org/html/rfc1918 __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/overview.htm :param oci.core.models.CreateVcnDetails create_vcn_details: (required) Details for creating a new VCN. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_vcn API. /vcnsr* create_vcnzAhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/CreateVcnr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z3VirtualNetworkClient.create_vcn..zcreate_vcn got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z3VirtualNetworkClient.create_vcn..rr=VcnrrNr) r$Zcreate_vcn_detailsr%rHr@rArFrGrXrCrr&r.r'rFs`K      zVirtualNetworkClient.create_vcnc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | durt j } | rt | t j s|j | |j| | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a new virtual circuit to use with Oracle Cloud Infrastructure FastConnect. For more information, see `FastConnect Overview`__. For the purposes of access control, you must provide the `OCID`__ of the compartment where you want the virtual circuit to reside. If you're not sure which compartment to use, put the virtual circuit in the same compartment with the DRG it's using. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the virtual circuit. It does not have to be unique, and you can change it. Avoid entering confidential information. **Important:** When creating a virtual circuit, you specify a DRG for the traffic to flow through. Make sure you attach the DRG to your VCN and confirm the VCN's routing sends traffic to the DRG. Otherwise traffic will not flow. For more information, see `Route Tables`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm :param oci.core.models.CreateVirtualCircuitDetails create_virtual_circuit_details: (required) Details to create a VirtualCircuit. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_virtual_circuit API. /virtualCircuitsr*create_virtual_circuitzWhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuit/CreateVirtualCircuitr[csg|]}|vr|qSr&r&r,r.r&r'r/r0z?VirtualNetworkClient.create_virtual_circuit..z+create_virtual_circuit got unknown kwargs: r9r\r]cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z?VirtualNetworkClient.create_virtual_circuit..rr=NVirtualCircuitrrr) r$Zcreate_virtual_circuit_detailsr%rHr@rArFrGrXrCrr&r.r'rsd<      z+VirtualNetworkClient.create_virtual_circuitc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d t|d td } d dt| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a VLAN in the specified VCN and the specified compartment. :param oci.core.models.CreateVlanDetails create_vlan_details: (required) Details for creating a VLAN :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_vlan API. /vlansr* create_vlanzChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vlan/CreateVlanrcsg|]}|vr|qSr&r&r,r.r&r'r/tr0z4VirtualNetworkClient.create_vlan..z create_vlan got unknown kwargs: r9r\rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z4VirtualNetworkClient.create_vlan..rr=VlanrrNr) r$Zcreate_vlan_detailsr%rHr@rArFrGrXrCrr&r.r'r!Asb&       z VirtualNetworkClient.create_vlanc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d t|d td } d dt| D} |jj|d|jd} | rt | t j s|j | |j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a Creates a virtual test access point (VTAP) in the specified compartment. For the purposes of access control, you must provide the `OCID`__ of the compartment that contains the VTAP. For more information about compartments and access control, see `Overview of the IAM Service`__. For information about OCIDs, see `Resource Identifiers`__. You may optionally specify a *display name* for the VTAP, otherwise a default is provided. It does not have to be unique, and you can change it. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Identity/Concepts/overview.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.CreateVtapDetails create_vtap_details: (required) Details used to create a VTAP. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vtap` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use create_vtap API. /vtapsr* create_vtapzChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vtap/CreateVtaprcsg|]}|vr|qSr&r&r,r.r&r'r/r0z4VirtualNetworkClient.create_vtap..z create_vtap got unknown kwargs: r9r\rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0z4VirtualNetworkClient.create_vtap..rr=VtaprrNr) r$Zcreate_vtap_detailsr%rHr@rArFrGrXrCrr&r.r'r$sb2       z VirtualNetworkClient.create_vtapc sndg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rHt| t js"|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a~ Deletes the specified `ByoipRange` resource. The resource must be in one of the following states: CREATING, PROVISIONED, ACTIVE, or FAILED. It must not have any subranges currently allocated to a PublicIpPool object or the deletion will fail. You must specify the `OCID`__. If the `ByoipRange` resource is currently in the PROVISIONED or ACTIVE state, it will be de-provisioned and then deleted. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_byoip_range API. r/byoipRanges/{byoipRangeId}DELETEdelete_byoip_rangezOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/DeleteByoipRangerrrhrgcsg|]}|vr|qSr&r&r,r.r&r'r/Hr0z;VirtualNetworkClient.delete_byoip_range..z'delete_byoip_range got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Qr0z;VirtualNetworkClient.delete_byoip_range..Nrr7r8r9rhrgr;r<rkrjcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6]r0rr=rrrrr&r.r'r(sh,$     z'VirtualNetworkClient.delete_byoip_rangec sndg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rHt| t js"|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a9 Deletes the specified VTAP capture filter. This is an asynchronous operation. The VTAP capture filter's `lifecycleState` will change to TERMINATING temporarily until the VTAP capture filter is completely removed. :param str capture_filter_id: (required) The `OCID`__ of the capture filter. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_capture_filter API. r!/captureFilters/{captureFilterId}r'delete_capture_filterzUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CaptureFilter/DeleteCaptureFilterrrrgrhcsg|]}|vr|qSr&r&r,r.r&r'r/r0z>VirtualNetworkClient.delete_capture_filter..z*delete_capture_filter got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z>VirtualNetworkClient.delete_capture_filter..Nrr7r8r9rgrhr;r<rjrkcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r,}sh'$     z*VirtualNetworkClient.delete_capture_filterc srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rLt| t js&|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified CPE object. The CPE must not be connected to a DRG. This is an asynchronous operation. The CPE's `lifecycleState` will change to TERMINATING temporarily until the CPE is completely removed. :param str cpe_id: (required) The `OCID`__ of the CPE. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_cpe API. r /cpes/{cpeId}r' delete_cpercsg|]}|vr|qSr&r&r,r.r&r'r/r0z3VirtualNetworkClient.delete_cpe..zdelete_cpe got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z3VirtualNetworkClient.delete_cpe..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6*r0rr=rrrrJrKrLrMrNrOrPr!r2r"rQrrrrRrSrTr rUrVr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r1sj$$    zVirtualNetworkClient.delete_cpec srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rLt| t js&|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified cross-connect. It must not be mapped to a :class:`VirtualCircuit`. :param str cross_connect_id: (required) The `OCID`__ of the cross-connect. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_cross_connect API. r/crossConnects/{crossConnectId}r'delete_cross_connectr2rcsg|]}|vr|qSr&r&r,r.r&r'r/{r0z=VirtualNetworkClient.delete_cross_connect..z)delete_cross_connect got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z=VirtualNetworkClient.delete_cross_connect..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrr3r$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r6Lsj#$    z)VirtualNetworkClient.delete_cross_connectc srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rLt| t js&|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a  Deletes the specified cross-connect group. It must not contain any cross-connects, and it cannot be mapped to a :class:`VirtualCircuit`. :param str cross_connect_group_id: (required) The `OCID`__ of the cross-connect group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_cross_connect_group API. r)/crossConnectGroups/{crossConnectGroupId}r'delete_cross_connect_groupr2rcsg|]}|vr|qSr&r&r,r.r&r'r/r0zCVirtualNetworkClient.delete_cross_connect_group..z/delete_cross_connect_group got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zCVirtualNetworkClient.delete_cross_connect_group..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrr3r$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r9sj$$    z/VirtualNetworkClient.delete_cross_connect_groupc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified set of DHCP options, but only if it's not associated with a subnet. You can't delete a VCN's default set of DHCP options. This is an asynchronous operation. The state of the set of options will switch to TERMINATING temporarily until the set is completely removed. :param str dhcp_id: (required) The `OCID`__ for the set of DHCP options. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_dhcp_options API. r/dhcps/{dhcpId}r'delete_dhcp_optionsr2rcsg|]}|vr|qSr&r&r,r.r&r'r/Ir0z.z(delete_dhcp_options got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Rr0z.Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6]r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r<sf&$    z(VirtualNetworkClient.delete_dhcp_optionsc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified DRG. The DRG must not be attached to a VCN or be connected to your on-premise network. Also, there must not be a route table that lists the DRG as a target. This is an asynchronous operation. The DRG's `lifecycleState` will change to TERMINATING temporarily until the DRG is completely removed. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_drg API. r /drgs/{drgId}r' delete_drgr2rcsg|]}|vr|qSr&r&r,r.r&r'r/r0z3VirtualNetworkClient.delete_drg..zdelete_drg got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z3VirtualNetworkClient.delete_drg..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r?}sf%$    zVirtualNetworkClient.delete_drgc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Detaches a DRG from a network resource by deleting the corresponding `DrgAttachment` resource. This is an asynchronous operation. The attachment's `lifecycleState` will temporarily change to DETACHING until the attachment is completely removed. :param str drg_attachment_id: (required) The `OCID`__ of the DRG attachment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_drg_attachment API. drgAttachmentId!/drgAttachments/{drgAttachmentId}r'delete_drg_attachmentr2rcsg|]}|vr|qSr&r&r,r.r&r'r/r0z>VirtualNetworkClient.delete_drg_attachment..z*delete_drg_attachment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z>VirtualNetworkClient.delete_drg_attachment..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6&r0rr=rrrr$drg_attachment_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rCsf$$    z*VirtualNetworkClient.delete_drg_attachmentc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified route distribution. You can't delete a route distribution currently in use by a DRG attachment or DRG route table. Remove the DRG route distribution from a DRG attachment or DRG route table by using the "RemoveExportDrgRouteDistribution" or "RemoveImportDrgRouteDistribution' operations. :param str drg_route_distribution_id: (required) The `OCID`__ of the route distribution. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_drg_route_distribution API. r)//drgRouteDistributions/{drgRouteDistributionId}r'delete_drg_route_distributionzlhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistributionStatement/DeleteDrgRouteDistributionrcsg|]}|vr|qSr&r&r,r.r&r'r/vr0zFVirtualNetworkClient.delete_drg_route_distribution..z2delete_drg_route_distribution got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0zFVirtualNetworkClient.delete_drg_route_distribution..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrrr$rWr%rHr@rArFrGrXrBr4r5rCrr&r.r'rGFsf$$    z2VirtualNetworkClient.delete_drg_route_distributionc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified DRG route table. There must not be any DRG attachments assigned. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_drg_route_table API. rY!/drgRouteTables/{drgRouteTableId}r'delete_drg_route_tablezXhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/InternalPublicIp/DeleteDrgRouteTablercsg|]}|vr|qSr&r&r,r.r&r'r/r0z?VirtualNetworkClient.delete_drg_route_table..z+delete_drg_route_table got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r0z?VirtualNetworkClient.delete_drg_route_table..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r0rr=rrrr$rcr%rHr@rArFrGrXrBr4r5rCrr&r.r'rJsf"$    z+VirtualNetworkClient.delete_drg_route_tablec sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified internet gateway. The internet gateway does not have to be disabled, but there must not be a route table that lists it as a target. This is an asynchronous operation. The gateway's `lifecycleState` will change to TERMINATING temporarily until the gateway is completely removed. :param str ig_id: (required) The `OCID`__ of the internet gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_internet_gateway API. r/internetGateways/{igId}r'delete_internet_gatewayr2rcsg|]}|vr|qSr&r&r,r.r&r'r/> r0z@VirtualNetworkClient.delete_internet_gateway..z,delete_internet_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6G r0z@VirtualNetworkClient.delete_internet_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6R r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'rM sf&$    z,VirtualNetworkClient.delete_internet_gatewayc srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rLt| t js&|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified IPSec connection. If your goal is to disable the Site-to-Site VPN between your VCN and on-premises network, it's easiest to simply detach the DRG but keep all the Site-to-Site VPN components intact. If you were to delete all the components and then later need to create an Site-to-Site VPN again, you would need to configure your on-premises router again with the new information returned from :func:`create_ip_sec_connection`. This is an asynchronous operation. The connection's `lifecycleState` will change to TERMINATING temporarily until the connection is completely removed. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_ip_sec_connection API. r/ipsecConnections/{ipscId}r'delete_ip_sec_connectionr2rcsg|]}|vr|qSr&r&r,r.r&r'r/ r0zAVirtualNetworkClient.delete_ip_sec_connection..z-delete_ip_sec_connection got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 r0zAVirtualNetworkClient.delete_ip_sec_connection..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 r0rr=rrr3r$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'rPr sj)$    z-VirtualNetworkClient.delete_ip_sec_connectionc sndg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rHt| t js"|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a0 Unassigns and deletes the specified IPv6. You must specify the object's `OCID`__. The IPv6 address is returned to the subnet's pool of available addresses. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str ipv6_id: (required) The `OCID`__ of the IPv6. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_ipv6 API. ipv6Id/ipv6/{ipv6Id}r' delete_ipv6r2r-csg|]}|vr|qSr&r&r,r.r&r'r/!r0z4VirtualNetworkClient.delete_ipv6..z delete_ipv6 got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6!r0z4VirtualNetworkClient.delete_ipv6..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6(!r0rr=rrrr$ipv6_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rT sh)$     z VirtualNetworkClient.delete_ipv6c sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified local peering gateway (LPG). This is an asynchronous operation; the local peering gateway's `lifecycleState` changes to TERMINATING temporarily until the local peering gateway is completely removed. :param str local_peering_gateway_id: (required) The `OCID`__ of the local peering gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_local_peering_gateway API. r-/localPeeringGateways/{localPeeringGatewayId}r'delete_local_peering_gatewayr2rcsg|]}|vr|qSr&r&r,r.r&r'r/y!r0zEVirtualNetworkClient.delete_local_peering_gateway..z1delete_local_peering_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6!r0zEVirtualNetworkClient.delete_local_peering_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6!r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'rXH!sf%$    z1VirtualNetworkClient.delete_local_peering_gatewayc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified NAT gateway. The NAT gateway does not have to be disabled, but there must not be a route rule that lists the NAT gateway as a target. This is an asynchronous operation. The NAT gateway's `lifecycleState` will change to TERMINATING temporarily until the NAT gateway is completely removed. :param str nat_gateway_id: (required) The NAT gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_nat_gateway API. r/natGateways/{natGatewayId}r'delete_nat_gatewayr2rcsg|]}|vr|qSr&r&r,r.r&r'r/!r0z;VirtualNetworkClient.delete_nat_gateway..z'delete_nat_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6!r0z;VirtualNetworkClient.delete_nat_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6!r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r[!sf&$    z'VirtualNetworkClient.delete_nat_gatewayc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified network security group. The group must not contain any VNICs. To get a list of the VNICs in a network security group, use :func:`list_network_security_group_vnics`. Each returned :class:`NetworkSecurityGroupVnic` object contains both the `OCID`__ of the VNIC and the `OCID`__ of the VNIC's parent resource (for example, the Compute instance that the VNIC is attached to). __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_network_security_group API. rt//networkSecurityGroups/{networkSecurityGroupId}r'delete_network_security_groupzchttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/DeleteNetworkSecurityGrouprcsg|]}|vr|qSr&r&r,r.r&r'r/J"r0zFVirtualNetworkClient.delete_network_security_group..z2delete_network_security_group got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6S"r0zFVirtualNetworkClient.delete_network_security_group..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6^"r0rr=rrrr$rvr%rHr@rArFrGrXrBr4r5rCrr&r.r'r^"sf+$    z2VirtualNetworkClient.delete_network_security_groupc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)ak Unassigns and deletes the specified private IP. You must specify the object's `OCID`__. The private IP address is returned to the subnet's pool of available addresses. This operation cannot be used with primary private IPs, which are automatically unassigned and deleted when the VNIC is terminated. **Important:** If a secondary private IP is the `target of a route rule`__, unassigning it from the VNIC causes that route rule to blackhole and the traffic will be dropped. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip :param str private_ip_id: (required) The `OCID`__ of the private IP or IPv6. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_private_ip API. privateIpId/privateIps/{privateIpId}r'delete_private_ipr2rcsg|]}|vr|qSr&r&r,r.r&r'r/"r0z:VirtualNetworkClient.delete_private_ip..z&delete_private_ip got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6"r0z:VirtualNetworkClient.delete_private_ip..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6"r0rr=rrrr$ private_ip_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rb~"sf/$    z&VirtualNetworkClient.delete_private_ipc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a5 Unassigns and deletes the specified public IP (either ephemeral or reserved). You must specify the object's `OCID`__. The public IP address is returned to the Oracle Cloud Infrastructure public IP pool. **Note:** You cannot update, unassign, or delete the public IP that Oracle automatically assigned to an entity for you (such as a load balancer or NAT gateway). The public IP is automatically deleted if the assigned entity is terminated. For an assigned reserved public IP, the initial unassignment portion of this operation is asynchronous. Poll the public IP's `lifecycleState` to determine if the operation succeeded. If you want to simply unassign a reserved public IP and return it to your pool of reserved public IPs, instead use :func:`update_public_ip`. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str public_ip_id: (required) The `OCID`__ of the public IP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_public_ip API. r/publicIps/{publicIpId}r'delete_public_ipr2rcsg|]}|vr|qSr&r&r,r.r&r'r/+#r0z9VirtualNetworkClient.delete_public_ip..z%delete_public_ip got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r64#r0z9VirtualNetworkClient.delete_public_ip..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6?#r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'rf"sf2$    z%VirtualNetworkClient.delete_public_ipc sndg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rHt| t js"|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)az Deletes the specified public IP pool. To delete a public IP pool it must not have any active IP address allocations. You must specify the object's `OCID`__ when deleting an IP pool. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str public_ip_pool_id: (required) The `OCID`__ of the public IP pool. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_public_ip_pool API. rw/publicIpPools/{publicIpPoolId}r'delete_public_ip_poolzShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/DeletePublicIpPoolr)csg|]}|vr|qSr&r&r,r.r&r'r/#r0z>VirtualNetworkClient.delete_public_ip_pool..z*delete_public_ip_pool got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6#r0z>VirtualNetworkClient.delete_public_ip_pool..Nrr7r8r9rhrgr*cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6#r0rr=rrrr$r|r%rHr@rArFrGrXrBr4r5rCrr&r.r'ri_#sh*$     z*VirtualNetworkClient.delete_public_ip_poolc srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rLt| t js&|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)aV Deletes the remote peering connection (RPC). This is an asynchronous operation; the RPC's `lifecycleState` changes to TERMINATING temporarily until the RPC is completely removed. :param str remote_peering_connection_id: (required) The `OCID`__ of the remote peering connection (RPC). __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_remote_peering_connection API. r5/remotePeeringConnections/{remotePeeringConnectionId}r' delete_remote_peering_connectionr2rcsg|]}|vr|qSr&r&r,r.r&r'r/#r0zIVirtualNetworkClient.delete_remote_peering_connection..z5delete_remote_peering_connection got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6$r0zIVirtualNetworkClient.delete_remote_peering_connection..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6$r0rr=rrr3r$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'rl#sj%$    z5VirtualNetworkClient.delete_remote_peering_connectionc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified route table, but only if it's not associated with a subnet. You can't delete a VCN's default route table. This is an asynchronous operation. The route table's `lifecycleState` will change to TERMINATING temporarily until the route table is completely removed. :param str rt_id: (required) The `OCID`__ of the route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_route_table API. r/routeTables/{rtId}r'delete_route_tabler2rcsg|]}|vr|qSr&r&r,r.r&r'r/d$r0z;VirtualNetworkClient.delete_route_table..z'delete_route_table got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6m$r0z;VirtualNetworkClient.delete_route_table..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6x$r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'ro2$sf&$    z'VirtualNetworkClient.delete_route_tablec sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified security list, but only if it's not associated with a subnet. You can't delete a VCN's default security list. This is an asynchronous operation. The security list's `lifecycleState` will change to TERMINATING temporarily until the security list is completely removed. :param str security_list_id: (required) The `OCID`__ of the security list. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_security_list API. r/securityLists/{securityListId}r'delete_security_listr2rcsg|]}|vr|qSr&r&r,r.r&r'r/$r0z=VirtualNetworkClient.delete_security_list..z)delete_security_list got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6$r0z=VirtualNetworkClient.delete_security_list..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6$r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'rr$sf&$    z)VirtualNetworkClient.delete_security_listc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified service gateway. There must not be a route table that lists the service gateway as a target. :param str service_gateway_id: (required) The service gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_service_gateway API. r#/serviceGateways/{serviceGatewayId}r'delete_service_gatewayr2rcsg|]}|vr|qSr&r&r,r.r&r'r/-%r0z?VirtualNetworkClient.delete_service_gateway..z+delete_service_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r66%r0z?VirtualNetworkClient.delete_service_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6A%r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'ru$sf#$    z+VirtualNetworkClient.delete_service_gatewayc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified subnet, but only if there are no instances in the subnet. This is an asynchronous operation. The subnet's `lifecycleState` will change to TERMINATING temporarily. If there are any instances in the subnet, the state will instead change back to AVAILABLE. :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_subnet API. rd/subnets/{subnetId}r' delete_subnetr2rcsg|]}|vr|qSr&r&r,r.r&r'r/%r0z6VirtualNetworkClient.delete_subnet..z"delete_subnet got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6%r0z6VirtualNetworkClient.delete_subnet..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6%r0rr=rrrr$rmr%rHr@rArFrGrXrBr4r5rCrr&r.r'rxa%sf$$    z"VirtualNetworkClient.delete_subnetc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified VCN. The VCN must be completely empty and have no attached gateways. This is an asynchronous operation. A deleted VCN's `lifecycleState` changes to TERMINATING and then TERMINATED temporarily until the VCN is completely removed. A completely removed VCN does not appear in the results of a `ListVcns` operation and can't be used in a `GetVcn` operation. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_vcn API. rn /vcns/{vcnId}r' delete_vcnr2rcsg|]}|vr|qSr&r&r,r.r&r'r/%r0z3VirtualNetworkClient.delete_vcn..zdelete_vcn got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6&r0z3VirtualNetworkClient.delete_vcn..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 &r0rr=rrrrrr&r.r'r{%sf'$    zVirtualNetworkClient.delete_vcnc srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rLt| t js&|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)aL Deletes the specified virtual circuit. **Important:** If you're using FastConnect via a provider, make sure to also terminate the connection with the provider, or else the provider may continue to bill you. :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_virtual_circuit API. r#/virtualCircuits/{virtualCircuitId}r'delete_virtual_circuitr2rcsg|]}|vr|qSr&r&r,r.r&r'r/^&r0z?VirtualNetworkClient.delete_virtual_circuit..z+delete_virtual_circuit got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6g&r0z?VirtualNetworkClient.delete_virtual_circuit..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6r&r0rr=rrr3r$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r},&sj&$    z+VirtualNetworkClient.delete_virtual_circuitc sndg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rHt| t js"|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a| Deletes the specified VLAN, but only if there are no VNICs in the VLAN. :param str vlan_id: (required) The `OCID`__ of the VLAN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_vlan API. r/vlans/{vlanId}r' delete_vlanzChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vlan/DeleteVlanr-csg|]}|vr|qSr&r&r,r.r&r'r/&r0z4VirtualNetworkClient.delete_vlan..z delete_vlan got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6&r0z4VirtualNetworkClient.delete_vlan..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6&r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r&sh&$     z VirtualNetworkClient.delete_vlanc sndg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rHt| t js"|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a Deletes the specified VTAP. This is an asynchronous operation. The VTAP's `lifecycleState` will change to TERMINATING temporarily until the VTAP is completely removed. :param str vtap_id: (required) The `OCID`__ of the VTAP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use delete_vtap API. r/vtaps/{vtapId}r' delete_vtapzChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vtap/DeleteVtapr-csg|]}|vr|qSr&r&r,r.r&r'r/0'r0z4VirtualNetworkClient.delete_vtap..z delete_vtap got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r69'r0z4VirtualNetworkClient.delete_vtap..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6E'r0rr=rrrr$rr%rHr@rArFrGrXrBr4r5rCrr&r.r'r&sh'$     z VirtualNetworkClient.delete_vtapc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Removes the specified :class:`Service` from the list of enabled `Service` objects for the specified gateway. You do not need to remove any route rules that specify this `Service` object's `cidrBlock` as the destination CIDR. However, consider removing the rules if your intent is to permanently disable use of the `Service` through this service gateway. **Note:** The `DetachServiceId` operation is an easy way to remove an individual `Service` from the service gateway. Compare it with :func:`update_service_gateway`, which replaces the entire existing list of enabled `Service` objects with the list that you provide in the `Update` call. `UpdateServiceGateway` also lets you block all traffic through the service gateway without having to remove each of the individual `Service` objects. :param str service_gateway_id: (required) The service gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ServiceIdRequestDetails detach_service_details: (required) ServiceId of Service to be detached from a service gateway. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use detach_service_id API. rz9/serviceGateways/{serviceGatewayId}/actions/detachServicer*detach_service_idzRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ServiceGateway/DetachServiceIdrcsg|]}|vr|qSr&r&r,r.r&r'r/'r0z:VirtualNetworkClient.detach_service_id..z&detach_service_id got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6'r0z:VirtualNetworkClient.detach_service_id..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6'r0rr=rrr?r)r$rZdetach_service_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r're'sn0$    z&VirtualNetworkClient.detach_service_idc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqnd|vrgd} |d| vrtd| |dt |dt |dt |dt d} dd t| D} dd|dt d}dd t|D}|j j |d|j d}|rt|t js|j |||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)!az Returns a complete list of DRG attachments that belong to a particular DRG. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str attachment_type: (optional) The type for the network resource attached to the DRG. Allowed values are: "VCN", "VIRTUAL_CIRCUIT", "REMOTE_PEERING_CONNECTION", "IPSEC_TUNNEL", "ALL" :param bool is_cross_tenancy: (optional) Whether the DRG attachment lives in a different tenancy than the DRG. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgAttachmentInfo` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_all_drg_attachments API. rz*/drgs/{drgId}/actions/getAllDrgAttachmentsr*get_all_drg_attachmentszLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/GetAllDrgAttachments)rrrhlimitpageattachment_typeis_cross_tenancycsg|]}|vr|qSr&r&r,r.r&r'r/"(r0z@VirtualNetworkClient.get_all_drg_attachments..z,get_all_drg_attachments got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6+(r0z@VirtualNetworkClient.get_all_drg_attachments..Nrr7r8rZVCNZVIRTUAL_CIRCUITZREMOTE_PEERING_CONNECTIONZ IPSEC_TUNNELZALL4Invalid value for `attachment_type`, must be one of rrr)rrattachmentTypeZisCrossTenancycSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6>(r0r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6E(r0rr=zlist[DrgAttachmentInfo]r r@rArB query_paramsrCrErrFrGrHr)r$rr%rHr@rArFrGrXrBr4r5attachment_type_allowed_valuesrrCrr&r.r'r's9 $         z,VirtualNetworkClient.get_all_drg_attachmentsc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td }d d t|D}|jj|d|jd} | durt j } | rt | t j s|j || |j| j|jj|||d|d|||d S|jj|||d|d|||dSdS)aa The parameters allowed for IKE IPSec tunnels. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.AllowedIkeIPSecParameters` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_allowed_ike_ip_sec_parameters API. z/ipsecAlgorithmsGET!get_allowed_ike_ip_sec_parameterszjhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/AllowedIkeIPSecParameters/GetAllowedIkeIpSecParametersrcsg|]}|vr|qSr&r&r,r.r&r'r/(r0zJVirtualNetworkClient.get_allowed_ike_ip_sec_parameters..z6get_allowed_ike_ip_sec_parameters got unknown kwargs: r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6(r0zJVirtualNetworkClient.get_allowed_ike_ip_sec_parameters..rr=NZAllowedIkeIPSecParametersrr@rArCrErrFrGrHrrJrKr!r2rLr"rQrrrrMrRrSrTr rUrV r$r%rHr@rArFrGrXrCrr&r.r'ri(s^     z6VirtualNetworkClient.get_allowed_ike_ip_sec_parametersc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the `ByoipRange` resource. You must specify the `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRange` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_byoip_range API. rr&rget_byoip_rangezLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/GetByoipRangercsg|]}|vr|qSr&r&r,r.r&r'r/(r0z8VirtualNetworkClient.get_byoip_range..z$get_byoip_range got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6(r0z8VirtualNetworkClient.get_byoip_range..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6)r0rr=rr r@rArBrCrErrFrGrHrrr&r.r'r(sj#$    z$VirtualNetworkClient.get_byoip_rangec shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a: Gets information about the specified VTAP capture filter. :param str capture_filter_id: (required) The `OCID`__ of the capture filter. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CaptureFilter` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_capture_filter API. rr+rget_capture_filterzRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CaptureFilter/GetCaptureFilterrcsg|]}|vr|qSr&r&r,r.r&r'r/O)r0z;VirtualNetworkClient.get_capture_filter..z'get_capture_filter got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6X)r0z;VirtualNetworkClient.get_capture_filter..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6c)r0rr=rrrrr/r&r.r'r")sj!$    z'VirtualNetworkClient.get_capture_filterc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the specified CPE's information. :param str cpe_id: (required) The `OCID`__ of the CPE. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_cpe API. rr0rget_cpez>https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Cpe/GetCpercsg|]}|vr|qSr&r&r,r.r&r'r/)r0z0VirtualNetworkClient.get_cpe..zget_cpe got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6)r0z0VirtualNetworkClient.get_cpe..Nrr7r8r9r:r=rrrrr4r&r.r'r)sj$   zVirtualNetworkClient.get_cpec svdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rNt| t js&|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Renders a set of CPE configuration content that can help a network engineer configure the actual CPE device (for example, a hardware router) represented by the specified :class:`Cpe` object. The rendered content is specific to the type of CPE device (for example, Cisco ASA). Therefore the :class:`Cpe` must have the CPE's device type specified by the `cpeDeviceShapeId` attribute. The content optionally includes answers that the customer provides (see :func:`update_tunnel_cpe_device_config`), merged with a template of other information specific to the CPE device type. The operation returns configuration information for *all* of the :class:`IPSecConnection` objects that use the specified CPE. Here are similar operations: * :func:`get_ipsec_cpe_device_config_content` returns CPE configuration content for all IPSec tunnels in a single IPSec connection. * :func:`get_tunnel_cpe_device_config_content` returns CPE configuration content for a specific IPSec tunnel in an IPSec connection. :param str cpe_id: (required) The `OCID`__ of the CPE. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_cpe_device_config_content API. rz/cpes/{cpeId}/cpeConfigContentrget_cpe_device_config_contentzQhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Cpe/GetCpeDeviceConfigContentrcsg|]}|vr|qSr&r&r,r.r&r'r/*r0zFVirtualNetworkClient.get_cpe_device_config_content..z2get_cpe_device_config_content got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6&*r0zFVirtualNetworkClient.get_cpe_device_config_content..Nrr7r8text/plain; charset=utf-8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r61*r0rr=streamrrr3r4r&r.r'r)sn2$    z2VirtualNetworkClient.get_cpe_device_config_contentc svdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rNt| t js&|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a, Gets the detailed information about the specified CPE device type. This might include a set of questions that are specific to the particular CPE device type. The customer must supply answers to those questions (see :func:`update_tunnel_cpe_device_config`). The service merges the answers with a template of other information for the CPE device type. The following operations return the merged content: * :func:`get_cpe_device_config_content` * :func:`get_ipsec_cpe_device_config_content` * :func:`get_tunnel_cpe_device_config_content` :param str cpe_device_shape_id: (required) The `OCID`__ of the CPE device shape. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CpeDeviceShapeDetail` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_cpe_device_shape API. ZcpeDeviceShapeIdz#/cpeDeviceShapes/{cpeDeviceShapeId}rget_cpe_device_shapezZhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CpeDeviceShapeDetail/GetCpeDeviceShapercsg|]}|vr|qSr&r&r,r.r&r'r/*r0z=VirtualNetworkClient.get_cpe_device_shape..z)get_cpe_device_shape got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6*r0z=VirtualNetworkClient.get_cpe_device_shape..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6*r0rr=ZCpeDeviceShapeDetailrrr3)r$Zcpe_device_shape_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rU*sn)$    z)VirtualNetworkClient.get_cpe_device_shapec sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a/ Gets the specified cross-connect's information. :param str cross_connect_id: (required) The `OCID`__ of the cross-connect. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_cross_connect API. rr5rget_cross_connectzPhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnect/GetCrossConnectrcsg|]}|vr|qSr&r&r,r.r&r'r/*r0z:VirtualNetworkClient.get_cross_connect..z&get_cross_connect got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6*r0z:VirtualNetworkClient.get_cross_connect..Nrr7r8r9r:r=rrrrr7r&r.r'r*sj$   z&VirtualNetworkClient.get_cross_connectc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)aR Gets the specified cross-connect group's information. :param str cross_connect_group_id: (required) The `OCID`__ of the cross-connect group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_cross_connect_group API. rr8rget_cross_connect_groupzZhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectGroup/GetCrossConnectGrouprcsg|]}|vr|qSr&r&r,r.r&r'r/@+r0z@VirtualNetworkClient.get_cross_connect_group..z,get_cross_connect_group got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6I+r0z@VirtualNetworkClient.get_cross_connect_group..Nrr7r8r9r:r=rrrrr:r&r.r'r+sj$   z,VirtualNetworkClient.get_cross_connect_groupc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)aj Gets the Letter of Authority for the specified cross-connect. :param str cross_connect_id: (required) The `OCID`__ of the cross-connect. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LetterOfAuthority` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_cross_connect_letter_of_authority API. rz1/crossConnects/{crossConnectId}/letterOfAuthorityr%get_cross_connect_letter_of_authorityzfhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/LetterOfAuthority/GetCrossConnectLetterOfAuthorityrcsg|]}|vr|qSr&r&r,r.r&r'r/+r0zNVirtualNetworkClient.get_cross_connect_letter_of_authority..z:get_cross_connect_letter_of_authority got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6+r0zNVirtualNetworkClient.get_cross_connect_letter_of_authority..Nrr7r8zapplication/json, text/htmlr9r:r=ZLetterOfAuthorityrrrr7r&r.r'rv+sj$   z:VirtualNetworkClient.get_cross_connect_letter_of_authorityc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)aC Gets the status of the specified cross-connect. :param str cross_connect_id: (required) The `OCID`__ of the cross-connect. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectStatus` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_cross_connect_status API. rz&/crossConnects/{crossConnectId}/statusrget_cross_connect_statusz\https://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectStatus/GetCrossConnectStatusrcsg|]}|vr|qSr&r&r,r.r&r'r/+r0zAVirtualNetworkClient.get_cross_connect_status..z-get_cross_connect_status got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6+r0zAVirtualNetworkClient.get_cross_connect_status..Nrr7r8r9r:r=ZCrossConnectStatusrrrr7r&r.r'r+sj$   z-VirtualNetworkClient.get_cross_connect_statusc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a[ Gets the specified set of DHCP options. :param str dhcp_id: (required) The `OCID`__ for the set of DHCP options. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_dhcp_options API. rr;rget_dhcp_optionszNhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DhcpOptions/GetDhcpOptionsrcsg|]}|vr|qSr&r&r,r.r&r'r/N,r0z9VirtualNetworkClient.get_dhcp_options..z%get_dhcp_options got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6W,r0z9VirtualNetworkClient.get_dhcp_options..Nrr7r8r9r:r=rrrrIr=r&r.r'r*,sf$    z%VirtualNetworkClient.get_dhcp_optionsc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a- Gets the specified DRG's information. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_drg API. rr>rget_drgz>https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/GetDrgrcsg|]}|vr|qSr&r&r,r.r&r'r/,r0z0VirtualNetworkClient.get_drg..zget_drg got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6,r0z0VirtualNetworkClient.get_drg..Nrr7r8r9r:r=rrrrIr@r&r.r'r,sf$    zVirtualNetworkClient.get_drgc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a` Gets the `DrgAttachment` resource. :param str drg_attachment_id: (required) The `OCID`__ of the DRG attachment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_drg_attachment API. rArBrget_drg_attachmentzRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgAttachment/GetDrgAttachmentrcsg|]}|vr|qSr&r&r,r.r&r'r/,r0z;VirtualNetworkClient.get_drg_attachment..z'get_drg_attachment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6-r0z;VirtualNetworkClient.get_drg_attachment..Nrr7r8r9r:r=rrrrIrDr&r.r'r,sf$    z'VirtualNetworkClient.get_drg_attachmentc svdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rNt| t js&|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the redundancy status for the specified DRG. For more information, see `Redundancy Remedies`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Troubleshoot/drgredundancy.htm :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRedundancyStatus` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_drg_redundancy_status API. rz/drgs/{drgId}/redundancyStatusrget_drg_redundancy_statusz^https://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRedundancyStatus/GetDrgRedundancyStatusrcsg|]}|vr|qSr&r&r,r.r&r'r/b-r0zBVirtualNetworkClient.get_drg_redundancy_status..z.get_drg_redundancy_status got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6k-r0zBVirtualNetworkClient.get_drg_redundancy_status..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6v-r0rr=ZDrgRedundancyStatusrrr3r@r&r.r'r2-sn$$    z.VirtualNetworkClient.get_drg_redundancy_statusc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the specified route distribution's information. :param str drg_route_distribution_id: (required) The `OCID`__ of the route distribution. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_drg_route_distribution API. r)rFrget_drg_route_distributionz`https://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistribution/GetDrgRouteDistributionrcsg|]}|vr|qSr&r&r,r.r&r'r/-r0zCVirtualNetworkClient.get_drg_route_distribution..z/get_drg_route_distribution got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6-r0zCVirtualNetworkClient.get_drg_route_distribution..Nrr7r8r9r:r=rrrrIrHr&r.r'r-sf$    z/VirtualNetworkClient.get_drg_route_distributionc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)as Gets the specified DRG route table's information. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_drg_route_table API. rYrIrget_drg_route_tablezRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteTable/GetDrgRouteTablercsg|]}|vr|qSr&r&r,r.r&r'r/.r0z.z(get_drg_route_table got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6.r0z.Nrr7r8r9r:r=rrrrIrKr&r.r'r-sf$    z(VirtualNetworkClient.get_drg_route_tablec sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the specified provider service. For more information, see `FastConnect Overview`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm :param str provider_service_id: (required) The `OCID`__ of the provider service. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.FastConnectProviderService` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_fast_connect_provider_service API. providerServiceIdz0/fastConnectProviderServices/{providerServiceId}r!get_fast_connect_provider_servicezlhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/FastConnectProviderService/GetFastConnectProviderServicercsg|]}|vr|qSr&r&r,r.r&r'r/q.r0zJVirtualNetworkClient.get_fast_connect_provider_service..z6get_fast_connect_provider_service got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6z.r0zJVirtualNetworkClient.get_fast_connect_provider_service..Nrr7r8r9r:r=ZFastConnectProviderServicerrr)r$provider_service_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rJ.sj $   z6VirtualNetworkClient.get_fast_connect_provider_servicec sZddg}d}d}d}d}dgfdd t|D} | rHtd | ||d } d d t| D} t| D]<\} } | dust| tjrpt| dkrptd| dqpddd} |jj | d|j d}|durt j }|r2t|t js |j| ||j|j|jj||| | d| d|||d S|jj||| | d| d|||d SdS)a Gets the specified provider service key's information. Use this operation to validate a provider service key. An invalid key returns a 404 error. :param str provider_service_id: (required) The `OCID`__ of the provider service. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str provider_service_key_name: (required) The provider service key that the provider gives you when you set up a virtual circuit connection from the provider to Oracle Cloud Infrastructure. You can set up that connection and get your provider service key at the provider's website or portal. For the portal location, see the `description` attribute of the :class:`FastConnectProviderService`. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.FastConnectProviderServiceKey` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_fast_connect_provider_service_key API. rproviderServiceKeyNamez]/fastConnectProviderServices/{providerServiceId}/providerServiceKeys/{providerServiceKeyName}r%get_fast_connect_provider_service_keyzrhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/FastConnectProviderServiceKey/GetFastConnectProviderServiceKeyrcsg|]}|vr|qSr&r&r,r.r&r'r/.r0zNVirtualNetworkClient.get_fast_connect_provider_service_key..z:get_fast_connect_provider_service_key got unknown kwargs: )rrcSsi|]\}}|tur||qSr&r1r3r&r&r'r6.r0zNVirtualNetworkClient.get_fast_connect_provider_service_key..Nrr7r8r9r:r=ZFastConnectProviderServiceKeyrrr)r$rZprovider_service_key_namer%rHr@rArFrGrXrBr4r5rCrr&r.r'r.sl$$   z:VirtualNetworkClient.get_fast_connect_provider_service_keyc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)al Gets the specified internet gateway's information. :param str ig_id: (required) The `OCID`__ of the internet gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_internet_gateway API. rrLrget_internet_gatewayzVhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/InternetGateway/GetInternetGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/-/r0z=VirtualNetworkClient.get_internet_gateway..z)get_internet_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r66/r0z=VirtualNetworkClient.get_internet_gateway..Nrr7r8r9r:r=rrrrIrNr&r.r'r /sf$    z)VirtualNetworkClient.get_internet_gatewayc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the specified IPSec connection's basic information, including the static routes for the on-premises router. If you want the status of the connection (whether it's up or down), use :func:`get_ip_sec_connection_tunnel`. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ip_sec_connection API. rrOrget_ip_sec_connectionzVhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnection/GetIpSecConnectionrcsg|]}|vr|qSr&r&r,r.r&r'r//r0z>VirtualNetworkClient.get_ip_sec_connection..z*get_ip_sec_connection got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6/r0z>VirtualNetworkClient.get_ip_sec_connection..Nrr7r8r9r:r=rrrrrQr&r.r'ra/sj$   z*VirtualNetworkClient.get_ip_sec_connectionc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Deprecated. To get tunnel information, instead use: * :func:`get_ip_sec_connection_tunnel` * :func:`get_ip_sec_connection_tunnel_shared_secret` :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionDeviceConfig` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ip_sec_connection_device_config API. rz'/ipsecConnections/{ipscId}/deviceConfigr#get_ip_sec_connection_device_configznhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionDeviceConfig/GetIpSecConnectionDeviceConfigrcsg|]}|vr|qSr&r&r,r.r&r'r//r0zLVirtualNetworkClient.get_ip_sec_connection_device_config..z8get_ip_sec_connection_device_config got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6/r0zLVirtualNetworkClient.get_ip_sec_connection_device_config..Nrr7r8r9r:r=ZIPSecConnectionDeviceConfigrrrrQr&r.r'r/sj $   z8VirtualNetworkClient.get_ip_sec_connection_device_configc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Deprecated. To get the tunnel status, instead use :func:`get_ip_sec_connection_tunnel`. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionDeviceStatus` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ip_sec_connection_device_status API. rz'/ipsecConnections/{ipscId}/deviceStatusr#get_ip_sec_connection_device_statusznhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionDeviceStatus/GetIpSecConnectionDeviceStatusrcsg|]}|vr|qSr&r&r,r.r&r'r/?0r0zLVirtualNetworkClient.get_ip_sec_connection_device_status..z8get_ip_sec_connection_device_status got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6H0r0zLVirtualNetworkClient.get_ip_sec_connection_device_status..Nrr7r8r9r:r=ZIPSecConnectionDeviceStatusrrrrQr&r.r'r0sj$   z8VirtualNetworkClient.get_ip_sec_connection_device_statusc sZddg}d}d}d}d}dgfdd t|D} | rHtd | ||d } d d t| D} t| D]<\} } | dust| tjrpt| dkrptd| dqpddd} |jj | d|j d}|durt j }|r2t|t js |j| ||j|j|jj||| | d| d|||d S|jj||| | d| d|||d SdS)a Gets the specified tunnel's information. The resulting object does not include the tunnel's shared secret (pre-shared key). To retrieve that, use :func:`get_ip_sec_connection_tunnel_shared_secret`. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnel` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ip_sec_connection_tunnel API. rtunnelId-/ipsecConnections/{ipscId}/tunnels/{tunnelId}rget_ip_sec_connection_tunnelzbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionTunnel/GetIpSecConnectionTunnelrcsg|]}|vr|qSr&r&r,r.r&r'r/0r0zEVirtualNetworkClient.get_ip_sec_connection_tunnel..z1get_ip_sec_connection_tunnel got unknown kwargs: rrcSsi|]\}}|tur||qSr&r1r3r&r&r'r60r0zEVirtualNetworkClient.get_ip_sec_connection_tunnel..Nrr7r8r9r:r=IPSecConnectionTunnelrrrr$r tunnel_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'ru0sl$$   z1VirtualNetworkClient.get_ip_sec_connection_tunnelc sZddg}d}d}d}d}dgfdd t|D} | rHtd | ||d } d d t| D} t| D]<\} } | dust| tjrpt| dkrptd| dqpddd} |jj | d|j d}|durt j }|r2t|t js |j| ||j|j|jj||| | d| d|||d S|jj||| | d| d|||d SdS)a Gets the identified error for the specified IPSec tunnel ID. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnelErrorDetails` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ip_sec_connection_tunnel_error API. rrz3/ipsecConnections/{ipscId}/tunnels/{tunnelId}/errorr"get_ip_sec_connection_tunnel_errorzshttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionTunnelErrorDetails/GetIpSecConnectionTunnelErrorrcsg|]}|vr|qSr&r&r,r.r&r'r/1r0zKVirtualNetworkClient.get_ip_sec_connection_tunnel_error..z7get_ip_sec_connection_tunnel_error got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r6 1r0zKVirtualNetworkClient.get_ip_sec_connection_tunnel_error..Nrr7r8r9r:r=Z!IPSecConnectionTunnelErrorDetailsrrrrr&r.r'r0sl"$   z7VirtualNetworkClient.get_ip_sec_connection_tunnel_errorc sZddg}d}d}d}d}dgfdd t|D} | rHtd | ||d } d d t| D} t| D]<\} } | dust| tjrpt| dkrptd| dqpddd} |jj | d|j d}|durt j }|r2t|t js |j| ||j|j|jj||| | d| d|||d S|jj||| | d| d|||d SdS)a Gets the specified tunnel's shared secret (pre-shared key). To get other information about the tunnel, use :func:`get_ip_sec_connection_tunnel`. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnelSharedSecret` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ip_sec_connection_tunnel_shared_secret API. rr:/ipsecConnections/{ipscId}/tunnels/{tunnelId}/sharedSecretr*get_ip_sec_connection_tunnel_shared_secretzzhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionTunnelSharedSecret/GetIpSecConnectionTunnelSharedSecretrcsg|]}|vr|qSr&r&r,r.r&r'r/a1r0zSVirtualNetworkClient.get_ip_sec_connection_tunnel_shared_secret..z?get_ip_sec_connection_tunnel_shared_secret got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r6k1r0zSVirtualNetworkClient.get_ip_sec_connection_tunnel_shared_secret..Nrr7r8r9r:r=!IPSecConnectionTunnelSharedSecretrrrrr&r.r'r71sl#$   z?VirtualNetworkClient.get_ip_sec_connection_tunnel_shared_secretc svdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rNt| t js&|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Renders a set of CPE configuration content for the specified IPSec connection (for all the tunnels in the connection). The content helps a network engineer configure the actual CPE device (for example, a hardware router) that the specified IPSec connection terminates on. The rendered content is specific to the type of CPE device (for example, Cisco ASA). Therefore the :class:`Cpe` used by the specified :class:`IPSecConnection` must have the CPE's device type specified by the `cpeDeviceShapeId` attribute. The content optionally includes answers that the customer provides (see :func:`update_tunnel_cpe_device_config`), merged with a template of other information specific to the CPE device type. The operation returns configuration information for all tunnels in the single specified :class:`IPSecConnection` object. Here are other similar operations: * :func:`get_tunnel_cpe_device_config_content` returns CPE configuration content for a specific tunnel within an IPSec connection. * :func:`get_cpe_device_config_content` returns CPE configuration content for *all* IPSec connections that use a specific CPE. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ipsec_cpe_device_config_content API. rz+/ipsecConnections/{ipscId}/cpeConfigContentr#get_ipsec_cpe_device_config_contentzbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnection/GetIpsecCpeDeviceConfigContentrcsg|]}|vr|qSr&r&r,r.r&r'r/1r0zLVirtualNetworkClient.get_ipsec_cpe_device_config_content..z8get_ipsec_cpe_device_config_content got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r61r0zLVirtualNetworkClient.get_ipsec_cpe_device_config_content..Nrr7r8rr9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r61r0rr=rrrr3rQr&r.r'r1sn3$    z8VirtualNetworkClient.get_ipsec_cpe_device_config_contentc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a{ Gets the specified IPv6. You must specify the object's `OCID`__. Alternatively, you can get the object by using :func:`list_ipv6s` with the IPv6 address (for example, 2001:0db8:0123:1111:98fe:dcba:9876:4321) and subnet `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str ipv6_id: (required) The `OCID`__ of the IPv6. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_ipv6 API. rRrSrget_ipv6z@https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6rcsg|]}|vr|qSr&r&r,r.r&r'r/B2r0z1VirtualNetworkClient.get_ipv6..zget_ipv6 got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6K2r0z1VirtualNetworkClient.get_ipv6..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6V2r0rr=rrrrrUr&r.r'r2sj'$    zVirtualNetworkClient.get_ipv6c sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the specified local peering gateway's information. :param str local_peering_gateway_id: (required) The `OCID`__ of the local peering gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_local_peering_gateway API. rrWrget_local_peering_gatewayz^https://docs.oracle.com/iaas/api/#/en/iaas/20160918/LocalPeeringGateway/GetLocalPeeringGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/2r0zBVirtualNetworkClient.get_local_peering_gateway..z.get_local_peering_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r62r0zBVirtualNetworkClient.get_local_peering_gateway..Nrr7r8r9r:r=rrrrIrYr&r.r'rx2sf$    z.VirtualNetworkClient.get_local_peering_gatewayc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)aW Gets the specified NAT gateway's information. :param str nat_gateway_id: (required) The NAT gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_nat_gateway API. rrZrget_nat_gatewayzLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NatGateway/GetNatGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/2r0z8VirtualNetworkClient.get_nat_gateway..z$get_nat_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r62r0z8VirtualNetworkClient.get_nat_gateway..Nrr7r8r9r:r=rrrrIr\r&r.r'r2sf$    z$VirtualNetworkClient.get_nat_gatewayc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)ai Gets the specified network security group's information. To list the VNICs in an NSG, see :func:`list_network_security_group_vnics`. To list the security rules in an NSG, see :func:`list_network_security_group_security_rules`. :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_network_security_group API. rtr]rget_network_security_groupz`https://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/GetNetworkSecurityGrouprcsg|]}|vr|qSr&r&r,r.r&r'r/R3r0zCVirtualNetworkClient.get_network_security_group..z/get_network_security_group got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6[3r0zCVirtualNetworkClient.get_network_security_group..Nrr7r8r9r:r=rrrrIr_r&r.r'r(3sf#$    z/VirtualNetworkClient.get_network_security_groupc srdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | ||d t|dtd} ddt| D} dd|dt|dt|dtd} ddt| D} |jj|d|jd} | rJt | t j s"|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)ab Gets a virtual networking topology for the current region. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str access_level: (optional) Valid values are `ANY` and `ACCESSIBLE`. The default is `ANY`. Setting this to `ACCESSIBLE` returns only compartments for which a user has INSPECT permissions, either directly or indirectly (permissions can be on a resource in a subcompartment). A restricted set of fields is returned for compartments in which a user has indirect INSPECT permissions. When set to `ANY` permissions are not checked. Allowed values are: "ANY", "ACCESSIBLE" :param bool query_compartment_subtree: (optional) When set to true, the hierarchy of compartments is traversed and the specified compartment and its subcompartments are inspected depending on the the setting of `accessLevel`. Default is false. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_none_match: (optional) For querying if there is a cached value on the server. The If-None-Match HTTP request header makes the request conditional. For GET and HEAD methods, the server will send back the requested resource, with a 200 status, only if it doesn't have an ETag matching the given ones. For other methods, the request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. :param str cache_control: (optional) The Cache-Control HTTP header holds directives (instructions) for caching in both requests and responses. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkingTopology` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_networking_topology API. compartmentIdz/networkingTopologyrget_networking_topologyz\https://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkingTopology/GetNetworkingTopologyrr access_levelquery_compartment_subtreerh if_none_match cache_controlcsg|]}|vr|qSr&r&r,r.r&r'r/3r0z@VirtualNetworkClient.get_networking_topology..z,get_networking_topology got unknown kwargs: rANY ACCESSIBLE1Invalid value for `access_level`, must be one of r)r accessLevelqueryCompartmentSubtreecSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r63r0z@VirtualNetworkClient.get_networking_topology..r9rhrrr;r<rkz if-none-matchz cache-controlcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r63r0rr=ZNetworkingTopologyr r@rArrCrErrFrGrHNrrJrKr!r2rLr"rQrrMrrRrSrTr rUrV) r$compartment_idr%rHr@rArFrGrXaccess_level_allowed_valuesrrCrr&r.r'r3sx=          z,VirtualNetworkClient.get_networking_topologyc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the specified private IP. You must specify the object's `OCID`__. Alternatively, you can get the object by using :func:`list_private_ips` with the private IP address (for example, 10.0.3.3) and subnet `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str private_ip_id: (required) The `OCID`__ of the private IP or IPv6. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_private_ip API. r`rarget_private_ipzJhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIprcsg|]}|vr|qSr&r&r,r.r&r'r/94r0z7VirtualNetworkClient.get_private_ip..z#get_private_ip got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6B4r0z7VirtualNetworkClient.get_private_ip..Nrr7r8r9r:r=rrrrIrcr&r.r'r4sf#$    z#VirtualNetworkClient.get_private_ipc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the specified public IP. You must specify the object's `OCID`__. Alternatively, you can get the object by using :func:`get_public_ip_by_ip_address` with the public IP address (for example, 203.0.113.2). Or you can use :func:`get_public_ip_by_private_ip_id` with the `OCID`__ of the private IP that the public IP is assigned to. **Note:** If you're fetching a reserved public IP that is in the process of being moved to a different private IP, the service returns the public IP object with `lifecycleState` = ASSIGNING and `assignedEntityId` = `OCID`__ of the target private IP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str public_ip_id: (required) The `OCID`__ of the public IP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_public_ip API. rrer get_public_ipzHhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIprcsg|]}|vr|qSr&r&r,r.r&r'r/4r0z6VirtualNetworkClient.get_public_ip..z"get_public_ip got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r64r0z6VirtualNetworkClient.get_public_ip..Nrr7r8r9r:r=r rrrIrgr&r.r'rm4sf+$    z"VirtualNetworkClient.get_public_ipc sg}d}d}d}d}dgfddt|D}|rDtd|d d d } |jj|d|jd } | rt| tj s|j | | |j | j |jj||| |d |d |||d S|jj||| |d |d |||d SdS)a Gets the public IP based on the public IP address (for example, 203.0.113.2). **Note:** If you're fetching a reserved public IP that is in the process of being moved to a different private IP, the service returns the public IP object with `lifecycleState` = ASSIGNING and `assignedEntityId` = `OCID`__ of the target private IP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.GetPublicIpByIpAddressDetails get_public_ip_by_ip_address_details: (required) IP address details for fetching the public IP. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_public_ip_by_ip_address API. z!/publicIps/actions/getByIpAddressr*get_public_ip_by_ip_addresszShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByIpAddressrcsg|]}|vr|qSr&r&r,r.r&r'r/4r0zDVirtualNetworkClient.get_public_ip_by_ip_address..z0get_public_ip_by_ip_address got unknown kwargs: r9r:r=r rrNrrJrKr"rQr!rrMrrRrSrTr rUrV) r$Z#get_public_ip_by_ip_address_detailsr%rHr@rArFrGrXrCrr&r.r'r4sZ!    z0VirtualNetworkClient.get_public_ip_by_ip_addressc sg}d}d}d}d}dgfddt|D}|rDtd|d d d } |jj|d|jd } | rt| tj s|j | | |j | j |jj||| |d |d |||d S|jj||| |d |d |||d SdS)a Gets the public IP assigned to the specified private IP. You must specify the OCID of the private IP. If no public IP is assigned, a 404 is returned. **Note:** If you're fetching a reserved public IP that is in the process of being moved to a different private IP, and you provide the `OCID`__ of the original private IP, this operation returns a 404. If you instead provide the `OCID`__ of the target private IP, or if you instead call :func:`get_public_ip` or :func:`get_public_ip_by_ip_address`, the service returns the public IP object with `lifecycleState` = ASSIGNING and `assignedEntityId` = `OCID`__ of the target private IP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.GetPublicIpByPrivateIpIdDetails get_public_ip_by_private_ip_id_details: (required) Private IP details for fetching the public IP. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_public_ip_by_private_ip_id API. z#/publicIps/actions/getByPrivateIpIdr*get_public_ip_by_private_ip_idzUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpIdrcsg|]}|vr|qSr&r&r,r.r&r'r/U5r0zGVirtualNetworkClient.get_public_ip_by_private_ip_id..z3get_public_ip_by_private_ip_id got unknown kwargs: r9r:r=r rrNr) r$Z&get_public_ip_by_private_ip_id_detailsr%rHr@rArFrGrXrCrr&r.r'r%5sZ)    z3VirtualNetworkClient.get_public_ip_by_private_ip_idc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the specified `PublicIpPool` object. You must specify the object's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str public_ip_pool_id: (required) The `OCID`__ of the public IP pool. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_public_ip_pool API. rwrhrget_public_ip_poolzPhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/GetPublicIpPoolrcsg|]}|vr|qSr&r&r,r.r&r'r/5r0z;VirtualNetworkClient.get_public_ip_pool..z'get_public_ip_pool got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r65r0z;VirtualNetworkClient.get_public_ip_pool..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r65r0rr=r{rrrrjr&r.r'r5sj#$    z'VirtualNetworkClient.get_public_ip_poolc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a{ Get the specified remote peering connection's information. :param str remote_peering_connection_id: (required) The `OCID`__ of the remote peering connection (RPC). __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_remote_peering_connection API. rrkrget_remote_peering_connectionzfhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RemotePeeringConnection/GetRemotePeeringConnectionrcsg|]}|vr|qSr&r&r,r.r&r'r/6r0zFVirtualNetworkClient.get_remote_peering_connection..z2get_remote_peering_connection got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r66r0zFVirtualNetworkClient.get_remote_peering_connection..Nrr7r8r9r:r=rrrrrmr&r.r'r5sj$   z2VirtualNetworkClient.get_remote_peering_connectionc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the `IpInventory` resource. :param str data_request_id: (required) Specify the ID of the resource. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IpInventoryCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_resource_ip_inventory API. Z dataRequestIdz*/ipinventory/DataRequestId/{dataRequestId}rget_resource_ip_inventoryz`https://docs.oracle.com/iaas/api/#/en/iaas/20160918/IpInventoryCollection/GetResourceIpInventoryrcsg|]}|vr|qSr&r&r,r.r&r'r/i6r0zBVirtualNetworkClient.get_resource_ip_inventory..z.get_resource_ip_inventory got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6r6r0zBVirtualNetworkClient.get_resource_ip_inventory..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6}6r0rr=IpInventoryCollectionrrr)r$Zdata_request_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'r>6sj$    z.VirtualNetworkClient.get_resource_ip_inventoryc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)aS Gets the specified route table's information. :param str rt_id: (required) The `OCID`__ of the route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_route_table API. rrnrget_route_tablezLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RouteTable/GetRouteTablercsg|]}|vr|qSr&r&r,r.r&r'r/6r0z8VirtualNetworkClient.get_route_table..z$get_route_table got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r66r0z8VirtualNetworkClient.get_route_table..Nrr7r8r9r:r=rrrrIrpr&r.r'r6sf$    z$VirtualNetworkClient.get_route_tablec sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)ah Gets the specified security list's information. :param str security_list_id: (required) The `OCID`__ of the security list. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_security_list API. rrqrget_security_listzPhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityList/GetSecurityListrcsg|]}|vr|qSr&r&r,r.r&r'r/7r0z:VirtualNetworkClient.get_security_list..z&get_security_list got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6$7r0z:VirtualNetworkClient.get_security_list..Nrr7r8r9r:r=rrrrIrsr&r.r'r6sf$    z&VirtualNetworkClient.get_security_listc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)aB Gets the specified :class:`Service` object. :param str service_id: (required) The service's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Service` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_service API. Z serviceIdz/services/{serviceId}r get_servicezFhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Service/GetServicercsg|]}|vr|qSr&r&r,r.r&r'r/s7r0z4VirtualNetworkClient.get_service..z get_service got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6|7r0z4VirtualNetworkClient.get_service..Nrr7r8r9r:r=ZServicerrrI)r$Z service_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'rO7sf$    z VirtualNetworkClient.get_servicec sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)ao Gets the specified service gateway's information. :param str service_gateway_id: (required) The service gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_service_gateway API. rrtrget_service_gatewayzThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ServiceGateway/GetServiceGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/7r0z.z(get_service_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r67r0z.Nrr7r8r9r:r=rrrrIrvr&r.r'r7sf$    z(VirtualNetworkClient.get_service_gatewayc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)aG Gets the specified subnet's information. :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_subnet API. rdrwr get_subnetzDhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Subnet/GetSubnetrcsg|]}|vr|qSr&r&r,r.r&r'r/#8r0z3VirtualNetworkClient.get_subnet..zget_subnet got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6,8r0z3VirtualNetworkClient.get_subnet..Nrr7r8r9r:r=rrrrIryr&r.r'r7sf$    zVirtualNetworkClient.get_subnetc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the CIDR utilization data of the specified subnet. Specify the `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IpInventoryCidrUtilizationCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_subnet_cidr_utilization API. rdz%/ipInventory/subnets/{subnetId}/cidrsrget_subnet_cidr_utilizationzqhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IpInventoryCidrUtilizationCollection/GetSubnetCidrUtilizationrcsg|]}|vr|qSr&r&r,r.r&r'r/8r0zDVirtualNetworkClient.get_subnet_cidr_utilization..z0get_subnet_cidr_utilization got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r68r0zDVirtualNetworkClient.get_subnet_cidr_utilization..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r68r0rr=Z$IpInventoryCidrUtilizationCollectionrrrryr&r.r'rW8sj#$    z0VirtualNetworkClient.get_subnet_cidr_utilizationc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the IP Inventory data of the specified subnet. Specify the `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IpInventorySubnetResourceCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_subnet_ip_inventory API. rdz/ipInventory/subnets/{subnetId}rget_subnet_ip_inventoryzlhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IpInventorySubnetResourceCollection/GetSubnetIpInventoryrcsg|]}|vr|qSr&r&r,r.r&r'r/8r0z@VirtualNetworkClient.get_subnet_ip_inventory..z,get_subnet_ip_inventory got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r68r0z@VirtualNetworkClient.get_subnet_ip_inventory..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r68r0rr=Z#IpInventorySubnetResourceCollectionrrrryr&r.r'r8sj#$    z,VirtualNetworkClient.get_subnet_ip_inventoryc svddg}d}d}d}d}gdfdd t|D} | rJtd | d |vrtd d g} |d | vrttd| ||d t|dt|d} ddt| D} dd|dt|dt|dtd} ddt| D} |jj|d|jd} | rNt | t j s&|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Gets a topology for a given subnet. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str subnet_id: (required) The `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str access_level: (optional) Valid values are `ANY` and `ACCESSIBLE`. The default is `ANY`. Setting this to `ACCESSIBLE` returns only compartments for which a user has INSPECT permissions, either directly or indirectly (permissions can be on a resource in a subcompartment). A restricted set of fields is returned for compartments in which a user has indirect INSPECT permissions. When set to `ANY` permissions are not checked. Allowed values are: "ANY", "ACCESSIBLE" :param bool query_compartment_subtree: (optional) When set to true, the hierarchy of compartments is traversed and the specified compartment and its subcompartments are inspected depending on the the setting of `accessLevel`. Default is false. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_none_match: (optional) For querying if there is a cached value on the server. The If-None-Match HTTP request header makes the request conditional. For GET and HEAD methods, the server will send back the requested resource, with a 200 status, only if it doesn't have an ETag matching the given ones. For other methods, the request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. :param str cache_control: (optional) The Cache-Control HTTP header holds directives (instructions) for caching in both requests and responses. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SubnetTopology` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_subnet_topology API. rrdz/subnetTopologyrget_subnet_topologyzThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SubnetTopology/GetSubnetTopologyrcsg|]}|vr|qSr&r&r,r.r&r'r/s9r0z.z(get_subnet_topology got unknown kwargs: rrrrr)rrrrdcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r69r0z.r9rhrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r69r0rr=ZSubnetTopologyrrNr)r$rrmr%rHr@rArFrGrXrrrCrr&r.r'r!9szB          z(VirtualNetworkClient.get_subnet_topologyc szddg}d}d}d}d}gdfdd t|D} | rJtd | ||d } d d t| D} t| D]<\} } | dust| tjrrt| dkrrtd| dqrdd|dt d} dd t| D} |j j |d|j d}|durt j}|rRt|t js*|j | ||j|j|j j||| | d|d|||d S|j j||| | d|d|||d SdS)a Gets the set of CPE configuration answers for the tunnel, which the customer provided in :func:`update_tunnel_cpe_device_config`. To get the full set of content for the tunnel (any answers merged with the template of other information specific to the CPE device type), use :func:`get_tunnel_cpe_device_config_content`. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.TunnelCpeDeviceConfig` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_tunnel_cpe_device_config API. rr@/ipsecConnections/{ipscId}/tunnels/{tunnelId}/tunnelDeviceConfigrget_tunnel_cpe_device_configzbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/TunnelCpeDeviceConfig/GetTunnelCpeDeviceConfigrcsg|]}|vr|qSr&r&r,r.r&r'r/9r0zEVirtualNetworkClient.get_tunnel_cpe_device_config..z1get_tunnel_cpe_device_config got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r69r0zEVirtualNetworkClient.get_tunnel_cpe_device_config..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r69r0rr=TunnelCpeDeviceConfigrrr3rr&r.r'r9sp*$    z1VirtualNetworkClient.get_tunnel_cpe_device_configc szddg}d}d}d}d}gdfdd t|D} | rJtd | ||d } d d t| D} t| D]<\} } | dust| tjrrt| dkrrtd| dqrdd|dt d} dd t| D} |j j |d|j d}|durt j}|rRt|t js*|j | ||j|j|j j||| | d|d|||d S|j j||| | d|d|||d SdS)a Renders a set of CPE configuration content for the specified IPSec tunnel. The content helps a network engineer configure the actual CPE device (for example, a hardware router) that the specified IPSec tunnel terminates on. The rendered content is specific to the type of CPE device (for example, Cisco ASA). Therefore the :class:`Cpe` used by the specified :class:`IPSecConnection` must have the CPE's device type specified by the `cpeDeviceShapeId` attribute. The content optionally includes answers that the customer provides (see :func:`update_tunnel_cpe_device_config`), merged with a template of other information specific to the CPE device type. The operation returns configuration information for only the specified IPSec tunnel. Here are other similar operations: * :func:`get_ipsec_cpe_device_config_content` returns CPE configuration content for all tunnels in a single IPSec connection. * :func:`get_cpe_device_config_content` returns CPE configuration content for *all* IPSec connections that use a specific CPE. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type stream :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_tunnel_cpe_device_config_content API. rrzH/ipsecConnections/{ipscId}/tunnels/{tunnelId}/tunnelDeviceConfig/contentr$get_tunnel_cpe_device_config_contentzihttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/TunnelCpeDeviceConfig/GetTunnelCpeDeviceConfigContentrcsg|]}|vr|qSr&r&r,r.r&r'r/b:r0zMVirtualNetworkClient.get_tunnel_cpe_device_config_content..z9get_tunnel_cpe_device_config_content got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r6l:r0zMVirtualNetworkClient.get_tunnel_cpe_device_config_content..Nrr7r8rr9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6w:r0rr=rrrr3rr&r.r'r:sp7$    z9VirtualNetworkClient.get_tunnel_cpe_device_config_contentc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)aw Returns the DRG upgrade status. The status can be not updated, in progress, or updated. Also indicates how much of the upgrade is completed. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.UpgradeStatus` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_upgrade_status API. rz#/drgs/{drgId}/actions/upgradeStatusrget_upgrade_statuszHhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/GetUpgradeStatusrcsg|]}|vr|qSr&r&r,r.r&r'r/:r0z;VirtualNetworkClient.get_upgrade_status..z'get_upgrade_status got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6:r0z;VirtualNetworkClient.get_upgrade_status..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6:r0rr=Z UpgradeStatusrrrr@r&r.r'r:sj!$    z'VirtualNetworkClient.get_upgrade_statusc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a5 Gets the specified VCN's information. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_vcn API. rnrzrget_vcnz>https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/GetVcnrcsg|]}|vr|qSr&r&r,r.r&r'r/";r0z0VirtualNetworkClient.get_vcn..zget_vcn got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6+;r0z0VirtualNetworkClient.get_vcn..Nrr7r8r9r:r=rrrrIrrr&r.r'r:sf$    zVirtualNetworkClient.get_vcnc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)aQ Get the associated DNS resolver information with a vcn :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VcnDnsResolverAssociation` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_vcn_dns_resolver_association API. rnz$/vcns/{vcnId}/dnsResolverAssociationr get_vcn_dns_resolver_associationzjhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VcnDnsResolverAssociation/GetVcnDnsResolverAssociationrcsg|]}|vr|qSr&r&r,r.r&r'r/;r0zIVirtualNetworkClient.get_vcn_dns_resolver_association..z5get_vcn_dns_resolver_association got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6;r0zIVirtualNetworkClient.get_vcn_dns_resolver_association..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6;r0rr=ZVcnDnsResolverAssociationrrrrrr&r.r'rV;sj!$    z5VirtualNetworkClient.get_vcn_dns_resolver_associationc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rXt|t js.|j | |j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)aR Gets the CIDR overlap information of the specified VCN in selected compartments. Specify the `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.GetIpInventoryVcnOverlapDetails get_vcn_overlap_details: (required) Lists details of the IP Inventory VCN overlap data. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IpInventoryVcnOverlapCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_vcn_overlap API. rnz"/ipInventory/vcns/{vcnId}/overlapsr*get_vcn_overlapzahttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IpInventoryVcnOverlapCollection/GetVcnOverlaprycsg|]}|vr|qSr&r&r,r.r&r'r/;r0z8VirtualNetworkClient.get_vcn_overlap..z$get_vcn_overlap got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6;r0z8VirtualNetworkClient.get_vcn_overlap..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6<r0rr=ZIpInventoryVcnOverlapCollectionrr?ra)r$rsZget_vcn_overlap_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r;sr-$      z$VirtualNetworkClient.get_vcn_overlapc svddg}d}d}d}d}gdfdd t|D} | rJtd | d |vrtd d g} |d | vrttd| ||d t|dt|d} ddt| D} dd|dt|dt|dtd} ddt| D} |jj|d|jd} | rNt | t j s&|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Gets a virtual network topology for a given VCN. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (required) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str access_level: (optional) Valid values are `ANY` and `ACCESSIBLE`. The default is `ANY`. Setting this to `ACCESSIBLE` returns only compartments for which a user has INSPECT permissions, either directly or indirectly (permissions can be on a resource in a subcompartment). A restricted set of fields is returned for compartments in which a user has indirect INSPECT permissions. When set to `ANY` permissions are not checked. Allowed values are: "ANY", "ACCESSIBLE" :param bool query_compartment_subtree: (optional) When set to true, the hierarchy of compartments is traversed and the specified compartment and its subcompartments are inspected depending on the the setting of `accessLevel`. Default is false. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_none_match: (optional) For querying if there is a cached value on the server. The If-None-Match HTTP request header makes the request conditional. For GET and HEAD methods, the server will send back the requested resource, with a 200 status, only if it doesn't have an ETag matching the given ones. For other methods, the request will be processed only if the eventually existing resource's ETag doesn't match any of the values listed. :param str cache_control: (optional) The Cache-Control HTTP header holds directives (instructions) for caching in both requests and responses. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VcnTopology` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_vcn_topology API. rrnz /vcnTopologyrget_vcn_topologyzNhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VcnTopology/GetVcnTopologyrcsg|]}|vr|qSr&r&r,r.r&r'r/<r0z9VirtualNetworkClient.get_vcn_topology..z%get_vcn_topology got unknown kwargs: rrrrr)rrrrncSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6<r0z9VirtualNetworkClient.get_vcn_topology..r9rhrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6<r0rr=Z VcnTopologyrrNr)r$rrsr%rHr@rArFrGrXrrrCrr&r.r'r-<szB          z%VirtualNetworkClient.get_vcn_topologyc sVdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | d urt j } | r.t| t js|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a; Gets the specified virtual circuit's information. :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_virtual_circuit API. rr|rget_virtual_circuitzThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuit/GetVirtualCircuitrcsg|]}|vr|qSr&r&r,r.r&r'r/<r0z.z(get_virtual_circuit got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6<r0z.Nrr7r8r9r:r=rrrrr~r&r.r'r<sj$   z(VirtualNetworkClient.get_virtual_circuitc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the specified VLAN's information. :param str vlan_id: (required) The `OCID`__ of the VLAN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_vlan API. rrrget_vlanz@https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vlan/GetVlanrcsg|]}|vr|qSr&r&r,r.r&r'r/C=r0z1VirtualNetworkClient.get_vlan..zget_vlan got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6L=r0z1VirtualNetworkClient.get_vlan..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6W=r0rr=r"rrrrr&r.r'r=sj!$    zVirtualNetworkClient.get_vlanc sFdg}d}d}d}d}dgfddt|D}|rFtd |d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d} | rt| t j s|j| | |j| j|jj||| | d| d|||d S|jj||| | d| d|||d Sd S)a Gets the information for the specified virtual network interface card (VNIC). You can get the VNIC `OCID`__ from the :func:`list_vnic_attachments` operation. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vnic_id: (required) The `OCID`__ of the VNIC. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vnic` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_vnic API. vnicId/vnics/{vnicId}rget_vnicz@https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vnic/GetVnicrcsg|]}|vr|qSr&r&r,r.r&r'r/=r0z1VirtualNetworkClient.get_vnic..zget_vnic got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6=r0z1VirtualNetworkClient.get_vnic..Nrr7r8r9r:r=VnicrrrI)r$vnic_idr%rHr@rArFrGrXrBr4r5rCrr&r.r'ry=sf"$    zVirtualNetworkClient.get_vnicc shdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r@t| t js|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Gets the specified `Vtap` resource. :param str vtap_id: (required) The `OCID`__ of the VTAP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vtap` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use get_vtap API. rrrget_vtapz@https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vtap/GetVtaprcsg|]}|vr|qSr&r&r,r.r&r'r/>r0z1VirtualNetworkClient.get_vtap..zget_vtap got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 >r0z1VirtualNetworkClient.get_vtap..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6>r0rr=r%rrrrr&r.r'r=sj!$    zVirtualNetworkClient.get_vtapc sg}d}d}d}d}dgfddt|D}|rDtd|d d d }|jj|d|jd } | d urttj} | rt | tj s|j || |j | j|jj|||d |d|||d S|jj|||d |d|||dSd S)ak Lists the regions that support remote VCN peering (which is peering across regions). For more information, see `VCN Peering`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/VCNpeering.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.PeerRegionForRemotePeering` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_allowed_peer_regions_for_remote_peering API. z#/allowedPeerRegionsForRemotePeeringr,list_allowed_peer_regions_for_remote_peeringzuhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PeerRegionForRemotePeering/ListAllowedPeerRegionsForRemotePeeringrcsg|]}|vr|qSr&r&r,r.r&r'r/[>r0zUVirtualNetworkClient.list_allowed_peer_regions_for_remote_peering..zAlist_allowed_peer_regions_for_remote_peering got unknown kwargs: r9r:r=Nz list[PeerRegionForRemotePeering]rr)rrJrKr"rQr!rrrrMrRrSrTr rUrVrr&r.r'r9>sZ    zAVirtualNetworkClient.list_allowed_peer_regions_for_remote_peeringc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqn|dt |dt d} dd t| D} dd|dt d} dd t| D} |j j |d|j d}|rpt|t jsF|j | ||j|j|j j||| | | d|d|||d S|j j||| | | d|d|||d Sd S)a Lists the subranges of a BYOIP CIDR block currently allocated to an IP pool. Each `ByoipAllocatedRange` object also lists the IP pool where it is allocated. :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipAllocatedRangeCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_byoip_allocated_ranges API. rz0/byoipRanges/{byoipRangeId}/byoipAllocatedRangesrlist_byoip_allocated_rangeszghttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipAllocatedRangeSummary/ListByoipAllocatedRanges)rrrhrrcsg|]}|vr|qSr&r&r,r.r&r'r/>r0zDVirtualNetworkClient.list_byoip_allocated_ranges..z0list_byoip_allocated_ranges got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6>r0zDVirtualNetworkClient.list_byoip_allocated_ranges..Nrr7r8rrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6>r0r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6>r0rr=ZByoipAllocatedRangeCollectionrrr)r$rr%rHr@rArFrGrXrBr4r5rrCrr&r.r'r>sv2$      z0VirtualNetworkClient.list_byoip_allocated_rangesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| |dt|dt|dt|dt|d t|dt|d} ddt| D} dd|dtd} ddt| D} |jj|d|jd} | rt | t j s`|j | | |j| j|jj||| | d|d |||d! S|jj||| | d|d |||d! Sd"S)#a  Lists the `ByoipRange` resources in the specified compartment. You can filter the list using query parameters. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str lifecycle_state: (optional) A filter to return only resources that match the given lifecycle state name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRangeCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_byoip_ranges API. rrrlist_byoip_rangeszNhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/ListByoipRanges) rrrhrr display_namelifecycle_statesort_by sort_ordercsg|]}|vr|qSr&r&r,r.r&r'r/_?r0z:VirtualNetworkClient.list_byoip_ranges..z&list_byoip_ranges got unknown kwargs: r TIMECREATED DISPLAYNAME,Invalid value for `sort_by`, must be one of rASCDESC/Invalid value for `sort_order`, must be one of rrrr)rr displayNamelifecycleStatesortBy sortOrderrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6{?r0z:VirtualNetworkClient.list_byoip_ranges..r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6?r0rr=ZByoipRangeCollectionrrNrr$rr%rHr@rArFrGrXsort_by_allowed_valuessort_order_allowed_valuesrrCrr&r.r'r?sJ              z&VirtualNetworkClient.list_byoip_rangesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| d|vrddg} |d| vrtd| ||dt|dt|d t|dt|dt|dt|dtd} ddt| D} dd|d td!}d"dt|D}|jj|d#|jd$}|rt |t j s|j || |j|j|jj||| |d%|d&|||d' S|jj||| |d%|d&|||d' Sd(S))a Lists the capture filters in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str lifecycle_state: (optional) A filter to return only resources that match the given capture filter lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "UPDATING", "TERMINATING", "TERMINATED" :param str filter_type: (optional) A filter to only return resources that match the given capture `filterType`. The `filterType` value is the string representation of enum - `VTAP`, `FLOWLOG`. Allowed values are: "VTAP", "FLOWLOG" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CaptureFilter` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_capture_filters API. rrrlist_capture_filterszThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CaptureFilter/ListCaptureFilters) rrrrrhrrrr filter_typecsg|]}|vr|qSr&r&r,r.r&r'r/@r0z=VirtualNetworkClient.list_capture_filters..z)list_capture_filters got unknown kwargs: rrrrrrrrr PROVISIONING AVAILABLEUPDATING TERMINATING TERMINATED4Invalid value for `lifecycle_state`, must be one of r ZVTAPZFLOWLOGz0Invalid value for `filter_type`, must be one of rrr)rrrrrrrZ filterTypecSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r63@r0z=VirtualNetworkClient.list_capture_filters..r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6:@r0rr=zlist[CaptureFilter]rrNr)r$rr%rHr@rArFrGrXrrlifecycle_state_allowed_valuesZfilter_type_allowed_valuesrrCrr&r.r'r ?sQ                 z)VirtualNetworkClient.list_capture_filtersc s<g}d}d}d}d}gdfddt|D}|rFtd||d t|d td }d d t|D}dd|dtd} dd t| D} |jj|d|jd} | durt j } | rt | t j s|j | | |j| j|jj|||| d|d|||d S|jj|||| d|d|||d SdS)a/ Lists the CPE device types that the Networking service provides CPE configuration content for (example: Cisco ASA). The content helps a network engineer configure the actual CPE device represented by a :class:`Cpe` object. If you want to generate CPE configuration content for one of the returned CPE device types, ensure that the :class:`Cpe` object's `cpeDeviceShapeId` attribute is set to the CPE device type's `OCID`__ (returned by this operation). For information about generating CPE configuration content, see these operations: * :func:`get_cpe_device_config_content` * :func:`get_ipsec_cpe_device_config_content` * :func:`get_tunnel_cpe_device_config_content` __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CpeDeviceShapeSummary` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_cpe_device_shapes API. z/cpeDeviceShapesrlist_cpe_device_shapesz]https://docs.oracle.com/iaas/api/#/en/iaas/20160918/CpeDeviceShapeSummary/ListCpeDeviceShapes)rrrrrhcsg|]}|vr|qSr&r&r,r.r&r'r/@r0z?VirtualNetworkClient.list_cpe_device_shapes..z+list_cpe_device_shapes got unknown kwargs: rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6@r0z?VirtualNetworkClient.list_cpe_device_shapes..r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6@r0rr=Nzlist[CpeDeviceShapeSummary]rrr r$r%rHr@rArFrGrXrrCrr&r.r'r\@sj:       z+VirtualNetworkClient.list_cpe_device_shapesc s dg}d}d}d}d}gdfddt|D}|rHtd |||d t|d td } d dt| D} ddd} |jj|d|jd} | durt j } | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the customer-premises equipment objects (CPEs) in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_cpes API. rrr list_cpesz@https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Cpe/ListCpesrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Ar0z2VirtualNetworkClient.list_cpes..zlist_cpes got unknown kwargs: rrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Ar0z2VirtualNetworkClient.list_cpes..r9r:rr=Nz list[Cpe]rrr r$rr%rHr@rArFrGrXrrCrr&r.r'r@sh-      zVirtualNetworkClient.list_cpesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|durPt j }|rt |t j s||j | ||j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" SdS)#a Lists the cross-connect groups in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to return only resources that match the specified lifecycle state. The value is case insensitive. Allowed values are: "PROVISIONING", "PROVISIONED", "INACTIVE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_cross_connect_groups API. rrrlist_cross_connect_groupsz\https://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectGroup/ListCrossConnectGroupsrrrrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Ar0zBVirtualNetworkClient.list_cross_connect_groups..z.list_cross_connect_groups got unknown kwargs: rrrrrrrrr)r  PROVISIONEDINACTIVErrrrrrrrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Ar0zBVirtualNetworkClient.list_cross_connect_groups..r9r:rr=Nzlist[CrossConnectGroup]rrrr$rr%rHr@rArFrGrXrrrrrCrr&r.r'rEAsH               z.VirtualNetworkClient.list_cross_connect_groupsc s dg}d}d}d}d}gdfddt|D}|rHtd |||d t|d td } d dt| D} ddd} |jj|d|jd} | durt j } | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the available FastConnect locations for cross-connect installation. You need this information so you can specify your desired location when you create a cross-connect. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnectLocation` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_cross_connect_locations API. rz/crossConnectLocationsrlist_cross_connect_locationszbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectLocation/ListCrossConnectLocationsrcsg|]}|vr|qSr&r&r,r.r&r'r/%Br0zEVirtualNetworkClient.list_cross_connect_locations..z1list_cross_connect_locations got unknown kwargs: rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6/Br0zEVirtualNetworkClient.list_cross_connect_locations..r9r:rr=Nzlist[CrossConnectLocation]rrrrr&r.r'rAsh.      z1VirtualNetworkClient.list_cross_connect_locationsc svdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | d urt j} | rNt| t js&|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)aE Lists the Cross Connect mapping Details for the specified virtual circuit. :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectMappingDetailsCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_cross_connect_mappings API. rz8/virtualCircuits/{virtualCircuitId}/crossConnectMappingsrlist_cross_connect_mappingszqhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectMappingDetailsCollection/ListCrossConnectMappingsrcsg|]}|vr|qSr&r&r,r.r&r'r/Br0zDVirtualNetworkClient.list_cross_connect_mappings..z0list_cross_connect_mappings got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Br0zDVirtualNetworkClient.list_cross_connect_mappings..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Br0rr=Z$CrossConnectMappingDetailsCollectionrrr3r~r&r.r'r XBsn"$    z0VirtualNetworkClient.list_cross_connect_mappingsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|d urZt j }|rt |t j s|j | ||j|j|jj||| | d!|d"|||d# S|jj||| | d!|d"|||d# Sd S)$a Lists the cross-connects in the specified compartment. You can filter the list by specifying the `OCID`__ of a cross-connect group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str cross_connect_group_id: (optional) The `OCID`__ of the cross-connect group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to return only resources that match the specified lifecycle state. The value is case insensitive. Allowed values are: "PENDING_CUSTOMER", "PROVISIONING", "PROVISIONED", "INACTIVE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_cross_connects API. rrrlist_cross_connectszRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnect/ListCrossConnects) rrrrrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/ Cr0z.z(list_cross_connects got unknown kwargs: rrrrrrrrr)ZPENDING_CUSTOMERr rrrrrrrrr)rrrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6DCr0z.r9r:rr=Nzlist[CrossConnect]rrrrr&r.r'r!BsP                z(VirtualNetworkClient.list_cross_connectsc s dg}d}d}d}d}gdfddt|D}|rHtd |||d t|d td } d dt| D} ddd} |jj|d|jd} | durt j } | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the available port speeds for cross-connects. You need this information so you can specify your desired port speed (that is, shape) when you create a cross-connect. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.CrossConnectPortSpeedShape` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_crossconnect_port_speed_shapes API. rz/crossConnectPortSpeedShapesr#list_crossconnect_port_speed_shapesznhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectPortSpeedShape/ListCrossconnectPortSpeedShapesrcsg|]}|vr|qSr&r&r,r.r&r'r/Cr0zLVirtualNetworkClient.list_crossconnect_port_speed_shapes..z8list_crossconnect_port_speed_shapes got unknown kwargs: rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Cr0zLVirtualNetworkClient.list_crossconnect_port_speed_shapes..r9r:rr=Nz list[CrossConnectPortSpeedShape]rrrrr&r.r'r"mCsh/      z8VirtualNetworkClient.list_crossconnect_port_speed_shapesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sv|j | | |j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" Sd#S)$aj Lists the sets of DHCP options in the specified VCN and specified compartment. If the VCN ID is not provided, then the list includes the sets of DHCP options from all VCNs in the specified compartment. The response includes the default set of options that automatically comes with each VCN, plus any other sets you've created. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_dhcp_options API. rrrlist_dhcp_optionszOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DhcpOptions/ListDhcpOptions rrrsrrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/>Dr0z:VirtualNetworkClient.list_dhcp_options..z&list_dhcp_options got unknown kwargs: rrrrrrrrrr r rrrrsrrrrrnrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6bDr0z:VirtualNetworkClient.list_dhcp_options..r9r:rr=zlist[DhcpOptions]rrNrrr&r.r'r#CsP               z&VirtualNetworkClient.list_dhcp_optionsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrgd } |d | vrrtd | d |vrddg} |d | vrtd| d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|dt|d t|dt|dt|d t|dt|dtd } d d!t| D} d"d"d#}|jj|d$|jd%}|rt |t j s|j || |j|j|jj||| |d&|d'|||d( S|jj||| |d&|d'|||d( Sd)S)*a Lists the `DrgAttachment` resource for the specified compartment. You can filter the results by DRG, attached network, attachment type, DRG route table or VCN route table. The LIST API lists DRG attachments by attachment type. It will default to list VCN attachments, but you may request to list ALL attachments of ALL types. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str drg_id: (optional) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str network_id: (optional) The `OCID`__ of the resource (virtual circuit, VCN, IPSec tunnel, or remote peering connection) attached to the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str attachment_type: (optional) The type for the network resource attached to the DRG. Allowed values are: "VCN", "VIRTUAL_CIRCUIT", "REMOTE_PEERING_CONNECTION", "IPSEC_TUNNEL", "ALL" :param str drg_route_table_id: (optional) The `OCID`__ of the DRG route table assigned to the DRG attachment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to return only resources that match the specified lifecycle state. The value is case insensitive. Allowed values are: "ATTACHING", "ATTACHED", "DETACHING", "DETACHED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_drg_attachments API. rrrlist_drg_attachmentszThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgAttachment/ListDrgAttachments) rrrsrrr network_idrrcrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Er0z=VirtualNetworkClient.list_drg_attachments..z)list_drg_attachments got unknown kwargs: rrrrrrrrrrrr)Z ATTACHINGZATTACHEDZ DETACHINGZDETACHEDrrsrrrr(rcr) rrnrrrZ networkIdrrYrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r64Er0z=VirtualNetworkClient.list_drg_attachments..r9r:rr=zlist[DrgAttachment]rrNr)r$rr%rHr@rArFrGrXrrrrrrCrr&r.r'r'Dsf                  z)VirtualNetworkClient.list_drg_attachmentsc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqnd|vrdg} |d| vrtd| d|vrddg} |d| vrtd| |dt |dt |dt |dt d}dd t|D}ddd}|j j |d|j d}|rt|t js|j |||j|j|j j||| ||d|d |||d! S|j j||| ||d|d |||d! Sd S)"a Lists the statements for the specified route distribution. :param str drg_route_distribution_id: (required) The `OCID`__ of the route distribution. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str sort_by: (optional) The field to sort by. Allowed values are: "TIMECREATED" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistributionStatement` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_drg_route_distribution_statements API. r)zN/drgRouteDistributions/{drgRouteDistributionId}/drgRouteDistributionStatementsr&list_drg_route_distribution_statementszthttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistributionStatement/ListDrgRouteDistributionStatementsrrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Er0zOVirtualNetworkClient.list_drg_route_distribution_statements..z;list_drg_route_distribution_statements got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Er0zOVirtualNetworkClient.list_drg_route_distribution_statements..Nrr7r8rrrrrrrrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Er0r9r:rr=r>rrr)r$rWr%rHr@rArFrGrXrBr4r5rrrrCrr&r.r'r)[Es8$         z;VirtualNetworkClient.list_drg_route_distribution_statementsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sl|j | | |j|j|jj||| | d|d |||d! S|jj||| | d|d |||d! Sd"S)#a Lists the route distributions in the specified DRG. To retrieve the statements in a distribution, use the ListDrgRouteDistributionStatements operation. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter that only returns resources that match the specified lifecycle state. The value is case insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_drg_route_distributions API. rrrlist_drg_route_distributionszbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistribution/ListDrgRouteDistributionsrcsg|]}|vr|qSr&r&r,r.r&r'r/JFr0zEVirtualNetworkClient.list_drg_route_distributions..z1list_drg_route_distributions got unknown kwargs: rrrrrrrrrr%rrrr)rrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6mFr0zEVirtualNetworkClient.list_drg_route_distributions..r9r:rr=zlist[DrgRouteDistribution]rrNrr$rr%rHr@rArFrGrXrrrrrCrr&r.r'r,EsK              z1VirtualNetworkClient.list_drg_route_distributionsc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqnd|vrddg} |d| vrtd| |dt |dt |dt d} dd t| D} ddd}|j j |d|j d}|rt|t js\|j |||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)ab Lists the route rules in the specified DRG route table. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str route_type: (optional) Static routes are specified through the DRG route table API. Dynamic routes are learned by the DRG from the DRG attachments through various routing protocols. Allowed values are: "STATIC", "DYNAMIC" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteRule` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_drg_route_rules API. rYz//drgRouteTables/{drgRouteTableId}/drgRouteRulesrlist_drg_route_ruleszRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteRule/ListDrgRouteRules)rrrr route_typecsg|]}|vr|qSr&r&r,r.r&r'r/Fr0z=VirtualNetworkClient.list_drg_route_rules..z)list_drg_route_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Fr0z=VirtualNetworkClient.list_drg_route_rules..Nrr7r8r/ZSTATICZDYNAMICz/Invalid value for `route_type`, must be one of rr)rrZ routeTypecSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Fr0r9r:rr=r`rrr)r$rcr%rHr@rArFrGrXrBr4r5Zroute_type_allowed_valuesrrCrr&r.r'r.Fs3$       z)VirtualNetworkClient.list_drg_route_rulesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|d t|dt|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sv|j | | |j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" Sd#S)$a Lists the DRG route tables for the specified DRG. Use the `ListDrgRouteRules` operation to retrieve the route rules in a table. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str import_drg_route_distribution_id: (optional) The `OCID`__ of the import route distribution. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str lifecycle_state: (optional) A filter that only returns matches for the specified lifecycle state. The value is case insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_drg_route_tables API. rrrlist_drg_route_tableszThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteTable/ListDrgRouteTables) rrrrrrr import_drg_route_distribution_idrcsg|]}|vr|qSr&r&r,r.r&r'r/zGr0z>VirtualNetworkClient.list_drg_route_tables..z*list_drg_route_tables got unknown kwargs: rrrrrrrrrr%rrrrr1)rrrrrrZimportDrgRouteDistributionIdrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Gr0z>VirtualNetworkClient.list_drg_route_tables..r9r:rr=zlist[DrgRouteTable]rrNrr-r&r.r'r0GsO               z*VirtualNetworkClient.list_drg_route_tablesc sdg}d}d}d}d}gdfddt|D}|rHtd |||d t|d td } d dt| D} ddd} |jj|d|jd} | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the DRGs in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_drgs API. rrr list_drgsz@https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/ListDrgsrcsg|]}|vr|qSr&r&r,r.r&r'r/Gr0z2VirtualNetworkClient.list_drgs..zlist_drgs got unknown kwargs: rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 Hr0z2VirtualNetworkClient.list_drgs..r9r:rr=z list[Drg]rrNrrr&r.r'r2Gsd-      zVirtualNetworkClient.list_drgsc s dg}d}d}d}d}gdfddt|D}|rHtd |||d t|d td } d dt| D} ddd} |jj|d|jd} | durt j } | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the service offerings from supported providers. You need this information so you can specify your desired provider and service offering when you create a virtual circuit. For the compartment ID, provide the `OCID`__ of your tenancy (the root compartment). For more information, see `FastConnect Overview`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.FastConnectProviderService` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_fast_connect_provider_services API. rz/fastConnectProviderServicesr#list_fast_connect_provider_servicesznhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/FastConnectProviderService/ListFastConnectProviderServicesrcsg|]}|vr|qSr&r&r,r.r&r'r/sHr0zLVirtualNetworkClient.list_fast_connect_provider_services..z8list_fast_connect_provider_services got unknown kwargs: rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6}Hr0zLVirtualNetworkClient.list_fast_connect_provider_services..r9r:rr=Nz list[FastConnectProviderService]rrrrr&r.r'r30Hsh6      z8VirtualNetworkClient.list_fast_connect_provider_servicesc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqn|dt |dt d} dd t| D} ddd} |j j |d|j d}|d ur t j}|rbt|t js8|j | ||j|j|j j||| | | d|d|||d S|j j||| | | d|d|||d Sd S)a Gets the list of available virtual circuit bandwidth levels for a provider. You need this information so you can specify your desired bandwidth level (shape) when you create a virtual circuit. For more information about virtual circuits, see `FastConnect Overview`__. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm :param str provider_service_id: (required) The `OCID`__ of the provider service. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitBandwidthShape` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_fast_connect_provider_virtual_circuit_bandwidth_shapes API. rzN/fastConnectProviderServices/{providerServiceId}/virtualCircuitBandwidthShapesr;list_fast_connect_provider_virtual_circuit_bandwidth_shapeszhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/FastConnectProviderService/ListFastConnectProviderVirtualCircuitBandwidthShapesrcsg|]}|vr|qSr&r&r,r.r&r'r/Hr0zdVirtualNetworkClient.list_fast_connect_provider_virtual_circuit_bandwidth_shapes..zPlist_fast_connect_provider_virtual_circuit_bandwidth_shapes got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Hr0zdVirtualNetworkClient.list_fast_connect_provider_virtual_circuit_bandwidth_shapes..Nrr7r8rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Hr0r9r:rr="list[VirtualCircuitBandwidthShape]rrr3)r$rr%rHr@rArFrGrXrBr4r5rrCrr&r.r'r4Hsv2$      zPVirtualNetworkClient.list_fast_connect_provider_virtual_circuit_bandwidth_shapesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sv|j | | |j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" Sd#S)$a Lists the internet gateways in the specified VCN and the specified compartment. If the VCN ID is not provided, then the list includes the internet gateways from all VCNs in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_internet_gateways API. rrrlist_internet_gatewayszXhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/InternetGateway/ListInternetGatewaysr$csg|]}|vr|qSr&r&r,r.r&r'r/Ir0z?VirtualNetworkClient.list_internet_gateways..z+list_internet_gateways got unknown kwargs: rrrrrrrrrr%rrsrrrr&cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Ir0z?VirtualNetworkClient.list_internet_gateways..r9r:rr=zlist[InternetGateway]rrNrrr&r.r'r6#IsN               z+VirtualNetworkClient.list_internet_gatewaysc sg}d}d}d}d}gdfddt|D}|rFtd|d d |d td } d d t| D} |jj|d|jd} | rt | t j s|j | | |j| j|jj||| |d|d|||d S|jj||| |d|d|||d SdS)a" Lists the IP Inventory information in the selected compartments. :param oci.core.models.ListIpInventoryDetails list_ip_inventory_details: (required) Details required to list the IP Inventory data. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IpInventoryCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_ip_inventory API. z /ipInventoryr*list_ip_inventoryzGhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/ListIpInventoryrcsg|]}|vr|qSr&r&r,r.r&r'r/Ir0z:VirtualNetworkClient.list_ip_inventory..z&list_ip_inventory got unknown kwargs: r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Jr0z:VirtualNetworkClient.list_ip_inventory..rr=rrrNr) r$Zlist_ip_inventory_detailsr%rHr@rArFrGrXrCrr&r.r'r7Is^     z&VirtualNetworkClient.list_ip_inventoryc sddg}d}d}d}d}gdfdd t|D} | rJtd | ||d } d d t| D} t| D]<\} } | dust| tjrrt| dkrrtd| dqrd|vrddg} |d| vrtd| |dt |dt |dt d}dd t|D}ddd}|j j |d|j d}|durDt j}|rt|t jsp|j |||j|j|j j||| ||d|d|||d S|j j||| ||d|d|||d SdS)!aK The routes advertised to the on-premises network and the routes received from the on-premises network. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str advertiser: (optional) Specifies the advertiser of the routes. If set to `ORACLE`, this returns only the routes advertised by Oracle. When set to `CUSTOMER`, this returns only the routes advertised by the CPE. Allowed values are: "CUSTOMER", "ORACLE" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.TunnelRouteSummary` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_ip_sec_connection_tunnel_routes API. rrz4/ipsecConnections/{ipscId}/tunnels/{tunnelId}/routesr$list_ip_sec_connection_tunnel_routeszfhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/TunnelRouteSummary/ListIpSecConnectionTunnelRoutes)rrrr advertisercsg|]}|vr|qSr&r&r,r.r&r'r/lJr0zMVirtualNetworkClient.list_ip_sec_connection_tunnel_routes..z9list_ip_sec_connection_tunnel_routes got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r6vJr0zMVirtualNetworkClient.list_ip_sec_connection_tunnel_routes..Nrr7r8r9ZCUSTOMERZORACLEz/Invalid value for `advertiser`, must be one of rr)rrr9cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Jr0r9r:rr=zlist[TunnelRouteSummary]rrr3)r$rrr%rHr@rArFrGrXrBr4r5Zadvertiser_allowed_valuesrrCrr&r.r'r8%Js9$        z9VirtualNetworkClient.list_ip_sec_connection_tunnel_routesc sddg}d}d}d}d}gdfdd t|D} | rJtd | ||d } d d t| D} t| D]<\} } | dust| tjrrt| dkrrtd| dqr|dt |dt d} dd t| D} ddd}|j j |d|j d}|durt j}|rft|t js<|j |||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d SdS)a& Lists the tunnel security associations information for the specified IPSec tunnel ID. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.TunnelSecurityAssociationSummary` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_ip_sec_connection_tunnel_security_associations API. rrzH/ipsecConnections/{ipscId}/tunnels/{tunnelId}/tunnelSecurityAssociationsr3list_ip_sec_connection_tunnel_security_associationszhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/TunnelSecurityAssociationSummary/ListIpSecConnectionTunnelSecurityAssociationsrcsg|]}|vr|qSr&r&r,r.r&r'r/Jr0z\VirtualNetworkClient.list_ip_sec_connection_tunnel_security_associations..zHlist_ip_sec_connection_tunnel_security_associations got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r6Jr0z\VirtualNetworkClient.list_ip_sec_connection_tunnel_security_associations..Nrr7r8rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Kr0r9r:rr=z&list[TunnelSecurityAssociationSummary]rrr3)r$rrr%rHr@rArFrGrXrBr4r5rrCrr&r.r'r:Jsx2$      zHVirtualNetworkClient.list_ip_sec_connection_tunnel_security_associationsc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqn|dt |dt d} dd t| D} ddd} |j j |d|j d}|d ur t j}|rbt|t js8|j | ||j|j|j j||| | | d|d|||d S|j j||| | | d|d|||d Sd S)a. Lists the tunnel information for the specified IPSec connection. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.IPSecConnectionTunnel` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_ip_sec_connection_tunnels API. rz"/ipsecConnections/{ipscId}/tunnelsrlist_ip_sec_connection_tunnelszdhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionTunnel/ListIpSecConnectionTunnelsrcsg|]}|vr|qSr&r&r,r.r&r'r/kKr0zGVirtualNetworkClient.list_ip_sec_connection_tunnels..z3list_ip_sec_connection_tunnels got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6tKr0zGVirtualNetworkClient.list_ip_sec_connection_tunnels..Nrr7r8rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6~Kr0r9r:rr=zlist[IPSecConnectionTunnel]rrr3)r$rr%rHr@rArFrGrXrBr4r5rrCrr&r.r'r;1Ksv-$      z3VirtualNetworkClient.list_ip_sec_connection_tunnelsc s6dg}d}d}d}d}gdfddt|D}|rHtd |||d t|d t|d t|d td} ddt| D} ddd} |jj|d|jd} | durt j } | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the IPSec connections for the specified compartment. You can filter the results by DRG or CPE. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str drg_id: (optional) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str cpe_id: (optional) The `OCID`__ of the CPE. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_ip_sec_connections API. rrrlist_ip_sec_connectionszXhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnection/ListIpSecConnections)rrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Kr0z@VirtualNetworkClient.list_ip_sec_connections..z,list_ip_sec_connections got unknown kwargs: rrrr)rrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Kr0z@VirtualNetworkClient.list_ip_sec_connections..r9r:rr=Nzlist[IPSecConnection]rrrrr&r.r'r<Ksl8        z,VirtualNetworkClient.list_ip_sec_connectionsc sLg}d}d}d}d}gdfddt|D}|rFtd||d t|d t|d t|d t|d td}ddt|D}dd|dtd} ddt| D} |jj|d|jd} | r$t | t j s|j | | |j| j|jj|||| d|d|||d S|jj|||| d|d|||d SdS)a Lists the :class:`Ipv6` objects based on one of these filters: * Subnet `OCID`__. * VNIC `OCID`__. * Both IPv6 address and subnet OCID: This lets you get an `Ipv6` object based on its private IPv6 address (for example, 2001:0db8:0123:1111:abcd:ef01:2345:6789) and not its `OCID`__. For comparison, :func:`get_ipv6` requires the `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str ip_address: (optional) An IP address. This could be either IPv4 or IPv6, depending on the resource. Example: `10.0.3.3` :param str subnet_id: (optional) The `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vnic_id: (optional) The OCID of the VNIC. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_ipv6s API. rr list_ipv6szBhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/ListIpv6s)rrrr ip_addressrmrrhcsg|]}|vr|qSr&r&r,r.r&r'r/zLr0z3VirtualNetworkClient.list_ipv6s..zlist_ipv6s got unknown kwargs: rrr>rmr)rr ipAddressrdrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Lr0z3VirtualNetworkClient.list_ipv6s..r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Lr0rr=z list[Ipv6]rrNrrr&r.r'r=%LslD           zVirtualNetworkClient.list_ipv6sc sdg}d}d}d}d}gdfddt|D}|rHtd |||d t|d t|d td } ddt| D} ddd} |jj|d|jd} | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the local peering gateways (LPGs) for the specified VCN and specified compartment. If the VCN ID is not provided, then the list includes the LPGs from all VCNs in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_local_peering_gateways API. rrrlist_local_peering_gatewaysz`https://docs.oracle.com/iaas/api/#/en/iaas/20160918/LocalPeeringGateway/ListLocalPeeringGateways)rrrrrscsg|]}|vr|qSr&r&r,r.r&r'r/Lr0zDVirtualNetworkClient.list_local_peering_gateways..z0list_local_peering_gateways got unknown kwargs: rrrs)rrrrncSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Lr0zDVirtualNetworkClient.list_local_peering_gateways..r9r:rr=zlist[LocalPeeringGateway]rrNrrr&r.r'r@Lsf3       z0VirtualNetworkClient.list_local_peering_gatewaysc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sv|j | | |j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" Sd#S)$a Lists the NAT gateways in the specified compartment. You may optionally specify a VCN OCID to filter the results by VCN. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to return only resources that match the specified lifecycle state. The value is case insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_nat_gateways API. rrrlist_nat_gatewayszNhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NatGateway/ListNatGatewaysr$csg|]}|vr|qSr&r&r,r.r&r'r/Mr0z:VirtualNetworkClient.list_nat_gateways..z&list_nat_gateways got unknown kwargs: rrrrrrrrrr%rrsrrrr&cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Mr0z:VirtualNetworkClient.list_nat_gateways..r9r:rr=zlist[NatGateway]rrNrrr&r.r'rA"MsN               z&VirtualNetworkClient.list_nat_gatewaysc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqnd|vrddg} |d| vrtd| d|vrdg} |d| vrtd| d|vr,ddg}|d|vr,td||dt |dt |dt |dt |dt d}dd t|D}ddd }|j j |d!|j d"}|rt|t js|j |||j|j|j j||| ||d#|d$|||d% S|j j||| ||d#|d$|||d% Sd S)&a Lists the security rules in the specified network security group. :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str direction: (optional) Direction of the security rule. Set to `EGRESS` for rules that allow outbound IP packets, or `INGRESS` for rules that allow inbound IP packets. Allowed values are: "EGRESS", "INGRESS" :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str sort_by: (optional) The field to sort by. Allowed values are: "TIMECREATED" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.SecurityRule` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_network_security_group_security_rules API. rtz=/networkSecurityGroups/{networkSecurityGroupId}/securityRulesr*list_network_security_group_security_ruleszfhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityRule/ListNetworkSecurityGroupSecurityRules)rr directionrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Nr0zSVirtualNetworkClient.list_network_security_group_security_rules..z?list_network_security_group_security_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6$Nr0zSVirtualNetworkClient.list_network_security_group_security_rules..Nrr7r8rCZEGRESSZINGRESSz.Invalid value for `direction`, must be one of rrrrrrrrr)rCrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6FNr0r9r:rr=zlist[SecurityRule]rrr)r$rvr%rHr@rArFrGrXrBr4r5Zdirection_allowed_valuesrrrrCrr&r.r'rBMs> $           z?VirtualNetworkClient.list_network_security_group_security_rulesc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqnd|vrdg} |d| vrtd| d|vrddg} |d| vrtd| |dt |dt |dt |dt d}dd t|D}ddd}|j j |d|j d}|rt|t js|j |||j|j|j j||| ||d|d |||d! S|j j||| ||d|d |||d! Sd S)"a Lists the VNICs in the specified network security group. :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str sort_by: (optional) The field to sort by. Allowed values are: "TIMEASSOCIATED" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.NetworkSecurityGroupVnic` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_network_security_group_vnics API. rtz5/networkSecurityGroups/{networkSecurityGroupId}/vnicsr!list_network_security_group_vnicszjhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroupVnic/ListNetworkSecurityGroupVnicsr*csg|]}|vr|qSr&r&r,r.r&r'r/Nr0zJVirtualNetworkClient.list_network_security_group_vnics..z6list_network_security_group_vnics got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Nr0zJVirtualNetworkClient.list_network_security_group_vnics..Nrr7r8rZTIMEASSOCIATEDrrrrrrrr+cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Nr0r9r:rr=zlist[NetworkSecurityGroupVnic]rrr)r$rvr%rHr@rArFrGrXrBr4r5rrrrCrr&r.r'rDoNs8$         z6VirtualNetworkClient.list_network_security_group_vnicsc sg}d}d}d}d}gdfddt|D}|rFtd|d |vrpd d g}|d |vrptd |d |vrddg} |d | vrtd| d|vrgd} |d| vrtd| |dt|dt|dt|dt|dt|dt|d t|d t|dtd } ddt| D} ddd} |jj|d|jd } | rt | t j s|j | | |j| j|jj||| | d!|d"|||d# S|jj||| | d!|d"|||d# Sd$S)%a Lists either the network security groups in the specified compartment, or those associated with the specified VLAN. You must specify either a `vlanId` or a `compartmentId`, but not both. If you specify a `vlanId`, all other parameters are ignored. :param str compartment_id: (optional) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vlan_id: (optional) The `OCID`__ of the VLAN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to return only resources that match the specified lifecycle state. The value is case insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_network_security_groups API. rrlist_network_security_groupszbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/ListNetworkSecurityGroups) rrrrrsrrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/iOr0zEVirtualNetworkClient.list_network_security_groups..z1list_network_security_groups got unknown kwargs: rrrrrrrrrr%rrrrsrrr) rrrnrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Or0zEVirtualNetworkClient.list_network_security_groups..r9r:rr=zlist[NetworkSecurityGroup]rrNr)r$r%rHr@rArFrGrXrrrrrCrr&r.r'rEOsS                 z1VirtualNetworkClient.list_network_security_groupsc s8g}d}d}d}d}gdfddt|D}|rFtd||d t|d t|d t|d t|d t|dtd}ddt|D}ddd} |jj|d|jd} | rt | t j s|j | | |j| j|jj|||| d|d|||d S|jj|||| d|d|||d SdS)a Lists the :class:`PrivateIp` objects based on one of these filters: - Subnet `OCID`__. - VNIC `OCID`__. - Both private IP address and subnet OCID: This lets you get a `privateIP` object based on its private IP address (for example, 10.0.3.3) and not its `OCID`__. For comparison, :func:`get_private_ip` requires the `OCID`__. If you're listing all the private IPs associated with a given subnet or VNIC, the response includes both primary and secondary private IPs. If you are an Oracle Cloud VMware Solution customer and have VLANs in your VCN, you can filter the list by VLAN `OCID`__. See :class:`Vlan`. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str ip_address: (optional) An IP address. This could be either IPv4 or IPv6, depending on the resource. Example: `10.0.3.3` :param str subnet_id: (optional) The `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vnic_id: (optional) The OCID of the VNIC. :param str vlan_id: (optional) The `OCID`__ of the VLAN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_private_ips API. rrlist_private_ipszLhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/ListPrivateIps)rrrrr>rmrrcsg|]}|vr|qSr&r&r,r.r&r'r/Pr0z9VirtualNetworkClient.list_private_ips..z%list_private_ips got unknown kwargs: rrr>rmrr)rrr?rdrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6!Pr0z9VirtualNetworkClient.list_private_ips..r9r:rr=zlist[PrivateIp]rrNrrr&r.r'rFOsjN           z%VirtualNetworkClient.list_private_ipsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| |dt|dt|dt|dt|d t|dt|d} ddt| D} dd|dtd} ddt| D} |jj|d|jd} | rt | t j s`|j | | |j| j|jj||| | d|d |||d! S|jj||| | d|d |||d! Sd"S)#a Lists the public IP pools in the specified compartment. You can filter the list using query parameters. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str byoip_range_id: (optional) A filter to return only resources that match the given BYOIP CIDR block. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPoolCollection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_public_ip_pools API. rr rlist_public_ip_poolszRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/ListPublicIpPools) rrrhrrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Pr0z=VirtualNetworkClient.list_public_ip_pools..z)list_public_ip_pools got unknown kwargs: rrrrrrrrrrrr)rrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Pr0z=VirtualNetworkClient.list_public_ip_pools..r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Pr0rr=ZPublicIpPoolCollectionrrNrrr&r.r'rGHPsJ              z)VirtualNetworkClient.list_public_ip_poolsc sddg}d}d}d}d}gdfdd t|D} | rJtd | d d g} || vrhtd | d|vrddg} |d| vrtd| |dt|dt||dt|dt||dtd} ddt| D} ddd} |jj|d|jd}|rXt |t j s0|j | | |j|j|jj||| | d|d|||d S|jj||| | d|d|||d Sd S)!a Lists the :class:`PublicIp` objects in the specified compartment. You can filter the list by using query parameters. To list your reserved public IPs: * Set `scope` = `REGION` (required) * Leave the `availabilityDomain` parameter empty * Set `lifetime` = `RESERVED` To list the ephemeral public IPs assigned to a regional entity such as a NAT gateway: * Set `scope` = `REGION` (required) * Leave the `availabilityDomain` parameter empty * Set `lifetime` = `EPHEMERAL` To list the ephemeral public IPs assigned to private IPs: * Set `scope` = `AVAILABILITY_DOMAIN` (required) * Set the `availabilityDomain` parameter to the desired availability domain (required) * Set `lifetime` = `EPHEMERAL` **Note:** An ephemeral public IP assigned to a private IP is always in the same availability domain and compartment as the private IP. :param str scope: (required) Whether the public IP is regional or specific to a particular availability domain. * `REGION`: The public IP exists within a region and is assigned to a regional entity (such as a :class:`NatGateway`), or can be assigned to a private IP in any availability domain in the region. Reserved public IPs have `scope` = `REGION`, as do ephemeral public IPs assigned to a regional entity. * `AVAILABILITY_DOMAIN`: The public IP exists within the availability domain of the entity it's assigned to, which is specified by the `availabilityDomain` property of the public IP object. Ephemeral public IPs that are assigned to private IPs have `scope` = `AVAILABILITY_DOMAIN`. Allowed values are: "REGION", "AVAILABILITY_DOMAIN" :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str availability_domain: (optional) The name of the availability domain. Example: `Uocm:PHX-AD-1` :param str lifetime: (optional) A filter to return only public IPs that match given lifetime. Allowed values are: "EPHEMERAL", "RESERVED" :param str public_ip_pool_id: (optional) A filter to return only resources that belong to the given public IP pool. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_public_ips API. scoperrrlist_public_ipszJhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/ListPublicIps)rrrravailability_domainlifetimer|csg|]}|vr|qSr&r&r,r.r&r'r/TQr0z8VirtualNetworkClient.list_public_ips..z$list_public_ips got unknown kwargs: ZREGIONZAVAILABILITY_DOMAINz*Invalid value for `scope`, must be one of rKZ EPHEMERALZRESERVEDz-Invalid value for `lifetime`, must be one of rrrJr|)rrrHZavailabilityDomainrKrrwcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6oQr0z8VirtualNetworkClient.list_public_ips..r9r:rr=zlist[PublicIp]rrNr)r$rHrr%rHr@rArFrGrXZscope_allowed_valuesZlifetime_allowed_valuesrrCrr&r.r'rIPs[           z$VirtualNetworkClient.list_public_ipsc s,dg}d}d}d}d}gdfddt|D}|rHtd |||d t|d t|d td } ddt| D} ddd} |jj|d|jd} | durt j } | rt | t j s|j | | |j| j|jj||| | d|d|||d S|jj||| | d|d|||d SdS)a Lists the remote peering connections (RPCs) for the specified DRG and compartment (the RPC's compartment). :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str drg_id: (optional) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_remote_peering_connections API. rr rlist_remote_peering_connectionszhhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RemotePeeringConnection/ListRemotePeeringConnections)rrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Qr0zHVirtualNetworkClient.list_remote_peering_connections..z4list_remote_peering_connections got unknown kwargs: rrr)rrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Qr0zHVirtualNetworkClient.list_remote_peering_connections..r9r:rr=Nzlist[RemotePeeringConnection]rrrrr&r.r'rLQsj3       z4VirtualNetworkClient.list_remote_peering_connectionsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sv|j | | |j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" Sd#S)$au Lists the route tables in the specified VCN and specified compartment. If the VCN ID is not provided, then the list includes the route tables from all VCNs in the specified compartment. The response includes the default route table that automatically comes with each VCN in the specified compartment, plus any route tables you've created. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_route_tables API. rrrlist_route_tableszNhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RouteTable/ListRouteTables rrrrrsrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/mRr0z:VirtualNetworkClient.list_route_tables..z&list_route_tables got unknown kwargs: rrrrrrrrrr%rrrrsrrrrrnrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Rr0z:VirtualNetworkClient.list_route_tables..r9r:rr=zlist[RouteTable]rrNrrr&r.r'rM RsP               z&VirtualNetworkClient.list_route_tablesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sv|j | | |j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" Sd#S)$a Lists the security lists in the specified VCN and compartment. If the VCN ID is not provided, then the list includes the security lists from all VCNs in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_security_lists API. rrrlist_security_listszRhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityList/ListSecurityListsrNcsg|]}|vr|qSr&r&r,r.r&r'r/Sr0z.z(list_security_lists got unknown kwargs: rrrrrrrrrr%rrrrsrrOcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6.r9r:rr=zlist[SecurityList]rrNrrr&r.r'rPRsN               z(VirtualNetworkClient.list_security_listsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sl|j | | |j|j|jj||| | d|d |||d! S|jj||| | d|d |||d! Sd"S)#a Lists the service gateways in the specified compartment. You may optionally specify a VCN OCID to filter the results by VCN. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_service_gateways API. rrrlist_service_gatewayszVhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ServiceGateway/ListServiceGateways)rrrsrrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Sr0z>VirtualNetworkClient.list_service_gateways..z*list_service_gateways got unknown kwargs: rrrrrrrrrr%rrsrr)rrnrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Sr0z>VirtualNetworkClient.list_service_gateways..r9r:rr=zlist[ServiceGateway]rrNrrr&r.r'rQcSsK              z*VirtualNetworkClient.list_service_gatewaysc sg}d}d}d}d}gdfddt|D}|rFtd||d t|d td }d d t|D}ddd} |jj|d|jd} | rt | t j s|j | | |j| j|jj|||| d|d|||d S|jj|||| d|d|||d SdS)a Lists the available :class:`Service` objects that you can enable for a service gateway in this region. :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Service` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_services API. z /servicesr list_serviceszHhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Service/ListServicesrcsg|]}|vr|qSr&r&r,r.r&r'r/?Tr0z6VirtualNetworkClient.list_services..z"list_services got unknown kwargs: rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6HTr0z6VirtualNetworkClient.list_services..r9r:rr=z list[Service]rrNrrr&r.r'rR Tsb)      z"VirtualNetworkClient.list_servicesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sv|j | | |j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" Sd#S)$a Lists the subnets in the specified VCN and the specified compartment. If the VCN ID is not provided, then the list includes the subnets from all VCNs in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED", "UPDATING" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_subnets API. rrr list_subnetszFhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Subnet/ListSubnetsrNcsg|]}|vr|qSr&r&r,r.r&r'r/Tr0z5VirtualNetworkClient.list_subnets..z!list_subnets got unknown kwargs: rrrrrrrrrr r rrrrrrrsrrOcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Tr0z5VirtualNetworkClient.list_subnets..r9r:rr=z list[Subnet]rrNrrr&r.r'rSoTsN               z!VirtualNetworkClient.list_subnetsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|rt |t j sl|j | | |j|j|jj||| | d|d |||d! S|jj||| | d|d |||d! Sd"S)#a Lists the virtual cloud networks (VCNs) in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED", "UPDATING" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_vcns API. rrr list_vcnsz@https://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/ListVcnsrcsg|]}|vr|qSr&r&r,r.r&r'r/sUr0z2VirtualNetworkClient.list_vcns..zlist_vcns got unknown kwargs: rrrrrrrrrrTrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Ur0z2VirtualNetworkClient.list_vcns..r9r:rr=z list[Vcn]rrNrrr&r.r'rUUsH              zVirtualNetworkClient.list_vcnsc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqn|dt |dt d} dd t| D} ddd} |j j |d|j d}|d ur t j}|rbt|t js8|j | ||j|j|j j||| | | d|d|||d S|j j||| | | d|d|||d Sd S)aU Gets the specified virtual circuit's associatedTunnelsInfo. :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitAssociatedTunnelDetails` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_virtual_circuit_associated_tunnels API. rz5/virtualCircuits/{virtualCircuitId}/associatedTunnelsr'list_virtual_circuit_associated_tunnelsz}https://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuitAssociatedTunnelDetails/ListVirtualCircuitAssociatedTunnelsrcsg|]}|vr|qSr&r&r,r.r&r'r/Ur0zPVirtualNetworkClient.list_virtual_circuit_associated_tunnels..z.Nrr7r8rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 Vr0r9r:rr=z+list[VirtualCircuitAssociatedTunnelDetails]rrr3)r$rr%rHr@rArFrGrXrBr4r5rrCrr&r.r'rVUsv-$      z`__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitBandwidthShape` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_virtual_circuit_bandwidth_shapes API. rz/virtualCircuitBandwidthShapesr%list_virtual_circuit_bandwidth_shapeszrhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuitBandwidthShape/ListVirtualCircuitBandwidthShapesrcsg|]}|vr|qSr&r&r,r.r&r'r/qVr0zNVirtualNetworkClient.list_virtual_circuit_bandwidth_shapes..z:list_virtual_circuit_bandwidth_shapes got unknown kwargs: rrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6{Vr0zNVirtualNetworkClient.list_virtual_circuit_bandwidth_shapes..r9r:rr=Nr5rrrrr&r.r'rW5Vsh/      z:VirtualNetworkClient.list_virtual_circuit_bandwidth_shapesc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqnd|vrgd} |d| vrtd| d|dt i} dd t| D} ddd}|j j |d|j d}|d ur,t j}|rt|t jsX|j |||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Lists the public IP prefixes and their details for the specified public virtual circuit. :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str verification_state: (optional) A filter to only return resources that match the given verification state. The state value is case-insensitive. Allowed values are: "IN_PROGRESS", "COMPLETED", "FAILED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitPublicPrefix` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_virtual_circuit_public_prefixes API. rz2/virtualCircuits/{virtualCircuitId}/publicPrefixesr$list_virtual_circuit_public_prefixeszohttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuitPublicPrefix/ListVirtualCircuitPublicPrefixes)rrverification_statecsg|]}|vr|qSr&r&r,r.r&r'r/Vr0zMVirtualNetworkClient.list_virtual_circuit_public_prefixes..z9list_virtual_circuit_public_prefixes got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Vr0zMVirtualNetworkClient.list_virtual_circuit_public_prefixes..Nrr7r8rY)Z IN_PROGRESSZ COMPLETEDFAILEDz7Invalid value for `verification_state`, must be one of ZverificationStatecSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Vr0r9r:rr=z list[VirtualCircuitPublicPrefix]rrr3)r$rr%rHr@rArFrGrXrBr4r5Z!verification_state_allowed_valuesrrCrr&r.r'rXVs&$      z9VirtualNetworkClient.list_virtual_circuit_public_prefixesc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|d t|dt|dtd} ddt| D} ddd} |jj|d|jd}|durPt j }|rt |t j s||j | ||j|j|jj||| | d |d!|||d" S|jj||| | d |d!|||d" SdS)#a Lists the virtual circuits in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str lifecycle_state: (optional) A filter to return only resources that match the specified lifecycle state. The value is case insensitive. Allowed values are: "PENDING_PROVIDER", "VERIFYING", "PROVISIONING", "PROVISIONED", "FAILED", "INACTIVE", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_virtual_circuits API. rrrlist_virtual_circuitszVhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuit/ListVirtualCircuitsrcsg|]}|vr|qSr&r&r,r.r&r'r/sWr0z>VirtualNetworkClient.list_virtual_circuits..z*list_virtual_circuits got unknown kwargs: rrrrrrrrr)ZPENDING_PROVIDERZ VERIFYINGr rrZrrrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Wr0z>VirtualNetworkClient.list_virtual_circuits..r9r:rr=Nzlist[VirtualCircuit]rrrrr&r.r'r[WsH               z*VirtualNetworkClient.list_virtual_circuitsc sdg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|d t|dt|dtd} ddt| D} dd|dtd} ddt| D} |jj|d |jd!}|rt |t j s|j | | |j|j|jj||| | d"|d#|||d$ S|jj||| | d"|d#|||d$ Sd%S)&a  Lists the VLANs in the specified VCN and the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str lifecycle_state: (optional) A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "TERMINATING", "TERMINATED", "UPDATING" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_vlans API. rr r list_vlanszBhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vlan/ListVlans) rrrrrsrrrrhrcsg|]}|vr|qSr&r&r,r.r&r'r/#Xr0z3VirtualNetworkClient.list_vlans..zlist_vlans got unknown kwargs: rrrrrrrrrrTrrrrsrrOcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6GXr0z3VirtualNetworkClient.list_vlans..r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6NXr0rr=z list[Vlan]rrNrrr&r.r'r\WsQ                zVirtualNetworkClient.list_vlansc s dg}d}d}d}d}gdfddt|D}|rHtd |d |vrrd d g} |d | vrrtd | d|vrddg} |d| vrtd| d|vrgd} |d| vrtd| ||dt|dt|dt|dt|dt|dt|dt|d t|dt|dt|dtd } ddt| D} d d |d!td"} d#dt| D} |jj|d$|jd%}|rt |t j s|j | | |j|j|jj||| | d&|d'|||d( S|jj||| | d&|d'|||d( Sd)S)*a Lists the virtual test access points (VTAPs) in the specified compartment. :param str compartment_id: (required) The `OCID`__ of the compartment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str vcn_id: (optional) The `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str source: (optional) The `OCID`__ of the VTAP source. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str target_id: (optional) The `OCID`__ of the VTAP target. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str target_ip: (optional) The IP address of the VTAP target. :param bool is_vtap_enabled: (optional) Indicates whether to list all VTAPs or only running VTAPs. * When `FALSE`, lists ALL running and stopped VTAPs. * When `TRUE`, lists only running VTAPs (VTAPs where isVtapEnabled = `TRUE`). :param int limit: (optional) For list pagination. The maximum number of results per page, or items to return in a paginated "List" call. For important details about how pagination works, see `List Pagination`__. Example: `50` __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str page: (optional) For list pagination. The value of the `opc-next-page` response header from the previous "List" call. For important details about how pagination works, see `List Pagination`__. __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str sort_by: (optional) The field to sort by. You can provide one sort order (`sortOrder`). Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. The DISPLAYNAME sort order is case sensitive. **Note:** In general, some "List" operations (for example, `ListInstances`) let you optionally filter by availability domain if the scope of the resource type is within a single availability domain. If you call one of these "List" operations without specifying an availability domain, the resources are grouped by availability domain, then sorted. Allowed values are: "TIMECREATED", "DISPLAYNAME" :param str sort_order: (optional) The sort order to use, either ascending (`ASC`) or descending (`DESC`). The DISPLAYNAME sort order is case sensitive. Allowed values are: "ASC", "DESC" :param str display_name: (optional) A filter to return only resources that match the given display name exactly. :param str lifecycle_state: (optional) A filter to return only resources that match the given VTAP administrative lifecycle state. The state value is case-insensitive. Allowed values are: "PROVISIONING", "AVAILABLE", "UPDATING", "TERMINATING", "TERMINATED" :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.Vtap` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use list_vtaps API. rr#r list_vtapszBhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vtap/ListVtaps)rrrssource target_id target_ipis_vtap_enabledrrrhrrrrcsg|]}|vr|qSr&r&r,r.r&r'r/Xr0z3VirtualNetworkClient.list_vtaps..zlist_vtaps got unknown kwargs: rrrrrrrrrr rrsr^r_r`rarrr) rrnr^ZtargetIdZtargetIpZ isVtapEnabledrrrrrrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Yr0z3VirtualNetworkClient.list_vtaps..r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Yr0rr=z list[Vtap]rrNrrr&r.r'r]pXsd                  zVirtualNetworkClient.list_vtapsc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Updates the specified CIDR block of a VCN. The new CIDR IP range must meet the following criteria: - Must be valid. - Must not overlap with another CIDR block in the VCN, a CIDR block of a peered VCN, or the on-premises network CIDR block. - Must not exceed the limit of CIDR blocks allowed per VCN. - Must include IP addresses from the original CIDR block that are used in the VCN's existing route rules. - No IP address in an existing subnet should be outside of the new CIDR block range. **Note:** Modifying a CIDR block places your VCN in an updating state until the changes are complete. You cannot create or update the VCN's subnets, VLANs, LPGs, or route tables during this operation. The time to completion can vary depending on the size of your network. Updating a small network could take about a minute, and updating a large network could take up to an hour. You can use the `GetWorkRequest` operation to check the status of the update. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.ModifyVcnCidrDetails modify_vcn_cidr_details: (required) Details object for updating a VCN CIDR. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use modify_vcn_cidr API. rnz /vcns/{vcnId}/actions/modifyCidrr*modify_vcn_cidrzEhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/ModifyVcnCidrr~csg|]}|vr|qSr&r&r,r.r&r'r/Yr0z8VirtualNetworkClient.modify_vcn_cidr..z$modify_vcn_cidr got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Yr0z8VirtualNetworkClient.modify_vcn_cidr..Nrr7r8r9rhr\rgrqcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Yr0rr=rrlra)r$rsZmodify_vcn_cidr_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rb`__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_drg_route_distribution_statements API. r)z\/drgRouteDistributions/{drgRouteDistributionId}/actions/removeDrgRouteDistributionStatementsr*(remove_drg_route_distribution_statementszvhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistributionStatement/RemoveDrgRouteDistributionStatementsrcsg|]}|vr|qSr&r&r,r.r&r'r/Yr0zQVirtualNetworkClient.remove_drg_route_distribution_statements..z=remove_drg_route_distribution_statements got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Yr0zQVirtualNetworkClient.remove_drg_route_distribution_statements..Nrr7r8r9r:r=rrlrI)r$rWZ0remove_drg_route_distribution_statements_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rcYsf $    z=VirtualNetworkClient.remove_drg_route_distribution_statementsc sFdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|rt|t j s|j| ||j|j|jj||| | || d|||d S|jj||| | || d|||d Sd S)a Removes one or more route rules from the specified DRG route table. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.RemoveDrgRouteRulesDetails remove_drg_route_rules_details: (required) Request to remove one or more route rules in the DRG route table. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_drg_route_rules API. rYz=/drgRouteTables/{drgRouteTableId}/actions/removeDrgRouteRulesr*remove_drg_route_ruleszThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteRule/RemoveDrgRouteRulesrcsg|]}|vr|qSr&r&r,r.r&r'r/=Zr0z?VirtualNetworkClient.remove_drg_route_rules..z+remove_drg_route_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6FZr0z?VirtualNetworkClient.remove_drg_route_rules..Nrr7r8r9r:r=rrlrI)r$rcZremove_drg_route_rules_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rdZsf $    z+VirtualNetworkClient.remove_drg_route_rulesc srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rJt| t js"|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Removes the export route distribution from the DRG attachment so no routes are advertised to it. :param str drg_attachment_id: (required) The `OCID`__ of the DRG attachment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_export_drg_route_distribution API. rAzJ/drgAttachments/{drgAttachmentId}/actions/removeExportDrgRouteDistributionr*$remove_export_drg_route_distributionzbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgAttachment/RemoveExportDrgRouteDistributionr)csg|]}|vr|qSr&r&r,r.r&r'r/Zr0zMVirtualNetworkClient.remove_export_drg_route_distribution..z9remove_export_drg_route_distribution got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Zr0zMVirtualNetworkClient.remove_export_drg_route_distribution..Nrr7r8r9rhrgr*cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Zr0rr=rrrrrDr&r.r'reqZsl&$     z9VirtualNetworkClient.remove_export_drg_route_distributionc srdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rJt| t js"|j | | |j| j|j j||| | d|d|||d S|j j||| | d|d|||d Sd S)a Removes the import route distribution from the DRG route table so no routes are imported into it. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_import_drg_route_distribution API. rYzJ/drgRouteTables/{drgRouteTableId}/actions/removeImportDrgRouteDistributionr*$remove_import_drg_route_distributionzbhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteTable/RemoveImportDrgRouteDistributionr)csg|]}|vr|qSr&r&r,r.r&r'r/[r0zMVirtualNetworkClient.remove_import_drg_route_distribution..z9remove_import_drg_route_distribution got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6[r0zMVirtualNetworkClient.remove_import_drg_route_distribution..Nrr7r8r9rhrgr*cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6$[r0rr=rrrrrKr&r.r'rfZsl'$     z9VirtualNetworkClient.remove_import_drg_route_distributionc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a; Remove an IPv6 prefix from a subnet. At least one IPv6 CIDR should remain. :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.RemoveSubnetIpv6CidrDetails remove_subnet_ipv6_cidr_details: (required) Details object for removing an IPv6 SUBNET prefix. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_ipv6_subnet_cidr API. rdz*/subnets/{subnetId}/actions/removeIpv6Cidrr*remove_ipv6_subnet_cidrzOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Subnet/RemoveIpv6SubnetCidrrfcsg|]}|vr|qSr&r&r,r.r&r'r/[r0z@VirtualNetworkClient.remove_ipv6_subnet_cidr..z,remove_ipv6_subnet_cidr got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6[r0z@VirtualNetworkClient.remove_ipv6_subnet_cidr..Nrr7r8r9r\rgrhricSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6[r0rr=rrlra)r$rmZremove_subnet_ipv6_cidr_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rgF[sp0$       z,VirtualNetworkClient.remove_ipv6_subnet_cidrc sdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d} | rft| t js8|j | |j | | |j| j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Removing an existing IPv6 prefix from a VCN. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param oci.core.models.RemoveVcnIpv6CidrDetails remove_vcn_ipv6_cidr_details: (optional) Details object for removing a VCN IPv6 prefix. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_ipv6_vcn_cidr API. rnz$/vcns/{vcnId}/actions/removeIpv6Cidrr*remove_ipv6_vcn_cidrzIhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/RemoveIpv6VcnCidr)rrrhr\rgremove_vcn_ipv6_cidr_detailscsg|]}|vr|qSr&r&r,r.r&r'r/[r0z=VirtualNetworkClient.remove_ipv6_vcn_cidr..z)remove_ipv6_vcn_cidr got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6\r0z=VirtualNetworkClient.remove_ipv6_vcn_cidr..Nrr7r8r9rhr\rgrqcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6\r0rr=rirrlrarrr&r.r'rh[sp0$       z)VirtualNetworkClient.remove_ipv6_vcn_cidrc sFdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|rt|t j s|j| ||j|j|jj||| | || d|||d S|jj||| | || d|||d Sd S)a Removes one or more security rules from the specified network security group. :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.RemoveNetworkSecurityGroupSecurityRulesDetails remove_network_security_group_security_rules_details: (required) Request with one or more security rules associated with the network security group that will be removed. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_network_security_group_security_rules API. rtzK/networkSecurityGroups/{networkSecurityGroupId}/actions/removeSecurityRulesr*,remove_network_security_group_security_ruleszhhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityRule/RemoveNetworkSecurityGroupSecurityRulesrcsg|]}|vr|qSr&r&r,r.r&r'r/]\r0zUVirtualNetworkClient.remove_network_security_group_security_rules..zAremove_network_security_group_security_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6f\r0zUVirtualNetworkClient.remove_network_security_group_security_rules..Nrr7r8r9r:r=rrlrI)r$rvZ4remove_network_security_group_security_rules_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rj5\sf!$    zAVirtualNetworkClient.remove_network_security_group_security_rulesc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rXt|t js.|j | |j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Removes a CIDR block from the referenced public IP pool. :param str public_ip_pool_id: (required) The `OCID`__ of the public IP pool. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.RemovePublicIpPoolCapacityDetails remove_public_ip_pool_capacity_details: (required) The CIDR block to remove from the IP pool. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_public_ip_pool_capacity API. rwz6/publicIpPools/{publicIpPoolId}/actions/removeCapacityr*remove_public_ip_pool_capacityz[https://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/RemovePublicIpPoolCapacityrycsg|]}|vr|qSr&r&r,r.r&r'r/\r0zGVirtualNetworkClient.remove_public_ip_pool_capacity..z3remove_public_ip_pool_capacity got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6\r0zGVirtualNetworkClient.remove_public_ip_pool_capacity..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6\r0rr=r{rr?ra)r$r|Z&remove_public_ip_pool_capacity_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rk\sr+$      z3VirtualNetworkClient.remove_public_ip_pool_capacityc sdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt |dt d} dd t| D} |j j |d|j d}|r`t|t js8|j | |j | ||j|j|j j||| | ||d|||d S|j j||| | ||d|||d Sd S)a Removes a specified CIDR block from a VCN. **Notes:** - You cannot remove a CIDR block if an IP address in its range is in use. - Removing a CIDR block places your VCN in an updating state until the changes are complete. You cannot create or update the VCN's subnets, VLANs, LPGs, or route tables during this operation. The time to completion can take a few minutes. You can use the `GetWorkRequest` operation to check the status of the update. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.RemoveVcnCidrDetails remove_vcn_cidr_details: (required) Details object for removing a VCN CIDR. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use remove_vcn_cidr API. rnz /vcns/{vcnId}/actions/removeCidrr*remove_vcn_cidrzEhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/RemoveVcnCidrr~csg|]}|vr|qSr&r&r,r.r&r'r/E]r0z8VirtualNetworkClient.remove_vcn_cidr..z$remove_vcn_cidr got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6N]r0z8VirtualNetworkClient.remove_vcn_cidr..Nrr7r8r9rhr\rgrqcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6[]r0rr=rrlra)r$rsZremove_vcn_cidr_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rl]sp4$       z$VirtualNetworkClient.remove_vcn_cidrc svdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rLt|t js"|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)ai Updates the tags or display name associated to the specified BYOIP CIDR block. :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateByoipRangeDetails update_byoip_range_details: (required) Byoip Range details. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ByoipRange` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_byoip_range API. rr&PUTupdate_byoip_rangezOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/UpdateByoipRanger)csg|]}|vr|qSr&r&r,r.r&r'r/]r0z;VirtualNetworkClient.update_byoip_range..z'update_byoip_range got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6]r0z;VirtualNetworkClient.update_byoip_range..Nrr7r8r9rhrgr*cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6]r0rr=rrr?r)r$rZupdate_byoip_range_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rn~]sp)$     z'VirtualNetworkClient.update_byoip_rangec svdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rLt|t js"|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)aV Updates the specified VTAP capture filter's display name or tags. :param str capture_filter_id: (required) The `OCID`__ of the capture filter. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateCaptureFilterDetails update_capture_filter_details: (required) Details object for updating a VTAP. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CaptureFilter` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_capture_filter API. rr+rmupdate_capture_filterzUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CaptureFilter/UpdateCaptureFilterr-csg|]}|vr|qSr&r&r,r.r&r'r/#^r0z>VirtualNetworkClient.update_capture_filter..z*update_capture_filter got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6,^r0z>VirtualNetworkClient.update_capture_filter..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r68^r0rr=rrr?r)r$rZupdate_capture_filter_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'ro]sp)$     z*VirtualNetworkClient.update_capture_filterc szdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|d urt j}|rPt|t js&|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a/ Updates the specified CPE's display name or tags. Avoid entering confidential information. :param str cpe_id: (required) The `OCID`__ of the CPE. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateCpeDetails update_cpe_details: (required) Details object for updating a CPE. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Cpe` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_cpe API. rr0rm update_cpezAhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Cpe/UpdateCpercsg|]}|vr|qSr&r&r,r.r&r'r/^r0z3VirtualNetworkClient.update_cpe..zupdate_cpe got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6^r0z3VirtualNetworkClient.update_cpe..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6^r0rr=rrr?r3)r$rZupdate_cpe_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rp\^sr&$    zVirtualNetworkClient.update_cpec szdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|d urt j}|rPt|t js&|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a. Updates the specified cross-connect. :param str cross_connect_id: (required) The `OCID`__ of the cross-connect. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateCrossConnectDetails update_cross_connect_details: (required) Update CrossConnect fields. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnect` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_cross_connect API. rr5rmupdate_cross_connectzShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnect/UpdateCrossConnectrcsg|]}|vr|qSr&r&r,r.r&r'r/^r0z=VirtualNetworkClient.update_cross_connect..z)update_cross_connect got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6_r0z=VirtualNetworkClient.update_cross_connect..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 _r0rr=rrr?r3)r$rZupdate_cross_connect_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rq^sr%$    z)VirtualNetworkClient.update_cross_connectc szdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|d urt j}|rPt|t js&|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified cross-connect group's display name. Avoid entering confidential information. :param str cross_connect_group_id: (required) The `OCID`__ of the cross-connect group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateCrossConnectGroupDetails update_cross_connect_group_details: (required) Update CrossConnectGroup fields :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.CrossConnectGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_cross_connect_group API. rr8rmupdate_cross_connect_groupz]https://docs.oracle.com/iaas/api/#/en/iaas/20160918/CrossConnectGroup/UpdateCrossConnectGrouprcsg|]}|vr|qSr&r&r,r.r&r'r/e_r0zCVirtualNetworkClient.update_cross_connect_group..z/update_cross_connect_group got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6n_r0zCVirtualNetworkClient.update_cross_connect_group..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6y_r0rr=rrr?r3)r$rZ"update_cross_connect_group_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rr3_sr&$    z/VirtualNetworkClient.update_cross_connect_groupc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a; Updates the specified set of DHCP options. You can update the display name or the options themselves. Avoid entering confidential information. Note that the `options` object you provide replaces the entire existing set of options. :param str dhcp_id: (required) The `OCID`__ for the set of DHCP options. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateDhcpDetails update_dhcp_details: (required) Request object for updating a set of DHCP options. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DhcpOptions` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_dhcp_options API. rr;rmupdate_dhcp_optionszQhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DhcpOptions/UpdateDhcpOptionsrcsg|]}|vr|qSr&r&r,r.r&r'r/_r0z.z(update_dhcp_options got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6_r0z.Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6_r0rr=rrr?r)r$rZupdate_dhcp_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rs_sn($    z(VirtualNetworkClient.update_dhcp_optionsc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a` Updates the specified DRG's display name or tags. Avoid entering confidential information. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateDrgDetails update_drg_details: (required) Details object for updating a DRG. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Drg` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_drg API. rr>rm update_drgzAhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/UpdateDrgrcsg|]}|vr|qSr&r&r,r.r&r'r/<`r0z3VirtualNetworkClient.update_drg..zupdate_drg got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6E`r0z3VirtualNetworkClient.update_drg..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6P`r0rr=rrr?r)r$rZupdate_drg_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rt `sn%$    zVirtualNetworkClient.update_drgc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the display name and routing information for the specified `DrgAttachment`. Avoid entering confidential information. :param str drg_attachment_id: (required) The `OCID`__ of the DRG attachment. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateDrgAttachmentDetails update_drg_attachment_details: (required) Details object for updating a `DrgAttachment`. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgAttachment` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_drg_attachment API. rArBrmupdate_drg_attachmentzUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgAttachment/UpdateDrgAttachmentrcsg|]}|vr|qSr&r&r,r.r&r'r/`r0z>VirtualNetworkClient.update_drg_attachment..z*update_drg_attachment got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6`r0z>VirtualNetworkClient.update_drg_attachment..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6`r0rr=rrr?r)r$rEZupdate_drg_attachment_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rut`sn&$    z*VirtualNetworkClient.update_drg_attachmentc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified route distribution :param str drg_route_distribution_id: (required) The `OCID`__ of the route distribution. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateDrgRouteDistributionDetails update_drg_route_distribution_details: (required) Details object for updating a route distribution :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteDistribution` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_drg_route_distribution API. r)rFrmupdate_drg_route_distributionzchttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistribution/UpdateDrgRouteDistributionrcsg|]}|vr|qSr&r&r,r.r&r'r/ar0zFVirtualNetworkClient.update_drg_route_distribution..z2update_drg_route_distribution got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6ar0zFVirtualNetworkClient.update_drg_route_distribution..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6#ar0rr=rrr?r)r$rWZ%update_drg_route_distribution_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rv`sn%$    z2VirtualNetworkClient.update_drg_route_distributionc sJdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|r t|t j s|j| ||j|j|jj||| | |d| d|||d S|jj||| | |d| d|||d Sd S)a Updates one or more route distribution statements in the specified route distribution. :param str drg_route_distribution_id: (required) The `OCID`__ of the route distribution. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateDrgRouteDistributionStatementsDetails update_drg_route_distribution_statements_details: (required) Request to update one or more route distribution statements in the route distribution. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteDistributionStatement` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_drg_route_distribution_statements API. r)z\/drgRouteDistributions/{drgRouteDistributionId}/actions/updateDrgRouteDistributionStatementsr*(update_drg_route_distribution_statementszvhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteDistributionStatement/UpdateDrgRouteDistributionStatementsrcsg|]}|vr|qSr&r&r,r.r&r'r/nar0zQVirtualNetworkClient.update_drg_route_distribution_statements..z=update_drg_route_distribution_statements got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6war0zQVirtualNetworkClient.update_drg_route_distribution_statements..Nrr7r8r9r:r=r>rr?rI)r$rWZ0update_drg_route_distribution_statements_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rwGasj $    z=VirtualNetworkClient.update_drg_route_distribution_statementsc sJdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|r t|t j s|j| ||j|j|jj||| | |d| d|||d S|jj||| | |d| d|||d Sd S)aD Updates one or more route rules in the specified DRG route table. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateDrgRouteRulesDetails update_drg_route_rules_details: (required) Request to update one or more route rules in the DRG route table. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.DrgRouteRule` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_drg_route_rules API. rYz=/drgRouteTables/{drgRouteTableId}/actions/updateDrgRouteRulesr*update_drg_route_ruleszThttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteRule/UpdateDrgRouteRulesrcsg|]}|vr|qSr&r&r,r.r&r'r/ar0z?VirtualNetworkClient.update_drg_route_rules..z+update_drg_route_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6ar0z?VirtualNetworkClient.update_drg_route_rules..Nrr7r8r9r:r=r`rr?rI)r$rcZupdate_drg_route_rules_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rxasj $    z+VirtualNetworkClient.update_drg_route_rulesc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified DRG route table. :param str drg_route_table_id: (required) The `OCID`__ of the DRG route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateDrgRouteTableDetails update_drg_route_table_details: (required) Details object used to updating a DRG route table. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.DrgRouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_drg_route_table API. rYrIrmupdate_drg_route_tablezUhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/DrgRouteTable/UpdateDrgRouteTablercsg|]}|vr|qSr&r&r,r.r&r'r/2br0z?VirtualNetworkClient.update_drg_route_table..z+update_drg_route_table got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6;br0z?VirtualNetworkClient.update_drg_route_table..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Fbr0rr=rrr?r)r$rcZupdate_drg_route_table_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rybsn%$    z+VirtualNetworkClient.update_drg_route_tablec sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified internet gateway. You can disable/enable it, or change its display name or tags. Avoid entering confidential information. If the gateway is disabled, that means no traffic will flow to/from the internet even if there's a route rule that enables that traffic. :param str ig_id: (required) The `OCID`__ of the internet gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateInternetGatewayDetails update_internet_gateway_details: (required) Details for updating the internet gateway. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.InternetGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_internet_gateway API. rrLrmupdate_internet_gatewayzYhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/InternetGateway/UpdateInternetGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/br0z@VirtualNetworkClient.update_internet_gateway..z,update_internet_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6br0z@VirtualNetworkClient.update_internet_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6br0rr=rrr?r)r$rZupdate_internet_gateway_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rzjbsn)$    z,VirtualNetworkClient.update_internet_gatewayc szdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|d urt j}|rPt|t js&|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified IPSec connection. To update an individual IPSec tunnel's attributes, use :func:`update_ip_sec_connection_tunnel`. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateIPSecConnectionDetails update_ip_sec_connection_details: (required) Details object for updating an IPSec connection. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_ip_sec_connection API. rrOrmupdate_ip_sec_connectionzYhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnection/UpdateIpSecConnectionrcsg|]}|vr|qSr&r&r,r.r&r'r/ cr0zAVirtualNetworkClient.update_ip_sec_connection..z-update_ip_sec_connection got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6cr0zAVirtualNetworkClient.update_ip_sec_connection..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6cr0rr=rrr?r3)r$rZ update_ip_sec_connection_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r{bsr($    z-VirtualNetworkClient.update_ip_sec_connectionc sddg}d}d}d}d} gdfdd t|D} | rJtd | ||d } d d t| D} t| D]<\} } | dust| tjrrt| dkrrtd| dqrdd|dt |dt d}dd t|D}|j j |d|j d}|dur t j}|r`t|t js6|j |||j|j|j j||| ||d|d|| |d S|j j||| ||d|d|| |d SdS)a Updates the specified tunnel. This operation lets you change tunnel attributes such as the routing type (BGP dynamic routing or static routing). Here are some important notes: * If you change the tunnel's routing type or BGP session configuration, the tunnel will go down while it's reprovisioned. * If you want to switch the tunnel's `routing` from `STATIC` to `BGP`, make sure the tunnel's BGP session configuration attributes have been set (:func:`bgp_session_info`). * If you want to switch the tunnel's `routing` from `BGP` to `STATIC`, make sure the :class:`IPSecConnection` already has at least one valid CIDR static route. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateIPSecConnectionTunnelDetails update_ip_sec_connection_tunnel_details: (required) Details object for updating a IPSecConnection tunnel's details. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnel` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_ip_sec_connection_tunnel API. rrrrmupdate_ip_sec_connection_tunnelzehttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionTunnel/UpdateIpSecConnectionTunnelr-csg|]}|vr|qSr&r&r,r.r&r'r/cr0zHVirtualNetworkClient.update_ip_sec_connection_tunnel..z4update_ip_sec_connection_tunnel got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r6cr0zHVirtualNetworkClient.update_ip_sec_connection_tunnel..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6cr0rr=rrr?r3)r$rrZ'update_ip_sec_connection_tunnel_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r|Ecsv9$      z4VirtualNetworkClient.update_ip_sec_connection_tunnelc s~ddg}d}d}d}d} gdfdd t|D} | rJtd | ||d } d d t| D} t| D]<\} } | dust| tjrrt| dkrrtd| dqrdd|dt d}dd t|D}|j j |d|j d}|durt j}|rTt|t js*|j |||j|j|j j||| ||d|d|| |d S|j j||| ||d|d|| |d SdS)a Updates the shared secret (pre-shared key) for the specified tunnel. **Important:** If you change the shared secret, the tunnel will go down while it's reprovisioned. :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateIPSecConnectionTunnelSharedSecretDetails update_ip_sec_connection_tunnel_shared_secret_details: (required) Details object for updating a IPSec connection tunnel's sharedSecret. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.IPSecConnectionTunnelSharedSecret` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_ip_sec_connection_tunnel_shared_secret API. rrrrm-update_ip_sec_connection_tunnel_shared_secretz}https://docs.oracle.com/iaas/api/#/en/iaas/20160918/IPSecConnectionTunnelSharedSecret/UpdateIpSecConnectionTunnelSharedSecretrcsg|]}|vr|qSr&r&r,r.r&r'r/cr0zVVirtualNetworkClient.update_ip_sec_connection_tunnel_shared_secret..zBupdate_ip_sec_connection_tunnel_shared_secret got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r6 dr0zVVirtualNetworkClient.update_ip_sec_connection_tunnel_shared_secret..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6dr0rr=rrr?r3)r$rrZ5update_ip_sec_connection_tunnel_shared_secret_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r}cst,$    zBVirtualNetworkClient.update_ip_sec_connection_tunnel_shared_secretc svdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rLt|t js"|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)ah Updates the specified IPv6. You must specify the object's `OCID`__. Use this operation if you want to: * Move an IPv6 to a different VNIC in the same subnet. * Enable/disable internet access for an IPv6. * Change the display name for an IPv6. * Update resource tags for an IPv6. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str ipv6_id: (required) The `OCID`__ of the IPv6. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateIpv6Details update_ipv6_details: (required) IPv6 details to be updated. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Ipv6` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_ipv6 API. rRrSrm update_ipv6zChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6r-csg|]}|vr|qSr&r&r,r.r&r'r/xdr0z4VirtualNetworkClient.update_ipv6..z update_ipv6 got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6dr0z4VirtualNetworkClient.update_ipv6..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6dr0rr=rrr?r)r$rVZupdate_ipv6_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r~:dsp1$     z VirtualNetworkClient.update_ipv6c sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified local peering gateway (LPG). :param str local_peering_gateway_id: (required) The `OCID`__ of the local peering gateway. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateLocalPeeringGatewayDetails update_local_peering_gateway_details: (required) Details object for updating a local peering gateway. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.LocalPeeringGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_local_peering_gateway API. rrWrmupdate_local_peering_gatewayzahttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/LocalPeeringGateway/UpdateLocalPeeringGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/dr0zEVirtualNetworkClient.update_local_peering_gateway..z1update_local_peering_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6dr0zEVirtualNetworkClient.update_local_peering_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6dr0rr=rrr?r)r$rZ$update_local_peering_gateway_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rdsn%$    z1VirtualNetworkClient.update_local_peering_gatewayc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)aa Updates the specified NAT gateway. :param str nat_gateway_id: (required) The NAT gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateNatGatewayDetails update_nat_gateway_details: (required) Details object for updating a NAT gateway. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NatGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_nat_gateway API. rrZrmupdate_nat_gatewayzOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NatGateway/UpdateNatGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/Ker0z;VirtualNetworkClient.update_nat_gateway..z'update_nat_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Ter0z;VirtualNetworkClient.update_nat_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6_er0rr=rrr?r)r$rZupdate_nat_gateway_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'resn%$    z'VirtualNetworkClient.update_nat_gatewayc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified network security group. To add or remove an existing VNIC from the group, use :func:`update_vnic`. To add a VNIC to the group *when you create the VNIC*, specify the NSG's `OCID`__ during creation. For example, see the `nsgIds` attribute in :func:`create_vnic_details`. To add or remove security rules from the group, use :func:`add_network_security_group_security_rules` or :func:`remove_network_security_group_security_rules`. To edit the contents of existing security rules in the group, use :func:`update_network_security_group_security_rules`. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateNetworkSecurityGroupDetails update_network_security_group_details: (required) Details object for updating a network security group. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.NetworkSecurityGroup` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_network_security_group API. rtr]rmupdate_network_security_groupzchttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/NetworkSecurityGroup/UpdateNetworkSecurityGrouprcsg|]}|vr|qSr&r&r,r.r&r'r/er0zFVirtualNetworkClient.update_network_security_group..z2update_network_security_group got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6er0zFVirtualNetworkClient.update_network_security_group..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6er0rr=rrr?r)r$rvZ%update_network_security_group_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'resn5$    z2VirtualNetworkClient.update_network_security_groupc sJdg}d}d}d}d}dgfddt|D} | rFtd | d|i} d d t| D} t| D]<\} } | d ust| tjrlt| d krltd| dqlddd} |jj | d|j d}|r t|t j s|j| ||j|j|jj||| | |d| d|||d S|jj||| | |d| d|||d Sd S)a Updates one or more security rules in the specified network security group. :param str network_security_group_id: (required) The `OCID`__ of the network security group. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateNetworkSecurityGroupSecurityRulesDetails update_network_security_group_security_rules_details: (required) Request with one or more security rules associated with the network security group that will be updated. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.UpdatedNetworkSecurityGroupSecurityRules` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_network_security_group_security_rules API. rtzK/networkSecurityGroups/{networkSecurityGroupId}/actions/updateSecurityRulesr*,update_network_security_group_security_ruleszhhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityRule/UpdateNetworkSecurityGroupSecurityRulesrcsg|]}|vr|qSr&r&r,r.r&r'r/$fr0zUVirtualNetworkClient.update_network_security_group_security_rules..zAupdate_network_security_group_security_rules got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6-fr0zUVirtualNetworkClient.update_network_security_group_security_rules..Nrr7r8r9r:r=Z(UpdatedNetworkSecurityGroupSecurityRulesrr?rI)r$rvZ4update_network_security_group_security_rules_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'resj!$    zAVirtualNetworkClient.update_network_security_group_security_rulesc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)af Updates the specified private IP. You must specify the object's `OCID`__. Use this operation if you want to: - Move a secondary private IP to a different VNIC in the same subnet. - Change the display name for a secondary private IP. - Change the hostname for a secondary private IP. This operation cannot be used with primary private IPs. To update the hostname for the primary IP on a VNIC, use :func:`update_vnic`. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str private_ip_id: (required) The `OCID`__ of the private IP or IPv6. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdatePrivateIpDetails update_private_ip_details: (required) Private IP details. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PrivateIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_private_ip API. r`rarmupdate_private_ipzMhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIprcsg|]}|vr|qSr&r&r,r.r&r'r/fr0z:VirtualNetworkClient.update_private_ip..z&update_private_ip got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6fr0z:VirtualNetworkClient.update_private_ip..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6fr0rr=rrr?r)r$rdZupdate_private_ip_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rZfsn0$    z&VirtualNetworkClient.update_private_ipc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified public IP. You must specify the object's `OCID`__. Use this operation if you want to: * Assign a reserved public IP in your pool to a private IP. * Move a reserved public IP to a different private IP. * Unassign a reserved public IP from a private IP (which returns it to your pool of reserved public IPs). * Change the display name or tags for a public IP. Assigning, moving, and unassigning a reserved public IP are asynchronous operations. Poll the public IP's `lifecycleState` to determine if the operation succeeded. **Note:** When moving a reserved public IP, the target private IP must not already have a public IP with `lifecycleState` = ASSIGNING or ASSIGNED. If it does, an error is returned. Also, the initial unassignment from the original private IP always succeeds, but the assignment to the target private IP is asynchronous and could fail silently (for example, if the target private IP is deleted or has a different public IP assigned to it in the interim). If that occurs, the public IP remains unassigned and its `lifecycleState` switches to AVAILABLE (it is not reassigned to its original private IP). You must poll the public IP's `lifecycleState` to determine if the move succeeded. Regarding ephemeral public IPs: * If you want to assign an ephemeral public IP to a primary private IP, use :func:`create_public_ip`. * You can't move an ephemeral public IP to a different private IP. * If you want to unassign an ephemeral public IP from its private IP, use :func:`delete_public_ip`, which unassigns and deletes the ephemeral public IP. **Note:** If a public IP is assigned to a secondary private IP (see :class:`PrivateIp`), and you move that secondary private IP to another VNIC, the public IP moves with it. **Note:** There's a limit to the number of :class:`PublicIp` a VNIC or instance can have. If you try to move a reserved public IP to a VNIC or instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see `Public IP Addresses`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm __ https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingpublicIPs.htm :param str public_ip_id: (required) The `OCID`__ of the public IP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdatePublicIpDetails update_public_ip_details: (required) Public IP details. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIp` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_public_ip API. rrermupdate_public_ipzKhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/UpdatePublicIprcsg|]}|vr|qSr&r&r,r.r&r'r/(gr0z9VirtualNetworkClient.update_public_ip..z%update_public_ip got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r61gr0z9VirtualNetworkClient.update_public_ip..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6`__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.PublicIpPool` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_public_ip_pool API. rwrhrmupdate_public_ip_poolzShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/PublicIpPool/UpdatePublicIpPoolr)csg|]}|vr|qSr&r&r,r.r&r'r/gr0z>VirtualNetworkClient.update_public_ip_pool..z*update_public_ip_pool got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6gr0z>VirtualNetworkClient.update_public_ip_pool..Nrr7r8r9rhrgr*cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6gr0rr=r{rr?r)r$r|Zupdate_public_ip_pool_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r`gsp)$     z*VirtualNetworkClient.update_public_ip_poolc szdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|d urt j}|rPt|t js&|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified remote peering connection (RPC). :param str remote_peering_connection_id: (required) The `OCID`__ of the remote peering connection (RPC). __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateRemotePeeringConnectionDetails update_remote_peering_connection_details: (required) Request to the update the peering connection to remote region :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RemotePeeringConnection` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_remote_peering_connection API. rrkrm update_remote_peering_connectionzihttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RemotePeeringConnection/UpdateRemotePeeringConnectionrcsg|]}|vr|qSr&r&r,r.r&r'r/hr0zIVirtualNetworkClient.update_remote_peering_connection..z5update_remote_peering_connection got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6 hr0zIVirtualNetworkClient.update_remote_peering_connection..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6hr0rr=rrr?r3)r$rZ(update_remote_peering_connection_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rgsr%$    z5VirtualNetworkClient.update_remote_peering_connectionc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified route table's display name or route rules. Avoid entering confidential information. Note that the `routeRules` object you provide replaces the entire existing set of rules. :param str rt_id: (required) The `OCID`__ of the route table. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateRouteTableDetails update_route_table_details: (required) Details object for updating a route table. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.RouteTable` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_route_table API. rrnrmupdate_route_tablezOhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/RouteTable/UpdateRouteTablercsg|]}|vr|qSr&r&r,r.r&r'r/nhr0z;VirtualNetworkClient.update_route_table..z'update_route_table got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6whr0z;VirtualNetworkClient.update_route_table..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6hr0rr=rrr?r)r$rZupdate_route_table_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r:hsn($    z'VirtualNetworkClient.update_route_tablec sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)aC Updates the specified security list's display name or rules. Avoid entering confidential information. Note that the `egressSecurityRules` or `ingressSecurityRules` objects you provide replace the entire existing objects. :param str security_list_id: (required) The `OCID`__ of the security list. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateSecurityListDetails update_security_list_details: (required) Updated details for the security list. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.SecurityList` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_security_list API. rrqrmupdate_security_listzShttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/SecurityList/UpdateSecurityListrcsg|]}|vr|qSr&r&r,r.r&r'r/hr0z=VirtualNetworkClient.update_security_list..z)update_security_list got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6hr0z=VirtualNetworkClient.update_security_list..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6hr0rr=rrr?r)r$rZupdate_security_list_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rhsn)$    z)VirtualNetworkClient.update_security_listc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified service gateway. The information you provide overwrites the existing attributes of the gateway. :param str service_gateway_id: (required) The service gateway's `OCID`__. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateServiceGatewayDetails update_service_gateway_details: (required) Details object for updating a service gateway. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.ServiceGateway` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_service_gateway API. rrtrmupdate_service_gatewayzWhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ServiceGateway/UpdateServiceGatewayrcsg|]}|vr|qSr&r&r,r.r&r'r/Eir0z?VirtualNetworkClient.update_service_gateway..z+update_service_gateway got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Nir0z?VirtualNetworkClient.update_service_gateway..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Yir0rr=rrr?r)r$rZupdate_service_gateway_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'risn&$    z+VirtualNetworkClient.update_service_gatewayc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)aC Updates the specified subnet. :param str subnet_id: (required) Specify the `OCID`__ of the subnet. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateSubnetDetails update_subnet_details: (required) Details object for updating a subnet. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Subnet` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_subnet API. rdrwrm update_subnetzGhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Subnet/UpdateSubnetrcsg|]}|vr|qSr&r&r,r.r&r'r/ir0z6VirtualNetworkClient.update_subnet..z"update_subnet got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6ir0z6VirtualNetworkClient.update_subnet..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6ir0rr=rrr?r)r$rmZupdate_subnet_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r}isn%$    z"VirtualNetworkClient.update_subnetc sddg}d}d}d}d} gdfdd t|D} | rJtd | ||d } d d t| D} t| D]<\} } | dust| tjrrt| dkrrtd| dqrdd|dt |dt |dt d}dd t|D}|j j |d|j d}|durt j}|rvt|t jsL|j ||j |||j|j|j j||| ||d|d|| |d S|j j||| ||d|d|| |d SdS)a Creates or updates the set of CPE configuration answers for the specified tunnel. The answers correlate to the questions that are specific to the CPE device type (see the `parameters` attribute of :class:`CpeDeviceShapeDetail`). :param str ipsc_id: (required) The `OCID`__ of the IPSec connection. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str tunnel_id: (required) The `OCID`__ of the tunnel. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateTunnelCpeDeviceConfigDetails update_tunnel_cpe_device_config_details: (required) Request to input the tunnel's cpe configuration parameters :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.TunnelCpeDeviceConfig` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_tunnel_cpe_device_config API. rrrrmupdate_tunnel_cpe_device_configzehttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/TunnelCpeDeviceConfig/UpdateTunnelCpeDeviceConfig)rrrgr\rhcsg|]}|vr|qSr&r&r,r.r&r'r/+jr0zHVirtualNetworkClient.update_tunnel_cpe_device_config..z4update_tunnel_cpe_device_config got unknown kwargs: rcSsi|]\}}|tur||qSr&r1r3r&r&r'r65jr0zHVirtualNetworkClient.update_tunnel_cpe_device_config..Nrr7r8r9rgr\rh)r;r<rjr^rkcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Bjr0rr=rrr?r)r$rrZ'update_tunnel_cpe_device_config_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'risz7$        z4VirtualNetworkClient.update_tunnel_cpe_device_configc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a( Updates the specified VCN. :param str vcn_id: (required) Specify the `OCID`__ of the VCN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateVcnDetails update_vcn_details: (required) Details object for updating a VCN. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vcn` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_vcn API. rnrzrm update_vcnzAhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vcn/UpdateVcnrcsg|]}|vr|qSr&r&r,r.r&r'r/jr0z3VirtualNetworkClient.update_vcn..zupdate_vcn got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6jr0z3VirtualNetworkClient.update_vcn..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6jr0rr=rrr?r)r$rsZupdate_vcn_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rijsn%$    zVirtualNetworkClient.update_vcnc szdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|d urt j}|rPt|t js&|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a  Updates the specified virtual circuit. This can be called by either the customer who owns the virtual circuit, or the provider (when provisioning or de-provisioning the virtual circuit from their end). The documentation for :func:`update_virtual_circuit_details` indicates who can update each property of the virtual circuit. **Important:** If the virtual circuit is working and in the PROVISIONED state, updating any of the network-related properties (such as the DRG being used, the BGP ASN, and so on) will cause the virtual circuit's state to switch to PROVISIONING and the related BGP session to go down. After Oracle re-provisions the virtual circuit, its state will return to PROVISIONED. Make sure you confirm that the associated BGP session is back up. For more information about the various states and how to test connectivity, see `FastConnect Overview`__. To change the list of public IP prefixes for a public virtual circuit, use :func:`bulk_add_virtual_circuit_public_prefixes` and :func:`bulk_delete_virtual_circuit_public_prefixes`. Updating the list of prefixes does NOT cause the BGP session to go down. However, Oracle must verify the customer's ownership of each added prefix before traffic for that prefix will flow across the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnect.htm :param str virtual_circuit_id: (required) The `OCID`__ of the virtual circuit. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateVirtualCircuitDetails update_virtual_circuit_details: (required) Update VirtualCircuit fields. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.VirtualCircuit` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_virtual_circuit API. rr|rmupdate_virtual_circuitzWhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuit/UpdateVirtualCircuitrcsg|]}|vr|qSr&r&r,r.r&r'r/kr0z?VirtualNetworkClient.update_virtual_circuit..z+update_virtual_circuit got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6%kr0z?VirtualNetworkClient.update_virtual_circuit..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r60kr0rr=rrr?r3)r$rZupdate_virtual_circuit_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rjsr>$    z+VirtualNetworkClient.update_virtual_circuitc svdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rLt|t js"|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified VLAN. Note that this operation might require changes to all the VNICs in the VLAN, which can take a while. The VLAN will be in the UPDATING state until the changes are complete. :param str vlan_id: (required) The `OCID`__ of the VLAN. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateVlanDetails update_vlan_details: (required) Details object for updating a subnet. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vlan` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_vlan API. rrrm update_vlanzChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vlan/UpdateVlanr-csg|]}|vr|qSr&r&r,r.r&r'r/kr0z4VirtualNetworkClient.update_vlan..z update_vlan got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6kr0z4VirtualNetworkClient.update_vlan..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6kr0rr=r"rr?r)r$rZupdate_vlan_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rVksp*$     z VirtualNetworkClient.update_vlanc sldg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d}|rBt|t js|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a) Updates the specified VNIC. :param str vnic_id: (required) The `OCID`__ of the VNIC. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateVnicDetails update_vnic_details: (required) Details object for updating a VNIC. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vnic` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_vnic API. rrrm update_vniczChttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Vnic/UpdateVnicrcsg|]}|vr|qSr&r&r,r.r&r'r/kr0z4VirtualNetworkClient.update_vnic..z update_vnic got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6lr0z4VirtualNetworkClient.update_vnic..Nrr7r8r9rgrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6 lr0rr=rrr?r)r$rZupdate_vnic_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'rksn%$    z VirtualNetworkClient.update_vnicc svdg}d}d}d}d}gdfddt|D} | rHtd | d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d}|rLt|t js"|j | ||j|j|j j||| | |d|d|||d S|j j||| | |d|d|||d Sd S)a Updates the specified VTAP's display name or tags. :param str vtap_id: (required) The `OCID`__ of the VTAP. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param oci.core.models.UpdateVtapDetails update_vtap_details: (required) Details object for updating a VTAP. :param str if_match: (optional) For optimistic concurrency control. In the PUT or DELETE call for a resource, set the `if-match` parameter to the value of the etag from a previous GET or POST response for that resource. The resource will be updated or deleted only if the etag you provide matches the resource's current etag value. :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.core.models.Vtap` :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use update_vtap API. rrrm update_vtapr2r-csg|]}|vr|qSr&r&r,r.r&r'r/elr0z4VirtualNetworkClient.update_vtap..z update_vtap got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6nlr0z4VirtualNetworkClient.update_vtap..Nrr7r8r9rgrhr.cSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6zlr0rr=r%rr?r)r$rZupdate_vtap_detailsr%rHr@rArFrGrXrBr4r5rCrr&r.r'r/lsp)$     z VirtualNetworkClient.update_vtapc szdg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt |dt d} dd t| D} |j j |d|j d} | rTt| t js.|j | |j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)a; Upgrades the DRG. After upgrade, you can control routing inside your DRG via DRG attachments, route distributions, and DRG route tables. :param str drg_id: (required) The `OCID`__ of the DRG. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param str opc_retry_token: (optional) A token that uniquely identifies a request so it can be retried in case of a timeout or server error without risk of executing that same action again. Retry tokens expire after 24 hours, but can be invalidated before then due to conflicting operations (for example, if a resource has been deleted and purged from the system, then a retry of the original creation request may be rejected). :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use upgrade_drg API. rz/drgs/{drgId}/actions/upgrader* upgrade_drgzBhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/Drg/UpgradeDrgrycsg|]}|vr|qSr&r&r,r.r&r'r/lr0z4VirtualNetworkClient.upgrade_drg..z upgrade_drg got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6lr0z4VirtualNetworkClient.upgrade_drg..Nrr7r8r9rhr\rzcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6lr0rr=rrrar@r&r.r'rlsj)$      z VirtualNetworkClient.upgrade_drgc sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)am Submits the BYOIP CIDR block you are importing for validation. Do not submit to Oracle for validation if you have not already modified the information for the BYOIP CIDR block with your Regional Internet Registry. See `To import a CIDR block`__ for details. __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/BYOIP.htm#import_cidr :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use validate_byoip_range API. rz,/byoipRanges/{byoipRangeId}/actions/validater*validate_byoip_rangezQhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/ValidateByoipRangercsg|]}|vr|qSr&r&r,r.r&r'r/:mr0z=VirtualNetworkClient.validate_byoip_range..z)validate_byoip_range got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6Cmr0z=VirtualNetworkClient.validate_byoip_range..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6Nmr0rr=rrrrr&r.r'r msf$$    z)VirtualNetworkClient.validate_byoip_rangec sddg}d}d}d}d}gdfddt|D}|rHtd |d|i} d d t| D} t| D]<\} } | d ust| tjrnt| d krntd| dqndd|dt d} dd t| D} |j j |d|j d} | r>t| t js|j | | |j| j|j j||| | |d|||d S|j j||| | |d|||dSd S)aA Withdraws BGP route advertisement for the BYOIP CIDR block. :param str byoip_range_id: (required) The `OCID`__ of the `ByoipRange` resource containing the BYOIP CIDR block. __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm :param str opc_request_id: (optional) Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID. :param obj retry_strategy: (optional) A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level. This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it. The specifics of the default retry strategy are described `here `__. To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`. :param bool allow_control_chars: (optional) allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object. By default, the response will not allow control characters in strings :return: A :class:`~oci.response.Response` object with data of type None :rtype: :class:`~oci.response.Response` :example: Click `here `__ to see an example of how to use withdraw_byoip_range API. rz,/byoipRanges/{byoipRangeId}/actions/withdrawr*withdraw_byoip_rangezQhttps://docs.oracle.com/iaas/api/#/en/iaas/20160918/ByoipRange/WithdrawByoipRangercsg|]}|vr|qSr&r&r,r.r&r'r/mr0z=VirtualNetworkClient.withdraw_byoip_range..z)withdraw_byoip_range got unknown kwargs: cSsi|]\}}|tur||qSr&r1r3r&r&r'r6mr0z=VirtualNetworkClient.withdraw_byoip_range..Nrr7r8r9rhrcSs&i|]\}}|tur|dur||qSr_r1r3r&r&r'r6mr0rr=rrrrr&r.r'rnmsf!$    z)VirtualNetworkClient.withdraw_byoip_rangeN)__name__ __module__ __qualname____doc__r(r+rZrerorurxr}rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr r rrrrrrr!r$r(r,r1r6r9r<r?rCrGrJrMrPrTrXr[r^rbrfrirlrorrrurxr{r}rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr rrrrr r!r"r#r'r)r,r.r0r2r3r4r6r7r8r:r;r<r=r@rArBrDrErFrGrIrLrMrPrQrRrSrUrVrWrXr[r\r]rbrcrdrerfrgrhrjrkrlrnrorprqrrrsrtrurvrwrxryrzr{r|r}r~rrrrrrrrrrrrrrrrrrrrrr&r&r&r'rs> ]]lwy]t}br``t{vvvtttvttswtvtttttv{{dfamqtpjki^\r}a[\[_ra]ongwamnifeffeddbfkkefkorlgffcdghhitTecZvmZZZZXXXhXX]bX\][b`awiXX^ ^ f R Z e Z a X X X X X e e  o | c X c t  Z c ] c L ~ " 9 | m & n f 0 o . S  '  - k v } , W  ~ x |  s , #  4  " . u . , ' f , $ x o v & 2 M  [ [ j k w x \ r { o o l k l l i j i ] ] i m n  s w i i y ^ t  o k l m j i  i  p i o l drN)Z __future__rZ oci._vendorrrZocirrZoci.base_clientrZ oci.configrr Z oci.signerr Zoci.utilr r r Zoci.exceptionsrZ oci.alloyrZmodelsrr2objectrr&r&r&r's