CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_TRAFFIC_PROTOCOL_PARAMETERS_T Type 🔗
Defines the traffic protocol parameters for the traffic in a `PathAnalysisResult`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) Type of the `TrafficProtocolParameters` object.
Allowed values are: 'TCP', 'UDP', 'ICMP'
DBMS_CLOUD_OCI_VN_MONITORING_EGRESS_TRAFFIC_SPEC_T Type 🔗
Defines the traffic configuration that leaves the traffic node.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_egress_traffic_spec_t FORCE AUTHID CURRENT_USER IS OBJECT (
protocol number,
source_address varchar2(32767),
destination_address varchar2(32767),
traffic_protocol_parameters dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_egress_traffic_spec_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_egress_traffic_spec_t (
protocol number,
source_address varchar2,
destination_address varchar2,
traffic_protocol_parameters dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
protocol
(required) The IP protocol to use for the traffic path analysis.
source_address
(required) The IPv4 address of the source node.
destination_address
(required) The IPv4 address of the destination node.
traffic_protocol_parameters
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_ROUTING_ACTION_T Type 🔗
Defines the details for routing actions taken on the traffic flow.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_routing_action_t FORCE AUTHID CURRENT_USER IS OBJECT (
action varchar2(32767),
action_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_routing_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_routing_action_t (
action varchar2,
action_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
action
(required) The routing action taken on the traffic flow.
DBMS_CLOUD_OCI_VN_MONITORING_SECURITY_ACTION_T Type 🔗
Defines the security action details taken on the traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_security_action_t FORCE AUTHID CURRENT_USER IS OBJECT (
action varchar2(32767),
action_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_security_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_security_action_t (
action varchar2,
action_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
action
(required) Action taken on the traffic.
Allowed values are: 'ALLOWED', 'DENIED'
action_type
(required) Type of the `SecurityAction`.
Allowed values are: 'EXPLICIT', 'IMPLICIT'
DBMS_CLOUD_OCI_VN_MONITORING_TRAFFIC_NODE_T Type 🔗
Defines the configuration of the OCI entity that represents a traffic node in `PathAnalysisResult`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_traffic_node_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
egress_traffic dbms_cloud_oci_vn_monitoring_egress_traffic_spec_t,
next_hop_routing_action dbms_cloud_oci_vn_monitoring_routing_action_t,
egress_security_action dbms_cloud_oci_vn_monitoring_security_action_t,
ingress_security_action dbms_cloud_oci_vn_monitoring_security_action_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_traffic_node_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_traffic_node_t (
l_type varchar2,
egress_traffic dbms_cloud_oci_vn_monitoring_egress_traffic_spec_t,
next_hop_routing_action dbms_cloud_oci_vn_monitoring_routing_action_t,
egress_security_action dbms_cloud_oci_vn_monitoring_security_action_t,
ingress_security_action dbms_cloud_oci_vn_monitoring_security_action_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) Type of the `TrafficNode`.
Allowed values are: 'VISIBLE', 'ACCESS_DENIED'
egress_traffic
(optional)
next_hop_routing_action
(optional)
egress_security_action
(optional)
ingress_security_action
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_ACCESS_DENIED_TRAFFIC_NODE_T Type 🔗
Defines the configuration of a traffic node to which the user is denied access.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_access_denied_traffic_node_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_traffic_node_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_access_denied_traffic_node_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_access_denied_traffic_node_t (
l_type varchar2,
egress_traffic dbms_cloud_oci_vn_monitoring_egress_traffic_spec_t,
next_hop_routing_action dbms_cloud_oci_vn_monitoring_routing_action_t,
egress_security_action dbms_cloud_oci_vn_monitoring_security_action_t,
ingress_security_action dbms_cloud_oci_vn_monitoring_security_action_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_access_denied_traffic_node_t is a subtype of the dbms_cloud_oci_vn_monitoring_traffic_node_t type.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ROUTE_DISTRIBUTION_MATCH_CRITERIA_T Type 🔗
The match criteria in a route distribution statement. The match criteria outlines which routes should be imported or exported.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t FORCE AUTHID CURRENT_USER IS OBJECT (
match_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t (
match_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
match_type
(required) The type of the match criteria for a route distribution statement.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ROUTE_DISTRIBUTION_MATCH_CRITERIA_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_ADD_DRG_ROUTE_DISTRIBUTION_STATEMENT_DETAILS_T Type 🔗
Details used to add a route distribution statement.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
match_criteria dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_tbl,
action varchar2(32767),
priority number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_t (
match_criteria dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_tbl,
action varchar2,
priority number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
match_criteria
(required) The action is applied only if all of the match criteria is met.
action
(required) Accept: import/export the route \"as is\"
Allowed values are: 'ACCEPT'
priority
(required) This field is used to specify the priority of each statement in a route distribution. The priority will be represented as a number between 0 and 65535 where a lower number indicates a higher priority. When a route is processed, statements are applied in the order defined by their priority. The first matching rule dictates the action that will be taken on the route.
DBMS_CLOUD_OCI_VN_MONITORING_ADD_DRG_ROUTE_DISTRIBUTION_STATEMENT_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_ADD_DRG_ROUTE_DISTRIBUTION_STATEMENTS_DETAILS_T Type 🔗
Details request to add statements to a route distribution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statements_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
statements dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statements_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statements_details_t (
statements dbms_cloud_oci_vn_monitoring_add_drg_route_distribution_statement_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
statements
(required) The collection of route distribution statements to insert into the route distribution.
DBMS_CLOUD_OCI_VN_MONITORING_ADD_DRG_ROUTE_RULE_DETAILS_T Type 🔗
Details needed when adding a DRG route rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
destination_type varchar2(32767),
destination varchar2(32767),
next_hop_drg_attachment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_t (
destination_type varchar2,
destination varchar2,
next_hop_drg_attachment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
destination_type
(required) Type of destination for the rule. Allowed values: * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation.
Allowed values are: 'CIDR_BLOCK'
destination
(required) This is the range of IP addresses used for matching when routing traffic. Only CIDR_BLOCK values are allowed. Potential values: * IP address range in CIDR notation. This can be an IPv4 or IPv6 CIDR. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56`.
next_hop_drg_attachment_id
(required) The OCID of the next hop DRG attachment. The next hop DRG attachment is responsible for reaching the network destination.
DBMS_CLOUD_OCI_VN_MONITORING_ADD_DRG_ROUTE_RULE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_ADD_DRG_ROUTE_RULES_DETAILS_T Type 🔗
Details used in a request to add static routes to a DRG route table.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_drg_route_rules_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
route_rules dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_rules_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_drg_route_rules_details_t (
route_rules dbms_cloud_oci_vn_monitoring_add_drg_route_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
route_rules
(optional) The collection of static rules used to insert routes into the DRG route table.
DBMS_CLOUD_OCI_VN_MONITORING_ICMP_OPTIONS_T Type 🔗
Optional and valid only for ICMP and ICMPv6. Use to specify a particular ICMP type and code as defined in: - ICMP Parameters - ICMPv6 Parameters If you specify ICMP or ICMPv6 as the protocol but omit this object, then all ICMP types and codes are allowed. If you do provide this object, the type is required and the code is optional. To enable MTU negotiation for ingress internet traffic via IPv4, make sure to allow type 3 (\"Destination Unreachable\") code 4 (\"Fragmentation Needed and Don't Fragment was Set\"). If you need to specify multiple codes for a single type, create a separate security list rule for each.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_icmp_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
code number,
l_type number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_icmp_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_icmp_options_t (
code number,
l_type number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(optional) The ICMP code (optional).
l_type
(required) The ICMP type.
DBMS_CLOUD_OCI_VN_MONITORING_PORT_RANGE_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_port_range_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_max number,
l_min number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_port_range_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_port_range_t (
l_max number,
l_min number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_max
(required) The maximum port number, which must not be less than the minimum port number. To specify a single port number, set both the min and max to the same value.
l_min
(required) The minimum port number, which must not be greater than the maximum port number.
DBMS_CLOUD_OCI_VN_MONITORING_TCP_OPTIONS_T Type 🔗
Optional and valid only for TCP. Use to specify particular destination ports for TCP rules. If you specify TCP as the protocol but omit this object, then all destination ports are allowed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tcp_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
destination_port_range dbms_cloud_oci_vn_monitoring_port_range_t,
source_port_range dbms_cloud_oci_vn_monitoring_port_range_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tcp_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tcp_options_t (
destination_port_range dbms_cloud_oci_vn_monitoring_port_range_t,
source_port_range dbms_cloud_oci_vn_monitoring_port_range_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
destination_port_range
(optional)
source_port_range
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_UDP_OPTIONS_T Type 🔗
Optional and valid only for UDP. Use to specify particular destination ports for UDP rules. If you specify UDP as the protocol but omit this object, then all destination ports are allowed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_udp_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
destination_port_range dbms_cloud_oci_vn_monitoring_port_range_t,
source_port_range dbms_cloud_oci_vn_monitoring_port_range_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_udp_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_udp_options_t (
destination_port_range dbms_cloud_oci_vn_monitoring_port_range_t,
source_port_range dbms_cloud_oci_vn_monitoring_port_range_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
destination_port_range
(optional)
source_port_range
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_ADD_SECURITY_RULE_DETAILS_T Type 🔗
A rule for allowing inbound (INGRESS) or outbound (EGRESS) IP packets.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_security_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
description varchar2(32767),
destination varchar2(32767),
destination_type varchar2(32767),
direction varchar2(32767),
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
is_stateless number,
protocol varchar2(32767),
source varchar2(32767),
source_type varchar2(32767),
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_security_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_security_rule_details_t (
description varchar2,
destination varchar2,
destination_type varchar2,
direction varchar2,
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
is_stateless number,
protocol varchar2,
source varchar2,
source_type varchar2,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
description
(optional) An optional description of your choice for the rule. Avoid entering confidential information.
destination
(optional) Conceptually, this is the range of IP addresses that a packet originating from the instance can go to. Allowed values: * An IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56` IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security rule for traffic destined for a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`. * The OCID of a NETWORK_SECURITY_GROUP Type in the same VCN. The value can be the NSG that the rule belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
destination_type
(optional) Type of destination for the rule. Required if `direction` = `EGRESS`. Allowed values: * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `destination` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic destined for a particular `Service` through a service gateway). * `NETWORK_SECURITY_GROUP`: If the rule's `destination` is the OCID of a NETWORK_SECURITY_GROUP Type.
(required) Direction of the security rule. Set to `EGRESS` for rules to allow outbound IP packets, or `INGRESS` for rules to allow inbound IP packets.
Allowed values are: 'EGRESS', 'INGRESS'
icmp_options
(optional)
is_stateless
(optional) A stateless rule allows traffic in one direction. Remember to add a corresponding stateless rule in the other direction if you need to support bidirectional traffic. For example, if egress traffic allows TCP destination port 80, there should be an ingress rule to allow TCP source port 80. Defaults to false, which means the rule is stateful and a corresponding rule is not necessary for bidirectional traffic.
protocol
(required) The transport protocol. Specify either `all` or an IPv4 protocol number as defined in Protocol Numbers. Options are supported only for ICMP (\"1\"), TCP (\"6\"), UDP (\"17\"), and ICMPv6 (\"58\").
source
(optional) Conceptually, this is the range of IP addresses that a packet coming into the instance can come from. Allowed values: * An IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56` IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security rule for traffic coming from a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`. * The OCID of a NETWORK_SECURITY_GROUP Type in the same VCN. The value can be the NSG that the rule belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
source_type
(optional) Type of source for the rule. Required if `direction` = `INGRESS`. * `CIDR_BLOCK`: If the rule's `source` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `source` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic coming from a particular `Service` through a service gateway). * `NETWORK_SECURITY_GROUP`: If the rule's `source` is the OCID of a NETWORK_SECURITY_GROUP Type.
DBMS_CLOUD_OCI_VN_MONITORING_ADD_SECURITY_RULE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_add_security_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_security_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_add_security_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_ADD_NETWORK_SECURITY_GROUP_SECURITY_RULES_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_network_security_group_security_rules_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
security_rules dbms_cloud_oci_vn_monitoring_add_security_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_network_security_group_security_rules_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_network_security_group_security_rules_details_t (
security_rules dbms_cloud_oci_vn_monitoring_add_security_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
security_rules
(optional) The NSG security rules to add.
DBMS_CLOUD_OCI_VN_MONITORING_ADD_PUBLIC_IP_POOL_CAPACITY_DETAILS_T Type 🔗
The information used to add capacity to an IP pool.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_public_ip_pool_capacity_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
byoip_range_id varchar2(32767),
cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_public_ip_pool_capacity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_public_ip_pool_capacity_details_t (
byoip_range_id varchar2,
cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
byoip_range_id
(required) The OCID of the `ByoipRange` resource to which the CIDR block belongs.
cidr_block
(required) The CIDR block to add to the public IP pool. It could be all of the CIDR block identified in `byoipRangeId`, or a subrange. Example: `10.0.1.0/24`
DBMS_CLOUD_OCI_VN_MONITORING_ADD_SUBNET_IPV6_CIDR_DETAILS_T Type 🔗
Details used when adding an IPv6 CIDR block to a subnet.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_subnet_ipv6_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ipv6_cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_subnet_ipv6_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_subnet_ipv6_cidr_details_t (
ipv6_cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ipv6_cidr_block
(required) This field is not required and should only be specified when adding an IPv6 CIDR to a subnet's IPv6 address space. SeeIPv6 Addresses. Example: `2001:0db8:0123::/64`
DBMS_CLOUD_OCI_VN_MONITORING_ADD_VCN_CIDR_DETAILS_T Type 🔗
Details used to add a CIDR block to a VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_vcn_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_vcn_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_vcn_cidr_details_t (
cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(required) The CIDR block to add.
DBMS_CLOUD_OCI_VN_MONITORING_BYOIPV6_CIDR_DETAILS_T Type 🔗
The list of one or more BYOIPv6 CIDR blocks for the VCN that meets the following criteria: - The CIDR must from a BYOIPv6 range. - The IPv6 CIDR blocks must be valid. - Multiple CIDR blocks must not overlap each other or the on-premises network CIDR block. - The number of CIDR blocks must not exceed the limit of IPv6 CIDR blocks allowed to a VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
byoipv6_range_id varchar2(32767),
ipv6_cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_t (
byoipv6_range_id varchar2,
ipv6_cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
byoipv6_range_id
(required) The OCID of the `ByoipRange` resource to which the CIDR block belongs.
ipv6_cidr_block
(required) An IPv6 CIDR block required to create a VCN with a BYOIP prefix. It could be the whole CIDR block identified in `byoipv6RangeId`, or a subrange. Example: `2001:0db8:0123::/48`
DBMS_CLOUD_OCI_VN_MONITORING_ADD_VCN_IPV6_CIDR_DETAILS_T Type 🔗
Details used when adding a ULA or private IPv6 prefix or an IPv6 GUA assigned by Oracle or a BYOIPv6 prefix. You can add only one of these per request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_add_vcn_ipv6_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ipv6_private_cidr_block varchar2(32767),
is_oracle_gua_allocation_enabled number,
byoipv6_cidr_detail dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_vcn_ipv6_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_add_vcn_ipv6_cidr_details_t (
ipv6_private_cidr_block varchar2,
is_oracle_gua_allocation_enabled number,
byoipv6_cidr_detail dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ipv6_private_cidr_block
(optional) This field is not required and should only be specified if a ULA or private IPv6 prefix is desired for VCN's private IP address space. SeeIPv6 Addresses. Example: `2001:0db8:0123::/48` or `fd00:1000:0:1::/64`
is_oracle_gua_allocation_enabled
(optional) Indicates whether Oracle will allocate an IPv6 GUA. Only one prefix of /56 size can be allocated by Oracle as a GUA.
byoipv6_cidr_detail
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_SECURITY_RULE_T Type 🔗
A security rule is one of the items in a NETWORK_SECURITY_GROUP Type. It is a virtual firewall rule for the VNICs in the network security group. A rule can be for either inbound (`direction`= INGRESS) or outbound (`direction`= EGRESS) IP packets.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_security_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
description varchar2(32767),
destination varchar2(32767),
destination_type varchar2(32767),
direction varchar2(32767),
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
id varchar2(32767),
is_stateless number,
is_valid number,
protocol varchar2(32767),
source varchar2(32767),
source_type varchar2(32767),
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
time_created timestamp with time zone,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_security_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_security_rule_t (
description varchar2,
destination varchar2,
destination_type varchar2,
direction varchar2,
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
id varchar2,
is_stateless number,
is_valid number,
protocol varchar2,
source varchar2,
source_type varchar2,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
time_created timestamp with time zone,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
description
(optional) An optional description of your choice for the rule.
destination
(optional) Conceptually, this is the range of IP addresses that a packet originating from the instance can go to. Allowed values: * An IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56` IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security rule for traffic destined for a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`. * The OCID of a NETWORK_SECURITY_GROUP Type in the same VCN. The value can be the NSG that the rule belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
destination_type
(optional) Type of destination for the rule. Required if `direction` = `EGRESS`. Allowed values: * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `destination` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic destined for a particular `Service` through a service gateway). * `NETWORK_SECURITY_GROUP`: If the rule's `destination` is the OCID of a NETWORK_SECURITY_GROUP Type.
(required) Direction of the security rule. Set to `EGRESS` for rules to allow outbound IP packets, or `INGRESS` for rules to allow inbound IP packets.
Allowed values are: 'EGRESS', 'INGRESS'
icmp_options
(optional)
id
(optional) An Oracle-assigned identifier for the security rule. You specify this ID when you want to update or delete the rule. Example: `04ABEC`
is_stateless
(optional) A stateless rule allows traffic in one direction. Remember to add a corresponding stateless rule in the other direction if you need to support bidirectional traffic. For example, if egress traffic allows TCP destination port 80, there should be an ingress rule to allow TCP source port 80. Defaults to false, which means the rule is stateful and a corresponding rule is not necessary for bidirectional traffic.
is_valid
(optional) Whether the rule is valid. The value is `True` when the rule is first created. If the rule's `source` or `destination` is a network security group, the value changes to `False` if that network security group is deleted.
protocol
(required) The transport protocol. Specify either `all` or an IPv4 protocol number as defined in Protocol Numbers. Options are supported only for ICMP (\"1\"), TCP (\"6\"), UDP (\"17\"), and ICMPv6 (\"58\").
source
(optional) Conceptually, this is the range of IP addresses that a packet coming into the instance can come from. Allowed values: * An IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56` IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security rule for traffic coming from a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`. * The OCID of a NETWORK_SECURITY_GROUP Type in the same VCN. The value can be the NSG that the rule belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
source_type
(optional) Type of source for the rule. Required if `direction` = `INGRESS`. * `CIDR_BLOCK`: If the rule's `source` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `source` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic coming from a particular `Service` through a service gateway). * `NETWORK_SECURITY_GROUP`: If the rule's `source` is the OCID of a NETWORK_SECURITY_GROUP Type.
(optional) The date and time the security rule was created. Format defined by RFC3339.
udp_options
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_SECURITY_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_security_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_security_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_security_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_ADDED_NETWORK_SECURITY_GROUP_SECURITY_RULES_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_added_network_security_group_security_rules_t FORCE AUTHID CURRENT_USER IS OBJECT (
security_rules dbms_cloud_oci_vn_monitoring_security_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_added_network_security_group_security_rules_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_added_network_security_group_security_rules_t (
security_rules dbms_cloud_oci_vn_monitoring_security_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
security_rules
(optional) The NSG security rules that were added.
DBMS_CLOUD_OCI_VN_MONITORING_ENDPOINT_T Type 🔗
Information describing a source or destination in a `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_endpoint_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_VN_MONITORING_PROTOCOL_PARAMETERS_T Type 🔗
Defines the IP protocol parameters for a `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_protocol_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_protocol_parameters_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) The type of the `ProtocolParameters` object.
Allowed values are: 'TCP', 'UDP', 'ICMP'
DBMS_CLOUD_OCI_VN_MONITORING_QUERY_OPTIONS_T Type 🔗
Defines the query options required for a `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_query_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_bi_directional_analysis number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_query_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_query_options_t (
is_bi_directional_analysis number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_bi_directional_analysis
(optional) If true, a path analysis is done for both the forward and reverse routes.
DBMS_CLOUD_OCI_VN_MONITORING_GET_PATH_ANALYSIS_DETAILS_T Type 🔗
Defines the configuration for getting a path analysis.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_get_path_analysis_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_get_path_analysis_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_get_path_analysis_details_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(required) The IP protocol to used for the path analysis.
source_endpoint
(required)
destination_endpoint
(required)
protocol_parameters
(optional)
query_options
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_ALLOWED_PHASE_ONE_PARAMETERS_T Type 🔗
Allowed phase one parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_allowed_phase_one_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
dh_groups dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_phase_one_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_phase_one_parameters_t (
encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
dh_groups dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
encryption_algorithms
(optional) Allowed phase one encryption algorithms.
authentication_algorithms
(optional) Allowed phase one authentication algorithms.
dh_groups
(optional) Allowed phase one Diffie-Hellman groups.
DBMS_CLOUD_OCI_VN_MONITORING_ALLOWED_PHASE_TWO_PARAMETERS_T Type 🔗
Allowed phase two parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_allowed_phase_two_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
pfs_dh_groups dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_phase_two_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_phase_two_parameters_t (
encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
pfs_dh_groups dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
encryption_algorithms
(optional) Allowed phase two encryption algorithms.
authentication_algorithms
(optional) Allowed phase two authentication algorithms.
DBMS_CLOUD_OCI_VN_MONITORING_DEFAULT_PHASE_ONE_PARAMETERS_T Type 🔗
Default phase one parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_default_phase_one_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
default_encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_dh_groups dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_default_phase_one_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_default_phase_one_parameters_t (
default_encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_dh_groups dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
default_encryption_algorithms
(optional) Default phase one encryption algorithms.
default_authentication_algorithms
(optional) Default phase one authentication algorithms.
default_dh_groups
(optional) Default phase one Diffie-Hellman groups.
DBMS_CLOUD_OCI_VN_MONITORING_DEFAULT_PHASE_TWO_PARAMETERS_T Type 🔗
Default phase two parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_default_phase_two_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
default_encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_pfs_dh_group varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_default_phase_two_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_default_phase_two_parameters_t (
default_encryption_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_authentication_algorithms dbms_cloud_oci_vn_monitoring_varchar2_tbl,
default_pfs_dh_group varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
default_encryption_algorithms
(optional) Default phase two encryption algorithms.
default_authentication_algorithms
(optional) Default phase two authentication algorithms.
DBMS_CLOUD_OCI_VN_MONITORING_ALLOWED_IKE_IP_SEC_PARAMETERS_T Type 🔗
Lists the current allowed and default IPSec tunnel parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_allowed_ike_ip_sec_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
allowed_phase_one_parameters dbms_cloud_oci_vn_monitoring_allowed_phase_one_parameters_t,
allowed_phase_two_parameters dbms_cloud_oci_vn_monitoring_allowed_phase_two_parameters_t,
default_phase_one_parameters dbms_cloud_oci_vn_monitoring_default_phase_one_parameters_t,
default_phase_two_parameters dbms_cloud_oci_vn_monitoring_default_phase_two_parameters_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_ike_ip_sec_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_ike_ip_sec_parameters_t (
allowed_phase_one_parameters dbms_cloud_oci_vn_monitoring_allowed_phase_one_parameters_t,
allowed_phase_two_parameters dbms_cloud_oci_vn_monitoring_allowed_phase_two_parameters_t,
default_phase_one_parameters dbms_cloud_oci_vn_monitoring_default_phase_one_parameters_t,
default_phase_two_parameters dbms_cloud_oci_vn_monitoring_default_phase_two_parameters_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
allowed_phase_one_parameters
(required)
allowed_phase_two_parameters
(required)
default_phase_one_parameters
(required)
default_phase_two_parameters
(required)
DBMS_CLOUD_OCI_VN_MONITORING_ALLOWED_SECURITY_CONFIGURATION_T Type 🔗
Defines the allowed security configuration for the traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) The type of the allowed security configuration.
DBMS_CLOUD_OCI_VN_MONITORING_ALLOWED_SECURITY_ACTION_DETAILS_T Type 🔗
Defines details for the security action taken on allowed traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_allowed_security_action_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_restricted_or_partial number,
allowed_security_configuration dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_security_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_security_action_details_t (
is_restricted_or_partial number,
allowed_security_configuration dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_restricted_or_partial
(required) If true, the allowed security configuration details are incomplete.
allowed_security_configuration
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_ALLOWED_SECURITY_ACTION_T Type 🔗
Defines the security action taken on allowed traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_allowed_security_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_security_action_t (
allowed_security_action_details dbms_cloud_oci_vn_monitoring_allowed_security_action_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_security_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_allowed_security_action_t (
action varchar2,
action_type varchar2,
allowed_security_action_details dbms_cloud_oci_vn_monitoring_allowed_security_action_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_allowed_security_action_t is a subtype of the dbms_cloud_oci_vn_monitoring_security_action_t type.
Fields
Field
Description
allowed_security_action_details
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_BGP_SESSION_INFO_T Type 🔗
Information for establishing a BGP session for the IPSec tunnel.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_bgp_session_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
oracle_interface_ip varchar2(32767),
customer_interface_ip varchar2(32767),
oracle_interface_ipv6 varchar2(32767),
customer_interface_ipv6 varchar2(32767),
oracle_bgp_asn varchar2(32767),
customer_bgp_asn varchar2(32767),
bgp_state varchar2(32767),
bgp_ipv6_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_bgp_session_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_bgp_session_info_t (
oracle_interface_ip varchar2,
customer_interface_ip varchar2,
oracle_interface_ipv6 varchar2,
customer_interface_ipv6 varchar2,
oracle_bgp_asn varchar2,
customer_bgp_asn varchar2,
bgp_state varchar2,
bgp_ipv6_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
oracle_interface_ip
(optional) The IP address for the Oracle end of the inside tunnel interface. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is required and used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, this IP address is optional. You can set this IP address so you can troubleshoot or monitor the tunnel. The value must be a /30 or /31. Example: `10.0.0.4/31`
customer_interface_ip
(optional) The IP address for the CPE end of the inside tunnel interface. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is required and used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, this IP address is optional. You can set this IP address so you can troubleshoot or monitor the tunnel. The value must be a /30 or /31. Example: `10.0.0.5/31`
oracle_interface_ipv6
(optional) The IPv6 address for the Oracle end of the inside tunnel interface. This IP address is optional. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. Only subnet masks from /64 up to /127 are allowed. Example: `2001:db8::1/64`
customer_interface_ipv6
(optional) The IPv6 address for the CPE end of the inside tunnel interface. This IP address is optional. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. Only subnet masks from /64 up to /127 are allowed. Example: `2001:db8::1/64`
oracle_bgp_asn
(optional) The Oracle BGP ASN.
customer_bgp_asn
(optional) If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this ASN is required and used for the tunnel's BGP session. This is the ASN of the network on the CPE end of the BGP session. Can be a 2-byte or 4-byte ASN. Uses \"asplain\" format. If the tunnel uses static routing, the `customerBgpAsn` must be null. Example: `12345` (2-byte) or `1587232876` (4-byte)
bgp_state
(optional) The state of the BGP session.
Allowed values are: 'UP', 'DOWN'
bgp_ipv6_state
(optional) The state of the BGP IPv6 session.
Allowed values are: 'UP', 'DOWN'
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_VIRTUAL_CIRCUIT_PUBLIC_PREFIX_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_t (
cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(required) An individual public IP prefix (CIDR) to add to the public virtual circuit. All prefix sizes are allowed.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_VIRTUAL_CIRCUIT_PUBLIC_PREFIX_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_BULK_ADD_VIRTUAL_CIRCUIT_PUBLIC_PREFIXES_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_bulk_add_virtual_circuit_public_prefixes_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
public_prefixes dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_bulk_add_virtual_circuit_public_prefixes_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_bulk_add_virtual_circuit_public_prefixes_details_t (
public_prefixes dbms_cloud_oci_vn_monitoring_create_virtual_circuit_public_prefix_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
public_prefixes
(required) The public IP prefixes (CIDRs) to add to the public virtual circuit.
DBMS_CLOUD_OCI_VN_MONITORING_DELETE_VIRTUAL_CIRCUIT_PUBLIC_PREFIX_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_t (
cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(required) An individual public IP prefix (CIDR) to remove from the public virtual circuit.
DBMS_CLOUD_OCI_VN_MONITORING_DELETE_VIRTUAL_CIRCUIT_PUBLIC_PREFIX_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_BULK_DELETE_VIRTUAL_CIRCUIT_PUBLIC_PREFIXES_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_bulk_delete_virtual_circuit_public_prefixes_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
public_prefixes dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_bulk_delete_virtual_circuit_public_prefixes_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_bulk_delete_virtual_circuit_public_prefixes_details_t (
public_prefixes dbms_cloud_oci_vn_monitoring_delete_virtual_circuit_public_prefix_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
public_prefixes
(required) The public IP prefixes (CIDRs) to remove from the public virtual circuit.
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_ALLOCATED_RANGE_SUMMARY_T Type 🔗
A summary of CIDR block subranges that are currently allocated to an IP pool.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
public_ip_pool_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_t (
cidr_block varchar2,
public_ip_pool_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(optional) The BYOIP CIDR block range or subrange allocated to an IP pool. This could be all or part of a BYOIP CIDR block.
public_ip_pool_id
(optional) The OCID of the IP pool containing the CIDR block.
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_ALLOCATED_RANGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_ALLOCATED_RANGE_COLLECTION_T Type 🔗
Results of a `ListByoipAllocatedRanges` operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_allocated_range_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_allocated_range_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_allocated_range_collection_t (
items dbms_cloud_oci_vn_monitoring_byoip_allocated_range_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) A list of subranges of a BYOIP CIDR block allocated to an IP pool.
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_RANGE_VCN_IPV6_ALLOCATION_SUMMARY_T Type 🔗
A summary of IPv6 CIDR block subranges currently allocated to a VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
byoip_range_id varchar2(32767),
compartment_id varchar2(32767),
ipv6_cidr_block varchar2(32767),
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_t (
byoip_range_id varchar2,
compartment_id varchar2,
ipv6_cidr_block varchar2,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
byoip_range_id
(optional) The OCID of the `ByoipRange` resource to which the CIDR block belongs.
compartment_id
(optional) The OCID of the compartment containing the `ByoipRange`.
ipv6_cidr_block
(optional) The BYOIPv6 CIDR block range or subrange allocated to a VCN. This could be all or part of a BYOIPv6 CIDR block. Each VCN allocation must be /64 or larger.
vcn_id
(optional) The OCID of the `Vcn` resource to which the ByoipRange belongs.
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_RANGE_VCN_IPV6_ALLOCATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_RANGE_T Type 🔗
Oracle offers the ability to Bring Your Own IP (BYOIP), importing public IP addresses or IPv6 addresses that you currently own to Oracle Cloud Infrastructure. A `ByoipRange` resource is a record of the imported address block (a BYOIP CIDR block) and also some associated metadata. The process used to Bring Your Own IP is explained in the documentation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_range_t FORCE AUTHID CURRENT_USER IS OBJECT (
byoip_range_vcn_ipv6_allocations dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_tbl,
cidr_block varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
ipv6_cidr_block varchar2(32767),
lifecycle_details varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_validated timestamp with time zone,
time_advertised timestamp with time zone,
time_withdrawn timestamp with time zone,
validation_token varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_t (
byoip_range_vcn_ipv6_allocations dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_tbl,
cidr_block varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
ipv6_cidr_block varchar2,
lifecycle_details varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_validated timestamp with time zone,
time_advertised timestamp with time zone,
time_withdrawn timestamp with time zone,
validation_token varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
byoip_range_vcn_ipv6_allocations
(optional) A list of `ByoipRangeVcnIpv6AllocationSummary` objects.
cidr_block
(optional) The public IPv4 CIDR block being imported from on-premises to the Oracle cloud.
compartment_id
(required) The OCID of the compartment containing the BYOIP CIDR block.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) The IPv6 CIDR block being imported to the Oracle cloud. This CIDR block must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be also assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
lifecycle_details
(optional) The `ByoipRange` resource's current status.
(required) The date and time the `ByoipRange` resource was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
time_validated
(optional) The date and time the `ByoipRange` resource was validated, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
time_advertised
(optional) The date and time the `ByoipRange` resource was advertised to the internet by BGP, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
time_withdrawn
(optional) The date and time the `ByoipRange` resource was withdrawn from advertisement by BGP to the internet, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
validation_token
(required) The validation token is an internally-generated ASCII string used in the validation process. See Importing a CIDR block for details.
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_RANGE_SUMMARY_T Type 🔗
Information about a `ByoipRange` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_range_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
byoip_range_vcn_ipv6_allocations dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_tbl,
cidr_block varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
ipv6_cidr_block varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_summary_t (
byoip_range_vcn_ipv6_allocations dbms_cloud_oci_vn_monitoring_byoip_range_vcn_ipv6_allocation_summary_tbl,
cidr_block varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
ipv6_cidr_block varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
time_created timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
byoip_range_vcn_ipv6_allocations
(optional) A list of `ByoipRangeVcnIpv6AllocationSummary` objects.
cidr_block
(optional) The public IPv4 address range you are importing to the Oracle cloud.
compartment_id
(optional) The OCID of the compartment containing the `ByoipRange` resource.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) The IPv6 CIDR block being imported to the Oracle cloud. This CIDR block must be /48 or larger, and can be subdivided into sub-ranges used across multiple VCNs. A BYOIPv6 prefix can be assigned across multiple VCNs, and each VCN must be /64 or larger. You may specify a ULA or private IPv6 prefix of /64 or larger to use in the VCN. IPv6-enabled subnets will remain a fixed /64 in size.
lifecycle_state
(optional) The `ByoipRange` resource's current state.
lifecycle_details
(optional) The Byoip Range's current lifeCycle substate.
time_created
(optional) The date and time the `ByoipRange` resource was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_RANGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_byoip_range_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_range_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_byoip_range_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_BYOIP_RANGE_COLLECTION_T Type 🔗
The results returned by a `ListByoipRange` operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoip_range_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_byoip_range_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_byoip_range_collection_t (
items dbms_cloud_oci_vn_monitoring_byoip_range_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) A list of `ByoipRange` resource summaries.
DBMS_CLOUD_OCI_VN_MONITORING_VTAP_CAPTURE_FILTER_RULE_DETAILS_T Type 🔗
This resource contains the rules governing what traffic a VTAP mirrors.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
traffic_direction varchar2(32767),
rule_action varchar2(32767),
source_cidr varchar2(32767),
destination_cidr varchar2(32767),
protocol varchar2(32767),
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_t (
traffic_direction varchar2,
rule_action varchar2,
source_cidr varchar2,
destination_cidr varchar2,
protocol varchar2,
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
traffic_direction
(required) The traffic direction the VTAP is configured to mirror.
Allowed values are: 'INGRESS', 'EGRESS'
rule_action
(optional) Include or exclude packets meeting this definition from mirrored traffic.
Allowed values are: 'INCLUDE', 'EXCLUDE'
source_cidr
(optional) Traffic from this CIDR block to the VTAP source will be mirrored to the VTAP target.
destination_cidr
(optional) Traffic sent to this CIDR block through the VTAP source will be mirrored to the VTAP target.
protocol
(optional) The transport protocol used in the filter. If do not choose a protocol, all protocols will be used in the filter. Supported options are: * 1 = ICMP * 6 = TCP * 17 = UDP
icmp_options
(optional)
tcp_options
(optional)
udp_options
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_FLOW_LOG_CAPTURE_FILTER_RULE_DETAILS_T Type 🔗
The set of rules governing what traffic the flow log collects when creating a flow log capture filter.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
priority number,
sampling_rate number,
source_cidr varchar2(32767),
destination_cidr varchar2(32767),
protocol varchar2(32767),
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
flow_log_type varchar2(32767),
rule_action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_t (
is_enabled number,
priority number,
sampling_rate number,
source_cidr varchar2,
destination_cidr varchar2,
protocol varchar2,
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
flow_log_type varchar2,
rule_action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_enabled
(optional) Indicates whether a flow log capture filter rule is enabled.
priority
(optional) A lower number indicates a higher priority, range 0-9. Each rule must have a distinct priority.
sampling_rate
(optional) Sampling interval as 1 of X, where X is an integer not greater than 100000.
source_cidr
(optional) Traffic from this CIDR will be captured in the flow log.
destination_cidr
(optional) Traffic to this CIDR will be captured in the flow log.
protocol
(optional) The transport protocol the filter uses.
icmp_options
(optional)
tcp_options
(optional)
udp_options
(optional)
flow_log_type
(optional) Type or types of flow logs to store. `ALL` includes records for both accepted traffic and rejected traffic.
Allowed values are: 'ALL', 'REJECT', 'ACCEPT'
rule_action
(optional) Include or exclude a ruleAction object.
Allowed values are: 'INCLUDE', 'EXCLUDE'
DBMS_CLOUD_OCI_VN_MONITORING_VTAP_CAPTURE_FILTER_RULE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_FLOW_LOG_CAPTURE_FILTER_RULE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CAPTURE_FILTER_T Type 🔗
A capture filter contains a set of *CAPTURE_FILTER_RULE_DETAILS Function* governing what traffic a *VTAP Type* mirrors. The capture filter is created with no rules defined, and it must have at least one rule for the VTAP to start mirroring traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_capture_filter_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
filter_type varchar2(32767),
time_created timestamp with time zone,
vtap_capture_filter_rules dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_tbl,
flow_log_capture_filter_rules dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_capture_filter_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_capture_filter_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
filter_type varchar2,
time_created timestamp with time zone,
vtap_capture_filter_rules dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_tbl,
flow_log_capture_filter_rules dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the capture filter.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) Indicates which service will use this capture filter
Allowed values are: 'VTAP', 'FLOWLOG'
time_created
(optional) The date and time the capture filter was created, in the format defined by RFC3339. Example: `2021-08-25T21:10:29.600Z`
vtap_capture_filter_rules
(optional) The set of rules governing what traffic a VTAP mirrors.
flow_log_capture_filter_rules
(optional) The set of rules governing what traffic the Flow Log collects when creating a flow log capture filter.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_BYOIP_RANGE_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_byoip_range_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_byoip_range_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_byoip_range_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the destination compartment for the BYOIP CIDR block move.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_CAPTURE_FILTER_COMPARTMENT_DETAILS_T Type 🔗
These configuration details are used in the move operation when changing the compartment containing a virtual test access point (VTAP) capture filter.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_capture_filter_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_capture_filter_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_capture_filter_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the destination compartment for the VTAP capture filter move.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_CPE_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_cpe_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_cpe_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_cpe_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the CPE object to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_CROSS_CONNECT_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_cross_connect_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_cross_connect_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_cross_connect_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the cross-connect to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_CROSS_CONNECT_GROUP_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_cross_connect_group_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_cross_connect_group_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_cross_connect_group_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the cross-connect group to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_DHCP_OPTIONS_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_dhcp_options_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_dhcp_options_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_dhcp_options_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the set of DHCP options to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_DRG_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_drg_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_drg_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_drg_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the DRG to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_IP_SEC_CONNECTION_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_ip_sec_connection_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_ip_sec_connection_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_ip_sec_connection_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the IPSec connection to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_INTERNET_GATEWAY_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_internet_gateway_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_internet_gateway_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_internet_gateway_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the internet gateway to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_LOCAL_PEERING_GATEWAY_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_local_peering_gateway_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_local_peering_gateway_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_local_peering_gateway_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the local peering gateway to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_NAT_GATEWAY_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_nat_gateway_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_nat_gateway_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_nat_gateway_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the NAT gateway to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_NETWORK_SECURITY_GROUP_COMPARTMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_network_security_group_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_network_security_group_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_network_security_group_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the network security group to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_PATH_ANALYZER_TEST_COMPARTMENT_DETAILS_T Type 🔗
Details of the new `compartmentId` for the `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_path_analyzer_test_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_path_analyzer_test_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_path_analyzer_test_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 `PathAnalyzerTest` resource should be moved.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_PUBLIC_IP_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_public_ip_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_public_ip_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_public_ip_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the public IP to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_PUBLIC_IP_POOL_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_public_ip_pool_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_public_ip_pool_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_public_ip_pool_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the destination compartment for the public IP pool move.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_REMOTE_PEERING_CONNECTION_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_remote_peering_connection_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_remote_peering_connection_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_remote_peering_connection_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the remote peering connection to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_ROUTE_TABLE_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_route_table_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_route_table_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_route_table_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the route table to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_SECURITY_LIST_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_security_list_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_security_list_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_security_list_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the security list to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_SERVICE_GATEWAY_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_service_gateway_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_service_gateway_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_service_gateway_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the service gateway to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_SUBNET_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_subnet_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_subnet_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_subnet_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the subnet to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_VCN_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_vcn_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_vcn_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_vcn_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the VCN to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_VIRTUAL_CIRCUIT_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_virtual_circuit_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_virtual_circuit_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_virtual_circuit_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the virtual circuit to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_VLAN_COMPARTMENT_DETAILS_T Type 🔗
The configuration details for the move operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_vlan_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_vlan_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_vlan_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the VLAN to.
DBMS_CLOUD_OCI_VN_MONITORING_CHANGE_VTAP_COMPARTMENT_DETAILS_T Type 🔗
These configuration details are used in the move operation when changing the compartment containing a virtual test access point (VTAP).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_change_vtap_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_vtap_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_change_vtap_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the destination compartment for the VTAP move.
DBMS_CLOUD_OCI_VN_MONITORING_COMPARTMENT_INTERNAL_T Type 🔗
Helper definition required to perform authZ using SPLAT expressions on a Compartment
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_compartment_internal_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_compartment_internal_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_compartment_internal_t (
id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_COMPUTE_INSTANCE_ENDPOINT_T Type 🔗
Defines the details required for a COMPUTE_INSTANCE-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_compute_instance_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
address varchar2(32767),
instance_id varchar2(32767),
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_compute_instance_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_compute_instance_endpoint_t (
l_type varchar2,
address varchar2,
instance_id varchar2,
vnic_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_compute_instance_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
Fields
Field
Description
address
(required) The IPv4 address of the COMPUTE_INSTANCE-type `Endpoint` object.
(required) The OCID of the VNIC attached to the compute instance.
DBMS_CLOUD_OCI_VN_MONITORING_CONNECT_LOCAL_PEERING_GATEWAYS_DETAILS_T Type 🔗
Information about the other local peering gateway (LPG).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_connect_local_peering_gateways_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
peer_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_connect_local_peering_gateways_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_connect_local_peering_gateways_details_t (
peer_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
peer_id
(required) The OCID of the LPG you want to peer with.
DBMS_CLOUD_OCI_VN_MONITORING_CONNECT_REMOTE_PEERING_CONNECTIONS_DETAILS_T Type 🔗
Information about the other remote peering connection (RPC).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_connect_remote_peering_connections_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
peer_id varchar2(32767),
peer_region_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_connect_remote_peering_connections_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_connect_remote_peering_connections_details_t (
peer_id varchar2,
peer_region_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
peer_id
(required) The OCID of the RPC you want to peer with.
peer_region_name
(required) The name of the region that contains the RPC you want to peer with. Example: `us-ashburn-1`
DBMS_CLOUD_OCI_VN_MONITORING_CPE_T Type 🔗
An object you create when setting up a Site-to-Site VPN between your on-premises network and VCN. The `Cpe` is a virtual representation of your customer-premises equipment, which is the actual router on-premises at your site at your end of the Site-to-Site VPN IPSec connection. For more information, see Overview of the Networking Service. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
ip_address varchar2(32767),
cpe_device_shape_id varchar2(32767),
time_created timestamp with time zone,
is_private number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
ip_address varchar2,
cpe_device_shape_id varchar2,
time_created timestamp with time zone,
is_private number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the CPE.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(required) The CPE's Oracle ID (OCID).
ip_address
(required) The public IP address of the on-premises router.
cpe_device_shape_id
(optional) The OCID of the CPE's device type. The Networking service maintains a general list of CPE device types (for example, Cisco ASA). For each type, Oracle provides CPE configuration content that can help a network engineer configure the CPE. The OCID uniquely identifies the type of device. To get the OCIDs for the device types on the list, see LIST_CPE_DEVICE_SHAPES Function. For information about how to generate CPE configuration content for a CPE device type, see: * GET_CPE_DEVICE_CONFIG_CONTENT Function * GET_IPSEC_CPE_DEVICE_CONFIG_CONTENT Function * GET_TUNNEL_CPE_DEVICE_CONFIG_CONTENT Function * GET_TUNNEL_CPE_DEVICE_CONFIG Function
time_created
(optional) The date and time the CPE was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
is_private
(optional) Indicates whether this CPE is of type `private` or not.
DBMS_CLOUD_OCI_VN_MONITORING_CPE_DEVICE_CONFIG_ANSWER_T Type 🔗
An individual answer to a CPE device question. The answers correlate to the questions that are specific to the CPE device type (see the `parameters` attribute of CPE_DEVICE_SHAPE_DETAIL Type).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_t (
key varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) A string that identifies the question to be answered. See the `key` attribute in CPE_DEVICE_CONFIG_QUESTION Function.
value
(optional) The answer to the question.
DBMS_CLOUD_OCI_VN_MONITORING_CPE_DEVICE_CONFIG_QUESTION_T Type 🔗
An individual question that the customer can answer about the CPE device. The customer provides answers to these questions in UPDATE_TUNNEL_CPE_DEVICE_CONFIG Function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_device_config_question_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
display_name varchar2(32767),
explanation varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_config_question_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_config_question_t (
key varchar2,
display_name varchar2,
explanation varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) A string that identifies the question.
display_name
(optional) A descriptive label for the question (for example, to display in a form in a graphical interface). Avoid entering confidential information.
explanation
(optional) A description or explanation of the question, to help the customer answer accurately.
DBMS_CLOUD_OCI_VN_MONITORING_CPE_DEVICE_INFO_T Type 🔗
Basic information about a particular CPE device type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_device_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
vendor varchar2(32767),
platform_software_version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_info_t (
vendor varchar2,
platform_software_version varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vendor
(optional) The vendor that makes the CPE device.
platform_software_version
(optional) The platform or software version of the CPE device.
DBMS_CLOUD_OCI_VN_MONITORING_CPE_DEVICE_CONFIG_QUESTION_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_cpe_device_config_question_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_device_config_question_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_cpe_device_config_question_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CPE_DEVICE_SHAPE_DETAIL_T Type 🔗
The detailed information about a particular CPE device type. Compare with CPE_DEVICE_SHAPE_SUMMARY Type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_device_shape_detail_t FORCE AUTHID CURRENT_USER IS OBJECT (
cpe_device_shape_id varchar2(32767),
cpe_device_info dbms_cloud_oci_vn_monitoring_cpe_device_info_t,
parameters dbms_cloud_oci_vn_monitoring_cpe_device_config_question_tbl,
template varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_shape_detail_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_shape_detail_t (
cpe_device_shape_id varchar2,
cpe_device_info dbms_cloud_oci_vn_monitoring_cpe_device_info_t,
parameters dbms_cloud_oci_vn_monitoring_cpe_device_config_question_tbl,
template varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cpe_device_shape_id
(optional) The OCID of the CPE device shape. This value uniquely identifies the type of CPE device.
cpe_device_info
(optional)
parameters
(optional) For certain CPE devices types, the customer can provide answers to questions that are specific to the device type. This attribute contains a list of those questions. The Networking service merges the answers with other information and renders a set of CPE configuration content. To provide the answers, use UPDATE_TUNNEL_CPE_DEVICE_CONFIG Function.
template
(optional) A template of CPE device configuration information that will be merged with the customer's answers to the questions to render the final CPE device configuration content. Also see: * GET_CPE_DEVICE_CONFIG_CONTENT Function * GET_IPSEC_CPE_DEVICE_CONFIG_CONTENT Function * GET_TUNNEL_CPE_DEVICE_CONFIG_CONTENT Function
DBMS_CLOUD_OCI_VN_MONITORING_CPE_DEVICE_SHAPE_SUMMARY_T Type 🔗
A summary of information about a particular CPE device type. Compare with CPE_DEVICE_SHAPE_DETAIL Type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_device_shape_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
cpe_device_info dbms_cloud_oci_vn_monitoring_cpe_device_info_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_shape_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cpe_device_shape_summary_t (
id varchar2,
cpe_device_info dbms_cloud_oci_vn_monitoring_cpe_device_info_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(optional) The OCID of the CPE device shape. This value uniquely identifies the type of CPE device.
cpe_device_info
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_BYOIP_RANGE_DETAILS_T Type 🔗
The information used to create a `ByoipRange` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_byoip_range_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
compartment_id varchar2(32767),
ipv6_cidr_block varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_byoip_range_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_byoip_range_details_t (
cidr_block varchar2,
compartment_id varchar2,
ipv6_cidr_block varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(optional) The BYOIP CIDR block. You can assign some or all of it to a public IP pool after it is validated. Example: `10.0.1.0/24`
compartment_id
(required) The OCID of the compartment containing the BYOIP CIDR block.
ipv6_cidr_block
(optional) The BYOIPv6 CIDR block. You can assign some or all of it to a VCN after it is validated.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_CAPTURE_FILTER_DETAILS_T Type 🔗
A capture filter contains a set of rules governing what traffic a VTAP mirrors.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_capture_filter_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
filter_type varchar2(32767),
vtap_capture_filter_rules dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_tbl,
flow_log_capture_filter_rules dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_capture_filter_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_capture_filter_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
filter_type varchar2,
vtap_capture_filter_rules dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_tbl,
flow_log_capture_filter_rules dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the capture filter.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
filter_type
(required) Indicates which service will use this capture filter
Allowed values are: 'VTAP', 'FLOWLOG'
vtap_capture_filter_rules
(optional) The set of rules governing what traffic a VTAP mirrors.
flow_log_capture_filter_rules
(optional) The set of rules governing what traffic the Flow Log collects when creating a flow log capture filter.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_CPE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_cpe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
ip_address varchar2(32767),
cpe_device_shape_id varchar2(32767),
is_private number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_cpe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_cpe_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
ip_address varchar2,
cpe_device_shape_id varchar2,
is_private number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the CPE.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
ip_address
(required) The public IP address of the on-premises router. Example: `203.0.113.2`
cpe_device_shape_id
(optional) The OCID of the CPE device type. You can provide a value if you want to later generate CPE device configuration content for IPSec connections that use this CPE. You can also call UPDATE_CPE Function later to provide a value. For a list of possible values, see LIST_CPE_DEVICE_SHAPES Function. For more information about generating CPE device configuration content, see: * GET_CPE_DEVICE_CONFIG_CONTENT Function * GET_IPSEC_CPE_DEVICE_CONFIG_CONTENT Function * GET_TUNNEL_CPE_DEVICE_CONFIG_CONTENT Function * GET_TUNNEL_CPE_DEVICE_CONFIG Function
is_private
(optional) Indicates whether this CPE is of type `private` or not.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_MACSEC_KEY_T Type 🔗
Defines the secret OCIDs held in Vault that represent the MACsec key.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_macsec_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
connectivity_association_name_secret_id varchar2(32767),
connectivity_association_key_secret_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_macsec_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_macsec_key_t (
connectivity_association_name_secret_id varchar2,
connectivity_association_key_secret_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
connectivity_association_name_secret_id
(required) Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key. NOTE: Only the latest secret version will be used.
connectivity_association_key_secret_id
(required) Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key. NOTE: Only the latest secret version will be used.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_MACSEC_PROPERTIES_T Type 🔗
Properties used to configure MACsec (if capable).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_macsec_properties_t FORCE AUTHID CURRENT_USER IS OBJECT (
state varchar2(32767),
primary_key dbms_cloud_oci_vn_monitoring_create_macsec_key_t,
encryption_cipher varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_macsec_properties_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_macsec_properties_t (
state varchar2,
primary_key dbms_cloud_oci_vn_monitoring_create_macsec_key_t,
encryption_cipher varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
state
(required) Indicates whether or not MACsec is enabled.
Allowed values are: 'ENABLED', 'DISABLED'
primary_key
(optional)
encryption_cipher
(optional) Type of encryption cipher suite to use for the MACsec connection.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_CROSS_CONNECT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_cross_connect_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
cross_connect_group_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
far_cross_connect_or_cross_connect_group_id varchar2(32767),
freeform_tags json_element_t,
location_name varchar2(32767),
near_cross_connect_or_cross_connect_group_id varchar2(32767),
port_speed_shape_name varchar2(32767),
customer_reference_name varchar2(32767),
macsec_properties dbms_cloud_oci_vn_monitoring_create_macsec_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_cross_connect_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_cross_connect_details_t (
compartment_id varchar2,
cross_connect_group_id varchar2,
defined_tags json_element_t,
display_name varchar2,
far_cross_connect_or_cross_connect_group_id varchar2,
freeform_tags json_element_t,
location_name varchar2,
near_cross_connect_or_cross_connect_group_id varchar2,
port_speed_shape_name varchar2,
customer_reference_name varchar2,
macsec_properties dbms_cloud_oci_vn_monitoring_create_macsec_properties_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the cross-connect.
cross_connect_group_id
(optional) The OCID of the cross-connect group to put this cross-connect in.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
far_cross_connect_or_cross_connect_group_id
(optional) If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on a different router (for the purposes of redundancy), provide the OCID of that existing cross-connect or cross-connect group.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
location_name
(required) The name of the FastConnect location where this cross-connect will be installed. To get a list of the available locations, see LIST_CROSS_CONNECT_LOCATIONS Function. Example: `CyrusOne, Chandler, AZ`
near_cross_connect_or_cross_connect_group_id
(optional) If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on the same router, provide the OCID of that existing cross-connect or cross-connect group.
port_speed_shape_name
(required) The port speed for this cross-connect. To get a list of the available port speeds, see LIST_CROSSCONNECT_PORT_SPEED_SHAPES Function. Example: `10 Gbps`
customer_reference_name
(optional) A reference name or identifier for the physical fiber connection that this cross-connect uses.
macsec_properties
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_CROSS_CONNECT_GROUP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_cross_connect_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
customer_reference_name varchar2(32767),
freeform_tags json_element_t,
macsec_properties dbms_cloud_oci_vn_monitoring_create_macsec_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_cross_connect_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_cross_connect_group_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
customer_reference_name varchar2,
freeform_tags json_element_t,
macsec_properties dbms_cloud_oci_vn_monitoring_create_macsec_properties_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the cross-connect group.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
customer_reference_name
(optional) A reference name or identifier for the physical fiber connection that this cross-connect group uses.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
macsec_properties
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_DHCP_OPTION_T Type 🔗
A single DHCP option according to RFC 1533. The two options available to use are DHCP_DNS_OPTION Type and DHCP_SEARCH_DOMAIN_OPTION Type. For more information, see DNS in Your Virtual Cloud Network and DHCP Options.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_dhcp_option_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_option_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_option_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) The specific DHCP option. Either `DomainNameServer` (for DHCP_DNS_OPTION Type) or `SearchDomain` (for DHCP_SEARCH_DOMAIN_OPTION Type).
DBMS_CLOUD_OCI_VN_MONITORING_DHCP_OPTION_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_dhcp_option_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_dhcp_option_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_dhcp_option_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_DHCP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_dhcp_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
options dbms_cloud_oci_vn_monitoring_dhcp_option_tbl,
vcn_id varchar2(32767),
domain_name_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_dhcp_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_dhcp_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
options dbms_cloud_oci_vn_monitoring_dhcp_option_tbl,
vcn_id varchar2,
domain_name_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the set of DHCP options.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
options
(required) A set of DHCP options.
vcn_id
(required) The OCID of the VCN the set of DHCP options belongs to.
domain_name_type
(optional) The search domain name type of DHCP options
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_NETWORK_CREATE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_network_create_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_network_create_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_network_create_details_t (
l_type varchar2,
id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required)
Allowed values are: 'VCN'
id
(optional) The OCID of the network attached to the DRG.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_DRG_ATTACHMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_drg_attachment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
drg_id varchar2(32767),
drg_route_table_id varchar2(32767),
network_details dbms_cloud_oci_vn_monitoring_drg_attachment_network_create_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
route_table_id varchar2(32767),
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_attachment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_attachment_details_t (
display_name varchar2,
drg_id varchar2,
drg_route_table_id varchar2,
network_details dbms_cloud_oci_vn_monitoring_drg_attachment_network_create_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
route_table_id varchar2,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
(optional) The OCID of the DRG route table that is assigned to this attachment. The DRG route table manages traffic inside the DRG.
network_details
(optional)
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
route_table_id
(optional) The OCID of the route table used by the DRG attachment. If you don't specify a route table here, the DRG attachment is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the DRG attachment. For information about why you would associate a route table with a DRG attachment, see: * Transit Routing: Access to Multiple VCNs in Same Region * Transit Routing: Private Access to Oracle Services This field is deprecated. Instead, use the networkDetails field to specify the VCN route table for this attachment.
vcn_id
(optional) The OCID of the VCN. This field is deprecated. Instead, use the `networkDetails` field to specify the OCID of the attached resource.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_DRG_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_drg_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the DRG.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_DRG_ROUTE_DISTRIBUTION_DETAILS_T Type 🔗
Details used to create a route distribution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_drg_route_distribution_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
drg_id varchar2(32767),
distribution_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_route_distribution_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_route_distribution_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
drg_id varchar2,
distribution_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
drg_id
(required) The OCID of the DRG the DRG route table belongs to.
distribution_type
(required) Whether this distribution defines how routes get imported into route tables or exported through DRG Attachments
Allowed values are: 'IMPORT'
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_DRG_ROUTE_TABLE_DETAILS_T Type 🔗
Details used in a request to create a DRG route table.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_drg_route_table_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
drg_id varchar2(32767),
import_drg_route_distribution_id varchar2(32767),
is_ecmp_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_route_table_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_drg_route_table_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
drg_id varchar2,
import_drg_route_distribution_id varchar2,
is_ecmp_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
drg_id
(required) The OCID of the DRG the DRG route table belongs to.
import_drg_route_distribution_id
(optional) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachments are inserted into the DRG route table.
is_ecmp_enabled
(optional) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises networks, enable ECMP on the DRG route table.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_IP_SEC_TUNNEL_BGP_SESSION_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_bgp_session_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
oracle_interface_ip varchar2(32767),
customer_interface_ip varchar2(32767),
oracle_interface_ipv6 varchar2(32767),
customer_interface_ipv6 varchar2(32767),
customer_bgp_asn varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_bgp_session_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_bgp_session_details_t (
oracle_interface_ip varchar2,
customer_interface_ip varchar2,
oracle_interface_ipv6 varchar2,
customer_interface_ipv6 varchar2,
customer_bgp_asn varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
oracle_interface_ip
(optional) The IP address for the Oracle end of the inside tunnel interface. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is required and used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, this IP address is optional. You can set this IP address to troubleshoot or monitor the tunnel. The value must be a /30 or /31. Example: `10.0.0.4/31`
customer_interface_ip
(optional) The IP address for the CPE end of the inside tunnel interface. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is required and used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, this IP address is optional. You can set this IP address to troubleshoot or monitor the tunnel. The value must be a /30 or /31. Example: `10.0.0.5/31`
oracle_interface_ipv6
(optional) The IPv6 address for the Oracle end of the inside tunnel interface. This IP address is optional. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. Only subnet masks from /64 up to /127 are allowed. Example: `2001:db8::1/64`
customer_interface_ipv6
(optional) The IPv6 address for the CPE end of the inside tunnel interface. This IP address is optional. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. Only subnet masks from /64 up to /127 are allowed. Example: `2001:db8::1/64`
customer_bgp_asn
(optional) If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this ASN is required and used for the tunnel's BGP session. This is the ASN of the network on the CPE end of the BGP session. Can be a 2-byte or 4-byte ASN. Uses \"asplain\" format. If the tunnel's `routing` attribute is set to `STATIC`, the `customerBgpAsn` must be null. Example: `12345` (2-byte) or `1587232876` (4-byte)
DBMS_CLOUD_OCI_VN_MONITORING_PHASE_ONE_CONFIG_DETAILS_T Type 🔗
Configuration details for IKE phase one (ISAKMP) configuration parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_phase_one_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_custom_phase_one_config number,
authentication_algorithm varchar2(32767),
encryption_algorithm varchar2(32767),
diffie_helman_group varchar2(32767),
lifetime_in_seconds number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_phase_one_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_phase_one_config_details_t (
is_custom_phase_one_config number,
authentication_algorithm varchar2,
encryption_algorithm varchar2,
diffie_helman_group varchar2,
lifetime_in_seconds number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_custom_phase_one_config
(optional) Indicates whether custom configuration is enabled for phase one options.
authentication_algorithm
(optional) The custom authentication algorithm proposed during phase one tunnel negotiation.
These configuration details are used for dead peer detection (DPD). DPD periodically checks the stability of the connection to the customer premises (CPE), and may be used to detect that the link to the CPE has gone down.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_dpd_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
dpd_mode varchar2(32767),
dpd_timeout_in_sec number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dpd_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dpd_config_t (
dpd_mode varchar2,
dpd_timeout_in_sec number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
dpd_mode
(optional) This option defines whether DPD can be initiated from the Oracle side of the connection.
(optional) DPD timeout in seconds. This sets the longest interval between CPE device health messages before the IPSec connection indicates it has lost contact with the CPE. The default is 20 seconds.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_IP_SEC_TUNNEL_ENCRYPTION_DOMAIN_DETAILS_T Type 🔗
Request to enable a multi-encryption domain policy on the IPSec tunnel. There can't be more than 50 security associations in use at one time. See Encryption domain for policy-based tunnels for more.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_encryption_domain_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
oracle_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cpe_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_encryption_domain_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_encryption_domain_details_t (
oracle_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cpe_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
oracle_traffic_selector
(optional) Lists IPv4 or IPv6-enabled subnets in your Oracle tenancy.
cpe_traffic_selector
(optional) Lists IPv4 or IPv6-enabled subnets in your on-premises network.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_IP_SEC_CONNECTION_TUNNEL_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
routing varchar2(32767),
ike_version varchar2(32767),
shared_secret varchar2(32767),
bgp_session_config dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_bgp_session_details_t,
oracle_initiation varchar2(32767),
nat_translation_enabled varchar2(32767),
phase_one_config dbms_cloud_oci_vn_monitoring_phase_one_config_details_t,
phase_two_config dbms_cloud_oci_vn_monitoring_phase_two_config_details_t,
dpd_config dbms_cloud_oci_vn_monitoring_dpd_config_t,
oracle_tunnel_ip varchar2(32767),
associated_virtual_circuits dbms_cloud_oci_vn_monitoring_varchar2_tbl,
drg_route_table_id varchar2(32767),
encryption_domain_config dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_encryption_domain_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_t (
display_name varchar2,
routing varchar2,
ike_version varchar2,
shared_secret varchar2,
bgp_session_config dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_bgp_session_details_t,
oracle_initiation varchar2,
nat_translation_enabled varchar2,
phase_one_config dbms_cloud_oci_vn_monitoring_phase_one_config_details_t,
phase_two_config dbms_cloud_oci_vn_monitoring_phase_two_config_details_t,
dpd_config dbms_cloud_oci_vn_monitoring_dpd_config_t,
oracle_tunnel_ip varchar2,
associated_virtual_circuits dbms_cloud_oci_vn_monitoring_varchar2_tbl,
drg_route_table_id varchar2,
encryption_domain_config dbms_cloud_oci_vn_monitoring_create_ip_sec_tunnel_encryption_domain_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
routing
(optional) The type of routing to use for this tunnel (BGP dynamic routing, static routing, or policy-based routing).
Allowed values are: 'BGP', 'STATIC', 'POLICY'
ike_version
(optional) Internet Key Exchange protocol version.
Allowed values are: 'V1', 'V2'
shared_secret
(optional) The shared secret (pre-shared key) to use for the IPSec tunnel. Only numbers, letters, and spaces are allowed. If you don't provide a value, Oracle generates a value for you. You can specify your own shared secret later if you like with UPDATE_IP_SEC_CONNECTION_TUNNEL_SHARED_SECRET Function.
bgp_session_config
(optional)
oracle_initiation
(optional) Indicates whether the Oracle end of the IPSec connection is able to initiate starting up the IPSec tunnel.
(optional) By default (the `AUTO` setting), IKE sends packets with a source and destination port set to 500, and when it detects that the port used to forward packets has changed (most likely because a NAT device is between the CPE device and the Oracle VPN headend) it will try to negotiate the use of NAT-T. The `ENABLED` option sets the IKE protocol to use port 4500 instead of 500 and forces encapsulating traffic with the ESP protocol inside UDP packets. The `DISABLED` option directs IKE to completely refuse to negotiate NAT-T even if it senses there may be a NAT device in use.
Allowed values are: 'ENABLED', 'DISABLED', 'AUTO'
phase_one_config
(optional)
phase_two_config
(optional)
dpd_config
(optional)
oracle_tunnel_ip
(optional) The headend IP that you can choose on the Oracle side to terminate your private IPSec tunnel.
associated_virtual_circuits
(optional) The list of virtual circuit OCIDs over which your network can reach this tunnel.
drg_route_table_id
(optional) The OCID of the DRG route table assigned to this attachment. The DRG route table manages traffic inside the DRG.
encryption_domain_config
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_IP_SEC_CONNECTION_TUNNEL_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_IP_SEC_CONNECTION_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
cpe_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
drg_id varchar2(32767),
freeform_tags json_element_t,
cpe_local_identifier varchar2(32767),
cpe_local_identifier_type varchar2(32767),
static_routes dbms_cloud_oci_vn_monitoring_varchar2_tbl,
tunnel_configuration dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_tbl,
tunnel_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_details_t (
compartment_id varchar2,
cpe_id varchar2,
defined_tags json_element_t,
display_name varchar2,
drg_id varchar2,
freeform_tags json_element_t,
cpe_local_identifier varchar2,
cpe_local_identifier_type varchar2,
static_routes dbms_cloud_oci_vn_monitoring_varchar2_tbl,
tunnel_configuration dbms_cloud_oci_vn_monitoring_create_ip_sec_connection_tunnel_details_tbl,
tunnel_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the IPSec connection.
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
cpe_local_identifier
(optional) Your identifier for your CPE device. Can be either an IP address or a hostname (specifically, the fully qualified domain name (FQDN)). The type of identifier you provide here must correspond to the value for `cpeLocalIdentifierType`. If you don't provide a value, the `ipAddress` attribute for the CPE Type object specified by `cpeId` is used as the `cpeLocalIdentifier`. For information about why you'd provide this value, see If Your CPE Is Behind a NAT Device. Example IP address: `10.0.3.3` Example hostname: `cpe.example.com`
cpe_local_identifier_type
(optional) The type of identifier for your CPE device. The value you provide here must correspond to the value for `cpeLocalIdentifier`.
Allowed values are: 'IP_ADDRESS', 'HOSTNAME'
static_routes
(required) Static routes to the CPE. A static route's CIDR must not be a multicast address or class E address. Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes. For more information, see the important note in IP_SEC_CONNECTION Type. The CIDR can be either IPv4 or IPv6. IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. Example: `10.0.1.0/24` Example: `2001:db8::/32`
tunnel_configuration
(optional) Information for creating the individual tunnels in the IPSec connection. You can provide a maximum of 2 `tunnelConfiguration` objects in the array (one for each of the two tunnels).
tunnel_count
(optional) The count of tunnels in the IPsec connection. This value should be equal to the number of `tunnelConfiguration` objects specified in the `CreateIPSecConnection` request.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_INTERNET_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_internet_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
is_enabled number,
vcn_id varchar2(32767),
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_internet_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_internet_gateway_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
is_enabled number,
vcn_id varchar2,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the internet gateway.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
is_enabled
(required) Whether the gateway is enabled upon creation.
vcn_id
(required) The OCID of the VCN the Internet Gateway is attached to.
route_table_id
(optional) The OCID of the route table the Internet Gateway is using.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_IPV6_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_ipv6_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
ip_address varchar2(32767),
vnic_id varchar2(32767),
ipv6_subnet_cidr varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ipv6_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_ipv6_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
ip_address varchar2,
vnic_id varchar2,
ipv6_subnet_cidr varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
ip_address
(optional) An IPv6 address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns an IPv6 address from the subnet. The subnet is the one that contains the VNIC you specify in `vnicId`. Example: `2001:DB8::`
vnic_id
(required) The OCID of the VNIC to assign the IPv6 to. The IPv6 will be in the VNIC's subnet.
ipv6_subnet_cidr
(optional) The IPv6 CIDR allocated to the subnet. This is required if more than one IPv6 CIDR exists on the subnet.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_LOCAL_PEERING_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_local_peering_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
route_table_id varchar2(32767),
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_local_peering_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_local_peering_gateway_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
route_table_id varchar2,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the local peering gateway (LPG).
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
route_table_id
(optional) The OCID of the route table the LPG will use. If you don't specify a route table here, the LPG is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the LPG. For information about why you would associate a route table with an LPG, see Transit Routing: Access to Multiple VCNs in Same Region.
vcn_id
(required) The OCID of the VCN the LPG belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_NAT_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_nat_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
block_traffic number,
vcn_id varchar2(32767),
public_ip_id varchar2(32767),
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_nat_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_nat_gateway_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
block_traffic number,
vcn_id varchar2,
public_ip_id varchar2,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the NAT gateway.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
block_traffic
(optional) Whether the NAT gateway blocks traffic through it. The default is `false`. Example: `true`
vcn_id
(required) The OCID of the VCN the gateway belongs to.
public_ip_id
(optional) The OCID of the public IP address associated with the NAT gateway.
route_table_id
(optional) The OCID of the route table used by the NAT gateway. If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_NETWORK_SECURITY_GROUP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_network_security_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_network_security_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_network_security_group_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the network security group.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
vcn_id
(required) The OCID of the VCN to create the network security group in.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_PATH_ANALYZER_TEST_DETAILS_T Type 🔗
Details used to create a `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_path_analyzer_test_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_path_analyzer_test_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_path_analyzer_test_details_t (
display_name varchar2,
compartment_id varchar2,
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID for the `PathAnalyzerTest` resource's compartment.
protocol
(required) The IP protocol to use in the `PathAnalyzerTest` resource.
source_endpoint
(required)
destination_endpoint
(required)
protocol_parameters
(optional)
query_options
(optional)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_PRIVATE_IP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_private_ip_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
hostname_label varchar2(32767),
ip_address varchar2(32767),
vnic_id varchar2(32767),
vlan_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_private_ip_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_private_ip_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
hostname_label varchar2,
ip_address varchar2,
vnic_id varchar2,
vlan_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
hostname_label
(optional) The hostname for the private IP. Used for DNS. The value is the hostname portion of the private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. For more information, see DNS in Your Virtual Cloud Network. Example: `bminstance1`
ip_address
(optional) A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
vnic_id
(optional) The OCID of the VNIC to assign the private IP to. The VNIC and private IP must be in the same subnet.
vlan_id
(optional) Use this attribute only with the Oracle Cloud VMware Solution. The OCID of the VLAN from which the private IP is to be drawn. The IP address, *if supplied*, must be valid for the given VLAN. See VLAN Type.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_PUBLIC_IP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_public_ip_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
lifetime varchar2(32767),
private_ip_id varchar2(32767),
public_ip_pool_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_public_ip_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_public_ip_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
lifetime varchar2,
private_ip_id varchar2,
public_ip_pool_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the public IP. For ephemeral public IPs, you must set this to the private IP's compartment OCID.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
lifetime
(required) Defines when the public IP is deleted and released back to the Oracle Cloud Infrastructure public IP pool. For more information, see Public IP Addresses.
Allowed values are: 'EPHEMERAL', 'RESERVED'
private_ip_id
(optional) The OCID of the private IP to assign the public IP to. Required for an ephemeral public IP because it must always be assigned to a private IP (specifically a *primary* private IP). Optional for a reserved public IP. If you don't provide it, the public IP is created but not assigned to a private IP. You can later assign the public IP with UPDATE_PUBLIC_IP Function.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_PUBLIC_IP_POOL_DETAILS_T Type 🔗
The information used to create a public IP pool.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_public_ip_pool_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_public_ip_pool_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_public_ip_pool_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the public IP pool.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_REMOTE_PEERING_CONNECTION_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_remote_peering_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
drg_id varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_remote_peering_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_remote_peering_connection_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
drg_id varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the RPC.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
drg_id
(required) The OCID of the DRG the RPC belongs to.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_ROUTE_RULE_T Type 🔗
A mapping between a destination IP address range and a virtual device to route matching packets to (a target).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_route_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
destination varchar2(32767),
destination_type varchar2(32767),
network_entity_id varchar2(32767),
description varchar2(32767),
route_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_route_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_route_rule_t (
cidr_block varchar2,
destination varchar2,
destination_type varchar2,
network_entity_id varchar2,
description varchar2,
route_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(optional) Deprecated. Instead use `destination` and `destinationType`. Requests that include both `cidrBlock` and `destination` will be rejected. A destination IP address range in CIDR notation. Matching packets will be routed to the indicated network entity (the target). Cannot be an IPv6 CIDR. Example: `0.0.0.0/0`
destination
(optional) Conceptually, this is the range of IP addresses used for matching when routing traffic. Required if you provide a `destinationType`. Allowed values: * IP address range in CIDR notation. Can be an IPv4 or IPv6 CIDR. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56`. If you set this to an IPv6 CIDR, the route rule's target can only be a DRG or internet gateway. IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a route rule for traffic destined for a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`.
destination_type
(optional) Type of destination for the rule. Required if you provide a `destination`. * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `destination` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic destined for a particular `Service` through a service gateway).
(required) The OCID for the route rule's target. For information about the type of targets you can specify, see Route Tables.
description
(optional) An optional description of your choice for the rule.
route_type
(optional) A route rule can be STATIC if manually added to the route table, LOCAL if added by OCI to the route table.
Allowed values are: 'STATIC', 'LOCAL'
DBMS_CLOUD_OCI_VN_MONITORING_ROUTE_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_route_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_route_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_route_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_ROUTE_TABLE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_route_table_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
route_rules dbms_cloud_oci_vn_monitoring_route_rule_tbl,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_route_table_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_route_table_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
route_rules dbms_cloud_oci_vn_monitoring_route_rule_tbl,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the route table.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
route_rules
(required) The collection of rules used for routing destination IPs to network devices.
vcn_id
(required) The OCID of the VCN the route table belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_EGRESS_SECURITY_RULE_T Type 🔗
A rule for allowing outbound IP packets.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_egress_security_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
destination varchar2(32767),
destination_type varchar2(32767),
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
is_stateless number,
protocol varchar2(32767),
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_egress_security_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_egress_security_rule_t (
destination varchar2,
destination_type varchar2,
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
is_stateless number,
protocol varchar2,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
destination
(required) Conceptually, this is the range of IP addresses that a packet originating from the instance can go to. Allowed values: * IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56` Note that IPv6 addressing is currently supported only in certain regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security list rule for traffic destined for a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`.
destination_type
(optional) Type of destination for the rule. The default is `CIDR_BLOCK`. Allowed values: * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `destination` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic destined for a particular `Service` through a service gateway).
(optional) A stateless rule allows traffic in one direction. Remember to add a corresponding stateless rule in the other direction if you need to support bidirectional traffic. For example, if egress traffic allows TCP destination port 80, there should be an ingress rule to allow TCP source port 80. Defaults to false, which means the rule is stateful and a corresponding rule is not necessary for bidirectional traffic.
protocol
(required) The transport protocol. Specify either `all` or an IPv4 protocol number as defined in Protocol Numbers. Options are supported only for ICMP (\"1\"), TCP (\"6\"), UDP (\"17\"), and ICMPv6 (\"58\").
tcp_options
(optional)
udp_options
(optional)
description
(optional) An optional description of your choice for the rule.
DBMS_CLOUD_OCI_VN_MONITORING_INGRESS_SECURITY_RULE_T Type 🔗
A rule for allowing inbound IP packets.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ingress_security_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
is_stateless number,
protocol varchar2(32767),
source varchar2(32767),
source_type varchar2(32767),
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ingress_security_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ingress_security_rule_t (
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
is_stateless number,
protocol varchar2,
source varchar2,
source_type varchar2,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
icmp_options
(optional)
is_stateless
(optional) A stateless rule allows traffic in one direction. Remember to add a corresponding stateless rule in the other direction if you need to support bidirectional traffic. For example, if ingress traffic allows TCP destination port 80, there should be an egress rule to allow TCP source port 80. Defaults to false, which means the rule is stateful and a corresponding rule is not necessary for bidirectional traffic.
protocol
(required) The transport protocol. Specify either `all` or an IPv4 protocol number as defined in Protocol Numbers. Options are supported only for ICMP (\"1\"), TCP (\"6\"), UDP (\"17\"), and ICMPv6 (\"58\").
source
(required) Conceptually, this is the range of IP addresses that a packet coming into the instance can come from. Allowed values: * IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56`. IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security list rule for traffic coming from a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`.
source_type
(optional) Type of source for the rule. The default is `CIDR_BLOCK`. * `CIDR_BLOCK`: If the rule's `source` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `source` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic coming from a particular `Service` through a service gateway).
(optional) An optional description of your choice for the rule.
DBMS_CLOUD_OCI_VN_MONITORING_EGRESS_SECURITY_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_egress_security_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_egress_security_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_egress_security_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_INGRESS_SECURITY_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_ingress_security_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ingress_security_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_ingress_security_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_SECURITY_LIST_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_security_list_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
egress_security_rules dbms_cloud_oci_vn_monitoring_egress_security_rule_tbl,
freeform_tags json_element_t,
ingress_security_rules dbms_cloud_oci_vn_monitoring_ingress_security_rule_tbl,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_security_list_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_security_list_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
egress_security_rules dbms_cloud_oci_vn_monitoring_egress_security_rule_tbl,
freeform_tags json_element_t,
ingress_security_rules dbms_cloud_oci_vn_monitoring_ingress_security_rule_tbl,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to contain the security list.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
egress_security_rules
(required) Rules for allowing egress IP packets.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
ingress_security_rules
(required) Rules for allowing ingress IP packets.
vcn_id
(required) The OCID of the VCN the security list belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_SERVICE_ID_REQUEST_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_service_id_request_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
service_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_id_request_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_id_request_details_t (
service_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_SERVICE_ID_REQUEST_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_service_id_request_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_service_id_request_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_service_id_request_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_SERVICE_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_service_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
route_table_id varchar2(32767),
services dbms_cloud_oci_vn_monitoring_service_id_request_details_tbl,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_service_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_service_gateway_details_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
route_table_id varchar2,
services dbms_cloud_oci_vn_monitoring_service_id_request_details_tbl,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID] of the compartment to contain the service gateway.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
route_table_id
(optional) The OCID of the route table the service gateway will use. If you don't specify a route table here, the service gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the service gateway. For information about why you would associate a route table with a service gateway, see Transit Routing: Private Access to Oracle Services.
services
(required) List of the OCIDs of the SERVICE Type objects to enable for the service gateway. This list can be empty if you don't want to enable any `Service` objects when you create the gateway. You can enable a `Service` object later by using either ATTACH_SERVICE_ID Function or UPDATE_SERVICE_GATEWAY Function. For each enabled `Service`, make sure there's a route rule with the `Service` object's `cidrBlock` as the rule's destination and the service gateway as the rule's target. See ROUTE_TABLE Type.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_SUBNET_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_subnet_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
availability_domain varchar2(32767),
cidr_block varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
dhcp_options_id varchar2(32767),
display_name varchar2(32767),
dns_label varchar2(32767),
freeform_tags json_element_t,
ipv6_cidr_block varchar2(32767),
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
prohibit_internet_ingress number,
prohibit_public_ip_on_vnic number,
route_table_id varchar2(32767),
security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_subnet_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_subnet_details_t (
availability_domain varchar2,
cidr_block varchar2,
compartment_id varchar2,
defined_tags json_element_t,
dhcp_options_id varchar2,
display_name varchar2,
dns_label varchar2,
freeform_tags json_element_t,
ipv6_cidr_block varchar2,
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
prohibit_internet_ingress number,
prohibit_public_ip_on_vnic number,
route_table_id varchar2,
security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
availability_domain
(optional) Controls whether the subnet is regional or specific to an availability domain. Oracle recommends creating regional subnets because they're more flexible and make it easier to implement failover across availability domains. Originally, AD-specific subnets were the only kind available to use. To create a regional subnet, omit this attribute. Then any resources later created in this subnet (such as a Compute instance) can be created in any availability domain in the region. To instead create an AD-specific subnet, set this attribute to the availability domain you want this subnet to be in. Then any resources later created in this subnet can only be created in that availability domain. Example: `Uocm:PHX-AD-1`
cidr_block
(required) The CIDR IP address range of the subnet. The CIDR must maintain the following rules - a. The CIDR block is valid and correctly formatted. b. The new range is within one of the parent VCN ranges. Example: `10.0.1.0/24`
compartment_id
(required) The OCID of the compartment to contain the subnet.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
dhcp_options_id
(optional) The OCID of the set of DHCP options the subnet will use. If you don't provide a value, the subnet uses the VCN's default set of DHCP options.
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
dns_label
(optional) A DNS label for the subnet, used in conjunction with the VNIC's hostname and VCN's DNS label to form a fully qualified domain name (FQDN) for each VNIC within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be an alphanumeric string that begins with a letter and is unique within the VCN. The value cannot be changed. This value must be set if you want to use the Internet and VCN Resolver to resolve the hostnames of instances in the subnet. It can only be set if the VCN itself was created with a DNS label. For more information, see DNS in Your Virtual Cloud Network. Example: `subnet123`
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
ipv6_cidr_block
(optional) Use this to enable IPv6 addressing for this subnet. The VCN must be enabled for IPv6. You can't change this subnet characteristic later. All subnets are /64 in size. The subnet portion of the IPv6 address is the fourth hextet from the left (1111 in the following example). For important details about IPv6 addressing in a VCN, see IPv6 Addresses. Example: `2001:0db8:0123:1111::/64`
ipv6_cidr_blocks
(optional) The list of all IPv6 CIDR blocks (Oracle allocated IPv6 GUA, ULA or private IPv6 CIDR blocks, BYOIPv6 CIDR blocks) for the subnet that meets the following criteria: - The CIDR blocks must be valid. - Multiple CIDR blocks must not overlap each other or the on-premises network CIDR block. - The number of CIDR blocks must not exceed the limit of IPv6 CIDR blocks allowed to a subnet.
prohibit_internet_ingress
(optional) Whether to disallow ingress internet traffic to VNICs within this subnet. Defaults to false. For IPv6, if `prohibitInternetIngress` is set to `true`, internet access is not allowed for any IPv6s assigned to VNICs in the subnet. Otherwise, ingress internet traffic is allowed by default. `prohibitPublicIpOnVnic` will be set to the value of `prohibitInternetIngress` to dictate IPv4 behavior in this subnet. Only one or the other flag should be specified. Example: `true`
prohibit_public_ip_on_vnic
(optional) Whether VNICs within this subnet can have public IP addresses. Defaults to false, which means VNICs created in this subnet will automatically be assigned public IP addresses unless specified otherwise during instance launch or VNIC creation (with the `assignPublicIp` flag in CREATE_VNIC_DETAILS Type). If `prohibitPublicIpOnVnic` is set to true, VNICs created in this subnet cannot have public IP addresses (that is, it's a private subnet). If you intend to use an IPv6 CIDR block, you should use the flag `prohibitInternetIngress` to specify ingress internet traffic behavior of the subnet. Example: `true`
route_table_id
(optional) The OCID of the route table the subnet will use. If you don't provide a value, the subnet uses the VCN's default route table.
security_list_ids
(optional) The OCIDs of the security list or lists the subnet will use. If you don't provide a value, the subnet uses the VCN's default security list. Remember that security lists are associated *with the subnet*, but the rules are applied to the individual VNICs in the subnet.
vcn_id
(required) The OCID of the VCN to contain the subnet.
DBMS_CLOUD_OCI_VN_MONITORING_BYOIPV6_CIDR_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_VCN_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_vcn_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
compartment_id varchar2(32767),
ipv6_private_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
is_oracle_gua_allocation_enabled number,
byoipv6_cidr_details dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_tbl,
defined_tags json_element_t,
display_name varchar2(32767),
dns_label varchar2(32767),
freeform_tags json_element_t,
is_ipv6_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_vcn_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_vcn_details_t (
cidr_block varchar2,
cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
compartment_id varchar2,
ipv6_private_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
is_oracle_gua_allocation_enabled number,
byoipv6_cidr_details dbms_cloud_oci_vn_monitoring_byoipv6_cidr_details_tbl,
defined_tags json_element_t,
display_name varchar2,
dns_label varchar2,
freeform_tags json_element_t,
is_ipv6_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(optional) **Deprecated.** Do *not* set this value. Use `cidrBlocks` instead. Example: `10.0.0.0/16`
cidr_blocks
(optional) The list of one or more IPv4 CIDR blocks for the VCN that meet the following criteria: - The CIDR blocks must be valid. - They must not overlap with each other or with the on-premises network CIDR block. - The number of CIDR blocks must not exceed the limit of CIDR blocks allowed per VCN. **Important:** Do *not* specify a value for `cidrBlock`. Use this parameter instead.
compartment_id
(required) The OCID of the compartment to contain the VCN.
ipv6_private_cidr_blocks
(optional) The list of one or more ULA or Private IPv6 CIDR blocks for the vcn that meets the following criteria: - The CIDR blocks must be valid. - Multiple CIDR blocks must not overlap each other or the on-premises network CIDR block. - The number of CIDR blocks must not exceed the limit of IPv6 CIDR blocks allowed to a vcn. **Important:** Do *not* specify a value for `ipv6CidrBlock`. Use this parameter instead.
is_oracle_gua_allocation_enabled
(optional) Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
byoipv6_cidr_details
(optional) The list of BYOIPv6 OCIDs and BYOIPv6 CIDR blocks required to create a VCN that uses BYOIPv6 ranges.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
dns_label
(optional) A DNS label for the VCN, used in conjunction with the VNIC's hostname and subnet's DNS label to form a fully qualified domain name (FQDN) for each VNIC within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`). Not required to be unique, but it's a best practice to set unique DNS labels for VCNs in your tenancy. Must be an alphanumeric string that begins with a letter. The value cannot be changed. You must set this value if you want instances to be able to use hostnames to resolve other instances in the VCN. Otherwise the Internet and VCN Resolver will not work. For more information, see DNS in Your Virtual Cloud Network. Example: `vcn1`
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
is_ipv6_enabled
(optional) Whether IPv6 is enabled for the VCN. Default is `false`. If enabled, Oracle will assign the VCN a IPv6 /56 CIDR block. You may skip having Oracle allocate the VCN a IPv6 /56 CIDR block by setting isOracleGuaAllocationEnabled to `false`. For important details about IPv6 addressing in a VCN, see IPv6 Addresses. Example: `true`
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_MAPPING_T Type 🔗
For use with Oracle Cloud Infrastructure FastConnect. Each VIRTUAL_CIRCUIT Type runs on one or more cross-connects or cross-connect groups. A `CrossConnectMapping` contains the properties for an individual cross-connect or cross-connect group associated with a given virtual circuit. The mapping includes information about the cross-connect or cross-connect group, the VLAN, and the BGP peering session. If you're a customer who is colocated with Oracle, that means you own both the virtual circuit and the physical connection it runs on (cross-connect or cross-connect group), so you specify all the information in the mapping. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses. If you're a provider, then you own the physical connection that the customer's virtual circuit runs on, so you contribute information about the cross-connect or cross-connect group and VLAN. Who specifies the BGP peering information in the case of customer connection via provider? If the BGP session goes from Oracle to the provider's edge router, then the provider also specifies the BGP peering information. If the BGP session instead goes from Oracle to the customer's edge router, then the customer specifies the BGP peering information. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses. Every `CrossConnectMapping` must have BGP IPv4 peering addresses. BGP IPv6 peering addresses are optional. If BGP IPv6 addresses are provided, the customer can exchange IPv6 routes with Oracle.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_mapping_t FORCE AUTHID CURRENT_USER IS OBJECT (
bgp_md5_auth_key varchar2(32767),
cross_connect_or_cross_connect_group_id varchar2(32767),
customer_bgp_peering_ip varchar2(32767),
oracle_bgp_peering_ip varchar2(32767),
customer_bgp_peering_ipv6 varchar2(32767),
oracle_bgp_peering_ipv6 varchar2(32767),
vlan number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_mapping_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_mapping_t (
bgp_md5_auth_key varchar2,
cross_connect_or_cross_connect_group_id varchar2,
customer_bgp_peering_ip varchar2,
oracle_bgp_peering_ip varchar2,
customer_bgp_peering_ipv6 varchar2,
oracle_bgp_peering_ipv6 varchar2,
vlan number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bgp_md5_auth_key
(optional) The key for BGP MD5 authentication. Only applicable if your system requires MD5 authentication. If empty or not set (null), that means you don't use BGP MD5 authentication.
cross_connect_or_cross_connect_group_id
(optional) The OCID of the cross-connect or cross-connect group for this mapping. Specified by the owner of the cross-connect or cross-connect group (the customer if the customer is colocated with Oracle, or the provider if the customer is connecting via provider).
customer_bgp_peering_ip
(optional) The BGP IPv4 address for the router on the other end of the BGP session from Oracle. Specified by the owner of that router. If the session goes from Oracle to a customer, this is the BGP IPv4 address of the customer's edge router. If the session goes from Oracle to a provider, this is the BGP IPv4 address of the provider's edge router. Must use a subnet mask from /28 to /31. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses. Example: `10.0.0.18/31`
oracle_bgp_peering_ip
(optional) The IPv4 address for Oracle's end of the BGP session. Must use a subnet mask from /28 to /31. If the session goes from Oracle to a customer's edge router, the customer specifies this information. If the session goes from Oracle to a provider's edge router, the provider specifies this. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses. Example: `10.0.0.19/31`
customer_bgp_peering_ipv6
(optional) The BGP IPv6 address for the router on the other end of the BGP session from Oracle. Specified by the owner of that router. If the session goes from Oracle to a customer, this is the BGP IPv6 address of the customer's edge router. If the session goes from Oracle to a provider, this is the BGP IPv6 address of the provider's edge router. Only subnet masks from /64 up to /127 are allowed. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv6 addresses. IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. Example: `2001:db8::1/64`
oracle_bgp_peering_ipv6
(optional) The IPv6 address for Oracle's end of the BGP session. Only subnet masks from /64 up to /127 are allowed. If the session goes from Oracle to a customer's edge router, the customer specifies this information. If the session goes from Oracle to a provider's edge router, the provider specifies this. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv6 addresses. Note that IPv6 addressing is currently supported only in certain regions. See IPv6 Addresses. Example: `2001:db8::2/64`
vlan
(optional) The number of the specific VLAN (on the cross-connect or cross-connect group) that is assigned to this virtual circuit. Specified by the owner of the cross-connect or cross-connect group (the customer if the customer is colocated with Oracle, or the provider if the customer is connecting via provider). Example: `200`
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_MAPPING_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_cross_connect_mapping_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_mapping_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_cross_connect_mapping_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_VIRTUAL_CIRCUIT_DETAILS_T Type 🔗
(optional) The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see LIST_FAST_CONNECT_PROVIDER_VIRTUAL_CIRCUIT_BANDWIDTH_SHAPES Function. Example: `10 Gbps`
compartment_id
(required) The OCID of the compartment to contain the virtual circuit.
cross_connect_mappings
(optional) Create a `CrossConnectMapping` for each cross-connect or cross-connect group this virtual circuit will run on.
routing_policy
(optional) The routing policy sets how routing information about the Oracle cloud is shared over a public virtual circuit. Policies available are: `ORACLE_SERVICE_NETWORK`, `REGIONAL`, `MARKET_LEVEL`, and `GLOBAL`. See Route Filtering for details. By default, routing information is shared for all routes in the same market.
(optional) Set to `ENABLED` (the default) to activate the BGP session of the virtual circuit, set to `DISABLED` to deactivate the virtual circuit.
Allowed values are: 'ENABLED', 'DISABLED'
is_bfd_enabled
(optional) Set to `true` to enable BFD for IPv4 BGP peering, or set to `false` to disable BFD. If this is not set, the default is `false`.
is_transport_mode
(optional) Set to `true` for the virtual circuit to carry only encrypted traffic, or set to `false` for the virtual circuit to carry unencrypted traffic. If this is not set, the default is `false`.
customer_bgp_asn
(optional) Deprecated. Instead use `customerAsn`. If you specify values for both, the request will be rejected.
customer_asn
(optional) Your BGP ASN (either public or private). Provide this value only if there's a BGP session that goes from your edge router to Oracle. Otherwise, leave this empty or null. Can be a 2-byte or 4-byte ASN. Uses \"asplain\" format. Example: `12345` (2-byte) or `1587232876` (4-byte)
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
gateway_id
(optional) For private virtual circuits only. The OCID of the DRG Type that this virtual circuit uses.
provider_name
(optional) Deprecated. Instead use `providerServiceId`. To get a list of the provider names, see LIST_FAST_CONNECT_PROVIDER_SERVICES Function.
provider_service_id
(optional) The OCID of the service offered by the provider (if you're connecting via a provider). To get a list of the available service offerings, see LIST_FAST_CONNECT_PROVIDER_SERVICES Function.
provider_service_key_name
(optional) The service key name offered by the provider (if the customer is connecting via a provider).
provider_service_name
(optional) Deprecated. Instead use `providerServiceId`. To get a list of the provider names, see LIST_FAST_CONNECT_PROVIDER_SERVICES Function.
public_prefixes
(optional) For a public virtual circuit. The public IP prefixes (CIDRs) the customer wants to advertise across the connection.
l_region
(optional) The Oracle Cloud Infrastructure region where this virtual circuit is located. Example: `phx`
l_type
(required) The type of IP addresses used in this virtual circuit. PRIVATE means RFC 1918 addresses (10.0.0.0/8, 172.16/12, and 192.168/16).
Allowed values are: 'PUBLIC', 'PRIVATE'
ip_mtu
(optional) The layer 3 IP MTU to use with this virtual circuit.
Allowed values are: 'MTU_1500', 'MTU_9000'
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_VLAN_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_vlan_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
availability_domain varchar2(32767),
cidr_block varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
route_table_id varchar2(32767),
vcn_id varchar2(32767),
vlan_tag number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_vlan_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_vlan_details_t (
availability_domain varchar2,
cidr_block varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
route_table_id varchar2,
vcn_id varchar2,
vlan_tag number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
availability_domain
(optional) Controls whether the VLAN is regional or specific to an availability domain. A regional VLAN has the flexibility to implement failover across availability domains. Previously, all VLANs were AD-specific. To create a regional VLAN, omit this attribute. Resources created subsequently in this VLAN (such as a Compute instance) can be created in any availability domain in the region. To create an AD-specific VLAN, use this attribute to specify the availability domain. Resources created in this VLAN must be in that availability domain. Example: `Uocm:PHX-AD-1`
cidr_block
(required) The range of IPv4 addresses that will be used for layer 3 communication with hosts outside the VLAN. The CIDR must maintain the following rules - 1. The CIDR block is valid and correctly formatted. 2. The new range is within one of the parent VCN ranges. Example: `192.0.2.0/24`
compartment_id
(required) The OCID of the compartment to contain the VLAN.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
nsg_ids
(optional) A list of the OCIDs of the network security groups (NSGs) to add all VNICs in the VLAN to. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.
route_table_id
(optional) The OCID of the route table the VLAN will use. If you don't provide a value, the VLAN uses the VCN's default route table.
vcn_id
(required) The OCID of the VCN to contain the VLAN.
vlan_tag
(optional) The IEEE 802.1Q VLAN tag for this VLAN. The value must be unique across all VLANs in the VCN. If you don't provide a value, Oracle assigns one. You cannot change the value later. VLAN tag 0 is reserved for use by Oracle.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_VNIC_DETAILS_T Type 🔗
Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_create_vnic_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
assign_public_ip number,
assign_private_dns_record number,
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
hostname_label varchar2(32767),
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
private_ip varchar2(32767),
skip_source_dest_check number,
subnet_id varchar2(32767),
vlan_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_vnic_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_create_vnic_details_t (
assign_public_ip number,
assign_private_dns_record number,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
hostname_label varchar2,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
private_ip varchar2,
skip_source_dest_check number,
subnet_id varchar2,
vlan_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
assign_public_ip
(optional) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where `prohibitPublicIpOnVnic` = true in the SUBNET Type), then no public IP address is assigned. If not set and the subnet is public (`prohibitPublicIpOnVnic` = false), then a public IP address is assigned. If set to true and `prohibitPublicIpOnVnic` = true, an error is returned. **Note:** This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses. **Note:** There's a limit to the number of PUBLIC_IP Type a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses. Example: `false` If you specify a `vlanId`, then `assignPublicIp` must be set to false. See VLAN Type.
assign_private_dns_record
(optional) Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. The default value is true. If you specify a `hostnameLabel`, then `assignPrivateDnsRecord` must be set to true.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
hostname_label
(optional) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. The value appears in the VNIC Type object and also the PRIVATE_IP Type object returned by LIST_PRIVATE_IPS Function and GET_PRIVATE_IP Function. For more information, see DNS in Your Virtual Cloud Network. When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in LAUNCH_INSTANCE_DETAILS Function. If you provide both, the values must match. Example: `bminstance1` If you specify a `vlanId`, the `hostnameLabel` cannot be specified. VNICs on a VLAN can not be assigned a hostname. See VLAN Type.
nsg_ids
(optional) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see NETWORK_SECURITY_GROUP Type. If a `vlanId` is specified, the `nsgIds` cannot be specified. The `vlanId` indicates that the VNIC will belong to a VLAN instead of a subnet. With VLANs, all VNICs in the VLAN belong to the NSGs that are associated with the VLAN. See VLAN Type.
private_ip
(optional) A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the VNIC Type object and also the PRIVATE_IP Type object returned by LIST_PRIVATE_IPS Function and GET_PRIVATE_IP Function. If you specify a `vlanId`, the `privateIp` cannot be specified. See VLAN Type. Example: `10.0.3.3`
skip_source_dest_check
(optional) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target. If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See VLAN Type. Example: `true`
subnet_id
(optional) The OCID of the subnet to create the VNIC in. When launching an instance, use this `subnetId` instead of the deprecated `subnetId` in LAUNCH_INSTANCE_DETAILS Function. At least one of them is required; if you provide both, the values must match. If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a `vlanId` instead of a `subnetId`. If you provide both a `vlanId` and `subnetId`, the request fails.
vlan_id
(optional) Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See VLAN Type. Provide a `vlanId` instead of a `subnetId`. If you provide both a `vlanId` and `subnetId`, the request fails.
DBMS_CLOUD_OCI_VN_MONITORING_CREATE_VTAP_DETAILS_T Type 🔗
These details are included in a request to create a virtual test access point (VTAP).
(required) The OCID of the compartment containing the `Vtap` resource.
vcn_id
(required) The OCID of the VCN containing the `Vtap` resource.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
source_id
(required) The OCID of the source point where packets are captured.
target_id
(optional) The OCID of the destination resource where mirrored packets are sent.
target_ip
(optional) The IP address of the destination resource where mirrored packets are sent.
(optional) Defines an encapsulation header type for the VTAP's mirrored traffic.
Allowed values are: 'VXLAN'
vxlan_network_identifier
(optional) The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
is_vtap_enabled
(optional) Used to start or stop a `Vtap` resource. * `TRUE` directs the VTAP to start mirroring traffic. * `FALSE` (Default) directs the VTAP to stop mirroring traffic.
(optional) The IP Address of the source private endpoint.
source_private_endpoint_subnet_id
(optional) The OCID of the subnet that source private endpoint belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_MACSEC_KEY_T Type 🔗
An object defining the Secrets-in-Vault OCIDs representing the MACsec key.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_macsec_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
connectivity_association_name_secret_id varchar2(32767),
connectivity_association_name_secret_version number,
connectivity_association_key_secret_id varchar2(32767),
connectivity_association_key_secret_version number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_macsec_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_macsec_key_t (
connectivity_association_name_secret_id varchar2,
connectivity_association_name_secret_version number,
connectivity_association_key_secret_id varchar2,
connectivity_association_key_secret_version number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
connectivity_association_name_secret_id
(required) Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.
connectivity_association_name_secret_version
(optional) The secret version of the connectivity association name secret in Vault.
connectivity_association_key_secret_id
(required) Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.
connectivity_association_key_secret_version
(optional) The secret version of the `connectivityAssociationKey` secret in Vault.
DBMS_CLOUD_OCI_VN_MONITORING_MACSEC_PROPERTIES_T Type 🔗
Properties used for MACsec (if capable).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_macsec_properties_t FORCE AUTHID CURRENT_USER IS OBJECT (
state varchar2(32767),
primary_key dbms_cloud_oci_vn_monitoring_macsec_key_t,
encryption_cipher varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_macsec_properties_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_macsec_properties_t (
state varchar2,
primary_key dbms_cloud_oci_vn_monitoring_macsec_key_t,
encryption_cipher varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
state
(required) Indicates whether or not MACsec is enabled.
Allowed values are: 'ENABLED', 'DISABLED'
primary_key
(optional)
encryption_cipher
(optional) Type of encryption cipher suite to use for the MACsec connection.
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_T Type 🔗
For use with Oracle Cloud Infrastructure FastConnect. A cross-connect represents a physical connection between an existing network and Oracle. Customers who are colocated with Oracle in a FastConnect location create and use cross-connects. For more information, see FastConnect Overview. Oracle recommends you create each cross-connect in a CROSS_CONNECT_GROUP Type so you can use link aggregation with the connection. **Note:** If you're a provider who is setting up a physical connection to Oracle so customers can use FastConnect over the connection, be aware that your connection is modeled the same way as a colocated customer's (with `CrossConnect` and `CrossConnectGroup` objects, and so on). To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
cross_connect_group_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
location_name varchar2(32767),
port_name varchar2(32767),
port_speed_shape_name varchar2(32767),
customer_reference_name varchar2(32767),
time_created timestamp with time zone,
macsec_properties dbms_cloud_oci_vn_monitoring_macsec_properties_t,
oci_physical_device_name varchar2(32767),
oci_logical_device_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_t (
compartment_id varchar2,
cross_connect_group_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
location_name varchar2,
port_name varchar2,
port_speed_shape_name varchar2,
customer_reference_name varchar2,
time_created timestamp with time zone,
macsec_properties dbms_cloud_oci_vn_monitoring_macsec_properties_t,
oci_physical_device_name varchar2,
oci_logical_device_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment containing the cross-connect group.
cross_connect_group_id
(optional) The OCID of the cross-connect group this cross-connect belongs to (if any).
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) The name of the FastConnect location where this cross-connect is installed.
port_name
(optional) A string identifying the meet-me room port for this cross-connect.
port_speed_shape_name
(optional) The port speed for this cross-connect. Example: `10 Gbps`
customer_reference_name
(optional) A reference name or identifier for the physical fiber connection that this cross-connect uses.
time_created
(optional) The date and time the cross-connect was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
macsec_properties
(optional)
oci_physical_device_name
(optional) The FastConnect device that terminates the physical connection.
oci_logical_device_name
(optional) The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_GROUP_T Type 🔗
For use with Oracle Cloud Infrastructure FastConnect. A cross-connect group is a link aggregation group (LAG), which can contain one or more CROSS_CONNECT Type. Customers who are colocated with Oracle in a FastConnect location create and use cross-connect groups. For more information, see FastConnect Overview. **Note:** If you're a provider who is setting up a physical connection to Oracle so customers can use FastConnect over the connection, be aware that your connection is modeled the same way as a colocated customer's (with `CrossConnect` and `CrossConnectGroup` objects, and so on). To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_group_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
customer_reference_name varchar2(32767),
time_created timestamp with time zone,
macsec_properties dbms_cloud_oci_vn_monitoring_macsec_properties_t,
oci_physical_device_name varchar2(32767),
oci_logical_device_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_group_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_group_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
customer_reference_name varchar2,
time_created timestamp with time zone,
macsec_properties dbms_cloud_oci_vn_monitoring_macsec_properties_t,
oci_physical_device_name varchar2,
oci_logical_device_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment containing the cross-connect group.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(optional) The cross-connect group's Oracle ID (OCID).
lifecycle_state
(optional) The cross-connect group's current state.
(optional) A reference name or identifier for the physical fiber connection that this cross-connect group uses.
time_created
(optional) The date and time the cross-connect group was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
macsec_properties
(optional)
oci_physical_device_name
(optional) The FastConnect device that terminates the physical connection.
oci_logical_device_name
(optional) The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_LOCATION_T Type 🔗
An individual FastConnect location.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_location_t FORCE AUTHID CURRENT_USER IS OBJECT (
description varchar2(32767),
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_location_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_location_t (
description varchar2,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
description
(required) A description of the location.
name
(required) The name of the location. Example: `CyrusOne, Chandler, AZ`
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_MAPPING_DETAILS_T Type 🔗
For use with Oracle Cloud Infrastructure FastConnect. Each VIRTUAL_CIRCUIT Type runs on one or more cross-connects or cross-connect groups. A `CrossConnectMappingDetails` contains the properties for an individual cross-connect or cross-connect group associated with a given virtual circuit. The details includes information about the cross-connect or cross-connect group, the VLAN, and the BGP peering session.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
bgp_md5_auth_key varchar2(32767),
cross_connect_or_cross_connect_group_id varchar2(32767),
customer_bgp_peering_ip varchar2(32767),
oracle_bgp_peering_ip varchar2(32767),
customer_bgp_peering_ipv6 varchar2(32767),
oracle_bgp_peering_ipv6 varchar2(32767),
vlan number,
ipv4_bgp_status varchar2(32767),
ipv6_bgp_status varchar2(32767),
oci_logical_device_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_t (
bgp_md5_auth_key varchar2,
cross_connect_or_cross_connect_group_id varchar2,
customer_bgp_peering_ip varchar2,
oracle_bgp_peering_ip varchar2,
customer_bgp_peering_ipv6 varchar2,
oracle_bgp_peering_ipv6 varchar2,
vlan number,
ipv4_bgp_status varchar2,
ipv6_bgp_status varchar2,
oci_logical_device_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bgp_md5_auth_key
(optional) The key for BGP MD5 authentication. Only applicable if your system requires MD5 authentication. If empty or not set (null), that means you don't use BGP MD5 authentication.
cross_connect_or_cross_connect_group_id
(optional) The OCID of the cross-connect or cross-connect group for this mapping. Specified by the owner of the cross-connect or cross-connect group (the customer if the customer is colocated with Oracle, or the provider if the customer is connecting via provider).
customer_bgp_peering_ip
(optional) The BGP IPv4 address for the router on the other end of the BGP session from Oracle. Specified by the owner of that router. If the session goes from Oracle to a customer, this is the BGP IPv4 address of the customer's edge router. If the session goes from Oracle to a provider, this is the BGP IPv4 address of the provider's edge router. Must use a subnet mask from /28 to /31. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses. Example: `10.0.0.18/31`
oracle_bgp_peering_ip
(optional) The IPv4 address for Oracle's end of the BGP session. Must use a subnet mask from /28 to /31. If the session goes from Oracle to a customer's edge router, the customer specifies this information. If the session goes from Oracle to a provider's edge router, the provider specifies this. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv4 addresses. Example: `10.0.0.19/31`
customer_bgp_peering_ipv6
(optional) The BGP IPv6 address for the router on the other end of the BGP session from Oracle. Specified by the owner of that router. If the session goes from Oracle to a customer, this is the BGP IPv6 address of the customer's edge router. If the session goes from Oracle to a provider, this is the BGP IPv6 address of the provider's edge router. Only subnet masks from /64 up to /127 are allowed. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv6 addresses. Example: `2001:db8::1/64`
oracle_bgp_peering_ipv6
(optional) The IPv6 address for Oracle's end of the BGP session. Only subnet masks from /64 up to /127 are allowed. If the session goes from Oracle to a customer's edge router, the customer specifies this information. If the session goes from Oracle to a provider's edge router, the provider specifies this. There's one exception: for a public virtual circuit, Oracle specifies the BGP IPv6 addresses. Example: `2001:db8::2/64`
vlan
(optional) The number of the specific VLAN (on the cross-connect or cross-connect group) that is assigned to this virtual circuit. Specified by the owner of the cross-connect or cross-connect group (the customer if the customer is colocated with Oracle, or the provider if the customer is connecting via provider). Example: `200`
ipv4_bgp_status
(optional) The state of the Ipv4 BGP session.
Allowed values are: 'UP', 'DOWN'
ipv6_bgp_status
(optional) The state of the Ipv6 BGP session.
Allowed values are: 'UP', 'DOWN'
oci_logical_device_name
(optional) The FastConnect device that terminates the logical connection.
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_MAPPING_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_MAPPING_DETAILS_COLLECTION_T Type 🔗
An array of CrossConnectMappingDetails
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_collection_t (
items dbms_cloud_oci_vn_monitoring_cross_connect_mapping_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) CrossConnectMappingDetails items
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_PORT_SPEED_SHAPE_T Type 🔗
An individual port speed level for cross-connects.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_port_speed_shape_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
port_speed_in_gbps number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_port_speed_shape_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_port_speed_shape_t (
name varchar2,
port_speed_in_gbps number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the port speed shape. Example: `10 Gbps`
port_speed_in_gbps
(required) The port speed in Gbps. Example: `10`
DBMS_CLOUD_OCI_VN_MONITORING_NUMBER_TBL Type 🔗
Nested table type of number.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_number_tbl FORCE IS TABLE OF (number) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_CROSS_CONNECT_STATUS_T Type 🔗
The status of the cross-connect.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cross_connect_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
cross_connect_id varchar2(32767),
interface_state varchar2(32767),
light_level_ind_bm number,
light_level_indicator varchar2(32767),
encryption_status varchar2(32767),
light_levels_in_d_bm dbms_cloud_oci_vn_monitoring_number_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_cross_connect_status_t (
cross_connect_id varchar2,
interface_state varchar2,
light_level_ind_bm number,
light_level_indicator varchar2,
encryption_status varchar2,
light_levels_in_d_bm dbms_cloud_oci_vn_monitoring_number_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Indicates whether Oracle's side of the interface is up or down.
Allowed values are: 'UP', 'DOWN'
light_level_ind_bm
(optional) The light level of the cross-connect (in dBm). Example: `14.0`
light_level_indicator
(optional) Status indicator corresponding to the light level. * **NO_LIGHT:** No measurable light * **LOW_WARN:** There's measurable light but it's too low * **HIGH_WARN:** Light level is too high * **BAD:** There's measurable light but the signal-to-noise ratio is bad * **GOOD:** Good light level
(optional) Encryption status of this cross connect. Possible values: * **UP:** Traffic is encrypted over this cross-connect * **DOWN:** Traffic is not encrypted over this cross-connect * **CIPHER_MISMATCH:** The MACsec encryption cipher doesn't match the cipher on the CPE * **CKN_MISMATCH:** The MACsec Connectivity association Key Name (CKN) doesn't match the CKN on the CPE * **CAK_MISMATCH:** The MACsec Connectivity Association Key (CAK) doesn't match the CAK on the CPE
(optional) The light levels of the cross-connect (in dBm). Example: `[14.0, -14.0, 2.1, -10.1]`
DBMS_CLOUD_OCI_VN_MONITORING_DEFAULT_DRG_ROUTE_TABLES_T Type 🔗
The default DRG route table for this DRG. Each network type has a default DRG route table. You can update a network type to use a different DRG route table, but each network type must have a default DRG route table. You cannot delete a default DRG route table.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_default_drg_route_tables_t FORCE AUTHID CURRENT_USER IS OBJECT (
vcn varchar2(32767),
ipsec_tunnel varchar2(32767),
virtual_circuit varchar2(32767),
remote_peering_connection varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_default_drg_route_tables_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_default_drg_route_tables_t (
vcn varchar2,
ipsec_tunnel varchar2,
virtual_circuit varchar2,
remote_peering_connection varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vcn
(optional) The OCID of the default DRG route table to be assigned to DRG attachments of type VCN on creation.
ipsec_tunnel
(optional) The OCID of the default DRG route table assigned to DRG attachments of type IPSEC_TUNNEL on creation.
virtual_circuit
(optional) The OCID of the default DRG route table to be assigned to DRG attachments of type VIRTUAL_CIRCUIT on creation.
remote_peering_connection
(optional) The OCID of the default DRG route table to be assigned to DRG attachments of type REMOTE_PEERING_CONNECTION on creation.
DBMS_CLOUD_OCI_VN_MONITORING_DENIED_SECURITY_ACTION_DETAILS_T Type 🔗
Defines details for the security action taken on denied traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_denied_security_action_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_restricted_or_partial number,
evaluated_security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
evaluated_nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_denied_security_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_denied_security_action_details_t (
is_restricted_or_partial number,
evaluated_security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
evaluated_nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_restricted_or_partial
(required) If true, the evaluated security list and network security group ID details are incomplete.
evaluated_security_list_ids
(optional) The list of OCIDs of evaluated security lists associcated with the OCI resource's subnet.
evaluated_nsg_ids
(optional) List of OCIDs of evaluated network security groups associated with the OCI resource's VNIC.
DBMS_CLOUD_OCI_VN_MONITORING_DENIED_SECURITY_ACTION_T Type 🔗
Defines the security action taken on denied traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_denied_security_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_security_action_t (
denied_security_action_details dbms_cloud_oci_vn_monitoring_denied_security_action_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_denied_security_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_denied_security_action_t (
action varchar2,
action_type varchar2,
denied_security_action_details dbms_cloud_oci_vn_monitoring_denied_security_action_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_denied_security_action_t is a subtype of the dbms_cloud_oci_vn_monitoring_security_action_t type.
Fields
Field
Description
denied_security_action_details
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_DHCP_DNS_OPTION_T Type 🔗
DHCP option for specifying how DNS (hostname resolution) is handled in the subnets in the VCN. For more information, see DNS in Your Virtual Cloud Network.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_dhcp_dns_option_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_dhcp_option_t (
custom_dns_servers dbms_cloud_oci_vn_monitoring_varchar2_tbl,
server_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_dns_option_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_dns_option_t (
l_type varchar2,
custom_dns_servers dbms_cloud_oci_vn_monitoring_varchar2_tbl,
server_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_dhcp_dns_option_t is a subtype of the dbms_cloud_oci_vn_monitoring_dhcp_option_t type.
Fields
Field
Description
custom_dns_servers
(optional) If you set `serverType` to `CustomDnsServer`, specify the IP address of at least one DNS server of your choice (three maximum).
server_type
(required) * **VcnLocal:** Reserved for future use. * **VcnLocalPlusInternet:** Also referred to as \"Internet and VCN Resolver\". Instances can resolve internet hostnames (no internet gateway is required), and can resolve hostnames of instances in the VCN. This is the default value in the default set of DHCP options in the VCN. For the Internet and VCN Resolver to work across the VCN, there must also be a DNS label set for the VCN, a DNS label set for each subnet, and a hostname for each instance. The Internet and VCN Resolver also enables reverse DNS lookup, which lets you determine the hostname corresponding to the private IP address. For more information, see DNS in Your Virtual Cloud Network. * **CustomDnsServer:** Instances use a DNS server of your choice (three maximum).
DBMS_CLOUD_OCI_VN_MONITORING_DHCP_OPTIONS_T Type 🔗
A set of DHCP options. Used by the VCN to automatically provide configuration information to the instances when they boot up. There are two options you can set: - DHCP_DNS_OPTION Type: Lets you specify how DNS (hostname resolution) is handled in the subnets in your VCN. - DHCP_SEARCH_DOMAIN_OPTION Type: Lets you specify a search domain name to use for DNS queries. For more information, see DNS in Your Virtual Cloud Network and DHCP Options. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_dhcp_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
options dbms_cloud_oci_vn_monitoring_dhcp_option_tbl,
time_created timestamp with time zone,
vcn_id varchar2(32767),
domain_name_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_options_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_options_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
options dbms_cloud_oci_vn_monitoring_dhcp_option_tbl,
time_created timestamp with time zone,
vcn_id varchar2,
domain_name_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the set of DHCP options.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(required) Oracle ID (OCID) for the set of DHCP options.
lifecycle_state
(required) The current state of the set of DHCP options.
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_dhcp_search_domain_option_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_dhcp_option_t (
search_domain_names dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_search_domain_option_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_dhcp_search_domain_option_t (
l_type varchar2,
search_domain_names dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_dhcp_search_domain_option_t is a subtype of the dbms_cloud_oci_vn_monitoring_dhcp_option_t type.
Fields
Field
Description
search_domain_names
(required) A single search domain name according to RFC 952 and RFC 1123. During a DNS query, the OS will append this search domain name to the value being queried. If you set DHCP_DNS_OPTION Type to `VcnLocalPlusInternet`, and you assign a DNS label to the VCN during creation, the search domain name in the VCN's default set of DHCP options is automatically set to the VCN domain (for example, `vcn1.oraclevcn.com`). If you don't want to use a search domain name, omit this option from the set of DHCP options. Do not include this option with an empty list of search domain names, or with an empty string as the value for any search domain name.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_T Type 🔗
A dynamic routing gateway (DRG) is a virtual router that provides a path for private network traffic between networks. You use it with other Networking Service components to create a connection to your on-premises network using Site-to-Site VPN or a connection that uses FastConnect. For more information, see Networking Overview. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
default_drg_route_tables dbms_cloud_oci_vn_monitoring_default_drg_route_tables_t,
default_export_drg_route_distribution_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
default_drg_route_tables dbms_cloud_oci_vn_monitoring_default_drg_route_tables_t,
default_export_drg_route_distribution_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the DRG.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) The date and time the DRG was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
default_drg_route_tables
(optional)
default_export_drg_route_distribution_id
(optional) The OCID of this DRG's default export route distribution for the DRG attachments.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_NETWORK_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t (
l_type varchar2,
id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) The OCID of the network attached to the DRG.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_T Type 🔗
A DRG attachment serves as a link between a DRG and a network resource. A DRG can be attached to a VCN, IPSec tunnel, remote peering connection, or virtual circuit. For more information, see Overview of the Networking Service.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
drg_id varchar2(32767),
id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
drg_route_table_id varchar2(32767),
network_details dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
route_table_id varchar2(32767),
vcn_id varchar2(32767),
export_drg_route_distribution_id varchar2(32767),
is_cross_tenancy number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_t (
compartment_id varchar2,
display_name varchar2,
drg_id varchar2,
id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
drg_route_table_id varchar2,
network_details dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
route_table_id varchar2,
vcn_id varchar2,
export_drg_route_distribution_id varchar2,
is_cross_tenancy number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the DRG attachment.
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
(optional) The date and time the DRG attachment was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
drg_route_table_id
(optional) The OCID of the DRG route table that is assigned to this attachment. The DRG route table manages traffic inside the DRG.
network_details
(optional)
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) The OCID of the VCN. This field is deprecated. Instead, use the `networkDetails` field to view the OCID of the attached resource.
export_drg_route_distribution_id
(optional) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised to the attachment. If this value is null, no routes are advertised through this attachment.
is_cross_tenancy
(optional) Indicates whether the DRG attachment and attached network live in a different tenancy than the DRG. Example: `false`
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_ID_DRG_ROUTE_DISTRIBUTION_MATCH_CRITERIA_T Type 🔗
The criteria by which a specific attachment will import routes to the DRG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_id_drg_route_distribution_match_criteria_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t (
drg_attachment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_id_drg_route_distribution_match_criteria_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_id_drg_route_distribution_match_criteria_t (
match_type varchar2,
drg_attachment_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_drg_attachment_id_drg_route_distribution_match_criteria_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t type.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_INFO_T Type 🔗
The `DrgAttachmentInfo` resource contains the OCID of the DRG attachment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_info_t (
id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The Oracle-assigned ID of the DRG attachment
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_MATCH_ALL_DRG_ROUTE_DISTRIBUTION_MATCH_CRITERIA_T Type 🔗
All routes are imported or exported.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_match_all_drg_route_distribution_match_criteria_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_match_all_drg_route_distribution_match_criteria_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_match_all_drg_route_distribution_match_criteria_t (
match_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_drg_attachment_match_all_drg_route_distribution_match_criteria_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t type.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_NETWORK_UPDATE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_network_update_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_network_update_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_network_update_details_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required)
Allowed values are: 'VCN'
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ATTACHMENT_TYPE_DRG_ROUTE_DISTRIBUTION_MATCH_CRITERIA_T Type 🔗
The attachment type from which the DRG will import routes. Routes will be imported from all attachments of this type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_attachment_type_drg_route_distribution_match_criteria_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t (
attachment_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_type_drg_route_distribution_match_criteria_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_attachment_type_drg_route_distribution_match_criteria_t (
match_type varchar2,
attachment_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_drg_attachment_type_drg_route_distribution_match_criteria_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_t type.
Fields
Field
Description
attachment_type
(required) The type of the network resource to be included in this match. A match for a network type implies that all DRG attachments of that type insert routes into the table.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_REDUNDANCY_STATUS_T Type 🔗
The redundancy status of the DRG. For more information, see Redundancy Remedies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_redundancy_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_redundancy_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_redundancy_status_t (
id varchar2,
status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ROUTE_DISTRIBUTION_T Type 🔗
A route distribution establishes how routes get imported into DRG route tables and exported through the DRG attachments. A route distribution is a list of statements. Each statement consists of a set of matches, all of which must be `True` in order for the statement's action to take place. Each statement determines which routes are propagated. You can assign a route distribution as a route table's import distribution. The statements in an import route distribution specify how how incoming route advertisements through a referenced attachment or all attachments of a certain type are inserted into the route table. You can assign a route distribution as a DRG attachment's export distribution unless the attachment has the type VCN. Exporting routes through a VCN attachment is unsupported. Export route distribution statements specify how routes in a DRG attachment's assigned table are advertised out through the attachment. When a DRG is created, a route distribution is created with a single ACCEPT statement with match criteria MATCH_ALL. By default, all DRG attachments (except for those of type VCN), are assigned this distribution. The two auto-generated DRG route tables (one as the default for VCN attachments, and the other for all other types of attachments) are each assigned an auto generated import route distribution. The default VCN table's import distribution has a single statement with match criteria MATCH_ALL to import routes from each DRG attachment type. The other table's import distribution has a statement to import routes from attachments with the VCN type. The route distribution is always in the same compartment as the DRG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_route_distribution_t FORCE AUTHID CURRENT_USER IS OBJECT (
drg_id varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
distribution_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_distribution_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_distribution_t (
drg_id varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
distribution_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
drg_id
(required) The OCID of the DRG that contains this route distribution.
compartment_id
(required) The OCID of the compartment containing the route distribution.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(required) The route distribution's Oracle ID (OCID).
lifecycle_state
(required) The route distribution's current state.
(required) The date and time the route distribution was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
distribution_type
(required) Whether this distribution defines how routes get imported into route tables or exported through DRG attachments.
Allowed values are: 'IMPORT', 'EXPORT'
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ROUTE_DISTRIBUTION_STATEMENT_T Type 🔗
A single statement within a route distribution. All match criteria in a statement must be met for the action to take place.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_route_distribution_statement_t FORCE AUTHID CURRENT_USER IS OBJECT (
match_criteria dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_tbl,
action varchar2(32767),
priority number,
id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_distribution_statement_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_distribution_statement_t (
match_criteria dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_tbl,
action varchar2,
priority number,
id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
match_criteria
(required) The action is applied only if all of the match criteria is met. If there are no match criteria in a statement, any input is considered a match and the action is applied.
action
(required) `ACCEPT` indicates the route should be imported or exported as-is.
Allowed values are: 'ACCEPT'
priority
(required) This field specifies the priority of each statement in a route distribution. Priorities must be unique within a particular route distribution. The priority will be represented as a number between 0 and 65535 where a lower number indicates a higher priority. When a route is processed, statements are applied in the order defined by their priority. The first matching rule dictates the action that will be taken on the route.
id
(required) The Oracle-assigned ID of the route distribution statement.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ROUTE_RULE_T Type 🔗
A DRG route rule is a mapping between a destination IP address range and a DRG attachment. The map is used to route matching packets. Traffic will be routed across the attachments using Equal-cost multi-path routing (ECMP) if there are multiple rules with identical destinations and none of the rules conflict.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_route_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
destination varchar2(32767),
destination_type varchar2(32767),
next_hop_drg_attachment_id varchar2(32767),
route_type varchar2(32767),
is_conflict number,
is_blackhole number,
id varchar2(32767),
route_provenance varchar2(32767),
attributes json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_rule_t (
destination varchar2,
destination_type varchar2,
next_hop_drg_attachment_id varchar2,
route_type varchar2,
is_conflict number,
is_blackhole number,
id varchar2,
route_provenance varchar2,
attributes json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
destination
(required) Represents the range of IP addresses to match against when routing traffic. Potential values: * An IP address range (IPv4 or IPv6) in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56`. * When you're setting up a security rule for traffic destined for a particular `Service` through a service gateway, this is the `cidrBlock` value associated with that SERVICE Type. For example: `oci-phx-objectstorage`.
destination_type
(required) The type of destination for the rule. Allowed values: * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `destination` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic destined for a particular `Service` through a service gateway).
(required) The OCID of the next hop DRG attachment responsible for reaching the network destination. A value of `BLACKHOLE` means traffic for this route is discarded without notification.
route_type
(optional) You can specify static routes for the DRG route table using the API. The DRG learns dynamic routes from the DRG attachments using various routing protocols.
Allowed values are: 'STATIC', 'DYNAMIC'
is_conflict
(optional) Indicates that the route was not imported due to a conflict between route rules.
is_blackhole
(optional) Indicates that if the next hop attachment does not exist, so traffic for this route is discarded without notification.
id
(required) The Oracle-assigned ID of the DRG route rule.
route_provenance
(required) The earliest origin of a route. If a route is advertised to a DRG through an IPsec tunnel attachment, and is propagated to peered DRGs via RPC attachments, the route's provenance in the peered DRGs remains `IPSEC_TUNNEL`, because that is the earliest origin. No routes with a provenance `IPSEC_TUNNEL` or `VIRTUAL_CIRCUIT` will be exported to IPsec tunnel or virtual circuit attachments, regardless of the attachment's export distribution.
(optional) Additional properties for the route, computed by the service.
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ROUTE_TABLE_T Type 🔗
All routing inside the DRG is driven by the contents of DRG route tables. DRG route tables contain rules which route packets to a particular network destination, represented as a DRG attachment. The routing decision for a packet entering a DRG is determined by the rules in the DRG route table assigned to the attachment-of-entry. Each DRG attachment can inject routes in any DRG route table, provided there is a statement corresponding to the attachment in the route table's `importDrgRouteDistribution`. You can also insert static routes into the DRG route tables. The DRG route table is always in the same compartment as the DRG. There must always be a default DRG route table for each attachment type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_route_table_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
drg_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
import_drg_route_distribution_id varchar2(32767),
is_ecmp_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_table_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_route_table_t (
id varchar2,
compartment_id varchar2,
drg_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
time_created timestamp with time zone,
lifecycle_state varchar2,
import_drg_route_distribution_id varchar2,
is_ecmp_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The OCID of the compartment the DRG is in. The DRG route table is always in the same compartment as the DRG.
drg_id
(required) The OCID of the DRG the DRG that contains this route table.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
time_created
(required) The date and time the DRG route table was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
(optional) The OCID of the import route distribution used to specify how incoming route advertisements from referenced attachments are inserted into the DRG route table.
is_ecmp_enabled
(required) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-premises network, enable ECMP on the DRG route table to which these attachments import routes.
DBMS_CLOUD_OCI_VN_MONITORING_FORWARDED_ROUTING_CONFIGURATION_T Type 🔗
Defines the type of the resource that forwarded traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) Type of the forwarded routing configuration.
Allowed values are: 'VCN', 'DRG'
DBMS_CLOUD_OCI_VN_MONITORING_DRG_ROUTING_CONFIGURATION_T Type 🔗
Identifies the DRG route table and rule that allowed the traffic to be forwarded.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_drg_routing_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t (
drg_route_table_id varchar2(32767),
route_rule dbms_cloud_oci_vn_monitoring_drg_route_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_routing_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_drg_routing_configuration_t (
l_type varchar2,
drg_route_table_id varchar2,
route_rule dbms_cloud_oci_vn_monitoring_drg_route_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_drg_routing_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t type.
Fields
Field
Description
drg_route_table_id
(required) The OCID of the DRG route table that allowed the traffic.
route_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_EGRESS_SECURITY_LIST_CONFIGURATION_T Type 🔗
Defines the subnet egress security list configuration that allowed the traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_egress_security_list_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t (
security_list_id varchar2(32767),
security_rule dbms_cloud_oci_vn_monitoring_egress_security_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_egress_security_list_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_egress_security_list_configuration_t (
l_type varchar2,
security_list_id varchar2,
security_rule dbms_cloud_oci_vn_monitoring_egress_security_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_egress_security_list_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t type.
Fields
Field
Description
security_list_id
(required) The OCID of the security list that allowed the traffic.
security_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_ENCRYPTION_DOMAIN_CONFIG_T Type 🔗
Configuration information used by the encryption domain policy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_encryption_domain_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
oracle_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cpe_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_encryption_domain_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_encryption_domain_config_t (
oracle_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cpe_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
oracle_traffic_selector
(optional) Lists IPv4 or IPv6-enabled subnets in your Oracle tenancy.
cpe_traffic_selector
(optional) Lists IPv4 or IPv6-enabled subnets in your on-premises network.
DBMS_CLOUD_OCI_VN_MONITORING_ERROR_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
original_message varchar2(32767),
original_message_template varchar2(32767),
message_arguments json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_error_t (
code varchar2,
message varchar2,
original_message varchar2,
original_message_template varchar2,
message_arguments json_element_t
) 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 message.
original_message
(optional) A human-readable error string in English. This value might be different from the `message` field.
original_message_template
(optional) The template for the `originalMessage` in ICU message format, but without the values to be substituted.
message_arguments
(optional) The values to be substituted into the `originalMessageTemplate`, expressed as a string-to-string map.
DBMS_CLOUD_OCI_VN_MONITORING_FAST_CONNECT_PROVIDER_SERVICE_T Type 🔗
A service offering from a supported provider. For more information, see FastConnect Overview.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_fast_connect_provider_service_t FORCE AUTHID CURRENT_USER IS OBJECT (
description varchar2(32767),
id varchar2(32767),
private_peering_bgp_management varchar2(32767),
provider_name varchar2(32767),
provider_service_name varchar2(32767),
public_peering_bgp_management varchar2(32767),
supported_virtual_circuit_types dbms_cloud_oci_vn_monitoring_varchar2_tbl,
customer_asn_management varchar2(32767),
provider_service_key_management varchar2(32767),
bandwith_shape_management varchar2(32767),
required_total_cross_connects number,
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_fast_connect_provider_service_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_fast_connect_provider_service_t (
description varchar2,
id varchar2,
private_peering_bgp_management varchar2,
provider_name varchar2,
provider_service_name varchar2,
public_peering_bgp_management varchar2,
supported_virtual_circuit_types dbms_cloud_oci_vn_monitoring_varchar2_tbl,
customer_asn_management varchar2,
provider_service_key_management varchar2,
bandwith_shape_management varchar2,
required_total_cross_connects number,
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
description
(optional) The location of the provider's website or portal. This portal is where you can get information about the provider service, create a virtual circuit connection from the provider to Oracle Cloud Infrastructure, and retrieve your provider service key for that virtual circuit connection. Example: `https://example.com`
id
(required) The OCID of the service offered by the provider.
private_peering_bgp_management
(required) Who is responsible for managing the private peering BGP information.
(required) Total number of cross-connect or cross-connect groups required for the virtual circuit.
l_type
(required) Provider service type.
Allowed values are: 'LAYER2', 'LAYER3'
DBMS_CLOUD_OCI_VN_MONITORING_FAST_CONNECT_PROVIDER_SERVICE_KEY_T Type 🔗
A provider service key and its details. A provider service key is an identifier for a provider's virtual circuit.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_fast_connect_provider_service_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
bandwidth_shape_name varchar2(32767),
peering_location varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_fast_connect_provider_service_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_fast_connect_provider_service_key_t (
name varchar2,
bandwidth_shape_name varchar2,
peering_location varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The service key that the provider gives you when you set up a virtual circuit connection from the provider to Oracle Cloud Infrastructure. Use this value as the `providerServiceKeyName` query parameter for GET_FAST_CONNECT_PROVIDER_SERVICE_KEY Function.
bandwidth_shape_name
(optional) The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see LIST_FAST_CONNECT_PROVIDER_VIRTUAL_CIRCUIT_BANDWIDTH_SHAPES Function. Example: `10 Gbps`
peering_location
(optional) The provider's peering location.
DBMS_CLOUD_OCI_VN_MONITORING_FORWARDED_ROUTING_ACTION_DETAILS_T Type 🔗
Defines details for the forwarded routing action.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_forwarded_routing_action_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_restricted_or_partial number,
forwarded_routing_configuration dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_forwarded_routing_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_forwarded_routing_action_details_t (
is_restricted_or_partial number,
forwarded_routing_configuration dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_restricted_or_partial
(required) If true, the forwarded routing configuration details are incomplete.
forwarded_routing_configuration
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_FORWARDED_ROUTING_ACTION_T Type 🔗
Defines the routing actions taken for traffic that is forwarded.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_forwarded_routing_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_routing_action_t (
forwarded_routing_action_details dbms_cloud_oci_vn_monitoring_forwarded_routing_action_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_forwarded_routing_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_forwarded_routing_action_t (
action varchar2,
action_type varchar2,
forwarded_routing_action_details dbms_cloud_oci_vn_monitoring_forwarded_routing_action_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_forwarded_routing_action_t is a subtype of the dbms_cloud_oci_vn_monitoring_routing_action_t type.
Fields
Field
Description
forwarded_routing_action_details
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_GET_PUBLIC_IP_BY_IP_ADDRESS_DETAILS_T Type 🔗
IP address of the public IP.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_get_public_ip_by_ip_address_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ip_address varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_get_public_ip_by_ip_address_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_get_public_ip_by_ip_address_details_t (
ip_address varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ip_address
(required) The public IP address. Example: 203.0.113.2
DBMS_CLOUD_OCI_VN_MONITORING_GET_PUBLIC_IP_BY_PRIVATE_IP_ID_DETAILS_T Type 🔗
Details of the private IP that the public IP is assigned to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_get_public_ip_by_private_ip_id_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
private_ip_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_get_public_ip_by_private_ip_id_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_get_public_ip_by_private_ip_id_details_t (
private_ip_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_IP_SEC_CONNECTION_T Type 🔗
A connection between a DRG and CPE. This connection consists of multiple IPSec tunnels. Creating this connection is one of the steps required when setting up a Site-to-Site VPN. **Important:** Each tunnel in an IPSec connection can use either static routing or BGP dynamic routing (see the IP_SEC_CONNECTION_TUNNEL Type object's `routing` attribute). Originally only static routing was supported and every IPSec connection was required to have at least one static route configured. To maintain backward compatibility in the API when support for BPG dynamic routing was introduced, the API accepts an empty list of static routes if you configure both of the IPSec tunnels to use BGP dynamic routing. If you switch a tunnel's routing from `BGP` to `STATIC`, you must first ensure that the IPSec connection is configured with at least one valid CIDR block static route. Oracle uses the IPSec connection's static routes when routing a tunnel's traffic *only* if that tunnel's `routing` attribute = `STATIC`. Otherwise the static routes are ignored. For more information about the workflow for setting up an IPSec connection, see Site-to-Site VPN Overview. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ip_sec_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
cpe_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
drg_id varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
cpe_local_identifier varchar2(32767),
cpe_local_identifier_type varchar2(32767),
static_routes dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone,
transport_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_t (
compartment_id varchar2,
cpe_id varchar2,
defined_tags json_element_t,
display_name varchar2,
drg_id varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
cpe_local_identifier varchar2,
cpe_local_identifier_type varchar2,
static_routes dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone,
transport_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the IPSec connection.
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(required) The IPSec connection's Oracle ID (OCID).
(optional) Your identifier for your CPE device. Can be either an IP address or a hostname (specifically, the fully qualified domain name (FQDN)). The type of identifier here must correspond to the value for `cpeLocalIdentifierType`. If you don't provide a value when creating the IPSec connection, the `ipAddress` attribute for the CPE Type object specified by `cpeId` is used as the `cpeLocalIdentifier`. For information about why you'd provide this value, see If Your CPE Is Behind a NAT Device. Example IP address: `10.0.3.3` Example hostname: `cpe.example.com`
cpe_local_identifier_type
(optional) The type of identifier for your CPE device. The value here must correspond to the value for `cpeLocalIdentifier`.
Allowed values are: 'IP_ADDRESS', 'HOSTNAME'
static_routes
(required) Static routes to the CPE. The CIDR must not be a multicast address or class E address. Used for routing a given IPSec tunnel's traffic only if the tunnel is using static routing. If you configure at least one tunnel to use static routing, then you must provide at least one valid static route. If you configure both tunnels to use BGP dynamic routing, you can provide an empty list for the static routes. The CIDR can be either IPv4 or IPv6. IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. Example: `10.0.1.0/24` Example: `2001:db8::/32`
time_created
(optional) The date and time the IPSec connection was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
transport_type
(optional) The transport type used for the IPSec connection.
Allowed values are: 'INTERNET', 'FASTCONNECT'
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_CONFIG_T Type 🔗
Deprecated. For tunnel information, instead see: * IP_SEC_CONNECTION_TUNNEL Type * IP_SEC_CONNECTION_TUNNEL_SHARED_SECRET Type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
ip_address varchar2(32767),
shared_secret varchar2(32767),
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_config_t (
ip_address varchar2,
shared_secret varchar2,
time_created timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ip_address
(required) The IP address of Oracle's VPN headend. Example: `203.0.113.50 `
shared_secret
(required) The shared secret of the IPSec tunnel.
time_created
(optional) The date and time the IPSec connection was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_CONFIG_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_tunnel_config_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_config_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_tunnel_config_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_IP_SEC_CONNECTION_DEVICE_CONFIG_T Type 🔗
Deprecated. For tunnel information, instead see: * IP_SEC_CONNECTION_TUNNEL Type * IP_SEC_CONNECTION_TUNNEL_SHARED_SECRET Type
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ip_sec_connection_device_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
tunnels dbms_cloud_oci_vn_monitoring_tunnel_config_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_device_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_device_config_t (
compartment_id varchar2,
id varchar2,
time_created timestamp with time zone,
tunnels dbms_cloud_oci_vn_monitoring_tunnel_config_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the IPSec connection.
id
(required) The IPSec connection's Oracle ID (OCID).
time_created
(optional) The date and time the IPSec connection was created.
tunnels
(optional) Two TUNNEL_CONFIG Type objects.
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_STATUS_T Type 🔗
Deprecated. For tunnel information, instead see IP_SEC_CONNECTION_TUNNEL Type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
ip_address varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_state_modified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_status_t (
ip_address varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_state_modified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ip_address
(required) The IP address of Oracle's VPN headend. Example: `203.0.113.50`
(optional) The date and time the IPSec connection was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
time_state_modified
(optional) When the state of the tunnel last changed, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_STATUS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_tunnel_status_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_status_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_tunnel_status_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_IP_SEC_CONNECTION_DEVICE_STATUS_T Type 🔗
Deprecated. For tunnel information, instead see IP_SEC_CONNECTION_TUNNEL Type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ip_sec_connection_device_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
id varchar2(32767),
time_created timestamp with time zone,
tunnels dbms_cloud_oci_vn_monitoring_tunnel_status_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_device_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_device_status_t (
compartment_id varchar2,
id varchar2,
time_created timestamp with time zone,
tunnels dbms_cloud_oci_vn_monitoring_tunnel_status_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the IPSec connection.
id
(required) The IPSec connection's Oracle ID (OCID).
time_created
(optional) The date and time the IPSec connection was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
tunnels
(optional) Two TUNNEL_STATUS Type objects.
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_PHASE_ONE_DETAILS_T Type 🔗
IPSec tunnel details specific to ISAKMP phase one.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_phase_one_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_custom_phase_one_config number,
lifetime number,
remaining_lifetime number,
custom_authentication_algorithm varchar2(32767),
negotiated_authentication_algorithm varchar2(32767),
custom_encryption_algorithm varchar2(32767),
negotiated_encryption_algorithm varchar2(32767),
custom_dh_group varchar2(32767),
negotiated_dh_group varchar2(32767),
is_ike_established number,
remaining_lifetime_last_retrieved timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_phase_one_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_phase_one_details_t (
is_custom_phase_one_config number,
lifetime number,
remaining_lifetime number,
custom_authentication_algorithm varchar2,
negotiated_authentication_algorithm varchar2,
custom_encryption_algorithm varchar2,
negotiated_encryption_algorithm varchar2,
custom_dh_group varchar2,
negotiated_dh_group varchar2,
is_ike_established number,
remaining_lifetime_last_retrieved timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_custom_phase_one_config
(optional) Indicates whether custom phase one configuration is enabled. If this option is not enabled, default settings are proposed.
lifetime
(optional) The total configured lifetime of the IKE security association.
remaining_lifetime
(optional) The remaining lifetime before the key is refreshed.
custom_authentication_algorithm
(optional) The proposed custom authentication algorithm.
negotiated_authentication_algorithm
(optional) The negotiated authentication algorithm.
custom_encryption_algorithm
(optional) The proposed custom encryption algorithm.
negotiated_encryption_algorithm
(optional) The negotiated encryption algorithm.
custom_dh_group
(optional) The proposed custom Diffie-Hellman group.
negotiated_dh_group
(optional) The negotiated Diffie-Hellman group.
is_ike_established
(optional) Indicates whether IKE phase one is established.
remaining_lifetime_last_retrieved
(optional) The date and time we retrieved the remaining lifetime, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_PHASE_TWO_DETAILS_T Type 🔗
IPsec tunnel detail information specific to phase two.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_phase_two_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_custom_phase_two_config number,
lifetime number,
remaining_lifetime number,
custom_authentication_algorithm varchar2(32767),
negotiated_authentication_algorithm varchar2(32767),
custom_encryption_algorithm varchar2(32767),
negotiated_encryption_algorithm varchar2(32767),
dh_group varchar2(32767),
negotiated_dh_group varchar2(32767),
is_esp_established number,
is_pfs_enabled number,
remaining_lifetime_last_retrieved timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_phase_two_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_phase_two_details_t (
is_custom_phase_two_config number,
lifetime number,
remaining_lifetime number,
custom_authentication_algorithm varchar2,
negotiated_authentication_algorithm varchar2,
custom_encryption_algorithm varchar2,
negotiated_encryption_algorithm varchar2,
dh_group varchar2,
negotiated_dh_group varchar2,
is_esp_established number,
is_pfs_enabled number,
remaining_lifetime_last_retrieved timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_custom_phase_two_config
(optional) Indicates whether custom phase two configuration is enabled. If this option is not enabled, default settings are proposed.
lifetime
(optional) The total configured lifetime of the IKE security association.
remaining_lifetime
(optional) The remaining lifetime before the key is refreshed.
custom_authentication_algorithm
(optional) Phase two authentication algorithm proposed during tunnel negotiation.
negotiated_authentication_algorithm
(optional) The negotiated phase two authentication algorithm.
custom_encryption_algorithm
(optional) The proposed custom phase two encryption algorithm.
negotiated_encryption_algorithm
(optional) The negotiated encryption algorithm.
dh_group
(optional) The proposed Diffie-Hellman group.
negotiated_dh_group
(optional) The negotiated Diffie-Hellman group.
is_esp_established
(optional) Indicates that ESP phase two is established.
is_pfs_enabled
(optional) Indicates that PFS (perfect forward secrecy) is enabled.
remaining_lifetime_last_retrieved
(optional) The date and time the remaining lifetime was last retrieved, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_IP_SEC_CONNECTION_TUNNEL_T Type 🔗
Information about a single IPSec tunnel in an IPSec connection. This object does not include the tunnel's shared secret (pre-shared key), which is found in the IP_SEC_CONNECTION_TUNNEL_SHARED_SECRET Type object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
id varchar2(32767),
vpn_ip varchar2(32767),
cpe_ip varchar2(32767),
status varchar2(32767),
ike_version varchar2(32767),
lifecycle_state varchar2(32767),
display_name varchar2(32767),
bgp_session_info dbms_cloud_oci_vn_monitoring_bgp_session_info_t,
encryption_domain_config dbms_cloud_oci_vn_monitoring_encryption_domain_config_t,
routing varchar2(32767),
time_created timestamp with time zone,
time_status_updated timestamp with time zone,
oracle_can_initiate varchar2(32767),
nat_translation_enabled varchar2(32767),
dpd_mode varchar2(32767),
dpd_timeout_in_sec number,
phase_one_details dbms_cloud_oci_vn_monitoring_tunnel_phase_one_details_t,
phase_two_details dbms_cloud_oci_vn_monitoring_tunnel_phase_two_details_t,
associated_virtual_circuits dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_t (
compartment_id varchar2,
id varchar2,
vpn_ip varchar2,
cpe_ip varchar2,
status varchar2,
ike_version varchar2,
lifecycle_state varchar2,
display_name varchar2,
bgp_session_info dbms_cloud_oci_vn_monitoring_bgp_session_info_t,
encryption_domain_config dbms_cloud_oci_vn_monitoring_encryption_domain_config_t,
routing varchar2,
time_created timestamp with time zone,
time_status_updated timestamp with time zone,
oracle_can_initiate varchar2,
nat_translation_enabled varchar2,
dpd_mode varchar2,
dpd_timeout_in_sec number,
phase_one_details dbms_cloud_oci_vn_monitoring_tunnel_phase_one_details_t,
phase_two_details dbms_cloud_oci_vn_monitoring_tunnel_phase_two_details_t,
associated_virtual_circuits dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the tunnel.
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
bgp_session_info
(optional)
encryption_domain_config
(optional)
routing
(optional) The type of routing used for this tunnel (BGP dynamic routing, static routing, or policy-based routing).
Allowed values are: 'BGP', 'STATIC', 'POLICY'
time_created
(optional) The date and time the IPSec tunnel was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
time_status_updated
(optional) When the status of the IPSec tunnel last changed, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
oracle_can_initiate
(optional) Indicates whether Oracle can only respond to a request to start an IPSec tunnel from the CPE device, or both respond to and initiate requests.
(optional) By default (the `AUTO` setting), IKE sends packets with a source and destination port set to 500, and when it detects that the port used to forward packets has changed (most likely because a NAT device is between the CPE device and the Oracle VPN headend) it will try to negotiate the use of NAT-T. The `ENABLED` option sets the IKE protocol to use port 4500 instead of 500 and forces encapsulating traffic with the ESP protocol inside UDP packets. The `DISABLED` option directs IKE to completely refuse to negotiate NAT-T even if it senses there may be a NAT device in use. .
Allowed values are: 'ENABLED', 'DISABLED', 'AUTO'
dpd_mode
(optional) Dead peer detection (DPD) mode set on the Oracle side of the connection. This mode sets whether Oracle can only respond to a request from the CPE device to start DPD, or both respond to and initiate requests.
(optional) The list of virtual circuit OCIDs over which your network can reach this tunnel.
DBMS_CLOUD_OCI_VN_MONITORING_IP_SEC_CONNECTION_TUNNEL_ERROR_DETAILS_T Type 🔗
Details for an error on an IPSec tunnel.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_error_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
error_code varchar2(32767),
error_description varchar2(32767),
solution varchar2(32767),
oci_resources_link varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_error_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_error_details_t (
id varchar2,
error_code varchar2,
error_description varchar2,
solution varchar2,
oci_resources_link varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique ID generated for each error report.
error_code
(required) Unique code describes the error type.
error_description
(required) A detailed description of the error.
solution
(required) Resolution for the error.
oci_resources_link
(required) Link to more Oracle resources or relevant documentation.
l_timestamp
(required) Timestamp when the error occurred.
DBMS_CLOUD_OCI_VN_MONITORING_IP_SEC_CONNECTION_TUNNEL_SHARED_SECRET_T Type 🔗
The tunnel's shared secret (pre-shared key).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_shared_secret_t FORCE AUTHID CURRENT_USER IS OBJECT (
shared_secret varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_shared_secret_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_sec_connection_tunnel_shared_secret_t (
shared_secret varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
shared_secret
(required) The tunnel's shared secret (pre-shared key).
DBMS_CLOUD_OCI_VN_MONITORING_ICMP_PROTOCOL_PARAMETERS_T Type 🔗
Defines the configuration for the ICMP protocol parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_icmp_protocol_parameters_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_protocol_parameters_t (
icmp_code number,
icmp_type number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_icmp_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_icmp_protocol_parameters_t (
l_type varchar2,
icmp_code number,
icmp_type number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_icmp_protocol_parameters_t is a subtype of the dbms_cloud_oci_vn_monitoring_protocol_parameters_t type.
DBMS_CLOUD_OCI_VN_MONITORING_ICMP_TRAFFIC_PROTOCOL_PARAMETERS_T Type 🔗
Defines the `ProtocolParameters` configuration for the ICMP protocol.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_icmp_traffic_protocol_parameters_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t (
icmp_code number,
icmp_type number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_icmp_traffic_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_icmp_traffic_protocol_parameters_t (
l_type varchar2,
icmp_code number,
icmp_type number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_icmp_traffic_protocol_parameters_t is a subtype of the dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t type.
DBMS_CLOUD_OCI_VN_MONITORING_INDETERMINATE_ROUTING_ACTION_T Type 🔗
Defines the routing action taken on a traffic node where the routing action is INDETERMINATE.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_indeterminate_routing_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_routing_action_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_indeterminate_routing_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_indeterminate_routing_action_t (
action varchar2,
action_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_indeterminate_routing_action_t is a subtype of the dbms_cloud_oci_vn_monitoring_routing_action_t type.
DBMS_CLOUD_OCI_VN_MONITORING_INGRESS_SECURITY_LIST_CONFIGURATION_T Type 🔗
Defines the subnet ingress security list configuration that allowed the traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ingress_security_list_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t (
security_list_id varchar2(32767),
security_rule dbms_cloud_oci_vn_monitoring_ingress_security_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ingress_security_list_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ingress_security_list_configuration_t (
l_type varchar2,
security_list_id varchar2,
security_rule dbms_cloud_oci_vn_monitoring_ingress_security_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_ingress_security_list_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t type.
Fields
Field
Description
security_list_id
(required) The OCID of the security list that allowed the traffic.
security_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_INTERNET_GATEWAY_T Type 🔗
Represents a router that connects the edge of a VCN with the Internet. For an example scenario that uses an internet gateway, see Typical Networking Service Scenarios. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_internet_gateway_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
is_enabled number,
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
vcn_id varchar2(32767),
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_internet_gateway_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_internet_gateway_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
is_enabled number,
lifecycle_state varchar2,
time_created timestamp with time zone,
vcn_id varchar2,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the internet gateway.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(required) The internet gateway's Oracle ID (OCID).
is_enabled
(optional) Whether the gateway is enabled. When the gateway is disabled, traffic is not routed to/from the Internet, regardless of route rules.
(optional) The date and time the internet gateway was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vcn_id
(required) The OCID of the VCN the Internet Gateway belongs to.
route_table_id
(optional) The OCID of the route table the Internet Gateway is using.
DBMS_CLOUD_OCI_VN_MONITORING_IP_ADDRESS_ENDPOINT_T Type 🔗
Defines the details required for an IP_ADDRESS-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ip_address_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
address varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_address_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ip_address_endpoint_t (
l_type varchar2,
address varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_ip_address_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
Fields
Field
Description
address
(required) The IPv4 address of the `Endpoint`.
DBMS_CLOUD_OCI_VN_MONITORING_IPSEC_TUNNEL_DRG_ATTACHMENT_NETWORK_DETAILS_T Type 🔗
Specifies the IPSec tunnel attached to the DRG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ipsec_tunnel_drg_attachment_network_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t (
ipsec_connection_id varchar2(32767),
transport_attachment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ipsec_tunnel_drg_attachment_network_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ipsec_tunnel_drg_attachment_network_details_t (
l_type varchar2,
id varchar2,
ipsec_connection_id varchar2,
transport_attachment_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_ipsec_tunnel_drg_attachment_network_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t type.
Fields
Field
Description
ipsec_connection_id
(optional) The IPSec connection that contains the attached IPSec tunnel.
transport_attachment_id
(optional) The OCID of the virtual circuit's DRG attachment.
DBMS_CLOUD_OCI_VN_MONITORING_IPV6_T Type 🔗
An *IPv6* is a conceptual term that refers to an IPv6 address and related properties. The `IPv6` object is the API representation of an IPv6. You can create and assign an IPv6 to any VNIC that is in an IPv6-enabled subnet in an IPv6-enabled VCN. **Note:** IPv6 addressing is supported for all commercial and government regions. For important details about IPv6 addressing in a VCN, see IPv6 Addresses.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_ipv6_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
ip_address varchar2(32767),
lifecycle_state varchar2(32767),
subnet_id varchar2(32767),
time_created timestamp with time zone,
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ipv6_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_ipv6_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
ip_address varchar2,
lifecycle_state varchar2,
subnet_id varchar2,
time_created timestamp with time zone,
vnic_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the IPv6. This is the same as the VNIC's compartment.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(required) The IPv6 address of the `IPv6` object. The address is within the IPv6 CIDR block of the VNIC's subnet (see the `ipv6CidrBlock` attribute for the SUBNET Type object. Example: `2001:0db8:0123:1111:abcd:ef01:2345:6789`
(required) The date and time the IPv6 was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vnic_id
(required) The OCID of the VNIC the IPv6 is assigned to. The VNIC and IPv6 must be in the same subnet.
DBMS_CLOUD_OCI_VN_MONITORING_LETTER_OF_AUTHORITY_T Type 🔗
The Letter of Authority for the cross-connect. You must submit this letter when requesting cabling for the cross-connect at the FastConnect location.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_letter_of_authority_t FORCE AUTHID CURRENT_USER IS OBJECT (
authorized_entity_name varchar2(32767),
circuit_type varchar2(32767),
cross_connect_id varchar2(32767),
facility_location varchar2(32767),
port_name varchar2(32767),
time_expires timestamp with time zone,
time_issued timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_letter_of_authority_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_letter_of_authority_t (
authorized_entity_name varchar2,
circuit_type varchar2,
cross_connect_id varchar2,
facility_location varchar2,
port_name varchar2,
time_expires timestamp with time zone,
time_issued timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
authorized_entity_name
(optional) The name of the entity authorized by this Letter of Authority.
circuit_type
(optional) The type of cross-connect fiber, termination, and optical specification.
(optional) The address of the FastConnect location.
port_name
(optional) The meet-me room port for this cross-connect.
time_expires
(optional) The date and time when the Letter of Authority expires, in the format defined by RFC3339.
time_issued
(optional) The date and time the Letter of Authority was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_LOAD_BALANCER_ENDPOINT_T Type 🔗
Defines the details required for a LOAD_BALANCER-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_load_balancer_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
load_balancer_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_load_balancer_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_load_balancer_endpoint_t (
l_type varchar2,
load_balancer_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_load_balancer_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
DBMS_CLOUD_OCI_VN_MONITORING_LOAD_BALANCER_LISTENER_ENDPOINT_T Type 🔗
Defines the details required for a LOAD_BALANCER_LISTENER-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_load_balancer_listener_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
listener_id varchar2(32767),
load_balancer_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_load_balancer_listener_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_load_balancer_listener_endpoint_t (
l_type varchar2,
listener_id varchar2,
load_balancer_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_load_balancer_listener_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
Fields
Field
Description
listener_id
(required) The OCID of the load balancer listener.
load_balancer_id
(required) The OCID of the listener's load balancer.
DBMS_CLOUD_OCI_VN_MONITORING_LOCAL_PEERING_GATEWAY_T Type 🔗
A local peering gateway (LPG) is an object on a VCN that lets that VCN peer with another VCN in the same region. *Peering* means that the two VCNs can communicate using private IP addresses, but without the traffic traversing the internet or routing through your on-premises network. For more information, see VCN Peering. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_local_peering_gateway_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
is_cross_tenancy_peering number,
lifecycle_state varchar2(32767),
peer_advertised_cidr varchar2(32767),
peer_advertised_cidr_details dbms_cloud_oci_vn_monitoring_varchar2_tbl,
peering_status varchar2(32767),
peering_status_details varchar2(32767),
peer_id varchar2(32767),
route_table_id varchar2(32767),
time_created timestamp with time zone,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_local_peering_gateway_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_local_peering_gateway_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
is_cross_tenancy_peering number,
lifecycle_state varchar2,
peer_advertised_cidr varchar2,
peer_advertised_cidr_details dbms_cloud_oci_vn_monitoring_varchar2_tbl,
peering_status varchar2,
peering_status_details varchar2,
peer_id varchar2,
route_table_id varchar2,
time_created timestamp with time zone,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the LPG.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) The smallest aggregate CIDR that contains all the CIDR routes advertised by the VCN at the other end of the peering from this LPG. See `peerAdvertisedCidrDetails` for the individual CIDRs. The value is `null` if the LPG is not peered. Example: `192.168.0.0/16`, or if aggregated with `172.16.0.0/24` then `128.0.0.0/1`
peer_advertised_cidr_details
(optional) The specific ranges of IP addresses available on or via the VCN at the other end of the peering from this LPG. The value is `null` if the LPG is not peered. You can use these as destination CIDRs for route rules to route a subnet's traffic to this LPG. Example: [`192.168.0.0/16`, `172.16.0.0/24`]
peering_status
(required) Whether the LPG is peered with another LPG. `NEW` means the LPG has not yet been peered. `PENDING` means the peering is being established. `REVOKED` means the LPG at the other end of the peering has been deleted.
DBMS_CLOUD_OCI_VN_MONITORING_LOOP_BACK_DRG_ATTACHMENT_NETWORK_DETAILS_T Type 🔗
Specifies the loopback attachment on the DRG. A loopback attachment can be used to terminate a virtual circuit that is carrying an IPSec tunnel, routing traffic directly to the IPSec tunnel attachment where the tunnel can terminate.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_loop_back_drg_attachment_network_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t (
ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_loop_back_drg_attachment_network_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_loop_back_drg_attachment_network_details_t (
l_type varchar2,
id varchar2,
ids dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_loop_back_drg_attachment_network_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t type.
Fields
Field
Description
ids
(optional) The OCID of the target IPSec tunnel attachment.
DBMS_CLOUD_OCI_VN_MONITORING_MODIFY_VCN_CIDR_DETAILS_T Type 🔗
Details for updating a CIDR block.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_modify_vcn_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
original_cidr_block varchar2(32767),
new_cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_modify_vcn_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_modify_vcn_cidr_details_t (
original_cidr_block varchar2,
new_cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
original_cidr_block
(required) The CIDR IP address to update.
new_cidr_block
(required) The new CIDR IP address.
DBMS_CLOUD_OCI_VN_MONITORING_NAT_GATEWAY_T Type 🔗
A NAT (Network Address Translation) gateway, which represents a router that lets instances without public IPs contact the public internet without exposing the instance to inbound internet traffic. For more information, see NAT Gateway. To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, talk to an administrator. If you are an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_nat_gateway_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
block_traffic number,
lifecycle_state varchar2(32767),
nat_ip varchar2(32767),
time_created timestamp with time zone,
vcn_id varchar2(32767),
public_ip_id varchar2(32767),
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_nat_gateway_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_nat_gateway_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
block_traffic number,
lifecycle_state varchar2,
nat_ip varchar2,
time_created timestamp with time zone,
vcn_id varchar2,
public_ip_id varchar2,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment that contains the NAT gateway.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(required) The IP address associated with the NAT gateway.
time_created
(required) The date and time the NAT gateway was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vcn_id
(required) The OCID of the VCN the NAT gateway belongs to.
public_ip_id
(optional) The OCID of the public IP address associated with the NAT gateway.
route_table_id
(optional) The OCID of the route table used by the NAT gateway. If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
DBMS_CLOUD_OCI_VN_MONITORING_NETWORK_LOAD_BALANCER_ENDPOINT_T Type 🔗
Defines the details required for a NETWORK_LOAD_BALANCER-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_network_load_balancer_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
network_load_balancer_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_load_balancer_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_load_balancer_endpoint_t (
l_type varchar2,
network_load_balancer_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_network_load_balancer_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
DBMS_CLOUD_OCI_VN_MONITORING_NETWORK_LOAD_BALANCER_LISTENER_ENDPOINT_T Type 🔗
Defines the details required for a NETWORK_LOAD_BALANCER_LISTENER-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_network_load_balancer_listener_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
listener_id varchar2(32767),
network_load_balancer_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_load_balancer_listener_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_load_balancer_listener_endpoint_t (
l_type varchar2,
listener_id varchar2,
network_load_balancer_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_network_load_balancer_listener_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
Fields
Field
Description
listener_id
(required) The OCID of the network load balancer listener.
network_load_balancer_id
(required) The OCID of the listener's network load balancer.
DBMS_CLOUD_OCI_VN_MONITORING_NETWORK_SECURITY_GROUP_T Type 🔗
A *network security group* (NSG) provides virtual firewall rules for a specific set of VNIC Type in a VCN. Compare NSGs with SECURITY_LIST Type, which provide virtual firewall rules to all the VNICs in a *subnet*. A network security group consists of two items: * The set of VNIC Type that all have the same security rule needs (for example, a group of Compute instances all running the same application) * A set of NSG SECURITY_RULE Type that apply to the VNICs in the group After creating an NSG, you can add VNICs and security rules to it. For example, when you create an instance, you can specify one or more NSGs to add the instance to (see CREATE_VNIC_DETAILS Function). Or you can add an existing instance to an NSG with UPDATE_VNIC Function. To add security rules to an NSG, see ADD_NETWORK_SECURITY_GROUP_SECURITY_RULES Function. To list the VNICs in an NSG, see LIST_NETWORK_SECURITY_GROUP_VNICS Function. To list the security rules in an NSG, see LIST_NETWORK_SECURITY_GROUP_SECURITY_RULES Function. For more information about network security groups, see Network Security Groups. **Important:** Oracle Cloud Infrastructure Compute service images automatically include firewall rules (for example, Linux iptables, Windows firewall). If there are issues with some type of access to an instance, make sure all of the following are set correctly: * Any security rules in any NSGs the instance's VNIC belongs to * Any SECURITY_LIST Type associated with the instance's subnet * The instance's OS firewall rules To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_network_security_group_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_security_group_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_security_group_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment the network security group is in.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(required) The OCID of the network security group.
lifecycle_state
(required) The network security group's current state.
(required) The date and time the network security group was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vcn_id
(required) The OCID of the network security group's VCN.
DBMS_CLOUD_OCI_VN_MONITORING_NETWORK_SECURITY_GROUP_VNIC_T Type 🔗
Information about a VNIC that belongs to a network security group.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_network_security_group_vnic_t FORCE AUTHID CURRENT_USER IS OBJECT (
resource_id varchar2(32767),
time_associated timestamp with time zone,
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_security_group_vnic_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_network_security_group_vnic_t (
resource_id varchar2,
time_associated timestamp with time zone,
vnic_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
resource_id
(optional) The OCID of the parent resource that the VNIC is attached to (for example, a Compute instance).
time_associated
(optional) The date and time the VNIC was added to the network security group, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_ENTITY_RELATIONSHIP_T Type 🔗
Defines the relationship between Virtual Network topology entities.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t FORCE AUTHID CURRENT_USER IS OBJECT (
id1 varchar2(32767),
id2 varchar2(32767),
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t (
id1 varchar2,
id2 varchar2,
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
id1
(required) The OCID of the first entity in the relationship.
id2
(required) The OCID of the second entity in the relationship.
l_type
(required) The type of relationship between the entities.
DBMS_CLOUD_OCI_VN_MONITORING_JSON_ELEMENT_T_TBL Type 🔗
Nested table type of json_element_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_json_element_t_tbl FORCE IS TABLE OF (json_element_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_ENTITY_RELATIONSHIP_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_entity_relationship_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_T Type 🔗
Defines the representation of a virtual network topology.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
entities dbms_cloud_oci_vn_monitoring_json_element_t_tbl,
relationships dbms_cloud_oci_vn_monitoring_topology_entity_relationship_tbl,
limited_entities dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_t (
l_type varchar2,
entities dbms_cloud_oci_vn_monitoring_json_element_t_tbl,
relationships dbms_cloud_oci_vn_monitoring_topology_entity_relationship_tbl,
limited_entities dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(required) Lists entities comprising the virtual network topology.
relationships
(required) Lists relationships between entities in the virtual network topology.
limited_entities
(required) Lists entities that are limited during ingestion. The values for the items in the list are the entity type names of the limitedEntities. Example: `vcn`
time_created
(required) Records when the virtual network topology was created, in RFC3339 format for date and time.
DBMS_CLOUD_OCI_VN_MONITORING_NETWORKING_TOPOLOGY_T Type 🔗
Defines the representation of a virtual network topology for a region.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_networking_topology_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_topology_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_networking_topology_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_networking_topology_t (
l_type varchar2,
entities dbms_cloud_oci_vn_monitoring_json_element_t_tbl,
relationships dbms_cloud_oci_vn_monitoring_topology_entity_relationship_tbl,
limited_entities dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_networking_topology_t is a subtype of the dbms_cloud_oci_vn_monitoring_topology_t type.
DBMS_CLOUD_OCI_VN_MONITORING_NO_ROUTE_ROUTING_ACTION_DETAILS_T Type 🔗
Defines the routing action taken on traffic flow with no route found.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_no_route_routing_action_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_restricted_or_partial number,
evaluated_vcn_route_table_id varchar2(32767),
evaluated_drg_route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_no_route_routing_action_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_no_route_routing_action_details_t (
is_restricted_or_partial number,
evaluated_vcn_route_table_id varchar2,
evaluated_drg_route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_restricted_or_partial
(required) If true, the evaluated route table details are incomplete.
evaluated_vcn_route_table_id
(optional) OCIDs of the evaluated VCN route table.
DBMS_CLOUD_OCI_VN_MONITORING_NO_ROUTE_ROUTING_ACTION_T Type 🔗
Defines the routing actions taken on traffic when no route is found.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_no_route_routing_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_routing_action_t (
no_route_routing_action_details dbms_cloud_oci_vn_monitoring_no_route_routing_action_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_no_route_routing_action_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_no_route_routing_action_t (
action varchar2,
action_type varchar2,
no_route_routing_action_details dbms_cloud_oci_vn_monitoring_no_route_routing_action_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_no_route_routing_action_t is a subtype of the dbms_cloud_oci_vn_monitoring_routing_action_t type.
Fields
Field
Description
no_route_routing_action_details
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_NSG_CONFIGURATION_T Type 🔗
Defines the network security group configuration that allowed the traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_nsg_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t (
nsg_id varchar2(32767),
security_rule dbms_cloud_oci_vn_monitoring_security_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_nsg_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_nsg_configuration_t (
l_type varchar2,
nsg_id varchar2,
security_rule dbms_cloud_oci_vn_monitoring_security_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_nsg_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t type.
Fields
Field
Description
nsg_id
(required) The OCID of the network security group that allowed the traffic.
security_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_TRAFFIC_NODE_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_traffic_node_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_traffic_node_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_traffic_node_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_TRAFFIC_ROUTE_T Type 🔗
Defines the traffic route taken in the path in `PathAnalysisResult`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_traffic_route_t FORCE AUTHID CURRENT_USER IS OBJECT (
reachability_status varchar2(32767),
nodes dbms_cloud_oci_vn_monitoring_traffic_node_tbl,
route_analysis_description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_traffic_route_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_traffic_route_t (
reachability_status varchar2,
nodes dbms_cloud_oci_vn_monitoring_traffic_node_tbl,
route_analysis_description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
reachability_status
(required) Reachability status for the given traffic route.
(required) The ordered sequence of nodes in the given the traffic route forming a path.
route_analysis_description
(optional) A description of the traffic route analysis. For example: \"Traffic might not reach a destination due to the LB backend being unhealthy\".
DBMS_CLOUD_OCI_VN_MONITORING_PATH_TOPOLOGY_T Type 🔗
Defines the representation of a virtual network topology for path analysis.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_topology_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_topology_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_topology_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_topology_t (
l_type varchar2,
entities dbms_cloud_oci_vn_monitoring_json_element_t_tbl,
relationships dbms_cloud_oci_vn_monitoring_topology_entity_relationship_tbl,
limited_entities dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_path_topology_t is a subtype of the dbms_cloud_oci_vn_monitoring_topology_t type.
DBMS_CLOUD_OCI_VN_MONITORING_PATH_T Type 🔗
Defines the configuration of the traffic path in `PathAnalysisResult`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_t FORCE AUTHID CURRENT_USER IS OBJECT (
forward_route dbms_cloud_oci_vn_monitoring_traffic_route_t,
return_route dbms_cloud_oci_vn_monitoring_traffic_route_t,
topology dbms_cloud_oci_vn_monitoring_path_topology_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_t (
forward_route dbms_cloud_oci_vn_monitoring_traffic_route_t,
return_route dbms_cloud_oci_vn_monitoring_traffic_route_t,
topology dbms_cloud_oci_vn_monitoring_path_topology_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
forward_route
(required)
return_route
(optional)
topology
(required)
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_RESULT_T Type 🔗
Ephemeral data resulting from an asynchronous operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
result_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_result_t (
result_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
result_type
(required) Type of `WorkRequestResult`.
Allowed values are: 'PATH_ANALYSIS'
DBMS_CLOUD_OCI_VN_MONITORING_PATH_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_path_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_path_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_PATH_ANALYSIS_WORK_REQUEST_RESULT_T Type 🔗
Defines the configuration of the path analysis result.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_analysis_work_request_result_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_work_request_result_t (
paths dbms_cloud_oci_vn_monitoring_path_tbl,
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analysis_work_request_result_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analysis_work_request_result_t (
result_type varchar2,
paths dbms_cloud_oci_vn_monitoring_path_tbl,
time_created timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_path_analysis_work_request_result_t is a subtype of the dbms_cloud_oci_vn_monitoring_work_request_result_t type.
Fields
Field
Description
paths
(required) List of various paths from source node to destination node for a given `PathAnalysisQuery`.
time_created
(required) Time the `PathAnalysisResult` was generated, in the format defined by RFC3339.
DBMS_CLOUD_OCI_VN_MONITORING_PATH_ANALYZER_TEST_T Type 🔗
Defines the details saved in a `PathAnalyzerTest` resource. These configuration details are used to run a Network Path Analyzer analysis.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_analyzer_test_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analyzer_test_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analyzer_test_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) A unique identifier established when the resource is created. The identifier can't be changed later.
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the `PathAnalyzerTest` resource's compartment.
protocol
(required) The IP protocol to use for the `PathAnalyzerTest` resource.
source_endpoint
(required)
destination_endpoint
(required)
protocol_parameters
(optional)
query_options
(required)
time_created
(required) The date and time the `PathAnalyzerTest` resource was created, in the format defined by RFC3339.
time_updated
(required) The date and time the `PathAnalyzerTest` resource was last updated, in the format defined by RFC3339.
lifecycle_state
(required) The current state of the `PathAnalyzerTest` resource.
Allowed values are: 'ACTIVE', 'DELETED'
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_VN_MONITORING_PATH_ANALYZER_TEST_SUMMARY_T Type 🔗
Defines the summary of a `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) A unique identifier established when the resource is created. The identifier can't be changed later.
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
compartment_id
(required) The OCID of the `PathAnalyzerTest` resource's compartment.
protocol
(required) The IP protocol to use for the `PathAnalyzerTest` resource.
source_endpoint
(required)
destination_endpoint
(required)
protocol_parameters
(optional)
query_options
(required)
time_created
(required) The date and time the `PathAnalyzerTest` resource was created, in the format defined by RFC3339.
time_updated
(required) The date and time the `PathAnalyzerTest` resource was last updated, in the format defined by RFC3339.
lifecycle_state
(required) The current state of the `PathAnalyzerTest` resource.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_VN_MONITORING_PATH_ANALYZER_TEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_PATH_ANALYZER_TEST_COLLECTION_T Type 🔗
The results of a `ListPathAnalyzerTests` call in the current compartment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_path_analyzer_test_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analyzer_test_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_path_analyzer_test_collection_t (
items dbms_cloud_oci_vn_monitoring_path_analyzer_test_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) A list of `PathAnalyzerTestSummary` items.
DBMS_CLOUD_OCI_VN_MONITORING_PERSISTED_GET_PATH_ANALYSIS_DETAILS_T Type 🔗
Defines the configuration for getting a path analysis using the persisted `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_persisted_get_path_analysis_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_get_path_analysis_details_t (
path_analyzer_test_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_persisted_get_path_analysis_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_persisted_get_path_analysis_details_t (
l_type varchar2,
path_analyzer_test_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_persisted_get_path_analysis_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_get_path_analysis_details_t type.
Fields
Field
Description
path_analyzer_test_id
(required) The OCID of the `PathAnalyzerTest` resource.
DBMS_CLOUD_OCI_VN_MONITORING_PRIVATE_IP_T Type 🔗
A *private IP* is a conceptual term that refers to an IPv4 private IP address and related properties. The `privateIp` object is the API representation of a private IP. **Note:** For information about IPv6 addresses, see IPV6 Type. Each instance has a *primary private IP* that is automatically created and assigned to the primary VNIC during instance launch. If you add a secondary VNIC to the instance, it also automatically gets a primary private IP. You can't remove a primary private IP from its VNIC. The primary private IP is automatically deleted when the VNIC is terminated. You can add *secondary private IPs* to a VNIC after it's created. For more information, see the `privateIp` operations and also IP Addresses. **Note:** Only LIST_PRIVATE_IPS Function and GET_PRIVATE_IP Function work with *primary* private IPs. To create and update primary private IPs, you instead work with instance and VNIC operations. For example, a primary private IP's properties come from the values you specify in CREATE_VNIC_DETAILS Type when calling either LAUNCH_INSTANCE Function or ATTACH_VNIC Function. To update the hostname for a primary private IP, you use UPDATE_VNIC Function. `PrivateIp` objects that are created for use with the Oracle Cloud VMware Solution are assigned to a VLAN and not a VNIC in a subnet. See the descriptions of the relevant attributes in the `PrivateIp` object. Also see VLAN Type. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_private_ip_t FORCE AUTHID CURRENT_USER IS OBJECT (
availability_domain varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
hostname_label varchar2(32767),
id varchar2(32767),
ip_address varchar2(32767),
is_primary number,
vlan_id varchar2(32767),
subnet_id varchar2(32767),
time_created timestamp with time zone,
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_private_ip_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_private_ip_t (
availability_domain varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
hostname_label varchar2,
id varchar2,
ip_address varchar2,
is_primary number,
vlan_id varchar2,
subnet_id varchar2,
time_created timestamp with time zone,
vnic_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
availability_domain
(optional) The private IP's availability domain. This attribute will be null if this is a *secondary* private IP assigned to a VNIC that is in a *regional* subnet. Example: `Uocm:PHX-AD-1`
compartment_id
(optional) The OCID of the compartment containing the private IP.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
hostname_label
(optional) The hostname for the private IP. Used for DNS. The value is the hostname portion of the private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. For more information, see DNS in Your Virtual Cloud Network. Example: `bminstance1`
(optional) The private IP address of the `privateIp` object. The address is within the CIDR of the VNIC's subnet. However, if the `PrivateIp` object is being used with a VLAN as part of the Oracle Cloud VMware Solution, the address is from the range specified by the `cidrBlock` attribute for the VLAN. See VLAN Type. Example: `10.0.3.3`
is_primary
(optional) Whether this private IP is the primary one on the VNIC. Primary private IPs are unassigned and deleted automatically when the VNIC is terminated. Example: `true`
vlan_id
(optional) Applicable only if the `PrivateIp` object is being used with a VLAN as part of the Oracle Cloud VMware Solution. The `vlanId` is the OCID of the VLAN. See VLAN Type.
subnet_id
(optional) The OCID of the subnet the VNIC is in. However, if the `PrivateIp` object is being used with a VLAN as part of the Oracle Cloud VMware Solution, the `subnetId` is null.
time_created
(optional) The date and time the private IP was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vnic_id
(optional) The OCID of the VNIC the private IP is assigned to. The VNIC and private IP must be in the same subnet. However, if the `PrivateIp` object is being used with a VLAN as part of the Oracle Cloud VMware Solution, the `vnicId` is null.
DBMS_CLOUD_OCI_VN_MONITORING_PUBLIC_IP_T Type 🔗
A *public IP* is a conceptual term that refers to a public IP address and related properties. The `publicIp` object is the API representation of a public IP. There are two types of public IPs: 1. Ephemeral 2. Reserved For more information and comparison of the two types, see Public IP Addresses.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_public_ip_t FORCE AUTHID CURRENT_USER IS OBJECT (
assigned_entity_id varchar2(32767),
assigned_entity_type varchar2(32767),
availability_domain varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
ip_address varchar2(32767),
lifecycle_state varchar2(32767),
lifetime varchar2(32767),
private_ip_id varchar2(32767),
scope varchar2(32767),
time_created timestamp with time zone,
public_ip_pool_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_t (
assigned_entity_id varchar2,
assigned_entity_type varchar2,
availability_domain varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
ip_address varchar2,
lifecycle_state varchar2,
lifetime varchar2,
private_ip_id varchar2,
scope varchar2,
time_created timestamp with time zone,
public_ip_pool_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
assigned_entity_id
(optional) The OCID of the entity the public IP is assigned to, or in the process of being assigned to.
assigned_entity_type
(optional) The type of entity the public IP is assigned to, or in the process of being assigned to.
Allowed values are: 'PRIVATE_IP', 'NAT_GATEWAY'
availability_domain
(optional) The public IP's availability domain. This property is set only for ephemeral public IPs that are assigned to a private IP (that is, when the `scope` of the public IP is set to AVAILABILITY_DOMAIN). The value is the availability domain of the assigned private IP. Example: `Uocm:PHX-AD-1`
compartment_id
(optional) The OCID of the compartment containing the public IP. For an ephemeral public IP, this is the compartment of its assigned entity (which can be a private IP or a regional entity such as a NAT gateway). For a reserved public IP that is currently assigned, its compartment can be different from the assigned private IP's.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) Defines when the public IP is deleted and released back to Oracle's public IP pool. * `EPHEMERAL`: The lifetime is tied to the lifetime of its assigned entity. An ephemeral public IP must always be assigned to an entity. If the assigned entity is a private IP, the ephemeral public IP is automatically deleted when the private IP is deleted, when the VNIC is terminated, or when the instance is terminated. If the assigned entity is a NAT_GATEWAY Type, the ephemeral public IP is automatically deleted when the NAT gateway is terminated. * `RESERVED`: You control the public IP's lifetime. You can delete a reserved public IP whenever you like. It does not need to be assigned to a private IP at all times. For more information and comparison of the two types, see Public IP Addresses.
Allowed values are: 'EPHEMERAL', 'RESERVED'
private_ip_id
(optional) Deprecated. Use `assignedEntityId` instead. The OCID of the private IP that the public IP is currently assigned to, or in the process of being assigned to. **Note:** This is `null` if the public IP is not assigned to a private IP, or is in the process of being assigned to one.
scope
(optional) Whether the public IP is regional or specific to a particular availability domain. * `REGION`: The public IP exists within a region and is assigned to a regional entity (such as a NAT_GATEWAY Type), or can be assigned to a private IP in any availability domain in the region. Reserved public IPs and ephemeral public IPs assigned to a regional entity have `scope` = `REGION`. * `AVAILABILITY_DOMAIN`: The public IP exists within the availability domain of the entity it's assigned to, which is specified by the `availabilityDomain` property of the public IP object. Ephemeral public IPs that are assigned to private IPs have `scope` = `AVAILABILITY_DOMAIN`.
(optional) The date and time the public IP was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
public_ip_pool_id
(optional) The OCID of the pool object created in the current tenancy.
DBMS_CLOUD_OCI_VN_MONITORING_PUBLIC_IP_POOL_T Type 🔗
A public IP pool is a set of public IP addresses represented as one or more IPv4 CIDR blocks. Resources like load balancers and compute instances can be allocated public IP addresses from a public IP pool.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_public_ip_pool_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_pool_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_pool_t (
cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_blocks
(optional) The CIDR blocks added to this pool. This could be all or a portion of a BYOIP CIDR block.
compartment_id
(required) The OCID of the compartment containing this pool.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(required) The date and time the public IP pool was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_PUBLIC_IP_POOL_SUMMARY_T Type 🔗
Summary information about a public IP pool.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment containing the public IP pool.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) The date and time the public IP pool was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_PUBLIC_IP_POOL_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_PUBLIC_IP_POOL_COLLECTION_T Type 🔗
Results of a `ListPublicIpPool` operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_public_ip_pool_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_pool_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_public_ip_pool_collection_t (
items dbms_cloud_oci_vn_monitoring_public_ip_pool_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) A list of public IP pool summaries.
DBMS_CLOUD_OCI_VN_MONITORING_REMOTE_PEERING_CONNECTION_T Type 🔗
A remote peering connection (RPC) is an object on a DRG that lets the VCN that is attached to the DRG peer with a VCN in a different region. *Peering* means that the two VCNs can communicate using private IP addresses, but without the traffic traversing the internet or routing through your on-premises network. For more information, see VCN Peering. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remote_peering_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
drg_id varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
is_cross_tenancy_peering number,
lifecycle_state varchar2(32767),
peer_id varchar2(32767),
peer_region_name varchar2(32767),
peer_tenancy_id varchar2(32767),
peering_status varchar2(32767),
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remote_peering_connection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remote_peering_connection_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
drg_id varchar2,
freeform_tags json_element_t,
id varchar2,
is_cross_tenancy_peering number,
lifecycle_state varchar2,
peer_id varchar2,
peer_region_name varchar2,
peer_tenancy_id varchar2,
peering_status varchar2,
time_created timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment that contains the RPC.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
drg_id
(required) The OCID of the DRG that this RPC belongs to.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) If this RPC is peered, this value is the OCID of the other RPC.
peer_region_name
(optional) If this RPC is peered, this value is the region that contains the other RPC. Example: `us-ashburn-1`
peer_tenancy_id
(optional) If this RPC is peered, this value is the OCID of the other RPC's tenancy.
peering_status
(required) Whether the RPC is peered with another RPC. `NEW` means the RPC has not yet been peered. `PENDING` means the peering is being established. `REVOKED` means the RPC at the other end of the peering has been deleted.
(required) The date and time the RPC was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_REMOTE_PEERING_CONNECTION_DRG_ATTACHMENT_NETWORK_DETAILS_T Type 🔗
Specifies the DRG attachment to another DRG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remote_peering_connection_drg_attachment_network_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remote_peering_connection_drg_attachment_network_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remote_peering_connection_drg_attachment_network_details_t (
l_type varchar2,
id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_remote_peering_connection_drg_attachment_network_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t type.
DBMS_CLOUD_OCI_VN_MONITORING_REMOVE_DRG_ROUTE_DISTRIBUTION_STATEMENTS_DETAILS_T Type 🔗
Details request to remove statements from a route distribution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remove_drg_route_distribution_statements_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
statement_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_drg_route_distribution_statements_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_drg_route_distribution_statements_details_t (
statement_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
statement_ids
(optional) The Oracle-assigned ID of each route distribution to remove.
DBMS_CLOUD_OCI_VN_MONITORING_REMOVE_DRG_ROUTE_RULES_DETAILS_T Type 🔗
Details used in a request to remove static routes from a DRG route table.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remove_drg_route_rules_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
route_rule_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_drg_route_rules_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_drg_route_rules_details_t (
route_rule_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
route_rule_ids
(optional) The Oracle-assigned ID of each DRG route rule to be deleted.
DBMS_CLOUD_OCI_VN_MONITORING_REMOVE_NETWORK_SECURITY_GROUP_SECURITY_RULES_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remove_network_security_group_security_rules_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
security_rule_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_network_security_group_security_rules_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_network_security_group_security_rules_details_t (
security_rule_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
security_rule_ids
(optional) The Oracle-assigned ID of each SECURITY_RULE Type to be deleted.
DBMS_CLOUD_OCI_VN_MONITORING_REMOVE_PUBLIC_IP_POOL_CAPACITY_DETAILS_T Type 🔗
The information needed to remove capacity from a public IP pool.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remove_public_ip_pool_capacity_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_public_ip_pool_capacity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_public_ip_pool_capacity_details_t (
cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(required) The CIDR block to remove from the public IP pool. Example: `10.0.1.0/24`
DBMS_CLOUD_OCI_VN_MONITORING_REMOVE_SUBNET_IPV6_CIDR_DETAILS_T Type 🔗
Details object for removing an IPv6 CIDR Block from a Subnet.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remove_subnet_ipv6_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ipv6_cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_subnet_ipv6_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_subnet_ipv6_cidr_details_t (
ipv6_cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ipv6_cidr_block
(required) This field is not required and should only be specified when removing an IPv6 CIDR from a subnet's IPv6 address space. SeeIPv6 Addresses. Example: `2001:0db8:0123::/64`
DBMS_CLOUD_OCI_VN_MONITORING_REMOVE_VCN_CIDR_DETAILS_T Type 🔗
Details for removing a CIDR block from a VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remove_vcn_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_vcn_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_vcn_cidr_details_t (
cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(required) The CIDR block to remove.
DBMS_CLOUD_OCI_VN_MONITORING_REMOVE_VCN_IPV6_CIDR_DETAILS_T Type 🔗
Details used when removing ULA or private IPv6 prefix or an IPv6 GUA assigned by Oracle or BYOIPv6 prefix. You can only remove one of these per request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_remove_vcn_ipv6_cidr_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ipv6_cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_vcn_ipv6_cidr_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_remove_vcn_ipv6_cidr_details_t (
ipv6_cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ipv6_cidr_block
(optional) This field is not required and should only be specified when removing ULA or private IPv6 prefix or an IPv6 GUA assigned by Oracle or BYOIPv6 prefix from a VCN's IPv6 address space. SeeIPv6 Addresses. Example: `2001:0db8:0123::/56`
DBMS_CLOUD_OCI_VN_MONITORING_ROUTE_TABLE_T Type 🔗
A collection of `RouteRule` objects, which are used to route packets based on destination IP to a particular network entity. For more information, see Overview of the Networking Service. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_route_table_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
route_rules dbms_cloud_oci_vn_monitoring_route_rule_tbl,
time_created timestamp with time zone,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_route_table_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_route_table_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
route_rules dbms_cloud_oci_vn_monitoring_route_rule_tbl,
time_created timestamp with time zone,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the route table.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(required) The collection of rules for routing destination IPs to network devices.
time_created
(optional) The date and time the route table was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vcn_id
(required) The OCID of the VCN the route table list belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_SECURITY_LIST_T Type 🔗
A set of virtual firewall rules for your VCN. Security lists are configured at the subnet level, but the rules are applied to the ingress and egress traffic for the individual instances in the subnet. The rules can be stateful or stateless. For more information, see Security Lists. **Note:** Compare security lists to NETWORK_SECURITY_GROUP Types, which let you apply a set of security rules to a *specific set of VNICs* instead of an entire subnet. Oracle recommends using network security groups instead of security lists, although you can use either or both together. **Important:** Oracle Cloud Infrastructure Compute service images automatically include firewall rules (for example, Linux iptables, Windows firewall). If there are issues with some type of access to an instance, make sure both the security lists associated with the instance's subnet and the instance's firewall rules are set correctly. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_security_list_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
egress_security_rules dbms_cloud_oci_vn_monitoring_egress_security_rule_tbl,
freeform_tags json_element_t,
id varchar2(32767),
ingress_security_rules dbms_cloud_oci_vn_monitoring_ingress_security_rule_tbl,
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_security_list_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_security_list_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
egress_security_rules dbms_cloud_oci_vn_monitoring_egress_security_rule_tbl,
freeform_tags json_element_t,
id varchar2,
ingress_security_rules dbms_cloud_oci_vn_monitoring_ingress_security_rule_tbl,
lifecycle_state varchar2,
time_created timestamp with time zone,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the security list.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
egress_security_rules
(required) Rules for allowing egress IP packets.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
id
(required) The security list's Oracle Cloud ID (OCID).
(required) The date and time the security list was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vcn_id
(required) The OCID of the VCN the security list belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_SERVICE_T Type 🔗
An object that represents one or multiple Oracle services that you can enable for a SERVICE_GATEWAY Type. In the User Guide topic Access to Oracle Services: Service Gateway, the term *service CIDR label* is used to refer to the string that represents the regional public IP address ranges of the Oracle service or services covered by a given `Service` object. That unique string is the value of the `Service` object's `cidrBlock` attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_service_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
description varchar2(32767),
id varchar2(32767),
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_t (
cidr_block varchar2,
description varchar2,
id varchar2,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(required) A string that represents the regional public IP address ranges for the Oracle service or services covered by this `Service` object. Also known as the `Service` object's *service CIDR label*. When you set up a route rule to route traffic to the service gateway, use this value as the rule's destination. See ROUTE_TABLE Type. Also, when you set up a security list rule to cover traffic with the service gateway, use the `cidrBlock` value as the rule's destination (for an egress rule) or the source (for an ingress rule). See SECURITY_LIST Type. Example: `oci-phx-objectstorage`
description
(required) Description of the Oracle service or services covered by this `Service` object. Example: `OCI PHX Object Storage`
(required) Name of the `Service` object. This name can change and is not guaranteed to be unique. Example: `OCI PHX Object Storage`
DBMS_CLOUD_OCI_VN_MONITORING_SERVICE_ID_RESPONSE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_service_id_response_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
service_id varchar2(32767),
service_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_id_response_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_id_response_details_t (
service_id varchar2,
service_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_SERVICE_ID_RESPONSE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_service_id_response_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_service_id_response_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_service_id_response_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_SERVICE_GATEWAY_T Type 🔗
Represents a router that lets your VCN privately access specific Oracle services such as Object Storage without exposing the VCN to the public internet. Traffic leaving the VCN and destined for a supported Oracle service (see LIST_SERVICES Function) is routed through the service gateway and does not traverse the internet. The instances in the VCN do not need to have public IP addresses nor be in a public subnet. The VCN does not need an internet gateway for this traffic. For more information, see Access to Oracle Services: Service Gateway. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_service_gateway_t FORCE AUTHID CURRENT_USER IS OBJECT (
block_traffic number,
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
route_table_id varchar2(32767),
services dbms_cloud_oci_vn_monitoring_service_id_response_details_tbl,
time_created timestamp with time zone,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_gateway_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_service_gateway_t (
block_traffic number,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
route_table_id varchar2,
services dbms_cloud_oci_vn_monitoring_service_id_response_details_tbl,
time_created timestamp with time zone,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
block_traffic
(required) Whether the service gateway blocks all traffic through it. The default is `false`. When this is `true`, traffic is not routed to any services, regardless of route rules. Example: `true`
compartment_id
(required) The OCID of the compartment that contains the service gateway.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(required) List of the SERVICE Type objects enabled for this service gateway. The list can be empty. You can enable a particular `Service` by using ATTACH_SERVICE_ID Function or UPDATE_SERVICE_GATEWAY Function.
time_created
(optional) The date and time the service gateway was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vcn_id
(required) The OCID of the VCN the service gateway belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_STATEFUL_EGRESS_SECURITY_LIST_CONFIGURATION_T Type 🔗
Defines the stateful subnet egress security list configuration that allowed the ingress traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_stateful_egress_security_list_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t (
security_list_id varchar2(32767),
security_rule dbms_cloud_oci_vn_monitoring_ingress_security_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_stateful_egress_security_list_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_stateful_egress_security_list_configuration_t (
l_type varchar2,
security_list_id varchar2,
security_rule dbms_cloud_oci_vn_monitoring_ingress_security_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_stateful_egress_security_list_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t type.
Fields
Field
Description
security_list_id
(required) The OCID of the security list that allowed the traffic.
security_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_STATEFUL_INGRESS_SECURITY_LIST_CONFIGURATION_T Type 🔗
Defines the stateful subnet ingress security list configuration that allowed the egress traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_stateful_ingress_security_list_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t (
security_list_id varchar2(32767),
security_rule dbms_cloud_oci_vn_monitoring_egress_security_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_stateful_ingress_security_list_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_stateful_ingress_security_list_configuration_t (
l_type varchar2,
security_list_id varchar2,
security_rule dbms_cloud_oci_vn_monitoring_egress_security_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_stateful_ingress_security_list_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t type.
Fields
Field
Description
security_list_id
(required) The OCID of the security list that allowed the traffic.
security_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_STATEFUL_NSG_CONFIGURATION_T Type 🔗
Defines the stateful network security group configuration that allowed the traffic.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_stateful_nsg_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t (
nsg_id varchar2(32767),
security_rule dbms_cloud_oci_vn_monitoring_security_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_stateful_nsg_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_stateful_nsg_configuration_t (
l_type varchar2,
nsg_id varchar2,
security_rule dbms_cloud_oci_vn_monitoring_security_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_stateful_nsg_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_allowed_security_configuration_t type.
Fields
Field
Description
nsg_id
(required) The OCID of the network security group that allowed the traffic.
security_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_SUBNET_T Type 🔗
A logical subdivision of a VCN. Each subnet consists of a contiguous range of IP addresses that do not overlap with other subnets in the VCN. Example: 172.16.1.0/24. For more information, see Overview of the Networking Service and VCNs and Subnets. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_subnet_t FORCE AUTHID CURRENT_USER IS OBJECT (
availability_domain varchar2(32767),
cidr_block varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
dhcp_options_id varchar2(32767),
display_name varchar2(32767),
dns_label varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
ipv6_cidr_block varchar2(32767),
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
ipv6_virtual_router_ip varchar2(32767),
lifecycle_state varchar2(32767),
prohibit_internet_ingress number,
prohibit_public_ip_on_vnic number,
route_table_id varchar2(32767),
security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
subnet_domain_name varchar2(32767),
time_created timestamp with time zone,
vcn_id varchar2(32767),
virtual_router_ip varchar2(32767),
virtual_router_mac varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_subnet_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_subnet_t (
availability_domain varchar2,
cidr_block varchar2,
compartment_id varchar2,
defined_tags json_element_t,
dhcp_options_id varchar2,
display_name varchar2,
dns_label varchar2,
freeform_tags json_element_t,
id varchar2,
ipv6_cidr_block varchar2,
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
ipv6_virtual_router_ip varchar2,
lifecycle_state varchar2,
prohibit_internet_ingress number,
prohibit_public_ip_on_vnic number,
route_table_id varchar2,
security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
subnet_domain_name varchar2,
time_created timestamp with time zone,
vcn_id varchar2,
virtual_router_ip varchar2,
virtual_router_mac varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
availability_domain
(optional) The subnet's availability domain. This attribute will be null if this is a regional subnet instead of an AD-specific subnet. Oracle recommends creating regional subnets. Example: `Uocm:PHX-AD-1`
cidr_block
(required) The subnet's CIDR block. Example: `10.0.1.0/24`
compartment_id
(required) The OCID of the compartment containing the subnet.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
dhcp_options_id
(optional) The OCID of the set of DHCP options that the subnet uses.
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
dns_label
(optional) A DNS label for the subnet, used in conjunction with the VNIC's hostname and VCN's DNS label to form a fully qualified domain name (FQDN) for each VNIC within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be an alphanumeric string that begins with a letter and is unique within the VCN. The value cannot be changed. The absence of this parameter means the Internet and VCN Resolver will not resolve hostnames of instances in this subnet. For more information, see DNS in Your Virtual Cloud Network. Example: `subnet123`
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) For an IPv6-enabled subnet, this is the IPv6 CIDR block for the subnet's IP address space. The subnet size is always /64. See IPv6 Addresses. Example: `2001:0db8:0123:1111::/64`
ipv6_cidr_blocks
(optional) The list of all IPv6 CIDR blocks (Oracle allocated IPv6 GUA, ULA or private IPv6 CIDR blocks, BYOIPv6 CIDR blocks) for the subnet.
ipv6_virtual_router_ip
(optional) For an IPv6-enabled subnet, this is the IPv6 address of the virtual router. Example: `2001:0db8:0123:1111:89ab:cdef:1234:5678`
(optional) Whether to disallow ingress internet traffic to VNICs within this subnet. Defaults to false. For IPV4, `prohibitInternetIngress` behaves similarly to `prohibitPublicIpOnVnic`. If it is set to false, VNICs created in this subnet will automatically be assigned public IP addresses unless specified otherwise during instance launch or VNIC creation (with the `assignPublicIp` flag in CREATE_VNIC_DETAILS Type). If `prohibitInternetIngress` is set to true, VNICs created in this subnet cannot have public IP addresses (that is, it's a privatesubnet). For IPv6, if `prohibitInternetIngress` is set to `true`, internet access is not allowed for any IPv6s assigned to VNICs in the subnet. Otherwise, ingress internet traffic is allowed by default. Example: `true`
prohibit_public_ip_on_vnic
(optional) Whether VNICs within this subnet can have public IP addresses. Defaults to false, which means VNICs created in this subnet will automatically be assigned public IP addresses unless specified otherwise during instance launch or VNIC creation (with the `assignPublicIp` flag in CREATE_VNIC_DETAILS Type). If `prohibitPublicIpOnVnic` is set to true, VNICs created in this subnet cannot have public IP addresses (that is, it's a private subnet). Example: `true`
route_table_id
(required) The OCID of the route table that the subnet uses.
security_list_ids
(optional) The OCIDs of the security list or lists that the subnet uses. Remember that security lists are associated *with the subnet*, but the rules are applied to the individual VNICs in the subnet.
subnet_domain_name
(optional) The subnet's domain name, which consists of the subnet's DNS label, the VCN's DNS label, and the `oraclevcn.com` domain. For more information, see DNS in Your Virtual Cloud Network. Example: `subnet123.vcn1.oraclevcn.com`
time_created
(optional) The date and time the subnet was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
(required) The IP address of the virtual router. Example: `10.0.14.1`
virtual_router_mac
(required) The MAC address of the virtual router. Example: `00:00:00:00:00:01`
DBMS_CLOUD_OCI_VN_MONITORING_SUBNET_ENDPOINT_T Type 🔗
Defines the details required for a SUBNET-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_subnet_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
address varchar2(32767),
subnet_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_subnet_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_subnet_endpoint_t (
l_type varchar2,
address varchar2,
subnet_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_subnet_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
Fields
Field
Description
address
(required) The IPv4 address of the `Endpoint`.
subnet_id
(required) The OCID of the subnet containing the IP address. This can be used to disambiguate which subnet is intended, in case the IP address is used in more than one subnet (when there are subnets with overlapping IP ranges).
DBMS_CLOUD_OCI_VN_MONITORING_SUBNET_TOPOLOGY_T Type 🔗
Defines the visualization of a subnet in a VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_subnet_topology_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_topology_t (
subnet_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_subnet_topology_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_subnet_topology_t (
l_type varchar2,
entities dbms_cloud_oci_vn_monitoring_json_element_t_tbl,
relationships dbms_cloud_oci_vn_monitoring_topology_entity_relationship_tbl,
limited_entities dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone,
subnet_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_subnet_topology_t is a subtype of the dbms_cloud_oci_vn_monitoring_topology_t type.
Fields
Field
Description
subnet_id
(optional) The OCID of the subnet for which the visualization is generated.
DBMS_CLOUD_OCI_VN_MONITORING_TCP_PROTOCOL_PARAMETERS_T Type 🔗
Defines the configuration for TCP protocol parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tcp_protocol_parameters_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_protocol_parameters_t (
source_port number,
destination_port number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tcp_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tcp_protocol_parameters_t (
l_type varchar2,
source_port number,
destination_port number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_tcp_protocol_parameters_t is a subtype of the dbms_cloud_oci_vn_monitoring_protocol_parameters_t type.
Fields
Field
Description
source_port
(optional) The source port to use in a `PathAnalyzerTest` resource.
destination_port
(required) The destination port to use in a `PathAnalyzerTest` resource.
DBMS_CLOUD_OCI_VN_MONITORING_TCP_TRAFFIC_PROTOCOL_PARAMETERS_T Type 🔗
Defines the `TrafficProtocolParameters` configuration for the TCP protocol.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tcp_traffic_protocol_parameters_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t (
source_port number,
destination_port number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tcp_traffic_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tcp_traffic_protocol_parameters_t (
l_type varchar2,
source_port number,
destination_port number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_tcp_traffic_protocol_parameters_t is a subtype of the dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t type.
Fields
Field
Description
source_port
(optional) The source port to use in a `PathAnalyzerTest`.
destination_port
(required) The destination port to use in a `PathAnalyzerTest`.
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_ASSOCIATED_WITH_RELATIONSHIP_DETAILS_T Type 🔗
Defines association details for an `associatedWith` relationship.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_associated_with_relationship_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
via dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_associated_with_relationship_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_associated_with_relationship_details_t (
via dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
via
(optional) The OCID of the entities via which the relationship is created. For example an instance is associated with a network security group via the VNIC attachment and the VNIC.
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_ASSOCIATED_WITH_ENTITY_RELATIONSHIP_T Type 🔗
Defines the `AssociatedWith` relationship between virtual network topology entities. An `AssociatedWith` relationship is defined when there is no obvious `contains` relationship but entities are still related. For example, a DRG is associated with a VCN because a DRG is not managed by VCN but can be attached to a VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_associated_with_entity_relationship_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t (
associated_with_details dbms_cloud_oci_vn_monitoring_topology_associated_with_relationship_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_associated_with_entity_relationship_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_associated_with_entity_relationship_t (
id1 varchar2,
id2 varchar2,
l_type varchar2,
associated_with_details dbms_cloud_oci_vn_monitoring_topology_associated_with_relationship_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_topology_associated_with_entity_relationship_t is a subtype of the dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t type.
Fields
Field
Description
associated_with_details
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_CONTAINS_ENTITY_RELATIONSHIP_T Type 🔗
Defines the `contains` relationship between virtual network topology entities. A `Contains` relationship is defined when an entity fully owns, contains or manages another entity. For example, a subnet is contained and managed in the scope of a VCN, therefore a VCN has a `contains` relationship to a subnet.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_contains_entity_relationship_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_contains_entity_relationship_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_contains_entity_relationship_t (
id1 varchar2,
id2 varchar2,
l_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_topology_contains_entity_relationship_t is a subtype of the dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t type.
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_ROUTES_TO_RELATIONSHIP_DETAILS_T Type 🔗
Defines route rule details for a `routesTo` relationship.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_routes_to_relationship_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
destination_type varchar2(32767),
destination varchar2(32767),
route_table_id varchar2(32767),
route_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_routes_to_relationship_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_routes_to_relationship_details_t (
destination_type varchar2,
destination varchar2,
route_table_id varchar2,
route_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
destination_type
(required) The destinationType can be set to one of two values: * Use `CIDR_BLOCK` if the rule's `destination` is an IP address range in CIDR notation. * Use `SERVICE_CIDR_BLOCK` if the rule's `destination` is the `cidrBlock` value for a SERVICE Type.
destination
(required) An IP address range in CIDR notation or the `cidrBlock` value for a SERVICE Type.
route_table_id
(required) The OCID of the routing table that contains the route rule.
route_type
(optional) A route rule can be `STATIC` if manually added to the route table or `DYNAMIC` if imported from another route table.
Allowed values are: 'STATIC', 'DYNAMIC'
DBMS_CLOUD_OCI_VN_MONITORING_TOPOLOGY_ROUTES_TO_ENTITY_RELATIONSHIP_T Type 🔗
Defines the `routesTo` relationship between virtual network topology entities. A `RoutesTo` relationship is defined when a routing table and a routing rule are used to govern how to route traffic from one entity to another. For example, a DRG might have a routing rule to send certain traffic to an LPG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_topology_routes_to_entity_relationship_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t (
route_rule_details dbms_cloud_oci_vn_monitoring_topology_routes_to_relationship_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_routes_to_entity_relationship_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_topology_routes_to_entity_relationship_t (
id1 varchar2,
id2 varchar2,
l_type varchar2,
route_rule_details dbms_cloud_oci_vn_monitoring_topology_routes_to_relationship_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_topology_routes_to_entity_relationship_t is a subtype of the dbms_cloud_oci_vn_monitoring_topology_entity_relationship_t type.
Fields
Field
Description
route_rule_details
(required)
DBMS_CLOUD_OCI_VN_MONITORING_CPE_DEVICE_CONFIG_ANSWER_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_CPE_DEVICE_CONFIG_T Type 🔗
The set of CPE configuration answers for the tunnel, which the customer provides in UPDATE_TUNNEL_CPE_DEVICE_CONFIG Function. The answers correlate to the questions that are specific to the CPE device type (see the `parameters` attribute of CPE_DEVICE_SHAPE_DETAIL Type). See these related operations: * GET_TUNNEL_CPE_DEVICE_CONFIG Function * GET_TUNNEL_CPE_DEVICE_CONFIG_CONTENT Function * GET_IPSEC_CPE_DEVICE_CONFIG_CONTENT Function * GET_CPE_DEVICE_CONFIG_CONTENT Function
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_cpe_device_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
tunnel_cpe_device_config_parameter dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_cpe_device_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_cpe_device_config_t (
tunnel_cpe_device_config_parameter dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tunnel_cpe_device_config_parameter
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_ROUTE_SUMMARY_T Type 🔗
A summary of the routes advertised to and received from the on-premises network.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_route_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
prefix varchar2(32767),
age number,
is_best_path number,
as_path dbms_cloud_oci_vn_monitoring_number_tbl,
advertiser varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_route_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_route_summary_t (
prefix varchar2,
age number,
is_best_path number,
as_path dbms_cloud_oci_vn_monitoring_number_tbl,
advertiser varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
prefix
(optional) The BGP network layer reachability information.
age
(optional) The age of the route.
is_best_path
(optional) Indicates this is the best route.
as_path
(optional) A list of ASNs in AS_Path.
advertiser
(optional) The source of the route advertisement.
Allowed values are: 'CUSTOMER', 'ORACLE'
DBMS_CLOUD_OCI_VN_MONITORING_TUNNEL_SECURITY_ASSOCIATION_SUMMARY_T Type 🔗
A summary of the IPSec tunnel security association details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_tunnel_security_association_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
cpe_subnet varchar2(32767),
oracle_subnet varchar2(32767),
tunnel_sa_status varchar2(32767),
tunnel_sa_error_info varchar2(32767),
time varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_security_association_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_tunnel_security_association_summary_t (
cpe_subnet varchar2,
oracle_subnet varchar2,
tunnel_sa_status varchar2,
tunnel_sa_error_info varchar2,
time varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cpe_subnet
(optional) The IP address and mask of the partner subnet used in policy based VPNs or static routes.
oracle_subnet
(optional) The IP address and mask of the local subnet used in policy based VPNs or static routes.
(optional) Current state if the IPSec tunnel status is not `UP`, including phase one and phase two details and a possible reason the tunnel is not `UP`.
time
(optional) Time in the current state, in seconds.
DBMS_CLOUD_OCI_VN_MONITORING_UDP_PROTOCOL_PARAMETERS_T Type 🔗
Defines the configuration for UDP protocol parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_udp_protocol_parameters_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_protocol_parameters_t (
source_port number,
destination_port number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_udp_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_udp_protocol_parameters_t (
l_type varchar2,
source_port number,
destination_port number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_udp_protocol_parameters_t is a subtype of the dbms_cloud_oci_vn_monitoring_protocol_parameters_t type.
Fields
Field
Description
source_port
(optional) The source port to use in a `PathAnalyzerTest` resource.
destination_port
(required) The destination port to use in a `PathAnalyzerTest` resource.
DBMS_CLOUD_OCI_VN_MONITORING_UDP_TRAFFIC_PROTOCOL_PARAMETERS_T Type 🔗
Defines the `TrafficProtocolParameters` configuration for the UDP protocol.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_udp_traffic_protocol_parameters_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t (
source_port number,
destination_port number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_udp_traffic_protocol_parameters_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_udp_traffic_protocol_parameters_t (
l_type varchar2,
source_port number,
destination_port number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_udp_traffic_protocol_parameters_t is a subtype of the dbms_cloud_oci_vn_monitoring_traffic_protocol_parameters_t type.
Fields
Field
Description
source_port
(optional) The source port to use in a `PathAnalyzerTest`.
destination_port
(required) The destination port to use in a `PathAnalyzerTest`.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_BYOIP_RANGE_DETAILS_T Type 🔗
The information used to update a `ByoipRange` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_byoip_range_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_byoip_range_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_byoip_range_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_CAPTURE_FILTER_DETAILS_T Type 🔗
These details can be included in a request to update a capture filter. A capture filter contains a set of rules governing what traffic a VTAP mirrors.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_capture_filter_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
vtap_capture_filter_rules dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_tbl,
flow_log_capture_filter_rules dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_tbl,
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_capture_filter_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_capture_filter_details_t (
defined_tags json_element_t,
display_name varchar2,
vtap_capture_filter_rules dbms_cloud_oci_vn_monitoring_vtap_capture_filter_rule_details_tbl,
flow_log_capture_filter_rules dbms_cloud_oci_vn_monitoring_flow_log_capture_filter_rule_details_tbl,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
vtap_capture_filter_rules
(optional) The set of rules governing what traffic a VTAP mirrors.
flow_log_capture_filter_rules
(optional) The set of rules governing what traffic the Flow Log collects when creating a flow log capture filter.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_CPE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_cpe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
cpe_device_shape_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_cpe_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_cpe_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
cpe_device_shape_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
cpe_device_shape_id
(optional) The OCID of the CPE device type. You can provide a value if you want to generate CPE device configuration content for IPSec connections that use this CPE. For a list of possible values, see LIST_CPE_DEVICE_SHAPES Function. For more information about generating CPE device configuration content, see: * GET_CPE_DEVICE_CONFIG_CONTENT Function * GET_IPSEC_CPE_DEVICE_CONFIG_CONTENT Function * GET_TUNNEL_CPE_DEVICE_CONFIG_CONTENT Function * GET_TUNNEL_CPE_DEVICE_CONFIG Function
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_MACSEC_KEY_T Type 🔗
An object defining the OCID of the Secret held in Vault that represent the MACsec key.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_macsec_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
connectivity_association_name_secret_id varchar2(32767),
connectivity_association_name_secret_version number,
connectivity_association_key_secret_id varchar2(32767),
connectivity_association_key_secret_version number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_macsec_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_macsec_key_t (
connectivity_association_name_secret_id varchar2,
connectivity_association_name_secret_version number,
connectivity_association_key_secret_id varchar2,
connectivity_association_key_secret_version number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
connectivity_association_name_secret_id
(required) Secret OCID containing the Connectivity Association Key Name (CKN) of this MACsec key.
connectivity_association_name_secret_version
(required) The secret version of the connectivity association name secret in Vault.
connectivity_association_key_secret_id
(required) Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.
connectivity_association_key_secret_version
(required) The secret version of the connectivityAssociationKey secret in Vault.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_MACSEC_PROPERTIES_T Type 🔗
Properties used to update MACsec settings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_macsec_properties_t FORCE AUTHID CURRENT_USER IS OBJECT (
state varchar2(32767),
primary_key dbms_cloud_oci_vn_monitoring_update_macsec_key_t,
encryption_cipher varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_macsec_properties_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_macsec_properties_t (
state varchar2,
primary_key dbms_cloud_oci_vn_monitoring_update_macsec_key_t,
encryption_cipher varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
state
(required) Indicates whether or not MACsec is enabled.
Allowed values are: 'ENABLED', 'DISABLED'
primary_key
(optional)
encryption_cipher
(optional) Type of encryption cipher suite to use for the MACsec connection.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_CROSS_CONNECT_DETAILS_T Type 🔗
Update a CrossConnect
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_cross_connect_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
is_active number,
customer_reference_name varchar2(32767),
macsec_properties dbms_cloud_oci_vn_monitoring_update_macsec_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_cross_connect_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_cross_connect_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
is_active number,
customer_reference_name varchar2,
macsec_properties dbms_cloud_oci_vn_monitoring_update_macsec_properties_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
is_active
(optional) Set to true to activate the cross-connect. You activate it after the physical cabling is complete, and you've confirmed the cross-connect's light levels are good and your side of the interface is up. Activation indicates to Oracle that the physical connection is ready. Example: `true`
customer_reference_name
(optional) A reference name or identifier for the physical fiber connection this cross-connect uses.
macsec_properties
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_CROSS_CONNECT_GROUP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_cross_connect_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
customer_reference_name varchar2(32767),
freeform_tags json_element_t,
macsec_properties dbms_cloud_oci_vn_monitoring_update_macsec_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_cross_connect_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_cross_connect_group_details_t (
defined_tags json_element_t,
display_name varchar2,
customer_reference_name varchar2,
freeform_tags json_element_t,
macsec_properties dbms_cloud_oci_vn_monitoring_update_macsec_properties_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
customer_reference_name
(optional) A reference name or identifier for the physical fiber connection this cross-connect group uses.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
macsec_properties
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DHCP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_dhcp_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
options dbms_cloud_oci_vn_monitoring_dhcp_option_tbl,
domain_name_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_dhcp_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_dhcp_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
options dbms_cloud_oci_vn_monitoring_dhcp_option_tbl,
domain_name_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
options
(optional)
domain_name_type
(optional) The search domain name type of DHCP options
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ATTACHMENT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_attachment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
drg_route_table_id varchar2(32767),
network_details dbms_cloud_oci_vn_monitoring_drg_attachment_network_update_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
export_drg_route_distribution_id varchar2(32767),
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_attachment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_attachment_details_t (
display_name varchar2,
drg_route_table_id varchar2,
network_details dbms_cloud_oci_vn_monitoring_drg_attachment_network_update_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
export_drg_route_distribution_id varchar2,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
drg_route_table_id
(optional) The OCID of the DRG route table that is assigned to this attachment. The DRG route table manages traffic inside the DRG. You can't remove a DRG route table from a DRG attachment, but you can reassign which DRG route table it uses.
network_details
(optional)
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
export_drg_route_distribution_id
(optional) The OCID of the export route distribution used to specify how routes in the assigned DRG route table are advertised out through the attachment. If this value is null, no routes are advertised through this attachment.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
default_drg_route_tables dbms_cloud_oci_vn_monitoring_default_drg_route_tables_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_details_t (
defined_tags json_element_t,
default_drg_route_tables dbms_cloud_oci_vn_monitoring_default_drg_route_tables_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
default_drg_route_tables
(optional)
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_DISTRIBUTION_DETAILS_T Type 🔗
Details used in a request to update a route distribution. You cannot assign a table to a virtual circuit or IPSec tunnel attachment if there is a static route rule for an RPC attachment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_DISTRIBUTION_STATEMENT_DETAILS_T Type 🔗
Route distribution statements to update in the route distribution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
match_criteria dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_tbl,
priority number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_t (
id varchar2,
match_criteria dbms_cloud_oci_vn_monitoring_drg_route_distribution_match_criteria_tbl,
priority number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The Oracle-assigned ID of each route distribution statement to be updated.
match_criteria
(optional) The action is applied only if all of the match criteria is met.
priority
(optional) The priority of the statement you'd like to update.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_DISTRIBUTION_STATEMENT_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_DISTRIBUTION_STATEMENTS_DETAILS_T Type 🔗
Details request to update statements in a route distribution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statements_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
statements dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statements_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statements_details_t (
statements dbms_cloud_oci_vn_monitoring_update_drg_route_distribution_statement_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
statements
(required) The route distribution statements to update, and the details to be updated.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_RULE_DETAILS_T Type 🔗
Details used to update a route rule in the DRG route table.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
destination varchar2(32767),
destination_type varchar2(32767),
next_hop_drg_attachment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_t (
id varchar2,
destination varchar2,
destination_type varchar2,
next_hop_drg_attachment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The Oracle-assigned ID of each DRG route rule to update.
destination
(optional) The range of IP addresses used for matching when routing traffic. Potential values: * IP address range in CIDR notation. Can be an IPv4 or IPv6 CIDR. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56`.
destination_type
(optional) Type of destination for the rule. Allowed values: * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation.
Allowed values are: 'CIDR_BLOCK'
next_hop_drg_attachment_id
(optional) The OCID of the next hop DRG attachment. The next hop DRG attachment is responsible for reaching the network destination.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_RULE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_RULES_DETAILS_T Type 🔗
Details used to update route rules in a DRG route table.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_rules_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
route_rules dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_rules_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_rules_details_t (
route_rules dbms_cloud_oci_vn_monitoring_update_drg_route_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
route_rules
(optional) The DRG rute rules to update.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_DRG_ROUTE_TABLE_DETAILS_T Type 🔗
Details used in a request to update a DRG route table. You can't assign a table to a virtual circuit or IPSec tunnel attachment if there is a static route rule for an RPC attachment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_drg_route_table_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
import_drg_route_distribution_id varchar2(32767),
is_ecmp_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_table_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_drg_route_table_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
import_drg_route_distribution_id varchar2,
is_ecmp_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
import_drg_route_distribution_id
(optional) The OCID of the import route distribution used to specify how incoming route advertisements through referenced attachements are inserted into the DRG route table.
is_ecmp_enabled
(optional) If you want traffic to be routed using ECMP across your virtual circuits or IPSec tunnels to your on-prem networks, set this value to true on the route table.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_IP_SEC_CONNECTION_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
cpe_local_identifier varchar2(32767),
cpe_local_identifier_type varchar2(32767),
static_routes dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
cpe_local_identifier varchar2,
cpe_local_identifier_type varchar2,
static_routes dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
cpe_local_identifier
(optional) Your identifier for your CPE device. Can be either an IP address or a hostname (specifically, the fully qualified domain name (FQDN)). The type of identifier you provide here must correspond to the value for `cpeLocalIdentifierType`. For information about why you'd provide this value, see If Your CPE Is Behind a NAT Device. Example IP address: `10.0.3.3` Example hostname: `cpe.example.com`
cpe_local_identifier_type
(optional) The type of identifier for your CPE device. The value you provide here must correspond to the value for `cpeLocalIdentifier`.
Allowed values are: 'IP_ADDRESS', 'HOSTNAME'
static_routes
(optional) Static routes to the CPE. If you provide this attribute, it replaces the entire current set of static routes. A static route's CIDR must not be a multicast address or class E address. The CIDR can be either IPv4 or IPv6. IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. Example: `10.0.1.0/24` Example: `2001:db8::/32`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_IP_SEC_TUNNEL_BGP_SESSION_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_bgp_session_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
oracle_interface_ip varchar2(32767),
customer_interface_ip varchar2(32767),
oracle_interface_ipv6 varchar2(32767),
customer_interface_ipv6 varchar2(32767),
customer_bgp_asn varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_bgp_session_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_bgp_session_details_t (
oracle_interface_ip varchar2,
customer_interface_ip varchar2,
oracle_interface_ipv6 varchar2,
customer_interface_ipv6 varchar2,
customer_bgp_asn varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
oracle_interface_ip
(optional) The IP address for the Oracle end of the inside tunnel interface. If the tunnel's `routing` attribute is set to `BGP` (see UPDATE_IP_SEC_CONNECTION_TUNNEL_DETAILS Function), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. The value must be a /30 or /31. If you are switching the tunnel from using BGP dynamic routing to static routing and want to remove the value for `oracleInterfaceIp`, you can set the value to an empty string. Example: `10.0.0.4/31`
customer_interface_ip
(optional) The IP address for the CPE end of the inside tunnel interface. If the tunnel's `routing` attribute is set to `BGP` (see UPDATE_IP_SEC_CONNECTION_TUNNEL_DETAILS Function), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. The value must be a /30 or /31. If you are switching the tunnel from using BGP dynamic routing to static routing and want to remove the value for `customerInterfaceIp`, you can set the value to an empty string. Example: `10.0.0.5/31`
oracle_interface_ipv6
(optional) The IPv6 address for the Oracle end of the inside tunnel interface. This IP address is optional. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. Only subnet masks from /64 up to /127 are allowed. Example: `2001:db8::1/64`
customer_interface_ipv6
(optional) The IPv6 address for the CPE end of the inside tunnel interface. This IP address is optional. If the tunnel's `routing` attribute is set to `BGP` (see IP_SEC_CONNECTION_TUNNEL Type), this IP address is used for the tunnel's BGP session. If `routing` is instead set to `STATIC`, you can set this IP address to troubleshoot or monitor the tunnel. Only subnet masks from /64 up to /127 are allowed. Example: `2001:db8::1/64`
customer_bgp_asn
(optional) The BGP ASN of the network on the CPE end of the BGP session. Can be a 2-byte or 4-byte ASN. Uses \"asplain\" format. If you are switching the tunnel from using BGP dynamic routing to static routing, the `customerBgpAsn` must be null. Example: `12345` (2-byte) or `1587232876` (4-byte)
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_IP_SEC_TUNNEL_ENCRYPTION_DOMAIN_DETAILS_T Type 🔗
Request to update a multi-encryption domain policy on the IPSec tunnel. There can't be more than 50 security associations in use at one time. See Encryption domain for policy-based tunnels for more.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_encryption_domain_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
oracle_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cpe_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_encryption_domain_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_encryption_domain_details_t (
oracle_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cpe_traffic_selector dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
oracle_traffic_selector
(optional) Lists IPv4 or IPv6-enabled subnets in your Oracle tenancy.
cpe_traffic_selector
(optional) Lists IPv4 or IPv6-enabled subnets in your on-premises network.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_IP_SEC_CONNECTION_TUNNEL_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_tunnel_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
routing varchar2(32767),
ike_version varchar2(32767),
bgp_session_config dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_bgp_session_details_t,
oracle_initiation varchar2(32767),
nat_translation_enabled varchar2(32767),
phase_one_config dbms_cloud_oci_vn_monitoring_phase_one_config_details_t,
phase_two_config dbms_cloud_oci_vn_monitoring_phase_two_config_details_t,
dpd_config dbms_cloud_oci_vn_monitoring_dpd_config_t,
encryption_domain_config dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_encryption_domain_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_tunnel_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_tunnel_details_t (
display_name varchar2,
routing varchar2,
ike_version varchar2,
bgp_session_config dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_bgp_session_details_t,
oracle_initiation varchar2,
nat_translation_enabled varchar2,
phase_one_config dbms_cloud_oci_vn_monitoring_phase_one_config_details_t,
phase_two_config dbms_cloud_oci_vn_monitoring_phase_two_config_details_t,
dpd_config dbms_cloud_oci_vn_monitoring_dpd_config_t,
encryption_domain_config dbms_cloud_oci_vn_monitoring_update_ip_sec_tunnel_encryption_domain_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
routing
(optional) The type of routing to use for this tunnel (BGP dynamic routing, static routing, or policy-based routing).
Allowed values are: 'BGP', 'STATIC', 'POLICY'
ike_version
(optional) Internet Key Exchange protocol version.
Allowed values are: 'V1', 'V2'
bgp_session_config
(optional)
oracle_initiation
(optional) Indicates whether the Oracle end of the IPSec connection is able to initiate starting up the IPSec tunnel.
(optional) By default (the `AUTO` setting), IKE sends packets with a source and destination port set to 500, and when it detects that the port used to forward packets has changed (most likely because a NAT device is between the CPE device and the Oracle VPN headend) it will try to negotiate the use of NAT-T. The `ENABLED` option sets the IKE protocol to use port 4500 instead of 500 and forces encapsulating traffic with the ESP protocol inside UDP packets. The `DISABLED` option directs IKE to completely refuse to negotiate NAT-T even if it senses there may be a NAT device in use.
Allowed values are: 'ENABLED', 'DISABLED', 'AUTO'
phase_one_config
(optional)
phase_two_config
(optional)
dpd_config
(optional)
encryption_domain_config
(optional)
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_IP_SEC_CONNECTION_TUNNEL_SHARED_SECRET_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_tunnel_shared_secret_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
shared_secret varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_tunnel_shared_secret_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ip_sec_connection_tunnel_shared_secret_details_t (
shared_secret varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
shared_secret
(optional) The shared secret (pre-shared key) to use for the tunnel. Only numbers, letters, and spaces are allowed.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_INTERNET_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_internet_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
is_enabled number,
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_internet_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_internet_gateway_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
is_enabled number,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
is_enabled
(optional) Whether the gateway is enabled.
route_table_id
(optional) The OCID of the route table the Internet Gateway is using.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_IPV6_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_ipv6_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ipv6_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_ipv6_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
vnic_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
vnic_id
(optional) The OCID of the VNIC to reassign the IPv6 to. The VNIC must be in the same subnet as the current VNIC.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_LOCAL_PEERING_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_local_peering_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_local_peering_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_local_peering_gateway_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_NAT_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_nat_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
block_traffic number,
route_table_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_nat_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_nat_gateway_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
block_traffic number,
route_table_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
block_traffic
(optional) Whether the NAT gateway blocks traffic through it. The default is `false`. Example: `true`
route_table_id
(optional) The OCID of the route table used by the NAT gateway. If you don't specify a route table here, the NAT gateway is created without an associated route table. The Networking service does NOT automatically associate the attached VCN's default route table with the NAT gateway.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_NETWORK_SECURITY_GROUP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_network_security_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_network_security_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_network_security_group_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_SECURITY_RULE_DETAILS_T Type 🔗
A rule for allowing inbound (`direction`= INGRESS) or outbound (`direction`= EGRESS) IP packets.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_security_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
description varchar2(32767),
destination varchar2(32767),
destination_type varchar2(32767),
direction varchar2(32767),
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
id varchar2(32767),
is_stateless number,
protocol varchar2(32767),
source varchar2(32767),
source_type varchar2(32767),
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_security_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_security_rule_details_t (
description varchar2,
destination varchar2,
destination_type varchar2,
direction varchar2,
icmp_options dbms_cloud_oci_vn_monitoring_icmp_options_t,
id varchar2,
is_stateless number,
protocol varchar2,
source varchar2,
source_type varchar2,
tcp_options dbms_cloud_oci_vn_monitoring_tcp_options_t,
udp_options dbms_cloud_oci_vn_monitoring_udp_options_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
description
(optional) An optional description of your choice for the rule. Avoid entering confidential information.
destination
(optional) Conceptually, this is the range of IP addresses that a packet originating from the instance can go to. Allowed values: * An IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56` IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security rule for traffic destined for a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`. * The OCID of a NETWORK_SECURITY_GROUP Type in the same VCN. The value can be the NSG that the rule belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
destination_type
(optional) Type of destination for the rule. Required if `direction` = `EGRESS`. Allowed values: * `CIDR_BLOCK`: If the rule's `destination` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `destination` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic destined for a particular `Service` through a service gateway). * `NETWORK_SECURITY_GROUP`: If the rule's `destination` is the OCID of a NETWORK_SECURITY_GROUP Type.
(required) Direction of the security rule. Set to `EGRESS` for rules to allow outbound IP packets, or `INGRESS` for rules to allow inbound IP packets.
Allowed values are: 'EGRESS', 'INGRESS'
icmp_options
(optional)
id
(required) The Oracle-assigned ID of the security rule that you want to update. You can't change this value. Example: `04ABEC`
is_stateless
(optional) A stateless rule allows traffic in one direction. Remember to add a corresponding stateless rule in the other direction if you need to support bidirectional traffic. For example, if egress traffic allows TCP destination port 80, there should be an ingress rule to allow TCP source port 80. Defaults to false, which means the rule is stateful and a corresponding rule is not necessary for bidirectional traffic.
protocol
(required) The transport protocol. Specify either `all` or an IPv4 protocol number as defined in Protocol Numbers. Options are supported only for ICMP (\"1\"), TCP (\"6\"), UDP (\"17\"), and ICMPv6 (\"58\").
source
(optional) Conceptually, this is the range of IP addresses that a packet coming into the instance can come from. Allowed values: * An IP address range in CIDR notation. For example: `192.168.1.0/24` or `2001:0db8:0123:45::/56` IPv6 addressing is supported for all commercial and government regions. See IPv6 Addresses. * The `cidrBlock` value for a SERVICE Type, if you're setting up a security rule for traffic coming from a particular `Service` through a service gateway. For example: `oci-phx-objectstorage`. * The OCID of a NETWORK_SECURITY_GROUP Type in the same VCN. The value can be the NSG that the rule belongs to if the rule's intent is to control traffic between VNICs in the same NSG.
source_type
(optional) Type of source for the rule. Required if `direction` = `INGRESS`. * `CIDR_BLOCK`: If the rule's `source` is an IP address range in CIDR notation. * `SERVICE_CIDR_BLOCK`: If the rule's `source` is the `cidrBlock` value for a SERVICE Type (the rule is for traffic coming from a particular `Service` through a service gateway). * `NETWORK_SECURITY_GROUP`: If the rule's `source` is the OCID of a NETWORK_SECURITY_GROUP Type.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_SECURITY_RULE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_update_security_rule_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_security_rule_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_update_security_rule_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_NETWORK_SECURITY_GROUP_SECURITY_RULES_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_network_security_group_security_rules_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
security_rules dbms_cloud_oci_vn_monitoring_update_security_rule_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_network_security_group_security_rules_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_network_security_group_security_rules_details_t (
security_rules dbms_cloud_oci_vn_monitoring_update_security_rule_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
security_rules
(optional) The NSG security rules to update.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_PATH_ANALYZER_TEST_DETAILS_T Type 🔗
Details to update a `PathAnalyzerTest` resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_path_analyzer_test_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_path_analyzer_test_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_path_analyzer_test_details_t (
display_name varchar2,
protocol number,
source_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
destination_endpoint dbms_cloud_oci_vn_monitoring_endpoint_t,
protocol_parameters dbms_cloud_oci_vn_monitoring_protocol_parameters_t,
query_options dbms_cloud_oci_vn_monitoring_query_options_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
protocol
(optional) The IP protocol to use in the `PathAnalyzerTest` resource.
source_endpoint
(optional)
destination_endpoint
(optional)
protocol_parameters
(optional)
query_options
(optional)
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_PRIVATE_IP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_private_ip_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
hostname_label varchar2(32767),
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_private_ip_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_private_ip_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
hostname_label varchar2,
vnic_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
hostname_label
(optional) The hostname for the private IP. Used for DNS. The value is the hostname portion of the private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. For more information, see DNS in Your Virtual Cloud Network. Example: `bminstance1`
vnic_id
(optional) The OCID of the VNIC to reassign the private IP to. The VNIC must be in the same subnet as the current VNIC.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_PUBLIC_IP_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_public_ip_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
private_ip_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_public_ip_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_public_ip_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
private_ip_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
private_ip_id
(optional) The OCID of the private IP to assign the public IP to. * If the public IP is already assigned to a different private IP, it will be unassigned and then reassigned to the specified private IP. * If you set this field to an empty string, the public IP will be unassigned from the private IP it is currently assigned to.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_PUBLIC_IP_POOL_DETAILS_T Type 🔗
The data to update for a public IP pool.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_public_ip_pool_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_public_ip_pool_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_public_ip_pool_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_REMOTE_PEERING_CONNECTION_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_remote_peering_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_remote_peering_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_remote_peering_connection_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_ROUTE_TABLE_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_route_table_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
route_rules dbms_cloud_oci_vn_monitoring_route_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_route_table_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_route_table_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
route_rules dbms_cloud_oci_vn_monitoring_route_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
route_rules
(optional) The collection of rules used for routing destination IPs to network devices.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_SECURITY_LIST_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_security_list_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
egress_security_rules dbms_cloud_oci_vn_monitoring_egress_security_rule_tbl,
freeform_tags json_element_t,
ingress_security_rules dbms_cloud_oci_vn_monitoring_ingress_security_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_security_list_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_security_list_details_t (
defined_tags json_element_t,
display_name varchar2,
egress_security_rules dbms_cloud_oci_vn_monitoring_egress_security_rule_tbl,
freeform_tags json_element_t,
ingress_security_rules dbms_cloud_oci_vn_monitoring_ingress_security_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
egress_security_rules
(optional) Rules for allowing egress IP packets.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
ingress_security_rules
(optional) Rules for allowing ingress IP packets.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_SERVICE_GATEWAY_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_service_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
block_traffic number,
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
route_table_id varchar2(32767),
services dbms_cloud_oci_vn_monitoring_service_id_request_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_service_gateway_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_service_gateway_details_t (
block_traffic number,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
route_table_id varchar2,
services dbms_cloud_oci_vn_monitoring_service_id_request_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
block_traffic
(optional) Whether the service gateway blocks all traffic through it. The default is `false`. When this is `true`, traffic is not routed to any services, regardless of route rules. Example: `true`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) List of all the `Service` objects you want enabled on this service gateway. Sending an empty list means you want to disable all services. Omitting this parameter entirely keeps the existing list of services intact. You can also enable or disable a particular `Service` by using ATTACH_SERVICE_ID Function or DETACH_SERVICE_ID Function. For each enabled `Service`, make sure there's a route rule with the `Service` object's `cidrBlock` as the rule's destination and the service gateway as the rule's target. See ROUTE_TABLE Type.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_SUBNET_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_subnet_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
dhcp_options_id varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
route_table_id varchar2(32767),
security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cidr_block varchar2(32767),
ipv6_cidr_block varchar2(32767),
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_subnet_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_subnet_details_t (
defined_tags json_element_t,
dhcp_options_id varchar2,
display_name varchar2,
freeform_tags json_element_t,
route_table_id varchar2,
security_list_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cidr_block varchar2,
ipv6_cidr_block varchar2,
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
dhcp_options_id
(optional) The OCID of the set of DHCP options the subnet will use.
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
route_table_id
(optional) The OCID of the route table the subnet will use.
security_list_ids
(optional) The OCIDs of the security list or lists the subnet will use. This replaces the entire current set of security lists. Remember that security lists are associated *with the subnet*, but the rules are applied to the individual VNICs in the subnet.
cidr_block
(optional) The CIDR block of the subnet. The new CIDR block must meet the following criteria: - Must be valid. - The CIDR block's IP range must be completely within one of the VCN's CIDR block ranges. - The old and new CIDR block ranges must use the same network address. Example: `10.0.0.0/25` and `10.0.0.0/24`. - Must contain all IP addresses in use in the old CIDR range. - The new CIDR range's broadcast address (last IP address of CIDR range) must not be an IP address in use in the old CIDR range. **Note:** If you are changing the CIDR block, you cannot create VNICs or private IPs for this resource while the update is in progress. Example: `172.16.0.0/16`
ipv6_cidr_block
(optional) This is the IPv6 CIDR block for the subnet's IP address space. The subnet size is always /64. See IPv6 Addresses. The provided CIDR must maintain the following rules - a. The IPv6 CIDR block is valid and correctly formatted. b. The IPv6 CIDR is within the parent VCN IPv6 range. Example: `2001:0db8:0123:1111::/64`
ipv6_cidr_blocks
(optional) The list of all IPv6 CIDR blocks (Oracle allocated IPv6 GUA, ULA or private IPv6 CIDR blocks, BYOIPv6 CIDR blocks) for the subnet that meets the following criteria: - The CIDR blocks must be valid. - Multiple CIDR blocks must not overlap each other or the on-premises network CIDR block. - The number of CIDR blocks must not exceed the limit of IPv6 CIDR blocks allowed to a subnet.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_TUNNEL_CPE_DEVICE_CONFIG_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_tunnel_cpe_device_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
tunnel_cpe_device_config dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_tunnel_cpe_device_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_tunnel_cpe_device_config_details_t (
tunnel_cpe_device_config dbms_cloud_oci_vn_monitoring_cpe_device_config_answer_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tunnel_cpe_device_config
(optional) The set of configuration answers for a CPE device.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_VCN_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_vcn_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vcn_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vcn_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_VIRTUAL_CIRCUIT_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_virtual_circuit_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
bandwidth_shape_name varchar2(32767),
cross_connect_mappings dbms_cloud_oci_vn_monitoring_cross_connect_mapping_tbl,
routing_policy dbms_cloud_oci_vn_monitoring_varchar2_tbl,
bgp_admin_state varchar2(32767),
is_bfd_enabled number,
is_transport_mode number,
customer_bgp_asn number,
customer_asn number,
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
gateway_id varchar2(32767),
provider_state varchar2(32767),
provider_service_key_name varchar2(32767),
reference_comment varchar2(32767),
ip_mtu varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_virtual_circuit_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_virtual_circuit_details_t (
bandwidth_shape_name varchar2,
cross_connect_mappings dbms_cloud_oci_vn_monitoring_cross_connect_mapping_tbl,
routing_policy dbms_cloud_oci_vn_monitoring_varchar2_tbl,
bgp_admin_state varchar2,
is_bfd_enabled number,
is_transport_mode number,
customer_bgp_asn number,
customer_asn number,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
gateway_id varchar2,
provider_state varchar2,
provider_service_key_name varchar2,
reference_comment varchar2,
ip_mtu varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bandwidth_shape_name
(optional) The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see LIST_FAST_CONNECT_PROVIDER_VIRTUAL_CIRCUIT_BANDWIDTH_SHAPES Function. To be updated only by the customer who owns the virtual circuit.
cross_connect_mappings
(optional) An array of mappings, each containing properties for a cross-connect or cross-connect group associated with this virtual circuit. The customer and provider can update different properties in the mapping depending on the situation. See the description of the CROSS_CONNECT_MAPPING Type.
routing_policy
(optional) The routing policy sets how routing information about the Oracle cloud is shared over a public virtual circuit. Policies available are: `ORACLE_SERVICE_NETWORK`, `REGIONAL`, `MARKET_LEVEL`, and `GLOBAL`. See Route Filtering for details. By default, routing information is shared for all routes in the same market.
(optional) Set to `ENABLED` (the default) to activate the BGP session of the virtual circuit, set to `DISABLED` to deactivate the virtual circuit.
Allowed values are: 'ENABLED', 'DISABLED'
is_bfd_enabled
(optional) Set to `true` to enable BFD for IPv4 BGP peering, or set to `false` to disable BFD. If this is not set, the default is `false`.
is_transport_mode
(optional) Set to `true` for the virtual circuit to carry only encrypted traffic, or set to `false` for the virtual circuit to carry unencrypted traffic. If this is not set, the default is `false`.
customer_bgp_asn
(optional) Deprecated. Instead use `customerAsn`. If you specify values for both, the request will be rejected.
customer_asn
(optional) The BGP ASN of the network at the other end of the BGP session from Oracle. If the BGP session is from the customer's edge router to Oracle, the required value is the customer's ASN, and it can be updated only by the customer. If the BGP session is from the provider's edge router to Oracle, the required value is the provider's ASN, and it can be updated only by the provider. Can be a 2-byte or 4-byte ASN. Uses \"asplain\" format.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
gateway_id
(optional) The OCID of the DRG Type that this private virtual circuit uses. To be updated only by the customer who owns the virtual circuit.
provider_state
(optional) The provider's state in relation to this virtual circuit. Relevant only if the customer is using FastConnect via a provider. ACTIVE means the provider has provisioned the virtual circuit from their end. INACTIVE means the provider has not yet provisioned the virtual circuit, or has de-provisioned it. To be updated only by the provider.
Allowed values are: 'ACTIVE', 'INACTIVE'
provider_service_key_name
(optional) The service key name offered by the provider (if the customer is connecting via a provider).
reference_comment
(optional) Provider-supplied reference information about this virtual circuit. Relevant only if the customer is using FastConnect via a provider. To be updated only by the provider.
ip_mtu
(optional) The layer 3 IP MTU to use on this virtual circuit.
Allowed values are: 'MTU_1500', 'MTU_9000'
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_VLAN_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_vlan_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
route_table_id varchar2(32767),
cidr_block varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vlan_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vlan_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
route_table_id varchar2,
cidr_block varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
nsg_ids
(optional) A list of the OCIDs of the network security groups (NSGs) to use with this VLAN. All VNICs in the VLAN will belong to these NSGs. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.
route_table_id
(optional) The OCID of the route table the VLAN will use.
cidr_block
(optional) The CIDR block of the VLAN. The new CIDR block must meet the following criteria: - Must be valid. - The CIDR block's IP range must be completely within one of the VCN's CIDR block ranges. - The old and new CIDR block ranges must use the same network address. Example: `10.0.0.0/25` and `10.0.0.0/24`. - Must contain all IP addresses in use in the old CIDR range. - The new CIDR range's broadcast address (last IP address of CIDR range) must not be an IP address in use in the old CIDR range. **Note:** If you are changing the CIDR block, you cannot create VNICs or private IPs for this resource while the update is in progress.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_VNIC_DETAILS_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_vnic_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
hostname_label varchar2(32767),
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
skip_source_dest_check number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vnic_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vnic_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
hostname_label varchar2,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
skip_source_dest_check number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
hostname_label
(optional) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. The value appears in the VNIC Type object and also the PRIVATE_IP Type object returned by LIST_PRIVATE_IPS Function and GET_PRIVATE_IP Function. For more information, see DNS in Your Virtual Cloud Network.
nsg_ids
(optional) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. Setting this as an empty array removes the VNIC from all network security groups. If the VNIC belongs to a VLAN as part of the Oracle Cloud VMware Solution (instead of belonging to a subnet), the value of the `nsgIds` attribute is ignored. Instead, the VNIC belongs to the NSGs that are associated with the VLAN itself. See VLAN Type. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.
skip_source_dest_check
(optional) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target. If the VNIC belongs to a VLAN as part of the Oracle Cloud VMware Solution (instead of belonging to a subnet), the value of the `skipSourceDestCheck` attribute is ignored. This is because the source/destination check is always disabled for VNICs in a VLAN. Example: `true`
DBMS_CLOUD_OCI_VN_MONITORING_UPDATE_VTAP_DETAILS_T Type 🔗
These details can be included in a request to update a virtual test access point (VTAP).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_update_vtap_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
source_id varchar2(32767),
target_id varchar2(32767),
target_ip varchar2(32767),
capture_filter_id varchar2(32767),
encapsulation_protocol varchar2(32767),
vxlan_network_identifier number,
is_vtap_enabled number,
traffic_mode varchar2(32767),
max_packet_size number,
source_private_endpoint_ip varchar2(32767),
source_private_endpoint_subnet_id varchar2(32767),
target_type varchar2(32767),
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vtap_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_update_vtap_details_t (
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
source_id varchar2,
target_id varchar2,
target_ip varchar2,
capture_filter_id varchar2,
encapsulation_protocol varchar2,
vxlan_network_identifier number,
is_vtap_enabled number,
traffic_mode varchar2,
max_packet_size number,
source_private_endpoint_ip varchar2,
source_private_endpoint_subnet_id varchar2,
target_type varchar2,
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
source_id
(optional) The OCID of the source point where packets are captured.
target_id
(optional) The OCID of the destination resource where mirrored packets are sent.
target_ip
(optional) The IP address of the destination resource where mirrored packets are sent.
(optional) Defines an encapsulation header type for the VTAP's mirrored traffic.
Allowed values are: 'VXLAN'
vxlan_network_identifier
(optional) The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
is_vtap_enabled
(optional) Used to start or stop a `Vtap` resource. * `TRUE` directs the VTAP to start mirroring traffic. * `FALSE` (Default) directs the VTAP to stop mirroring traffic.
traffic_mode
(optional) Used to control the priority of traffic. It is an optional field. If it not passed, the value is DEFAULT
Allowed values are: 'DEFAULT', 'PRIORITY'
max_packet_size
(optional) The maximum size of the packets to be included in the filter.
source_private_endpoint_ip
(optional) The IP Address of the source private endpoint.
source_private_endpoint_subnet_id
(optional) The OCID of the subnet that source private endpoint belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_UPDATED_NETWORK_SECURITY_GROUP_SECURITY_RULES_T Type 🔗
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_updated_network_security_group_security_rules_t FORCE AUTHID CURRENT_USER IS OBJECT (
security_rules dbms_cloud_oci_vn_monitoring_security_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_updated_network_security_group_security_rules_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_updated_network_security_group_security_rules_t (
security_rules dbms_cloud_oci_vn_monitoring_security_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
security_rules
(optional) The NSG security rules that were updated.
DBMS_CLOUD_OCI_VN_MONITORING_UPGRADE_STATUS_T Type 🔗
The upgrade status of a DRG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_upgrade_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
drg_id varchar2(32767),
status varchar2(32767),
upgraded_connections varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_upgrade_status_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_upgrade_status_t (
drg_id varchar2,
status varchar2,
upgraded_connections varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
drg_id
(required) The `drgId` of the upgraded DRG.
status
(required) The current upgrade status of the DRG attachment.
A virtual cloud network (VCN). For more information, see Overview of the Networking Service. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vcn_t FORCE AUTHID CURRENT_USER IS OBJECT (
byoipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
ipv6_private_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cidr_block varchar2(32767),
cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
compartment_id varchar2(32767),
default_dhcp_options_id varchar2(32767),
default_route_table_id varchar2(32767),
default_security_list_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
dns_label varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
vcn_domain_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_t (
byoipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
ipv6_private_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
cidr_block varchar2,
cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
compartment_id varchar2,
default_dhcp_options_id varchar2,
default_route_table_id varchar2,
default_security_list_id varchar2,
defined_tags json_element_t,
display_name varchar2,
dns_label varchar2,
freeform_tags json_element_t,
id varchar2,
ipv6_cidr_blocks dbms_cloud_oci_vn_monitoring_varchar2_tbl,
lifecycle_state varchar2,
time_created timestamp with time zone,
vcn_domain_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
byoipv6_cidr_blocks
(optional) The list of BYOIPv6 CIDR blocks required to create a VCN that uses BYOIPv6 ranges.
ipv6_private_cidr_blocks
(optional) For an IPv6-enabled VCN, this is the list of Private IPv6 CIDR blocks for the VCN's IP address space.
cidr_block
(required) Deprecated. The first CIDR IP address from cidrBlocks. Example: `172.16.0.0/16`
cidr_blocks
(required) The list of IPv4 CIDR blocks the VCN will use.
compartment_id
(required) The OCID of the compartment containing the VCN.
default_dhcp_options_id
(optional) The OCID for the VCN's default set of DHCP options.
default_route_table_id
(optional) The OCID for the VCN's default route table.
default_security_list_id
(optional) The OCID for the VCN's default security list.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
dns_label
(optional) A DNS label for the VCN, used in conjunction with the VNIC's hostname and subnet's DNS label to form a fully qualified domain name (FQDN) for each VNIC within this subnet (for example, `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be an alphanumeric string that begins with a letter. The value cannot be changed. The absence of this parameter means the Internet and VCN Resolver will not work for this VCN. For more information, see DNS in Your Virtual Cloud Network. Example: `vcn1`
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) For an IPv6-enabled VCN, this is the list of IPv6 CIDR blocks for the VCN's IP address space. The CIDRs are provided by Oracle and the sizes are always /56.
(optional) The date and time the VCN was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
vcn_domain_name
(optional) The VCN's domain name, which consists of the VCN's DNS label, and the `oraclevcn.com` domain. For more information, see DNS in Your Virtual Cloud Network. Example: `vcn1.oraclevcn.com`
DBMS_CLOUD_OCI_VN_MONITORING_VCN_DNS_RESOLVER_ASSOCIATION_T Type 🔗
The information about the VCN and the DNS resolver in the association.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vcn_dns_resolver_association_t FORCE AUTHID CURRENT_USER IS OBJECT (
vcn_id varchar2(32767),
dns_resolver_id varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_dns_resolver_association_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_dns_resolver_association_t (
vcn_id varchar2,
dns_resolver_id varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vcn_id
(required) The OCID of the VCN in the association.
dns_resolver_id
(optional) The OCID of the DNS resolver in the association.
DBMS_CLOUD_OCI_VN_MONITORING_VCN_DRG_ATTACHMENT_NETWORK_CREATE_DETAILS_T Type 🔗
Specifies the VCN Attachment
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_create_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_attachment_network_create_details_t (
route_table_id varchar2(32767),
vcn_route_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_create_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_create_details_t (
l_type varchar2,
id varchar2,
route_table_id varchar2,
vcn_route_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_create_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_attachment_network_create_details_t type.
(optional) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
DBMS_CLOUD_OCI_VN_MONITORING_VCN_DRG_ATTACHMENT_NETWORK_DETAILS_T Type 🔗
Specifies details within the VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t (
route_table_id varchar2(32767),
vcn_route_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_details_t (
l_type varchar2,
id varchar2,
route_table_id varchar2,
vcn_route_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t type.
(optional) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
Allowed values are: 'VCN_CIDRS', 'SUBNET_CIDRS'
DBMS_CLOUD_OCI_VN_MONITORING_VCN_DRG_ATTACHMENT_NETWORK_UPDATE_DETAILS_T Type 🔗
Specifies the update details for the VCN attachment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_update_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_attachment_network_update_details_t (
route_table_id varchar2(32767),
vcn_route_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_update_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_update_details_t (
l_type varchar2,
route_table_id varchar2,
vcn_route_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_vcn_drg_attachment_network_update_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_attachment_network_update_details_t type.
(optional) Indicates whether the VCN CIDRs or the individual subnet CIDRs are imported from the attachment. Routes from the VCN ingress route table are always imported.
DBMS_CLOUD_OCI_VN_MONITORING_VCN_ROUTING_CONFIGURATION_T Type 🔗
Identifies the VCN route table and rule that allowed the traffic to be forwarded.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vcn_routing_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t (
vcn_route_table_id varchar2(32767),
route_rule dbms_cloud_oci_vn_monitoring_route_rule_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_routing_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_routing_configuration_t (
l_type varchar2,
vcn_route_table_id varchar2,
route_rule dbms_cloud_oci_vn_monitoring_route_rule_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_vcn_routing_configuration_t is a subtype of the dbms_cloud_oci_vn_monitoring_forwarded_routing_configuration_t type.
Fields
Field
Description
vcn_route_table_id
(required) The OCID of the VCN route table that allowed the traffic.
route_rule
(required)
DBMS_CLOUD_OCI_VN_MONITORING_VCN_TOPOLOGY_T Type 🔗
Defines the representation of a virtual network topology for a VCN.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vcn_topology_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_topology_t (
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_topology_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vcn_topology_t (
l_type varchar2,
entities dbms_cloud_oci_vn_monitoring_json_element_t_tbl,
relationships dbms_cloud_oci_vn_monitoring_topology_entity_relationship_tbl,
limited_entities dbms_cloud_oci_vn_monitoring_varchar2_tbl,
time_created timestamp with time zone,
vcn_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_vcn_topology_t is a subtype of the dbms_cloud_oci_vn_monitoring_topology_t type.
Fields
Field
Description
vcn_id
(optional) The OCID of the VCN for which the topology is generated.
DBMS_CLOUD_OCI_VN_MONITORING_VIRTUAL_CIRCUIT_T Type 🔗
For use with Oracle Cloud Infrastructure FastConnect. A virtual circuit is an isolated network path that runs over one or more physical network connections to provide a single, logical connection between the edge router on the customer's existing network and Oracle Cloud Infrastructure. *Private* virtual circuits support private peering, and *public* virtual circuits support public peering. For more information, see FastConnect Overview. Each virtual circuit is made up of information shared between a customer, Oracle, and a provider (if the customer is using FastConnect via a provider). Who fills in a given property of a virtual circuit depends on whether the BGP session related to that virtual circuit goes from the customer's edge router to Oracle, or from the provider's edge router to Oracle. Also, in the case where the customer is using a provider, values for some of the properties may not be present immediately, but may get filled in as the provider and Oracle each do their part to provision the virtual circuit. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
(optional) The provisioned data rate of the connection. To get a list of the available bandwidth levels (that is, shapes), see LIST_FAST_CONNECT_PROVIDER_VIRTUAL_CIRCUIT_BANDWIDTH_SHAPES Function. Example: `10 Gbps`
bgp_management
(optional) Deprecated. Instead use the information in FAST_CONNECT_PROVIDER_SERVICE Type.
(optional) The state of the Ipv4 BGP session associated with the virtual circuit.
Allowed values are: 'UP', 'DOWN'
bgp_ipv6_session_state
(optional) The state of the Ipv6 BGP session associated with the virtual circuit.
Allowed values are: 'UP', 'DOWN'
compartment_id
(optional) The OCID of the compartment containing the virtual circuit.
cross_connect_mappings
(optional) An array of mappings, each containing properties for a cross-connect or cross-connect group that is associated with this virtual circuit.
routing_policy
(optional) The routing policy sets how routing information about the Oracle cloud is shared over a public virtual circuit. Policies available are: `ORACLE_SERVICE_NETWORK`, `REGIONAL`, `MARKET_LEVEL`, and `GLOBAL`. See Route Filtering for details. By default, routing information is shared for all routes in the same market.
(optional) Set to `ENABLED` (the default) to activate the BGP session of the virtual circuit, set to `DISABLED` to deactivate the virtual circuit.
Allowed values are: 'ENABLED', 'DISABLED'
is_bfd_enabled
(optional) Set to `true` to enable BFD for IPv4 BGP peering, or set to `false` to disable BFD. If this is not set, the default is `false`.
is_transport_mode
(optional) Set to `true` for the virtual circuit to carry only encrypted traffic, or set to `false` for the virtual circuit to carry unencrypted traffic. If this is not set, the default is `false`.
customer_bgp_asn
(optional) Deprecated. Instead use `customerAsn`. If you specify values for both, the request will be rejected.
customer_asn
(optional) The BGP ASN of the network at the other end of the BGP session from Oracle. If the session is between the customer's edge router and Oracle, the value is the customer's ASN. If the BGP session is between the provider's edge router and Oracle, the value is the provider's ASN. Can be a 2-byte or 4-byte ASN. Uses \"asplain\" format.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
gateway_id
(optional) The OCID of the customer's DRG Type that this virtual circuit uses. Applicable only to private virtual circuits.
id
(optional) The virtual circuit's Oracle ID (OCID).
lifecycle_state
(optional) The virtual circuit's current state. For information about the different states, see FastConnect Overview.
(optional) Deprecated. Instead use `providerServiceId`.
provider_service_id
(optional) The OCID of the service offered by the provider (if the customer is connecting via a provider).
provider_service_key_name
(optional) The service key name offered by the provider (if the customer is connecting via a provider).
provider_service_name
(optional) Deprecated. Instead use `providerServiceId`.
provider_state
(optional) The provider's state in relation to this virtual circuit (if the customer is connecting via a provider). ACTIVE means the provider has provisioned the virtual circuit from their end. INACTIVE means the provider has not yet provisioned the virtual circuit, or has de-provisioned it.
Allowed values are: 'ACTIVE', 'INACTIVE'
public_prefixes
(optional) For a public virtual circuit. The public IP prefixes (CIDRs) the customer wants to advertise across the connection. All prefix sizes are allowed.
reference_comment
(optional) Provider-supplied reference information about this virtual circuit (if the customer is connecting via a provider).
l_region
(optional) The Oracle Cloud Infrastructure region where this virtual circuit is located.
(optional) The date and time the virtual circuit was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
l_type
(optional) Whether the virtual circuit supports private or public peering. For more information, see FastConnect Overview.
Allowed values are: 'PUBLIC', 'PRIVATE'
ip_mtu
(optional) The layer 3 IP MTU to use on this virtual circuit.
Allowed values are: 'MTU_1500', 'MTU_9000'
DBMS_CLOUD_OCI_VN_MONITORING_VIRTUAL_CIRCUIT_ASSOCIATED_TUNNEL_DETAILS_T Type 🔗
Detailed private tunnel info associated with the virtual circuit.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_virtual_circuit_associated_tunnel_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
tunnel_type varchar2(32767),
ipsec_connection_id varchar2(32767),
tunnel_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_associated_tunnel_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_associated_tunnel_details_t (
tunnel_type varchar2,
ipsec_connection_id varchar2,
tunnel_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tunnel_type
(required) The type of the tunnel associated with the virtual circuit.
Allowed values are: 'IPSEC'
ipsec_connection_id
(optional) The OCID of IPSec connection associated with the virtual circuit.
tunnel_id
(required) The OCID of the IPSec tunnel associated with the virtual circuit.
DBMS_CLOUD_OCI_VN_MONITORING_VIRTUAL_CIRCUIT_BANDWIDTH_SHAPE_T Type 🔗
An individual bandwidth level for virtual circuits.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_virtual_circuit_bandwidth_shape_t FORCE AUTHID CURRENT_USER IS OBJECT (
bandwidth_in_mbps number,
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_bandwidth_shape_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_bandwidth_shape_t (
bandwidth_in_mbps number,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bandwidth_in_mbps
(optional) The bandwidth in Mbps. Example: `10000`
name
(required) The name of the bandwidth shape. Example: `10 Gbps`
DBMS_CLOUD_OCI_VN_MONITORING_VIRTUAL_CIRCUIT_DRG_ATTACHMENT_NETWORK_DETAILS_T Type 🔗
Specifies the virtual circuit attached to the DRG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_virtual_circuit_drg_attachment_network_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t (
transport_only_mode number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_drg_attachment_network_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_drg_attachment_network_details_t (
l_type varchar2,
id varchar2,
transport_only_mode number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_virtual_circuit_drg_attachment_network_details_t is a subtype of the dbms_cloud_oci_vn_monitoring_drg_attachment_network_details_t type.
Fields
Field
Description
transport_only_mode
(optional) Boolean flag that determines wether all traffic over the virtual circuits is encrypted. Example: `true`
DBMS_CLOUD_OCI_VN_MONITORING_VIRTUAL_CIRCUIT_PUBLIC_PREFIX_T Type 🔗
A public IP prefix and its details. With a public virtual circuit, the customer specifies the customer-owned public IP prefixes to advertise across the connection. For more information, see FastConnect Overview.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_virtual_circuit_public_prefix_t FORCE AUTHID CURRENT_USER IS OBJECT (
cidr_block varchar2(32767),
verification_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_public_prefix_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_virtual_circuit_public_prefix_t (
cidr_block varchar2,
verification_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
cidr_block
(required) Publix IP prefix (CIDR) that the customer specified.
verification_state
(required) Oracle must verify that the customer owns the public IP prefix before traffic for that prefix can flow across the virtual circuit. Verification can take a few business days. `IN_PROGRESS` means Oracle is verifying the prefix. `COMPLETED` means verification succeeded. `FAILED` means verification failed and traffic for this prefix will not flow across the connection.
DBMS_CLOUD_OCI_VN_MONITORING_VISIBLE_TRAFFIC_NODE_T Type 🔗
Defines the configuration of a traffic node that is visible to the user.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_visible_traffic_node_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_traffic_node_t (
entity_id varchar2(32767),
transformation_description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_visible_traffic_node_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_visible_traffic_node_t (
l_type varchar2,
egress_traffic dbms_cloud_oci_vn_monitoring_egress_traffic_spec_t,
next_hop_routing_action dbms_cloud_oci_vn_monitoring_routing_action_t,
egress_security_action dbms_cloud_oci_vn_monitoring_security_action_t,
ingress_security_action dbms_cloud_oci_vn_monitoring_security_action_t,
entity_id varchar2,
transformation_description varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_visible_traffic_node_t is a subtype of the dbms_cloud_oci_vn_monitoring_traffic_node_t type.
Fields
Field
Description
entity_id
(optional) The OCID of the OCI entity that represents the traffic node (Instance, GW, LB, etc.).
transformation_description
(optional) Describes how the traffic was transformed. For example, if an address is translated by a NAT GW, the string will describe the translation: 'SNAT: 10.0.0.1->204.0.0.1'
DBMS_CLOUD_OCI_VN_MONITORING_VLAN_T Type 🔗
A resource to be used only with the Oracle Cloud VMware Solution. Conceptually, a virtual LAN (VLAN) is a broadcast domain that is created by partitioning and isolating a network at the data link layer (a *layer 2 network*). VLANs work by using IEEE 802.1Q VLAN tags. Layer 2 traffic is forwarded within the VLAN based on MAC learning. In the Networking service, a VLAN is an object within a VCN. You use VLANs to partition the VCN at the data link layer (layer 2). A VLAN is analagous to a subnet, which is an object for partitioning the VCN at the IP layer (layer 3).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vlan_t FORCE AUTHID CURRENT_USER IS OBJECT (
availability_domain varchar2(32767),
cidr_block varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
vlan_tag number,
route_table_id varchar2(32767),
time_created timestamp with time zone,
vcn_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vlan_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vlan_t (
availability_domain varchar2,
cidr_block varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
vlan_tag number,
route_table_id varchar2,
time_created timestamp with time zone,
vcn_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
availability_domain
(optional) The VLAN's availability domain. This attribute will be null if this is a regional VLAN rather than an AD-specific VLAN. Example: `Uocm:PHX-AD-1`
cidr_block
(required) The range of IPv4 addresses that will be used for layer 3 communication with hosts outside the VLAN. Example: `192.168.1.0/24`
compartment_id
(required) The OCID of the compartment containing the VLAN.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) A list of the OCIDs of the network security groups (NSGs) to use with this VLAN. All VNICs in the VLAN belong to these NSGs. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.
vlan_tag
(optional) The IEEE 802.1Q VLAN tag of this VLAN. Example: `100`
route_table_id
(optional) The OCID of the route table that the VLAN uses.
time_created
(optional) The date and time the VLAN was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_VLAN_ENDPOINT_T Type 🔗
Defines the details required for a VLAN-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vlan_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
address varchar2(32767),
vlan_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vlan_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vlan_endpoint_t (
l_type varchar2,
address varchar2,
vlan_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_vlan_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
Fields
Field
Description
address
(required) The IPv4 address of the `Endpoint`.
vlan_id
(required) The OCID of the VLAN containing the IP address. This can be used to disambiguate which VLAN is queried, in case the endpoint IP address belongs to more than one VLAN (when there are VLANs with overlapping IP ranges).
DBMS_CLOUD_OCI_VN_MONITORING_VNIC_T Type 🔗
A virtual network interface card. Each VNIC resides in a subnet in a VCN. An instance attaches to a VNIC to obtain a network connection into the VCN through that subnet. Each instance has a *primary VNIC* that is automatically created and attached during launch. You can add *secondary VNICs* to an instance after it's launched. For more information, see Virtual Network Interface Cards (VNICs). Each VNIC has a *primary private IP* that is automatically assigned during launch. You can add *secondary private IPs* to a VNIC after it's created. For more information, see CREATE_PRIVATE_IP Function and IP Addresses. If you are an Oracle Cloud VMware Solution customer, you will have secondary VNICs that reside in a VLAN instead of a subnet. These VNICs have other differences, which are called out in the descriptions of the relevant attributes in the `Vnic` object. Also see VLAN Type. To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vnic_t FORCE AUTHID CURRENT_USER IS OBJECT (
availability_domain varchar2(32767),
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
hostname_label varchar2(32767),
id varchar2(32767),
is_primary number,
lifecycle_state varchar2(32767),
mac_address varchar2(32767),
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
vlan_id varchar2(32767),
private_ip varchar2(32767),
public_ip varchar2(32767),
skip_source_dest_check number,
subnet_id varchar2(32767),
time_created timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vnic_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vnic_t (
availability_domain varchar2,
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
hostname_label varchar2,
id varchar2,
is_primary number,
lifecycle_state varchar2,
mac_address varchar2,
nsg_ids dbms_cloud_oci_vn_monitoring_varchar2_tbl,
vlan_id varchar2,
private_ip varchar2,
public_ip varchar2,
skip_source_dest_check number,
subnet_id varchar2,
time_created timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
availability_domain
(required) The VNIC's availability domain. Example: `Uocm:PHX-AD-1`
compartment_id
(required) The OCID of the compartment containing the VNIC.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
hostname_label
(optional) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. For more information, see DNS in Your Virtual Cloud Network. Example: `bminstance1`
(optional) The MAC address of the VNIC. If the VNIC belongs to a VLAN as part of the Oracle Cloud VMware Solution, the MAC address is learned. If the VNIC belongs to a subnet, the MAC address is a static, Oracle-provided value. Example: `00:00:00:00:00:01`
nsg_ids
(optional) A list of the OCIDs of the network security groups that the VNIC belongs to. If the VNIC belongs to a VLAN as part of the Oracle Cloud VMware Solution (instead of belonging to a subnet), the value of the `nsgIds` attribute is ignored. Instead, the VNIC belongs to the NSGs that are associated with the VLAN itself. See VLAN Type. For more information about NSGs, see NETWORK_SECURITY_GROUP Type.
vlan_id
(optional) If the VNIC belongs to a VLAN as part of the Oracle Cloud VMware Solution (instead of belonging to a subnet), the `vlanId` is the OCID of the VLAN the VNIC is in. See VLAN Type. If the VNIC is instead in a subnet, `subnetId` has a value.
private_ip
(optional) The private IP address of the primary `privateIp` object on the VNIC. The address is within the CIDR of the VNIC's subnet. Example: `10.0.3.3`
public_ip
(optional) The public IP address of the VNIC, if one is assigned.
skip_source_dest_check
(optional) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target. If the VNIC belongs to a VLAN as part of the Oracle Cloud VMware Solution (instead of belonging to a subnet), the `skipSourceDestCheck` attribute is `true`. This is because the source/destination check is always disabled for VNICs in a VLAN. Example: `true`
(required) The date and time the VNIC was created, in the format defined by RFC3339. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_VN_MONITORING_VNIC_ENDPOINT_T Type 🔗
Defines the details required for a VNIC-type `Endpoint`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vnic_endpoint_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_vn_monitoring_endpoint_t (
address varchar2(32767),
vnic_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vnic_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vnic_endpoint_t (
l_type varchar2,
address varchar2,
vnic_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_vn_monitoring_vnic_endpoint_t is a subtype of the dbms_cloud_oci_vn_monitoring_endpoint_t type.
Fields
Field
Description
address
(required) The IPv4 address of a VNIC type `Endpoint`.
A virtual test access point (VTAP) provides a way to mirror all traffic from a designated source to a selected target in order to facilitate troubleshooting, security analysis, and data monitoring. A VTAP is functionally similar to a test access point (TAP) you might deploy in your on-premises network. A *CAPTURE_FILTER Type* contains a set of *CAPTURE_FILTER_RULE_DETAILS Function* governing what traffic a VTAP mirrors.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_vtap_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
vcn_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_state_details varchar2(32767),
time_created timestamp with time zone,
source_id varchar2(32767),
target_id varchar2(32767),
target_ip varchar2(32767),
capture_filter_id varchar2(32767),
encapsulation_protocol varchar2(32767),
vxlan_network_identifier number,
is_vtap_enabled number,
source_type varchar2(32767),
traffic_mode varchar2(32767),
max_packet_size number,
target_type varchar2(32767),
source_private_endpoint_ip varchar2(32767),
source_private_endpoint_subnet_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vtap_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_vtap_t (
compartment_id varchar2,
vcn_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
lifecycle_state_details varchar2,
time_created timestamp with time zone,
source_id varchar2,
target_id varchar2,
target_ip varchar2,
capture_filter_id varchar2,
encapsulation_protocol varchar2,
vxlan_network_identifier number,
is_vtap_enabled number,
source_type varchar2,
traffic_mode varchar2,
max_packet_size number,
target_type varchar2,
source_private_endpoint_ip varchar2,
source_private_endpoint_subnet_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment containing the `Vtap` resource.
vcn_id
(required) The OCID of the VCN containing the `Vtap` resource.
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
display_name
(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
(optional) Defines an encapsulation header type for the VTAP's mirrored traffic.
Allowed values are: 'VXLAN'
vxlan_network_identifier
(optional) The virtual extensible LAN (VXLAN) network identifier (or VXLAN segment ID) that uniquely identifies the VXLAN.
is_vtap_enabled
(optional) Used to start or stop a `Vtap` resource. * `TRUE` directs the VTAP to start mirroring traffic. * `FALSE` (Default) directs the VTAP to stop mirroring traffic.
(optional) The IP Address of the source private endpoint.
source_private_endpoint_subnet_id
(optional) The OCID of the subnet that source private endpoint belongs to.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_RESOURCE_T Type 🔗
A resource created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entity_type
(required) The resource type the work request affects.
action_type
(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the `IN_PROGRESS` state until work is complete for that resource at which point it will transition to `CREATED`, `UPDATED`, or `DELETED`, respectively.
(required) The identifier of the resource the work request affects.
entity_uri
(optional) The URI path that you can do a GET operation on to access the resource metadata.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_T Type 🔗
An asynchronous work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
compartment_id varchar2(32767),
id varchar2(32767),
resources dbms_cloud_oci_vn_monitoring_work_request_resource_tbl,
percent_complete number,
status varchar2(32767),
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_t (
operation_type varchar2,
compartment_id varchar2,
id varchar2,
resources dbms_cloud_oci_vn_monitoring_work_request_resource_tbl,
percent_complete number,
status varchar2,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
operation_type
(required) Type of the work request.
Allowed values are: 'CREATE_PATH_ANALYSIS_RESULT'
compartment_id
(required) The OCID of the compartment that contains the work request.
(required) The date and time the work request was created, in the format defined by RFC3339.
time_started
(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the format defined by RFC3339.
time_finished
(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`. Format is defined by RFC3339.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A machine-usable code for the error that occured.
message
(required) A human-readable error string.
l_timestamp
(required) The date and time the error occurred, in the format defined by RFC3339.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_ERROR_COLLECTION_T Type 🔗
Results of a `WorkRequestError` search.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_error_collection_t (
items dbms_cloud_oci_vn_monitoring_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of `WorkRequestError` objects.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_LOG_ENTRY_T Type 🔗
A log message from executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(required) A human-readable log message.
l_timestamp
(required) The date and time the log message was written, in the format defined by RFC3339.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_LOG_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type 🔗
Results of a `WorkRequestLog` search.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_log_entry_collection_t (
items dbms_cloud_oci_vn_monitoring_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of work request log entries.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_RESULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_work_request_result_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_work_request_result_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_RESULT_COLLECTION_T Type 🔗
Results of a `WorkRequestResult` search.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_result_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_work_request_result_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_result_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_result_collection_t (
items dbms_cloud_oci_vn_monitoring_work_request_result_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of `WorkRequestResult` objects.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
compartment_id varchar2(32767),
id varchar2(32767),
resources dbms_cloud_oci_vn_monitoring_work_request_resource_tbl,
percent_complete number,
status varchar2(32767),
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_summary_t (
operation_type varchar2,
compartment_id varchar2,
id varchar2,
resources dbms_cloud_oci_vn_monitoring_work_request_resource_tbl,
percent_complete number,
status varchar2,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
operation_type
(required) Type of the work request.
Allowed values are: 'CREATE_PATH_ANALYSIS_RESULT'
compartment_id
(required) The OCID of the compartment that contains the work request.
(required) The date and time the work request was created, in the format defined by RFC3339.
time_started
(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the format defined by RFC3339.
time_finished
(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`, in the format defined by RFC3339.
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_vn_monitoring_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_vn_monitoring_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_VN_MONITORING_WORK_REQUEST_SUMMARY_COLLECTION_T Type 🔗
Results of a `WorkRequest` search.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_vn_monitoring_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_vn_monitoring_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_vn_monitoring_work_request_summary_collection_t (
items dbms_cloud_oci_vn_monitoring_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;