CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_ATTACHED_VIEW_T Type 🔗
Properties of an attached view.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_attached_view_t FORCE AUTHID CURRENT_USER IS OBJECT (
view_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_attached_view_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_attached_view_t (
view_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
view_id
(required) The OCID of the view.
DBMS_CLOUD_OCI_DNS_ATTACHED_VIEW_DETAILS_T Type 🔗
Properties for defining an attached view.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_attached_view_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
view_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_attached_view_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_attached_view_details_t (
view_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
view_id
(required) The OCID of the view.
DBMS_CLOUD_OCI_DNS_CHANGE_RESOLVER_COMPARTMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_change_resolver_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_resolver_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_resolver_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resolver, along with its protected default view and resolver endpoints, should be moved.
DBMS_CLOUD_OCI_DNS_CHANGE_STEERING_POLICY_COMPARTMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_change_steering_policy_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_steering_policy_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_steering_policy_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the steering policy should be moved.
DBMS_CLOUD_OCI_DNS_CHANGE_TSIG_KEY_COMPARTMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_change_tsig_key_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_tsig_key_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_tsig_key_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the TSIG key should be moved.
DBMS_CLOUD_OCI_DNS_CHANGE_VIEW_COMPARTMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_change_view_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_view_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_view_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the view should be moved.
DBMS_CLOUD_OCI_DNS_CHANGE_ZONE_COMPARTMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_change_zone_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_zone_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_change_zone_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the zone should be moved.
DBMS_CLOUD_OCI_DNS_DYNECT_MIGRATION_DETAILS_T Type 🔗
Details specific to performing a DynECT zone migration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_dynect_migration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
customer_name varchar2(32767),
username varchar2(32767),
password varchar2(32767),
http_redirect_replacements json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_dynect_migration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_dynect_migration_details_t (
customer_name varchar2,
username varchar2,
password varchar2,
http_redirect_replacements json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
customer_name
(required) DynECT customer name the zone belongs to.
username
(required) DynECT API username to perform the migration with.
password
(required) DynECT API password for the provided username.
http_redirect_replacements
(optional) A map of fully-qualified domain names (FQDNs) to an array of `MigrationReplacement` objects.
DBMS_CLOUD_OCI_DNS_CREATE_ZONE_BASE_DETAILS_T Type 🔗
The body for either defining a new zone or migrating a zone from migrationSource. This is determined by the migrationSource discriminator. NONE indicates creation of a new zone (default). DYNECT indicates migration from a DynECT zone. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_zone_base_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
migration_source varchar2(32767),
name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_zone_base_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_zone_base_details_t (
migration_source varchar2,
name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
migration_source
(optional) Discriminator that is used to determine whether to create a new zone (NONE) or to migrate an existing DynECT zone (DYNECT).
Allowed values are: 'NONE', 'DYNECT'
name
(required) The name of the zone.
compartment_id
(required) The OCID of the compartment containing the zone.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_DNS_CREATE_MIGRATED_DYNECT_ZONE_DETAILS_T Type 🔗
The body for migrating a zone from DynECT. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_migrated_dynect_zone_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_create_zone_base_details_t (
dynect_migration_details dbms_cloud_oci_dns_dynect_migration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_migrated_dynect_zone_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_migrated_dynect_zone_details_t (
migration_source varchar2,
name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
dynect_migration_details dbms_cloud_oci_dns_dynect_migration_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_create_migrated_dynect_zone_details_t is a subtype of the dbms_cloud_oci_dns_create_zone_base_details_t type.
Fields
Field
Description
dynect_migration_details
(optional)
DBMS_CLOUD_OCI_DNS_CREATE_RESOLVER_ENDPOINT_DETAILS_T Type 🔗
The body for defining a new resolver endpoint. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_resolver_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
endpoint_type varchar2(32767),
forwarding_address varchar2(32767),
is_forwarding number,
is_listening number,
listening_address varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_resolver_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_resolver_endpoint_details_t (
name varchar2,
endpoint_type varchar2,
forwarding_address varchar2,
is_forwarding number,
is_listening number,
listening_address varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
name
(required) The name of the resolver endpoint. Must be unique, case-insensitive, within the resolver.
endpoint_type
(optional) The type of resolver endpoint. VNIC is currently the only supported type.
Allowed values are: 'VNIC'
forwarding_address
(optional) An IP address from which forwarded queries may be sent. For VNIC endpoints, this IP address must be part of the subnet and will be assigned by the system if unspecified when isForwarding is true.
is_forwarding
(required) A Boolean flag indicating whether or not the resolver endpoint is for forwarding.
is_listening
(required) A Boolean flag indicating whether or not the resolver endpoint is for listening.
listening_address
(optional) An IP address to listen to queries on. For VNIC endpoints this IP address must be part of the subnet and will be assigned by the system if unspecified when isListening is true.
DBMS_CLOUD_OCI_DNS_CREATE_RESOLVER_VNIC_ENDPOINT_DETAILS_T Type 🔗
The body for defining a new resolver VNIC endpoint. Either isForwarding or isListening must be true, but not both. If isListening is true, a listeningAddress may be provided. If isForwarding is true, a forwardingAddress may be provided. When not provided, an address will be chosen automatically. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_resolver_vnic_endpoint_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_create_resolver_endpoint_details_t (
subnet_id varchar2(32767),
nsg_ids dbms_cloud_oci_dns_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_resolver_vnic_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_resolver_vnic_endpoint_details_t (
name varchar2,
endpoint_type varchar2,
forwarding_address varchar2,
is_forwarding number,
is_listening number,
listening_address varchar2,
subnet_id varchar2,
nsg_ids dbms_cloud_oci_dns_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_create_resolver_vnic_endpoint_details_t is a subtype of the dbms_cloud_oci_dns_create_resolver_endpoint_details_t type.
Fields
Field
Description
subnet_id
(required) The OCID of a subnet. Must be part of the VCN that the resolver is attached to.
nsg_ids
(optional) An array of network security group OCIDs for the resolver endpoint. These must be part of the VCN that the resolver endpoint is a part of.
DBMS_CLOUD_OCI_DNS_CREATE_STEERING_POLICY_ATTACHMENT_DETAILS_T Type 🔗
The body for defining an attachment between a steering policy and a domain. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_steering_policy_attachment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
steering_policy_id varchar2(32767),
zone_id varchar2(32767),
domain_name varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_steering_policy_attachment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_steering_policy_attachment_details_t (
steering_policy_id varchar2,
zone_id varchar2,
domain_name varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
steering_policy_id
(required) The OCID of the attached steering policy.
zone_id
(required) The OCID of the attached zone.
domain_name
(required) The attached domain within the attached zone.
display_name
(optional) A user-friendly name for the steering policy attachment. Does not have to be unique and can be changed. Avoid entering confidential information.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_ANSWER_T Type 🔗
DNS record data with metadata for processing in a steering policy. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_answer_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
rtype varchar2(32767),
rdata varchar2(32767),
pool varchar2(32767),
is_disabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_answer_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_answer_t (
name varchar2,
rtype varchar2,
rdata varchar2,
pool varchar2,
is_disabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) A user-friendly name for the answer, unique within the steering policy. An answer's `name` property can be referenced in `answerCondition` properties of rules using `answer.name`. **Example:** \"rules\": [ { \"ruleType\": \"FILTER\", \"defaultAnswerData\": [ { \"answerCondition\": \"answer.name == 'server 1'\", \"shouldKeep\": true } ] } ]
rtype
(required) The type of DNS record, such as A or CNAME. Only A, AAAA, and CNAME are supported. For more information, see Supported DNS Resource Record Types.
rdata
(required) The record's data, as whitespace-delimited tokens in type-specific presentation format. All RDATA is normalized and the returned presentation of your RDATA may differ from its initial input. For more information about RDATA, see Supported DNS Resource Record Types.
pool
(optional) The freeform name of a group of one or more records in which this record is included, such as \"LAX data center\". An answer's `pool` property can be referenced in `answerCondition` properties of rules using `answer.pool`. **Example:** \"rules\": [ { \"ruleType\": \"FILTER\", \"defaultAnswerData\": [ { \"answerCondition\": \"answer.pool == 'US East Servers'\", \"shouldKeep\": true } ] } ]
is_disabled
(optional) Set this property to `true` to indicate that the answer is administratively disabled, such as when the corresponding server is down for maintenance. An answer's `isDisabled` property can be referenced in `answerCondition` properties in rules using `answer.isDisabled`. **Example:** \"rules\": [ { \"ruleType\": \"FILTER\", \"defaultAnswerData\": [ { \"answerCondition\": \"answer.isDisabled != true\", \"shouldKeep\": true } ] },
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_RULE_T Type 🔗
The configuration of the sorting and filtering behaviors in a steering policy. Rules can filter and sort answers based on weight, priority, endpoint health, and other data. A rule may optionally include a sequence of cases, each with an optional `caseCondition` expression. Cases allow a sequence of conditions to be defined that will apply different parameters to the rule when the conditions are met. For more information about cases, see Traffic Management API Guide. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
description varchar2(32767),
rule_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_rule_t (
description varchar2,
rule_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
description
(optional) A user-defined description of the rule's purpose or behavior.
rule_type
(required) The type of a rule determines its sorting/filtering behavior. * `FILTER` - Filters the list of answers based on their defined boolean data. Answers remain only if their `shouldKeep` value is `true`. * `HEALTH` - Removes answers from the list if their `rdata` matches a target in the health check monitor referenced by the steering policy and the target is reported down. * `WEIGHTED` - Uses a number between 0 and 255 to determine how often an answer will be served in relation to other answers. Anwers with a higher weight will be served more frequently. * `PRIORITY` - Uses a defined rank value of answers to determine which answer to serve, moving those with the lowest values to the beginning of the list without changing the relative order of those with the same value. Answers can be given a value between `0` and `255`. * `LIMIT` - Filters answers that are too far down the list. Parameter `defaultCount` specifies how many answers to keep. **Example:** If `defaultCount` has a value of `2` and there are five answers left, when the `LIMIT` rule is processed, only the first two answers will remain in the list.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_ANSWER_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_answer_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_answer_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_answer_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_CREATE_STEERING_POLICY_DETAILS_T Type 🔗
The body for defining a new steering policy. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_steering_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
ttl number,
health_check_monitor_id varchar2(32767),
template varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
answers dbms_cloud_oci_dns_steering_policy_answer_tbl,
rules dbms_cloud_oci_dns_steering_policy_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_steering_policy_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_steering_policy_details_t (
compartment_id varchar2,
display_name varchar2,
ttl number,
health_check_monitor_id varchar2,
template varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
answers dbms_cloud_oci_dns_steering_policy_answer_tbl,
rules dbms_cloud_oci_dns_steering_policy_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the steering policy.
display_name
(required) A user-friendly name for the steering policy. Does not have to be unique and can be changed. Avoid entering confidential information.
ttl
(optional) The Time To Live (TTL) for responses from the steering policy, in seconds. If not specified during creation, a value of 30 seconds will be used.
health_check_monitor_id
(optional) The OCID of the health check monitor providing health data about the answers of the steering policy. A steering policy answer with `rdata` matching a monitored endpoint will use the health data of that endpoint. A steering policy answer with `rdata` not matching any monitored endpoint will be assumed healthy. **Note:** To use the Health Check monitoring feature in a steering policy, a monitor must be created using the Health Checks service first. For more information on how to create a monitor, please see Managing Health Checks.
template
(required) A set of predefined rules based on the desired purpose of the steering policy. Each template utilizes Traffic Management's rules in a different order to produce the desired results when answering DNS queries. **Example:** The `FAILOVER` template determines answers by filtering the policy's answers using the `FILTER` rule first, then the following rules in succession: `HEALTH`, `PRIORITY`, and `LIMIT`. This gives the domain dynamic failover capability. It is **strongly recommended** to use a template other than `CUSTOM` when creating a steering policy. All templates require the rule order to begin with an unconditional `FILTER` rule that keeps answers contingent upon `answer.isDisabled != true`, except for `CUSTOM`. A defined `HEALTH` rule must follow the `FILTER` rule if the policy references a `healthCheckMonitorId`. The last rule of a template must must be a `LIMIT` rule. For more information about templates and code examples, see Traffic Management API Guide. **Template Types** * `FAILOVER` - Uses health check information on your endpoints to determine which DNS answers to serve. If an endpoint fails a health check, the answer for that endpoint will be removed from the list of available answers until the endpoint is detected as healthy. * `LOAD_BALANCE` - Distributes web traffic to specified endpoints based on defined weights. * `ROUTE_BY_GEO` - Answers DNS queries based on the query's geographic location. For a list of geographic locations to route by, see Traffic Management Geographic Locations. * `ROUTE_BY_ASN` - Answers DNS queries based on the query's originating ASN. * `ROUTE_BY_IP` - Answers DNS queries based on the query's IP address. * `CUSTOM` - Allows a customized configuration of rules.
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
answers
(optional) The set of all answers that can potentially issue from the steering policy.
rules
(optional) The series of rules that will be processed in sequence to reduce the pool of answers to a response for any given request. The first rule receives a shuffled list of all answers, and every other rule receives the list of answers emitted by the one preceding it. The last rule populates the response.
DBMS_CLOUD_OCI_DNS_CREATE_TSIG_KEY_DETAILS_T Type 🔗
The body for defining a TSIG key. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_tsig_key_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
algorithm varchar2(32767),
name varchar2(32767),
compartment_id varchar2(32767),
secret varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_tsig_key_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_tsig_key_details_t (
algorithm varchar2,
name varchar2,
compartment_id varchar2,
secret varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
algorithm
(required) TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
name
(required) A globally unique domain name identifying the key for a given pair of hosts.
compartment_id
(required) The OCID of the compartment containing the TSIG key.
secret
(required) A base64 string encoding the binary shared secret.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_DNS_CREATE_VIEW_DETAILS_T Type 🔗
The body for defining a new view. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_view_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_view_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_view_details_t (
compartment_id varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the owning compartment.
display_name
(optional) The display name of the view.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_DNS_EXTERNAL_MASTER_T Type 🔗
An external master name server used as the source of zone data.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_external_master_t FORCE AUTHID CURRENT_USER IS OBJECT (
address varchar2(32767),
port number,
tsig_key_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_external_master_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_external_master_t (
address varchar2,
port number,
tsig_key_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
address
(required) The server's IP address (IPv4 or IPv6).
port
(optional) The server's port. Port value must be a value of 53, otherwise omit the port value.
tsig_key_id
(optional) The OCID of the TSIG key.
DBMS_CLOUD_OCI_DNS_EXTERNAL_DOWNSTREAM_T Type 🔗
External downstream nameserver for the zone. This field is currently not supported when `zoneType` is `SECONDARY` or `scope` is `PRIVATE`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_external_downstream_t FORCE AUTHID CURRENT_USER IS OBJECT (
address varchar2(32767),
port number,
tsig_key_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_external_downstream_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_external_downstream_t (
address varchar2,
port number,
tsig_key_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
address
(required) The server's IP address (IPv4 or IPv6).
port
(optional) The server's port. Port value must be a value of 53, otherwise omit the port value.
tsig_key_id
(optional) The OCID of the TSIG key. A TSIG key is used to secure DNS messages (in this case, zone transfers) between two systems that both have the (shared) secret.
DBMS_CLOUD_OCI_DNS_EXTERNAL_MASTER_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_external_master_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_external_master_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_external_master_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_EXTERNAL_DOWNSTREAM_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_external_downstream_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_external_downstream_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_external_downstream_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_CREATE_ZONE_DETAILS_T Type 🔗
The body for defining a new zone. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_create_zone_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_create_zone_base_details_t (
zone_type varchar2(32767),
view_id varchar2(32767),
scope varchar2(32767),
external_masters dbms_cloud_oci_dns_external_master_tbl,
external_downstreams dbms_cloud_oci_dns_external_downstream_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_zone_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_create_zone_details_t (
migration_source varchar2,
name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
zone_type varchar2,
view_id varchar2,
scope varchar2,
external_masters dbms_cloud_oci_dns_external_master_tbl,
external_downstreams dbms_cloud_oci_dns_external_downstream_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_create_zone_details_t is a subtype of the dbms_cloud_oci_dns_create_zone_base_details_t type.
Fields
Field
Description
zone_type
(optional) The type of the zone. Must be either `PRIMARY` or `SECONDARY`. `SECONDARY` is only supported for GLOBAL zones.
Allowed values are: 'PRIMARY', 'SECONDARY'
view_id
(optional) This value will be null for zones in the global DNS.
scope
(optional) The scope of the zone.
Allowed values are: 'GLOBAL', 'PRIVATE'
external_masters
(optional) External master servers for the zone. `externalMasters` becomes a required parameter when the `zoneType` value is `SECONDARY`.
external_downstreams
(optional) External secondary servers for the zone. This field is currently not supported when `zoneType` is `SECONDARY` or `scope` is `PRIVATE`.
DBMS_CLOUD_OCI_DNS_ERROR_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing. See API Errors.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_DNS_MIGRATION_REPLACEMENT_T Type 🔗
A record to add to a zone in replacement of contents that cannot be migrated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_migration_replacement_t FORCE AUTHID CURRENT_USER IS OBJECT (
rtype varchar2(32767),
substitute_rtype varchar2(32767),
ttl number,
rdata varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_migration_replacement_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_migration_replacement_t (
rtype varchar2,
substitute_rtype varchar2,
ttl number,
rdata varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
rtype
(required) The type of DNS record, such as A or CNAME. For more information, see Resource Record (RR) TYPEs.
substitute_rtype
(optional) The canonical name for a substitute type of the replacement record to be used if the specified `rtype` is not allowed at the domain. The specified `ttl` and `rdata` will still apply with the substitute type.
ttl
(required) The Time To Live of the replacement record, in seconds.
rdata
(required) The record data of the replacement record, as whitespace-delimited tokens in type-specific presentation format.
DBMS_CLOUD_OCI_DNS_NAMESERVER_T Type 🔗
A server that has been set up to answer DNS queries for a zone.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_nameserver_t FORCE AUTHID CURRENT_USER IS OBJECT (
hostname varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_nameserver_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_nameserver_t (
hostname varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
hostname
(required) The hostname of the nameserver.
DBMS_CLOUD_OCI_DNS_RECORD_OPERATION_T Type 🔗
An extension of the existing record resource, describing either a precondition, an add, or a remove. Preconditions check all fields, including read-only data like `recordHash` and `rrsetVersion`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_record_operation_t FORCE AUTHID CURRENT_USER IS OBJECT (
domain varchar2(32767),
record_hash varchar2(32767),
is_protected number,
rdata varchar2(32767),
rrset_version varchar2(32767),
rtype varchar2(32767),
ttl number,
operation varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_operation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_operation_t (
domain varchar2,
record_hash varchar2,
is_protected number,
rdata varchar2,
rrset_version varchar2,
rtype varchar2,
ttl number,
operation varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
domain
(optional) The fully qualified domain name where the record can be located.
record_hash
(optional) A unique identifier for the record within its zone.
is_protected
(optional) A Boolean flag indicating whether or not parts of the record are unable to be explicitly managed.
rdata
(optional) The record's data, as whitespace-delimited tokens in type-specific presentation format. All RDATA is normalized and the returned presentation of your RDATA may differ from its initial input. For more information about RDATA, see Supported DNS Resource Record Types
rrset_version
(optional) The latest version of the record's zone in which its RRSet differs from the preceding version.
rtype
(optional) The type of DNS record, such as A or CNAME. For more information, see Resource Record (RR) TYPEs.
ttl
(optional) The Time To Live for the record, in seconds. Using a TTL lower than 30 seconds is not recommended.
operation
(optional) A description of how a record relates to a PATCH operation. - `REQUIRE` indicates a precondition that record data **must** already exist. - `PROHIBIT` indicates a precondition that record data **must not** already exist. - `ADD` indicates that record data **must** exist after successful application. - `REMOVE` indicates that record data **must not** exist after successful application. **Note:** `ADD` and `REMOVE` operations can succeed even if they require no changes when applied, such as when the described records are already present or absent. **Note:** `ADD` and `REMOVE` operations can describe changes for more than one record. **Example:** `{ \"domain\": \"www.example.com\", \"rtype\": \"AAAA\", \"ttl\": 60 }` specifies a new TTL for every record in the www.example.com AAAA RRSet.
Nested table type of dbms_cloud_oci_dns_record_operation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_record_operation_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_record_operation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_PATCH_DOMAIN_RECORDS_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_patch_domain_records_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_operation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_patch_domain_records_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_patch_domain_records_details_t (
items dbms_cloud_oci_dns_record_operation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(optional)
DBMS_CLOUD_OCI_DNS_PATCH_RR_SET_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_patch_rr_set_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_operation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_patch_rr_set_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_patch_rr_set_details_t (
items dbms_cloud_oci_dns_record_operation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(optional)
DBMS_CLOUD_OCI_DNS_PATCH_ZONE_RECORDS_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_patch_zone_records_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_operation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_patch_zone_records_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_patch_zone_records_details_t (
items dbms_cloud_oci_dns_record_operation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_record_t FORCE AUTHID CURRENT_USER IS OBJECT (
domain varchar2(32767),
record_hash varchar2(32767),
is_protected number,
rdata varchar2(32767),
rrset_version varchar2(32767),
rtype varchar2(32767),
ttl number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_t (
domain varchar2,
record_hash varchar2,
is_protected number,
rdata varchar2,
rrset_version varchar2,
rtype varchar2,
ttl number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
domain
(optional) The fully qualified domain name where the record can be located.
record_hash
(optional) A unique identifier for the record within its zone.
is_protected
(optional) A Boolean flag indicating whether or not parts of the record are unable to be explicitly managed.
rdata
(optional) The record's data, as whitespace-delimited tokens in type-specific presentation format. All RDATA is normalized and the returned presentation of your RDATA may differ from its initial input. For more information about RDATA, see Supported DNS Resource Record Types
rrset_version
(optional) The latest version of the record's zone in which its RRSet differs from the preceding version.
rtype
(optional) The type of DNS record, such as A or CNAME. For more information, see Resource Record (RR) TYPEs.
ttl
(optional) The Time To Live for the record, in seconds. Using a TTL lower than 30 seconds is not recommended.
DBMS_CLOUD_OCI_DNS_RECORD_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_record_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_record_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_record_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_RR_SET_T Type 🔗
A collection of DNS records of the same domain and type. For more information about record types, see Resource Record (RR) TYPEs.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_rr_set_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_rr_set_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_rr_set_t (
items dbms_cloud_oci_dns_record_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required)
DBMS_CLOUD_OCI_DNS_RECORD_COLLECTION_T Type 🔗
A collection of DNS resource records.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_record_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_collection_t (
items dbms_cloud_oci_dns_record_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required)
DBMS_CLOUD_OCI_DNS_RECORD_DETAILS_T Type 🔗
A DNS resource record. For more information about records, see RFC 1034.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_record_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
domain varchar2(32767),
record_hash varchar2(32767),
is_protected number,
rdata varchar2(32767),
rrset_version varchar2(32767),
rtype varchar2(32767),
ttl number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_record_details_t (
domain varchar2,
record_hash varchar2,
is_protected number,
rdata varchar2,
rrset_version varchar2,
rtype varchar2,
ttl number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
domain
(required) The fully qualified domain name where the record can be located.
record_hash
(optional) A unique identifier for the record within its zone.
is_protected
(optional) A Boolean flag indicating whether or not parts of the record are unable to be explicitly managed.
rdata
(required) The record's data, as whitespace-delimited tokens in type-specific presentation format. All RDATA is normalized and the returned presentation of your RDATA may differ from its initial input. For more information about RDATA, see Supported DNS Resource Record Types
rrset_version
(optional) The latest version of the record's zone in which its RRSet differs from the preceding version.
rtype
(required) The type of DNS record, such as A or CNAME. For more information, see Resource Record (RR) TYPEs.
ttl
(required) The Time To Live for the record, in seconds. Using a TTL lower than 30 seconds is not recommended.
DBMS_CLOUD_OCI_DNS_RESOLVER_ENDPOINT_SUMMARY_T Type 🔗
An OCI DNS resolver endpoint. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
endpoint_type varchar2(32767),
forwarding_address varchar2(32767),
is_forwarding number,
is_listening number,
listening_address varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
l_self varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_endpoint_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_endpoint_summary_t (
name varchar2,
endpoint_type varchar2,
forwarding_address varchar2,
is_forwarding number,
is_listening number,
listening_address varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
l_self varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
name
(required) The name of the resolver endpoint. Must be unique, case-insensitive, within the resolver.
endpoint_type
(optional) The type of resolver endpoint. VNIC is currently the only supported type.
Allowed values are: 'VNIC'
forwarding_address
(optional) An IP address from which forwarded queries may be sent. For VNIC endpoints, this IP address must be part of the subnet and will be assigned by the system if unspecified when isForwarding is true.
is_forwarding
(required) A Boolean flag indicating whether or not the resolver endpoint is for forwarding.
is_listening
(required) A Boolean flag indicating whether or not the resolver endpoint is for listening.
listening_address
(optional) An IP address to listen to queries on. For VNIC endpoints this IP address must be part of the subnet and will be assigned by the system if unspecified when isListening is true.
compartment_id
(required) The OCID of the owning compartment. This will match the resolver that the resolver endpoint is under and will be updated if the resolver's compartment is changed.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
time_updated
(required) The date and time the resource was last updated in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
(required) The canonical absolute URL of the resource.
DBMS_CLOUD_OCI_DNS_RESOLVER_RULE_T Type 🔗
A rule for a resolver. Specifying both qnameCoverConditions and clientAddressConditions is not allowed. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
client_address_conditions dbms_cloud_oci_dns_varchar2_tbl,
qname_cover_conditions dbms_cloud_oci_dns_varchar2_tbl,
action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_rule_t (
client_address_conditions dbms_cloud_oci_dns_varchar2_tbl,
qname_cover_conditions dbms_cloud_oci_dns_varchar2_tbl,
action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
client_address_conditions
(required) A list of CIDR blocks. The query must come from a client within one of the blocks in order for the rule action to apply.
qname_cover_conditions
(required) A list of domain names. The query must be covered by one of the domains in order for the rule action to apply.
action
(required) The action determines the behavior of the rule. If a query matches a supplied condition, the action will apply. If there are no conditions on the rule, all queries are subject to the specified action. * `FORWARD` - Matching requests will be forwarded from the source interface to the destination address.
Allowed values are: 'FORWARD'
DBMS_CLOUD_OCI_DNS_RESOLVER_ENDPOINT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_resolver_endpoint_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_resolver_endpoint_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_ATTACHED_VIEW_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_attached_view_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_attached_view_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_attached_view_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_RESOLVER_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_resolver_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_resolver_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_RESOLVER_T Type 🔗
An OCI DNS resolver. If the resolver has an attached VCN, the VCN will attempt to answer queries based on the attached views in priority order. If the query does not match any of the attached views, the query will be evaluated against the default view. If the default view does not match, the rules will be evaluated in priority order. If no rules match the query, answers come from Internet DNS. A resolver may have a maximum of 10 resolver endpoints. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
attached_vcn_id varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
l_self varchar2(32767),
default_view_id varchar2(32767),
is_protected number,
endpoints dbms_cloud_oci_dns_resolver_endpoint_summary_tbl,
attached_views dbms_cloud_oci_dns_attached_view_tbl,
rules dbms_cloud_oci_dns_resolver_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_t (
compartment_id varchar2,
attached_vcn_id varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
l_self varchar2,
default_view_id varchar2,
is_protected number,
endpoints dbms_cloud_oci_dns_resolver_endpoint_summary_tbl,
attached_views dbms_cloud_oci_dns_attached_view_tbl,
rules dbms_cloud_oci_dns_resolver_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the owning compartment.
attached_vcn_id
(optional) The OCID of the attached VCN.
display_name
(required) The display name of the resolver.
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
id
(required) The OCID of the resolver.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
time_updated
(required) The date and time the resource was last updated in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
(required) The canonical absolute URL of the resource.
default_view_id
(optional) The OCID of the default view.
is_protected
(required) A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
endpoints
(required) Read-only array of endpoints for the resolver.
attached_views
(required) The attached views. Views are evaluated in order.
rules
(optional) Rules for the resolver. Rules are evaluated in order.
DBMS_CLOUD_OCI_DNS_RESOLVER_ENDPOINT_T Type 🔗
An OCI DNS resolver endpoint. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
endpoint_type varchar2(32767),
forwarding_address varchar2(32767),
is_forwarding number,
is_listening number,
listening_address varchar2(32767),
compartment_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
l_self varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_endpoint_t (
name varchar2,
endpoint_type varchar2,
forwarding_address varchar2,
is_forwarding number,
is_listening number,
listening_address varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
l_self varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
name
(required) The name of the resolver endpoint. Must be unique, case-insensitive, within the resolver.
endpoint_type
(optional) The type of resolver endpoint. VNIC is currently the only supported type.
Allowed values are: 'VNIC'
forwarding_address
(optional) An IP address from which forwarded queries may be sent. For VNIC endpoints, this IP address must be part of the subnet and will be assigned by the system if unspecified when isForwarding is true.
is_forwarding
(required) A Boolean flag indicating whether or not the resolver endpoint is for forwarding.
is_listening
(required) A Boolean flag indicating whether or not the resolver endpoint is for listening.
listening_address
(optional) An IP address to listen to queries on. For VNIC endpoints this IP address must be part of the subnet and will be assigned by the system if unspecified when isListening is true.
compartment_id
(required) The OCID of the owning compartment. This will match the resolver that the resolver endpoint is under and will be updated if the resolver's compartment is changed.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
time_updated
(required) The date and time the resource was last updated in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
(required) The canonical absolute URL of the resource.
DBMS_CLOUD_OCI_DNS_RESOLVER_FORWARD_RULE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_forward_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_resolver_rule_t (
destination_addresses dbms_cloud_oci_dns_varchar2_tbl,
source_endpoint_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_forward_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_forward_rule_t (
client_address_conditions dbms_cloud_oci_dns_varchar2_tbl,
qname_cover_conditions dbms_cloud_oci_dns_varchar2_tbl,
action varchar2,
destination_addresses dbms_cloud_oci_dns_varchar2_tbl,
source_endpoint_name varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_resolver_forward_rule_t is a subtype of the dbms_cloud_oci_dns_resolver_rule_t type.
Fields
Field
Description
destination_addresses
(required) IP addresses to which queries should be forwarded. Currently limited to a single address.
source_endpoint_name
(optional) Case-insensitive name of an endpoint, that is a sub-resource of the resolver, to use as the forwarding interface. The endpoint must have isForwarding set to true.
DBMS_CLOUD_OCI_DNS_RESOLVER_RULE_DETAILS_T Type 🔗
A rule for a resolver. Specifying both qnameCoverConditions and clientAddressConditions is not allowed. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
client_address_conditions dbms_cloud_oci_dns_varchar2_tbl,
qname_cover_conditions dbms_cloud_oci_dns_varchar2_tbl,
action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_rule_details_t (
client_address_conditions dbms_cloud_oci_dns_varchar2_tbl,
qname_cover_conditions dbms_cloud_oci_dns_varchar2_tbl,
action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
client_address_conditions
(optional) A list of CIDR blocks. The query must come from a client within one of the blocks in order for the rule action to apply.
qname_cover_conditions
(optional) A list of domain names. The query must be covered by one of the domains in order for the rule action to apply.
action
(required) The action determines the behavior of the rule. If a query matches a supplied condition, the action will apply. If there are no conditions on the rule, all queries are subject to the specified action. * `FORWARD` - Matching requests will be forwarded from the source interface to the destination address.
Allowed values are: 'FORWARD'
DBMS_CLOUD_OCI_DNS_RESOLVER_FORWARD_RULE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_forward_rule_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_resolver_rule_details_t (
destination_addresses dbms_cloud_oci_dns_varchar2_tbl,
source_endpoint_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_forward_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_forward_rule_details_t (
client_address_conditions dbms_cloud_oci_dns_varchar2_tbl,
qname_cover_conditions dbms_cloud_oci_dns_varchar2_tbl,
action varchar2,
destination_addresses dbms_cloud_oci_dns_varchar2_tbl,
source_endpoint_name varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_resolver_forward_rule_details_t is a subtype of the dbms_cloud_oci_dns_resolver_rule_details_t type.
Fields
Field
Description
destination_addresses
(required) IP addresses to which queries should be forwarded. Currently limited to a single address.
source_endpoint_name
(required) Case-insensitive name of an endpoint, that is a sub-resource of the resolver, to use as the forwarding interface. The endpoint must have isForwarding set to true.
DBMS_CLOUD_OCI_DNS_RESOLVER_SUMMARY_T Type 🔗
An OCI DNS resolver. If the resolver has an attached VCN, the VCN will attempt to answer queries based on the attached views in priority order. If the query does not match any of the attached views, the query will be evaluated against the default view. If the default view does not match, the rules will be evaluated in priority order. If no rules match the query, answers come from Internet DNS. A resolver may have a maximum of 10 resolver endpoints. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
attached_vcn_id varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
l_self varchar2(32767),
default_view_id varchar2(32767),
is_protected number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_summary_t (
compartment_id varchar2,
attached_vcn_id varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
l_self varchar2,
default_view_id varchar2,
is_protected number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the owning compartment.
attached_vcn_id
(optional) The OCID of the attached VCN.
display_name
(required) The display name of the resolver.
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
id
(required) The OCID of the resolver.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
time_updated
(required) The date and time the resource was last updated in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
(required) The canonical absolute URL of the resource.
default_view_id
(optional) The OCID of the default view.
is_protected
(required) A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
DBMS_CLOUD_OCI_DNS_RESOLVER_VNIC_ENDPOINT_T Type 🔗
An OCI DNS resolver VNIC endpoint. A VNIC is created for each ResolverVnicEndpoint. VCNs and subnets cannot be deleted while ResolverVnicEndpoints exist in them due to the VNIC. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_vnic_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_resolver_endpoint_t (
subnet_id varchar2(32767),
nsg_ids dbms_cloud_oci_dns_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_vnic_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_vnic_endpoint_t (
name varchar2,
endpoint_type varchar2,
forwarding_address varchar2,
is_forwarding number,
is_listening number,
listening_address varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
l_self varchar2,
subnet_id varchar2,
nsg_ids dbms_cloud_oci_dns_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_resolver_vnic_endpoint_t is a subtype of the dbms_cloud_oci_dns_resolver_endpoint_t type.
Fields
Field
Description
subnet_id
(optional) The OCID of a subnet. Must be part of the VCN that the resolver is attached to.
nsg_ids
(optional) An array of network security group OCIDs for the resolver endpoint. These must be part of the VCN that the resolver endpoint is a part of.
DBMS_CLOUD_OCI_DNS_RESOLVER_VNIC_ENDPOINT_SUMMARY_T Type 🔗
An OCI DNS resolver VNIC endpoint. A VNIC is created for each ResolverVnicEndpoint. VCNs and subnets cannot be deleted while ResolverVnicEndpoints exist in them due to the VNIC. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_vnic_endpoint_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_resolver_endpoint_summary_t (
subnet_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_vnic_endpoint_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_resolver_vnic_endpoint_summary_t (
name varchar2,
endpoint_type varchar2,
forwarding_address varchar2,
is_forwarding number,
is_listening number,
listening_address varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
l_self varchar2,
subnet_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_resolver_vnic_endpoint_summary_t is a subtype of the dbms_cloud_oci_dns_resolver_endpoint_summary_t type.
Fields
Field
Description
subnet_id
(required) The OCID of a subnet. Must be part of the VCN that the resolver is attached to.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_T Type 🔗
A DNS steering policy. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
ttl number,
health_check_monitor_id varchar2(32767),
template varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
answers dbms_cloud_oci_dns_steering_policy_answer_tbl,
rules dbms_cloud_oci_dns_steering_policy_rule_tbl,
l_self varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_t (
compartment_id varchar2,
display_name varchar2,
ttl number,
health_check_monitor_id varchar2,
template varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
answers dbms_cloud_oci_dns_steering_policy_answer_tbl,
rules dbms_cloud_oci_dns_steering_policy_rule_tbl,
l_self varchar2,
id varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the steering policy.
display_name
(required) A user-friendly name for the steering policy. Does not have to be unique and can be changed. Avoid entering confidential information.
ttl
(required) The Time To Live (TTL) for responses from the steering policy, in seconds. If not specified during creation, a value of 30 seconds will be used.
health_check_monitor_id
(optional) The OCID of the health check monitor providing health data about the answers of the steering policy. A steering policy answer with `rdata` matching a monitored endpoint will use the health data of that endpoint. A steering policy answer with `rdata` not matching any monitored endpoint will be assumed healthy. **Note:** To use the Health Check monitoring feature in a steering policy, a monitor must be created using the Health Checks service first. For more information on how to create a monitor, please see Managing Health Checks.
template
(required) A set of predefined rules based on the desired purpose of the steering policy. Each template utilizes Traffic Management's rules in a different order to produce the desired results when answering DNS queries. **Example:** The `FAILOVER` template determines answers by filtering the policy's answers using the `FILTER` rule first, then the following rules in succession: `HEALTH`, `PRIORITY`, and `LIMIT`. This gives the domain dynamic failover capability. It is **strongly recommended** to use a template other than `CUSTOM` when creating a steering policy. All templates require the rule order to begin with an unconditional `FILTER` rule that keeps answers contingent upon `answer.isDisabled != true`, except for `CUSTOM`. A defined `HEALTH` rule must follow the `FILTER` rule if the policy references a `healthCheckMonitorId`. The last rule of a template must must be a `LIMIT` rule. For more information about templates and code examples, see Traffic Management API Guide. **Template Types** * `FAILOVER` - Uses health check information on your endpoints to determine which DNS answers to serve. If an endpoint fails a health check, the answer for that endpoint will be removed from the list of available answers until the endpoint is detected as healthy. * `LOAD_BALANCE` - Distributes web traffic to specified endpoints based on defined weights. * `ROUTE_BY_GEO` - Answers DNS queries based on the query's geographic location. For a list of geographic locations to route by, see Traffic Management Geographic Locations. * `ROUTE_BY_ASN` - Answers DNS queries based on the query's originating ASN. * `ROUTE_BY_IP` - Answers DNS queries based on the query's IP address. * `CUSTOM` - Allows a customized configuration of rules.
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
answers
(required) The set of all answers that can potentially issue from the steering policy.
rules
(required) The series of rules that will be processed in sequence to reduce the pool of answers to a response for any given request. The first rule receives a shuffled list of all answers, and every other rule receives the list of answers emitted by the one preceding it. The last rule populates the response.
l_self
(required) The canonical absolute URL of the resource.
id
(required) The OCID of the resource.
time_created
(required) The date and time the resource was created, expressed in RFC 3339 timestamp format. **Example:** `2016-07-22T17:23:59:60Z`
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_ATTACHMENT_T Type 🔗
An attachment between a steering policy and a domain. An attachment constructs DNS responses using its steering policy instead of the records at its defined domain. Only records of the policy's covered rtype are blocked at the domain. A domain can have a maximum of one attachment covering any given rtype. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_attachment_t FORCE AUTHID CURRENT_USER IS OBJECT (
steering_policy_id varchar2(32767),
zone_id varchar2(32767),
domain_name varchar2(32767),
display_name varchar2(32767),
rtypes dbms_cloud_oci_dns_varchar2_tbl,
compartment_id varchar2(32767),
l_self varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_attachment_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_attachment_t (
steering_policy_id varchar2,
zone_id varchar2,
domain_name varchar2,
display_name varchar2,
rtypes dbms_cloud_oci_dns_varchar2_tbl,
compartment_id varchar2,
l_self varchar2,
id varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
steering_policy_id
(required) The OCID of the attached steering policy.
zone_id
(required) The OCID of the attached zone.
domain_name
(required) The attached domain within the attached zone.
display_name
(required) A user-friendly name for the steering policy attachment. Does not have to be unique and can be changed. Avoid entering confidential information.
rtypes
(required) The record types covered by the attachment at the domain. The set of record types is determined by aggregating the record types from the answers defined in the steering policy.
compartment_id
(required) The OCID of the compartment containing the steering policy attachment.
l_self
(required) The canonical absolute URL of the resource.
id
(required) The OCID of the resource.
time_created
(required) The date and time the resource was created, expressed in RFC 3339 timestamp format. **Example:** `2016-07-22T17:23:59:60Z`
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_ATTACHMENT_SUMMARY_T Type 🔗
An attachment between a steering policy and a domain.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_attachment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
steering_policy_id varchar2(32767),
zone_id varchar2(32767),
domain_name varchar2(32767),
display_name varchar2(32767),
rtypes dbms_cloud_oci_dns_varchar2_tbl,
compartment_id varchar2(32767),
l_self varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_attachment_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_attachment_summary_t (
steering_policy_id varchar2,
zone_id varchar2,
domain_name varchar2,
display_name varchar2,
rtypes dbms_cloud_oci_dns_varchar2_tbl,
compartment_id varchar2,
l_self varchar2,
id varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
steering_policy_id
(required) The OCID of the attached steering policy.
zone_id
(required) The OCID of the attached zone.
domain_name
(required) The attached domain within the attached zone.
display_name
(required) A user-friendly name for the steering policy attachment. Does not have to be unique and can be changed. Avoid entering confidential information.
rtypes
(required) The record types covered by the attachment at the domain. The set of record types is determined by aggregating the record types from the answers defined in the steering policy.
compartment_id
(required) The OCID of the compartment containing the steering policy attachment.
l_self
(required) The canonical absolute URL of the resource.
id
(required) The OCID of the resource.
time_created
(required) The date and time the resource was created, expressed in RFC 3339 timestamp format. **Example:** `2016-07-22T17:23:59:60Z`
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_FILTER_ANSWER_DATA_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_filter_answer_data_t FORCE AUTHID CURRENT_USER IS OBJECT (
answer_condition varchar2(32767),
should_keep number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_filter_answer_data_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_filter_answer_data_t (
answer_condition varchar2,
should_keep number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
answer_condition
(optional) An expression that is used to select a set of answers that match a condition. For example, answers with matching pool properties.
should_keep
(optional) Keeps the answer only if the value is `true`.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_FILTER_ANSWER_DATA_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_filter_answer_data_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_filter_answer_data_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_filter_answer_data_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_FILTER_RULE_CASE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_filter_rule_case_t FORCE AUTHID CURRENT_USER IS OBJECT (
case_condition varchar2(32767),
answer_data dbms_cloud_oci_dns_steering_policy_filter_answer_data_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_filter_rule_case_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_filter_rule_case_t (
case_condition varchar2,
answer_data dbms_cloud_oci_dns_steering_policy_filter_answer_data_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
case_condition
(optional) An expression that uses conditions at the time of a DNS query to indicate whether a case matches. Conditions may include the geographical location, IP subnet, or ASN the DNS query originated. **Example:** If you have an office that uses the subnet `192.0.2.0/24` you could use a `caseCondition` expression `query.client.address in ('192.0.2.0/24')` to define a case that matches queries from that office.
answer_data
(optional) An array of `SteeringPolicyFilterAnswerData` objects.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_FILTER_RULE_CASE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_filter_rule_case_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_filter_rule_case_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_filter_rule_case_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_FILTER_RULE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_filter_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_steering_policy_rule_t (
cases dbms_cloud_oci_dns_steering_policy_filter_rule_case_tbl,
default_answer_data dbms_cloud_oci_dns_steering_policy_filter_answer_data_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_filter_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_filter_rule_t (
description varchar2,
rule_type varchar2,
cases dbms_cloud_oci_dns_steering_policy_filter_rule_case_tbl,
default_answer_data dbms_cloud_oci_dns_steering_policy_filter_answer_data_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_steering_policy_filter_rule_t is a subtype of the dbms_cloud_oci_dns_steering_policy_rule_t type.
Fields
Field
Description
cases
(optional) An array of `caseConditions`. A rule may optionally include a sequence of cases defining alternate configurations for how it should behave during processing for any given DNS query. When a rule has no sequence of `cases`, it is always evaluated with the same configuration during processing. When a rule has an empty sequence of `cases`, it is always ignored during processing. When a rule has a non-empty sequence of `cases`, its behavior during processing is configured by the first matching `case` in the sequence. When a rule has no matching cases the rule is ignored. A rule case with no `caseCondition` always matches. A rule case with a `caseCondition` matches only when that expression evaluates to true for the given query.
default_answer_data
(optional) Defines a default set of answer conditions and values that are applied to an answer when `cases` is not defined for the rule, or a matching case does not have any matching `answerCondition`s in its `answerData`. `defaultAnswerData` is not applied if `cases` is defined and there are no matching cases. In this scenario, the next rule will be processed.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_HEALTH_RULE_CASE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_health_rule_case_t FORCE AUTHID CURRENT_USER IS OBJECT (
case_condition varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_health_rule_case_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_health_rule_case_t (
case_condition varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
case_condition
(optional) An expression that uses conditions at the time of a DNS query to indicate whether a case matches. Conditions may include the geographical location, IP subnet, or ASN the DNS query originated. **Example:** If you have an office that uses the subnet `192.0.2.0/24` you could use a `caseCondition` expression `query.client.address in ('192.0.2.0/24')` to define a case that matches queries from that office.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_HEALTH_RULE_CASE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_health_rule_case_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_health_rule_case_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_health_rule_case_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_HEALTH_RULE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_health_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_steering_policy_rule_t (
cases dbms_cloud_oci_dns_steering_policy_health_rule_case_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_health_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_health_rule_t (
description varchar2,
rule_type varchar2,
cases dbms_cloud_oci_dns_steering_policy_health_rule_case_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_steering_policy_health_rule_t is a subtype of the dbms_cloud_oci_dns_steering_policy_rule_t type.
Fields
Field
Description
cases
(optional) An array of `caseConditions`. A rule may optionally include a sequence of cases defining alternate configurations for how it should behave during processing for any given DNS query. When a rule has no sequence of `cases`, it is always evaluated with the same configuration during processing. When a rule has an empty sequence of `cases`, it is always ignored during processing. When a rule has a non-empty sequence of `cases`, its behavior during processing is configured by the first matching `case` in the sequence. When a rule has no matching cases the rule is ignored. A rule case with no `caseCondition` always matches. A rule case with a `caseCondition` matches only when that expression evaluates to true for the given query.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_LIMIT_RULE_CASE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_limit_rule_case_t FORCE AUTHID CURRENT_USER IS OBJECT (
case_condition varchar2(32767),
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_limit_rule_case_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_limit_rule_case_t (
case_condition varchar2,
l_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
case_condition
(optional) An expression that uses conditions at the time of a DNS query to indicate whether a case matches. Conditions may include the geographical location, IP subnet, or ASN the DNS query originated. **Example:** If you have an office that uses the subnet `192.0.2.0/24` you could use a `caseCondition` expression `query.client.address in ('192.0.2.0/24')` to define a case that matches queries from that office.
l_count
(required) The number of answers allowed to remain after the limit rule has been processed, keeping only the first of the remaining answers in the list. Example: If the `count` property is set to `2` and four answers remain before the limit rule is processed, only the first two answers in the list will remain after the limit rule has been processed.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_LIMIT_RULE_CASE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_limit_rule_case_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_limit_rule_case_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_limit_rule_case_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_LIMIT_RULE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_limit_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_steering_policy_rule_t (
cases dbms_cloud_oci_dns_steering_policy_limit_rule_case_tbl,
default_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_limit_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_limit_rule_t (
description varchar2,
rule_type varchar2,
cases dbms_cloud_oci_dns_steering_policy_limit_rule_case_tbl,
default_count number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_steering_policy_limit_rule_t is a subtype of the dbms_cloud_oci_dns_steering_policy_rule_t type.
Fields
Field
Description
cases
(optional) An array of `caseConditions`. A rule may optionally include a sequence of cases defining alternate configurations for how it should behave during processing for any given DNS query. When a rule has no sequence of `cases`, it is always evaluated with the same configuration during processing. When a rule has an empty sequence of `cases`, it is always ignored during processing. When a rule has a non-empty sequence of `cases`, its behavior during processing is configured by the first matching `case` in the sequence. When a rule has no matching cases the rule is ignored. A rule case with no `caseCondition` always matches. A rule case with a `caseCondition` matches only when that expression evaluates to true for the given query.
default_count
(optional) Defines a default count if `cases` is not defined for the rule or a matching case does not define `count`. `defaultCount` is **not** applied if `cases` is defined and there are no matching cases. In this scenario, the next rule will be processed. If no rules remain to be processed, the answer will be chosen from the remaining list of answers.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_PRIORITY_ANSWER_DATA_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_priority_answer_data_t FORCE AUTHID CURRENT_USER IS OBJECT (
answer_condition varchar2(32767),
value number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_priority_answer_data_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_priority_answer_data_t (
answer_condition varchar2,
value number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
answer_condition
(optional) An expression that is used to select a set of answers that match a condition. For example, answers with matching pool properties.
value
(required) The rank assigned to the set of answers that match the expression in `answerCondition`. Answers with the lowest values move to the beginning of the list without changing the relative order of those with the same value. Answers can be given a value between `0` and `255`.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_PRIORITY_ANSWER_DATA_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_priority_answer_data_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_priority_answer_data_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_priority_answer_data_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_PRIORITY_RULE_CASE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_priority_rule_case_t FORCE AUTHID CURRENT_USER IS OBJECT (
case_condition varchar2(32767),
answer_data dbms_cloud_oci_dns_steering_policy_priority_answer_data_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_priority_rule_case_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_priority_rule_case_t (
case_condition varchar2,
answer_data dbms_cloud_oci_dns_steering_policy_priority_answer_data_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
case_condition
(optional) An expression that uses conditions at the time of a DNS query to indicate whether a case matches. Conditions may include the geographical location, IP subnet, or ASN the DNS query originated. **Example:** If you have an office that uses the subnet `192.0.2.0/24` you could use a `caseCondition` expression `query.client.address in ('192.0.2.0/24')` to define a case that matches queries from that office.
answer_data
(optional) An array of `SteeringPolicyPriorityAnswerData` objects.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_PRIORITY_RULE_CASE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_priority_rule_case_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_priority_rule_case_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_priority_rule_case_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_PRIORITY_RULE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_priority_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_steering_policy_rule_t (
cases dbms_cloud_oci_dns_steering_policy_priority_rule_case_tbl,
default_answer_data dbms_cloud_oci_dns_steering_policy_priority_answer_data_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_priority_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_priority_rule_t (
description varchar2,
rule_type varchar2,
cases dbms_cloud_oci_dns_steering_policy_priority_rule_case_tbl,
default_answer_data dbms_cloud_oci_dns_steering_policy_priority_answer_data_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_steering_policy_priority_rule_t is a subtype of the dbms_cloud_oci_dns_steering_policy_rule_t type.
Fields
Field
Description
cases
(optional) An array of `caseConditions`. A rule may optionally include a sequence of cases defining alternate configurations for how it should behave during processing for any given DNS query. When a rule has no sequence of `cases`, it is always evaluated with the same configuration during processing. When a rule has an empty sequence of `cases`, it is always ignored during processing. When a rule has a non-empty sequence of `cases`, its behavior during processing is configured by the first matching `case` in the sequence. When a rule has no matching cases the rule is ignored. A rule case with no `caseCondition` always matches. A rule case with a `caseCondition` matches only when that expression evaluates to true for the given query.
default_answer_data
(optional) Defines a default set of answer conditions and values that are applied to an answer when `cases` is not defined for the rule or a matching case does not have any matching `answerCondition`s in its `answerData`. `defaultAnswerData` is not applied if `cases` is defined and there are no matching cases. In this scenario, the next rule will be processed.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_SUMMARY_T Type 🔗
A DNS steering policy. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
ttl number,
health_check_monitor_id varchar2(32767),
template varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
l_self varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_summary_t (
compartment_id varchar2,
display_name varchar2,
ttl number,
health_check_monitor_id varchar2,
template varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
l_self varchar2,
id varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the steering policy.
display_name
(required) A user-friendly name for the steering policy. Does not have to be unique and can be changed. Avoid entering confidential information.
ttl
(required) The Time To Live (TTL) for responses from the steering policy, in seconds. If not specified during creation, a value of 30 seconds will be used.
health_check_monitor_id
(optional) The OCID of the health check monitor providing health data about the answers of the steering policy. A steering policy answer with `rdata` matching a monitored endpoint will use the health data of that endpoint. A steering policy answer with `rdata` not matching any monitored endpoint will be assumed healthy. **Note:** To use the Health Check monitoring feature in a steering policy, a monitor must be created using the Health Checks service first. For more information on how to create a monitor, please see Managing Health Checks.
template
(required) A set of predefined rules based on the desired purpose of the steering policy. Each template utilizes Traffic Management's rules in a different order to produce the desired results when answering DNS queries. **Example:** The `FAILOVER` template determines answers by filtering the policy's answers using the `FILTER` rule first, then the following rules in succession: `HEALTH`, `PRIORITY`, and `LIMIT`. This gives the domain dynamic failover capability. It is **strongly recommended** to use a template other than `CUSTOM` when creating a steering policy. All templates require the rule order to begin with an unconditional `FILTER` rule that keeps answers contingent upon `answer.isDisabled != true`, except for `CUSTOM`. A defined `HEALTH` rule must follow the `FILTER` rule if the policy references a `healthCheckMonitorId`. The last rule of a template must must be a `LIMIT` rule. For more information about templates and code examples, see Traffic Management API Guide. **Template Types** * `FAILOVER` - Uses health check information on your endpoints to determine which DNS answers to serve. If an endpoint fails a health check, the answer for that endpoint will be removed from the list of available answers until the endpoint is detected as healthy. * `LOAD_BALANCE` - Distributes web traffic to specified endpoints based on defined weights. * `ROUTE_BY_GEO` - Answers DNS queries based on the query's geographic location. For a list of geographic locations to route by, see Traffic Management Geographic Locations. * `ROUTE_BY_ASN` - Answers DNS queries based on the query's originating ASN. * `ROUTE_BY_IP` - Answers DNS queries based on the query's IP address. * `CUSTOM` - Allows a customized configuration of rules.
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
l_self
(required) The canonical absolute URL of the resource.
id
(required) The OCID of the resource.
time_created
(required) The date and time the resource was created, expressed in RFC 3339 timestamp format. **Example:** `2016-07-22T17:23:59:60Z`
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_WEIGHTED_ANSWER_DATA_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_weighted_answer_data_t FORCE AUTHID CURRENT_USER IS OBJECT (
answer_condition varchar2(32767),
value number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_weighted_answer_data_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_weighted_answer_data_t (
answer_condition varchar2,
value number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
answer_condition
(optional) An expression that is used to select a set of answers that match a condition. For example, answers with matching pool properties.
value
(required) The weight assigned to the set of selected answers. Answers with a higher weight will be served more frequently. Answers can be given a value between `0` and `255`.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_WEIGHTED_ANSWER_DATA_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_weighted_answer_data_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_weighted_answer_data_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_weighted_answer_data_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_WEIGHTED_RULE_CASE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_weighted_rule_case_t FORCE AUTHID CURRENT_USER IS OBJECT (
case_condition varchar2(32767),
answer_data dbms_cloud_oci_dns_steering_policy_weighted_answer_data_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_weighted_rule_case_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_weighted_rule_case_t (
case_condition varchar2,
answer_data dbms_cloud_oci_dns_steering_policy_weighted_answer_data_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
case_condition
(optional) An expression that uses conditions at the time of a DNS query to indicate whether a case matches. Conditions may include the geographical location, IP subnet, or ASN the DNS query originated. **Example:** If you have an office that uses the subnet `192.0.2.0/24` you could use a `caseCondition` expression `query.client.address in ('192.0.2.0/24')` to define a case that matches queries from that office.
answer_data
(optional) An array of `SteeringPolicyWeightedAnswerData` objects.
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_WEIGHTED_RULE_CASE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_steering_policy_weighted_rule_case_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_weighted_rule_case_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_steering_policy_weighted_rule_case_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_STEERING_POLICY_WEIGHTED_RULE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_steering_policy_weighted_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_steering_policy_rule_t (
cases dbms_cloud_oci_dns_steering_policy_weighted_rule_case_tbl,
default_answer_data dbms_cloud_oci_dns_steering_policy_weighted_answer_data_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_weighted_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_steering_policy_weighted_rule_t (
description varchar2,
rule_type varchar2,
cases dbms_cloud_oci_dns_steering_policy_weighted_rule_case_tbl,
default_answer_data dbms_cloud_oci_dns_steering_policy_weighted_answer_data_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_steering_policy_weighted_rule_t is a subtype of the dbms_cloud_oci_dns_steering_policy_rule_t type.
Fields
Field
Description
cases
(optional) An array of `caseConditions`. A rule may optionally include a sequence of cases defining alternate configurations for how it should behave during processing for any given DNS query. When a rule has no sequence of `cases`, it is always evaluated with the same configuration during processing. When a rule has an empty sequence of `cases`, it is always ignored during processing. When a rule has a non-empty sequence of `cases`, its behavior during processing is configured by the first matching `case` in the sequence. When a rule has no matching cases the rule is ignored. A rule case with no `caseCondition` always matches. A rule case with a `caseCondition` matches only when that expression evaluates to true for the given query.
default_answer_data
(optional) Defines a default set of answer conditions and values that are applied to an answer when `cases` is not defined for the rule or a matching case does not have any matching `answerCondition`s in its `answerData`. `defaultAnswerData` is not applied if `cases` is defined and there are no matching cases. In this scenario, the next rule will be processed.
DBMS_CLOUD_OCI_DNS_TSIG_KEY_T Type 🔗
A TSIG key. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_tsig_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
algorithm varchar2(32767),
name varchar2(32767),
compartment_id varchar2(32767),
secret varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2(32767),
l_self varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_tsig_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_tsig_key_t (
algorithm varchar2,
name varchar2,
compartment_id varchar2,
secret varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2,
l_self varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
algorithm
(required) TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
name
(required) A globally unique domain name identifying the key for a given pair of hosts.
compartment_id
(required) The OCID of the compartment containing the TSIG key.
secret
(required) A base64 string encoding the binary shared secret.
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
id
(required) The OCID of the resource.
l_self
(required) The canonical absolute URL of the resource.
time_created
(required) The date and time the resource was created, expressed in RFC 3339 timestamp format. **Example:** `2016-07-22T17:23:59:60Z`
(optional) The date and time the resource was last updated, expressed in RFC 3339 timestamp format. **Example:** `2016-07-22T17:23:59:60Z`
DBMS_CLOUD_OCI_DNS_TSIG_KEY_SUMMARY_T Type 🔗
A TSIG key.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_tsig_key_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
algorithm varchar2(32767),
name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2(32767),
l_self varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_tsig_key_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_tsig_key_summary_t (
algorithm varchar2,
name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2,
l_self varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
algorithm
(required) TSIG key algorithms are encoded as domain names, but most consist of only one non-empty label, which is not required to be explicitly absolute. Applicable algorithms include: hmac-sha1, hmac-sha224, hmac-sha256, hmac-sha512. For more information on these algorithms, see RFC 4635.
name
(required) A globally unique domain name identifying the key for a given pair of hosts.
compartment_id
(required) The OCID of the compartment containing the TSIG key.
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
id
(required) The OCID of the resource.
l_self
(required) The canonical absolute URL of the resource.
time_created
(required) The date and time the resource was created, expressed in RFC 3339 timestamp format. **Example:** `2016-07-22T17:23:59:60Z`
Nested table type of dbms_cloud_oci_dns_record_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_record_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_record_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_UPDATE_DOMAIN_RECORDS_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_domain_records_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_domain_records_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_domain_records_details_t (
items dbms_cloud_oci_dns_record_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(optional)
DBMS_CLOUD_OCI_DNS_UPDATE_RR_SET_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_rr_set_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_rr_set_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_rr_set_details_t (
items dbms_cloud_oci_dns_record_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(optional)
DBMS_CLOUD_OCI_DNS_ATTACHED_VIEW_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_attached_view_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_attached_view_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_attached_view_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_RESOLVER_RULE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_resolver_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_resolver_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_resolver_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_UPDATE_RESOLVER_DETAILS_T Type 🔗
The body for updating an existing resolver. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_resolver_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
attached_views dbms_cloud_oci_dns_attached_view_details_tbl,
rules dbms_cloud_oci_dns_resolver_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_resolver_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_resolver_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
attached_views dbms_cloud_oci_dns_attached_view_details_tbl,
rules dbms_cloud_oci_dns_resolver_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) The display name of the resolver.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
attached_views
(optional) The attached views. Views are evaluated in order.
rules
(optional) Rules for the resolver. Rules are evaluated in order.
DBMS_CLOUD_OCI_DNS_UPDATE_RESOLVER_ENDPOINT_DETAILS_T Type 🔗
The body for updating an existing resolver endpoint. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_resolver_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
endpoint_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_resolver_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_resolver_endpoint_details_t (
endpoint_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
endpoint_type
(optional) The type of resolver endpoint. VNIC is currently the only supported type.
Allowed values are: 'VNIC'
DBMS_CLOUD_OCI_DNS_UPDATE_RESOLVER_VNIC_ENDPOINT_DETAILS_T Type 🔗
The body for updating an existing resolver VNIC endpoint. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_resolver_vnic_endpoint_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dns_update_resolver_endpoint_details_t (
nsg_ids dbms_cloud_oci_dns_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_resolver_vnic_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_resolver_vnic_endpoint_details_t (
endpoint_type varchar2,
nsg_ids dbms_cloud_oci_dns_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dns_update_resolver_vnic_endpoint_details_t is a subtype of the dbms_cloud_oci_dns_update_resolver_endpoint_details_t type.
Fields
Field
Description
nsg_ids
(optional) An array of network security group OCIDs for the resolver endpoint. These must be part of the VCN that the resolver endpoint is a part of.
DBMS_CLOUD_OCI_DNS_UPDATE_STEERING_POLICY_ATTACHMENT_DETAILS_T Type 🔗
The body for updating a steering policy attachment. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_steering_policy_attachment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_steering_policy_attachment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_steering_policy_attachment_details_t (
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name for the steering policy attachment. Does not have to be unique and can be changed. Avoid entering confidential information.
DBMS_CLOUD_OCI_DNS_UPDATE_STEERING_POLICY_DETAILS_T Type 🔗
The body for updating a steering policy. New rules and answers provided in the request will replace the existing rules and answers in the policy. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_steering_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
ttl number,
health_check_monitor_id varchar2(32767),
template varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
answers dbms_cloud_oci_dns_steering_policy_answer_tbl,
rules dbms_cloud_oci_dns_steering_policy_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_steering_policy_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_steering_policy_details_t (
display_name varchar2,
ttl number,
health_check_monitor_id varchar2,
template varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
answers dbms_cloud_oci_dns_steering_policy_answer_tbl,
rules dbms_cloud_oci_dns_steering_policy_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name for the steering policy. Does not have to be unique and can be changed. Avoid entering confidential information.
ttl
(optional) The Time To Live (TTL) for responses from the steering policy, in seconds. If not specified during creation, a value of 30 seconds will be used.
health_check_monitor_id
(optional) The OCID of the health check monitor providing health data about the answers of the steering policy. A steering policy answer with `rdata` matching a monitored endpoint will use the health data of that endpoint. A steering policy answer with `rdata` not matching any monitored endpoint will be assumed healthy. **Note:** To use the Health Check monitoring feature in a steering policy, a monitor must be created using the Health Checks service first. For more information on how to create a monitor, please see Managing Health Checks.
template
(optional) A set of predefined rules based on the desired purpose of the steering policy. Each template utilizes Traffic Management's rules in a different order to produce the desired results when answering DNS queries. **Example:** The `FAILOVER` template determines answers by filtering the policy's answers using the `FILTER` rule first, then the following rules in succession: `HEALTH`, `PRIORITY`, and `LIMIT`. This gives the domain dynamic failover capability. It is **strongly recommended** to use a template other than `CUSTOM` when creating a steering policy. All templates require the rule order to begin with an unconditional `FILTER` rule that keeps answers contingent upon `answer.isDisabled != true`, except for `CUSTOM`. A defined `HEALTH` rule must follow the `FILTER` rule if the policy references a `healthCheckMonitorId`. The last rule of a template must must be a `LIMIT` rule. For more information about templates and code examples, see Traffic Management API Guide. **Template Types** * `FAILOVER` - Uses health check information on your endpoints to determine which DNS answers to serve. If an endpoint fails a health check, the answer for that endpoint will be removed from the list of available answers until the endpoint is detected as healthy. * `LOAD_BALANCE` - Distributes web traffic to specified endpoints based on defined weights. * `ROUTE_BY_GEO` - Answers DNS queries based on the query's geographic location. For a list of geographic locations to route by, see Traffic Management Geographic Locations. * `ROUTE_BY_ASN` - Answers DNS queries based on the query's originating ASN. * `ROUTE_BY_IP` - Answers DNS queries based on the query's IP address. * `CUSTOM` - Allows a customized configuration of rules.
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
answers
(optional) The set of all answers that can potentially issue from the steering policy.
rules
(optional) The series of rules that will be processed in sequence to reduce the pool of answers to a response for any given request. The first rule receives a shuffled list of all answers, and every other rule receives the list of answers emitted by the one preceding it. The last rule populates the response.
DBMS_CLOUD_OCI_DNS_UPDATE_TSIG_KEY_DETAILS_T Type 🔗
The body for updating a TSIG key. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_tsig_key_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_tsig_key_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_tsig_key_details_t (
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_DNS_UPDATE_VIEW_DETAILS_T Type 🔗
The body for updating an existing view. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_view_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_view_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_view_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) The display name of the view.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_DNS_UPDATE_ZONE_DETAILS_T Type 🔗
The body for updating a zone. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_zone_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
freeform_tags json_element_t,
defined_tags json_element_t,
external_masters dbms_cloud_oci_dns_external_master_tbl,
external_downstreams dbms_cloud_oci_dns_external_downstream_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_zone_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_zone_details_t (
freeform_tags json_element_t,
defined_tags json_element_t,
external_masters dbms_cloud_oci_dns_external_master_tbl,
external_downstreams dbms_cloud_oci_dns_external_downstream_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
external_masters
(optional) External master servers for the zone. `externalMasters` becomes a required parameter when the `zoneType` value is `SECONDARY`.
external_downstreams
(optional) External secondary servers for the zone. This field is currently not supported when `zoneType` is `SECONDARY` or `scope` is `PRIVATE`.
DBMS_CLOUD_OCI_DNS_UPDATE_ZONE_RECORDS_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_update_zone_records_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dns_record_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_zone_records_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_update_zone_records_details_t (
items dbms_cloud_oci_dns_record_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(optional)
DBMS_CLOUD_OCI_DNS_VIEW_T Type 🔗
An OCI DNS view. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_view_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2(32767),
l_self varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
is_protected number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_view_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_view_t (
compartment_id varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2,
l_self varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
is_protected number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the owning compartment.
display_name
(required) The display name of the view.
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
id
(required) The OCID of the view.
l_self
(required) The canonical absolute URL of the resource.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
time_updated
(required) The date and time the resource was last updated in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
(required) A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
DBMS_CLOUD_OCI_DNS_VIEW_SUMMARY_T Type 🔗
An OCI DNS view. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_view_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2(32767),
l_self varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
is_protected number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_view_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_view_summary_t (
compartment_id varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
id varchar2,
l_self varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
is_protected number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the owning compartment.
display_name
(required) The display name of the view.
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
id
(required) The OCID of the view.
l_self
(required) The canonical absolute URL of the resource.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
time_updated
(required) The date and time the resource was last updated in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
(required) A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
DBMS_CLOUD_OCI_DNS_ZONE_TRANSFER_SERVER_T Type 🔗
An OCI nameserver that transfers zone data with external nameservers.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_zone_transfer_server_t FORCE AUTHID CURRENT_USER IS OBJECT (
address varchar2(32767),
port number,
is_transfer_source number,
is_transfer_destination number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_zone_transfer_server_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_zone_transfer_server_t (
address varchar2,
port number,
is_transfer_source number,
is_transfer_destination number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
address
(required) The server's IP address (IPv4 or IPv6).
port
(optional) The server's port.
is_transfer_source
(optional) A Boolean flag indicating whether or not the server is a zone data transfer source.
is_transfer_destination
(optional) A Boolean flag indicating whether or not the server is a zone data transfer destination.
DBMS_CLOUD_OCI_DNS_NAMESERVER_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_nameserver_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_nameserver_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_nameserver_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_ZONE_TRANSFER_SERVER_TBL Type 🔗
Nested table type of dbms_cloud_oci_dns_zone_transfer_server_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_zone_transfer_server_tbl FORCE IS TABLE OF (dbms_cloud_oci_dns_zone_transfer_server_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DNS_ZONE_T Type 🔗
A DNS zone. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_zone_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
zone_type varchar2(32767),
compartment_id varchar2(32767),
view_id varchar2(32767),
scope varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
external_masters dbms_cloud_oci_dns_external_master_tbl,
external_downstreams dbms_cloud_oci_dns_external_downstream_tbl,
l_self varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
version varchar2(32767),
serial number,
lifecycle_state varchar2(32767),
is_protected number,
nameservers dbms_cloud_oci_dns_nameserver_tbl,
zone_transfer_servers dbms_cloud_oci_dns_zone_transfer_server_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_zone_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_zone_t (
name varchar2,
zone_type varchar2,
compartment_id varchar2,
view_id varchar2,
scope varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
external_masters dbms_cloud_oci_dns_external_master_tbl,
external_downstreams dbms_cloud_oci_dns_external_downstream_tbl,
l_self varchar2,
id varchar2,
time_created timestamp with time zone,
version varchar2,
serial number,
lifecycle_state varchar2,
is_protected number,
nameservers dbms_cloud_oci_dns_nameserver_tbl,
zone_transfer_servers dbms_cloud_oci_dns_zone_transfer_server_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the zone.
zone_type
(required) The type of the zone. Must be either `PRIMARY` or `SECONDARY`. `SECONDARY` is only supported for GLOBAL zones.
Allowed values are: 'PRIMARY', 'SECONDARY'
compartment_id
(required) The OCID of the compartment containing the zone.
view_id
(optional) The OCID of the private view containing the zone. This value will be null for zones in the global DNS, which are publicly resolvable and not part of a private view.
scope
(required) The scope of the zone.
Allowed values are: 'GLOBAL', 'PRIVATE'
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
external_masters
(required) External master servers for the zone. `externalMasters` becomes a required parameter when the `zoneType` value is `SECONDARY`.
external_downstreams
(required) External secondary servers for the zone. This field is currently not supported when `zoneType` is `SECONDARY` or `scope` is `PRIVATE`.
l_self
(required) The canonical absolute URL of the resource.
id
(required) The OCID of the zone.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
version
(required) Version is the never-repeating, totally-orderable, version of the zone, from which the serial field of the zone's SOA record is derived.
serial
(required) The current serial of the zone. As seen in the zone's SOA record.
lifecycle_state
(required) The current state of the zone resource.
(required) A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
nameservers
(required) The authoritative nameservers for the zone.
zone_transfer_servers
(optional) The OCI nameservers that transfer the zone data with external nameservers.
DBMS_CLOUD_OCI_DNS_ZONE_SUMMARY_T Type 🔗
A DNS zone. **Warning:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dns_zone_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
zone_type varchar2(32767),
compartment_id varchar2(32767),
view_id varchar2(32767),
scope varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
l_self varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
version varchar2(32767),
serial number,
lifecycle_state varchar2(32767),
is_protected number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_zone_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dns_zone_summary_t (
name varchar2,
zone_type varchar2,
compartment_id varchar2,
view_id varchar2,
scope varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
l_self varchar2,
id varchar2,
time_created timestamp with time zone,
version varchar2,
serial number,
lifecycle_state varchar2,
is_protected number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the zone.
zone_type
(required) The type of the zone. Must be either `PRIMARY` or `SECONDARY`. `SECONDARY` is only supported for GLOBAL zones.
Allowed values are: 'PRIMARY', 'SECONDARY'
compartment_id
(required) The OCID of the compartment containing the zone.
view_id
(optional) The OCID of the private view containing the zone. This value will be null for zones in the global DNS, which are publicly resolvable and not part of a private view.
scope
(required) The scope of the zone.
Allowed values are: 'GLOBAL', 'PRIVATE'
freeform_tags
(required) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. **Example:** `{\"Department\": \"Finance\"}`
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. **Example:** `{\"Operations\": {\"CostCenter\": \"42\"}}`
l_self
(required) The canonical absolute URL of the resource.
id
(required) The OCID of the zone.
time_created
(required) The date and time the resource was created in \"YYYY-MM-ddThh:mm:ssZ\" format with a Z offset, as defined by RFC 3339. **Example:** `2016-07-22T17:23:59:60Z`
version
(required) Version is the never-repeating, totally-orderable, version of the zone, from which the serial field of the zone's SOA record is derived.
serial
(required) The current serial of the zone. As seen in the zone's SOA record.
lifecycle_state
(required) The current state of the zone resource.