📂 Advanced File Manager
Multi-Root Navigation System
⚡ Quick Jump
Server (/)
Home (/home)
Var_www (/var/www)
Current (/home4/shelley/public_html/shelleycutler.com/wp-content/mu-plugins)
📍 Go
⬆ Ke Atas
🏠 Root Server
🏠 Root App
🔄 Refresh
📀 /
›
usr
›
lib
›
python3.9
›
site-packages
›
oci
›
dns
›
models
›
📁 __pycache__
📍
Lokasi:
/usr/lib/python3.9/site-packages/oci/dns/models/__pycache__
💾
Free:
45.4 GB
⚠️ Direktori ini
tidak writable
.
✏️ Mengedit: steering_policy.cpython-39.pyc
a ���f ] � @ s8 d dl mZmZmZ d dlmZ eG dd� de��ZdS )� )�formatted_flat_dict� NONE_SENTINEL�#value_allowed_none_or_none_sentinel)�init_model_state_from_kwargsc @ s� e Zd ZdZdZdZdZdZdZdZ dZ d Zd ZdZ dd � Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zedd� �Zejdd� �Zed d!� �Zejd"d!� �Zed#d$� �Zejd%d$� �Zed&d'� �Zejd(d'� �Zed)d*� �Zejd+d*� �Zed,d-� �Zejd.d-� �Zed/d0� �Zejd1d0� �Zed2d3� �Zejd4d3� �Zd5d6� Zd7d8� Zd9d:� Z d;S )<�SteeringPolicyz� A DNS steering policy. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API. �FAILOVER�LOAD_BALANCE�ROUTE_BY_GEO�ROUTE_BY_ASN�ROUTE_BY_IP�CUSTOM�ACTIVE�CREATING�DELETED�DELETINGc K s� dddddddddddddd� | _ d d ddd ddddddddd� | _d| _d| _d| _d| _d| _d| _d| _d| _ d| _ d| _d| _d| _ d| _dS )a? Initializes a new SteeringPolicy object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param compartment_id: The value to assign to the compartment_id property of this SteeringPolicy. :type compartment_id: str :param display_name: The value to assign to the display_name property of this SteeringPolicy. :type display_name: str :param ttl: The value to assign to the ttl property of this SteeringPolicy. :type ttl: int :param health_check_monitor_id: The value to assign to the health_check_monitor_id property of this SteeringPolicy. :type health_check_monitor_id: str :param template: The value to assign to the template property of this SteeringPolicy. Allowed values for this property are: "FAILOVER", "LOAD_BALANCE", "ROUTE_BY_GEO", "ROUTE_BY_ASN", "ROUTE_BY_IP", "CUSTOM", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type template: str :param freeform_tags: The value to assign to the freeform_tags property of this SteeringPolicy. :type freeform_tags: dict(str, str) :param defined_tags: The value to assign to the defined_tags property of this SteeringPolicy. :type defined_tags: dict(str, dict(str, object)) :param answers: The value to assign to the answers property of this SteeringPolicy. :type answers: list[oci.dns.models.SteeringPolicyAnswer] :param rules: The value to assign to the rules property of this SteeringPolicy. :type rules: list[oci.dns.models.SteeringPolicyRule] :param _self: The value to assign to the _self property of this SteeringPolicy. :type _self: str :param id: The value to assign to the id property of this SteeringPolicy. :type id: str :param time_created: The value to assign to the time_created property of this SteeringPolicy. :type time_created: datetime :param lifecycle_state: The value to assign to the lifecycle_state property of this SteeringPolicy. Allowed values for this property are: "ACTIVE", "CREATING", "DELETED", "DELETING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type lifecycle_state: str �str�intzdict(str, str)zdict(str, dict(str, object))zlist[SteeringPolicyAnswer]zlist[SteeringPolicyRule]Zdatetime) �compartment_id�display_name�ttl�health_check_monitor_id�template� freeform_tags�defined_tags�answers�rules�_self�id�time_created�lifecycle_stateZ compartmentIdZdisplayNamer ZhealthCheckMonitorIdr ZfreeformTagsZdefinedTagsr r �selfr ZtimeCreatedZlifecycleStateN)Z swagger_typesZ attribute_map�_compartment_id� _display_name�_ttl�_health_check_monitor_id� _template�_freeform_tags� _defined_tags�_answers�_rules�_SteeringPolicy__self�_id� _time_created�_lifecycle_state)r �kwargs� r/ �B/usr/lib/python3.9/site-packages/oci/dns/models/steering_policy.py�__init__<