Compute Cloud at Customer Common Types

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_INVENTORY_T Type

Inventory for a Compute Cloud@Customer infrastructure. This information cannot be updated and is from the infrastructure. The information will only be available after the connectionState is transitioned to CONNECTED.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_inventory_t FORCE AUTHID CURRENT_USER IS OBJECT (
  serial_number varchar2(32767),
  management_node_count number,
  compute_node_count number,
  capacity_storage_tray_count number,
  performance_storage_tray_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_inventory_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_inventory_t (
    serial_number varchar2,
    management_node_count number,
    compute_node_count number,
    capacity_storage_tray_count number,
    performance_storage_tray_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

serial_number

(optional) The serial number of the Compute Cloud@Customer infrastructure rack.

management_node_count

(optional) The number of management nodes that are available and in active use on the Compute Cloud@Customer infrastructure rack.

compute_node_count

(optional) The number of compute nodes that are available and usable on the Compute Cloud@Customer infrastructure rack. There is no distinction of compute node type in this information.

capacity_storage_tray_count

(optional) The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for capacity storage.

performance_storage_tray_count

(optional) The number of storage trays in the Compute Cloud@Customer infrastructure rack that are designated for performance storage.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_MANAGEMENT_NODE_T Type

Information about an individual management node in a Compute Cloud@Customer infrastructure.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ip varchar2(32767),
  hostname varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_t (
    ip varchar2,
    hostname varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

ip

(optional) Address of the management node.

hostname

(optional) Hostname for interface to the management node.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_ROUTING_STATIC_DETAILS_T Type

Static routing information for a rack.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_static_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  uplink_vlan number,
  uplink_hsrp_group number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_static_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_static_details_t (
    uplink_vlan number,
    uplink_hsrp_group number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

uplink_vlan

(optional) The virtual local area network (VLAN) identifier used to connect to the uplink (only access mode is supported).

uplink_hsrp_group

(optional) The uplink Hot Standby Router Protocol (HSRP) group value for the switch in the Compute Cloud@Customer infrastructure.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_PEER_INFORMATION_T Type

Routing information for peer nodes using the Border Gateway Protocol (BGP).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_peer_information_t FORCE AUTHID CURRENT_USER IS OBJECT (
  asn number,
  ip varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_peer_information_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_peer_information_t (
    asn number,
    ip varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

asn

(optional) The Autonomous System Number (ASN) of the peer network.

ip

(optional) Neighbor Border Gateway Protocal (BGP) IP address. The IP address usually refers to the customer data center router.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_PEER_INFORMATION_TBL Type

Nested table type of dbms_cloud_oci_compute_cloud_at_customer_peer_information_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_peer_information_tbl FORCE IS TABLE OF (dbms_cloud_oci_compute_cloud_at_customer_peer_information_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_ROUTING_DYNAMIC_DETAILS_T Type

Dynamic routing information for the Compute Cloud@Customer infrastructure.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_dynamic_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  peer_information dbms_cloud_oci_compute_cloud_at_customer_peer_information_tbl,
  oracle_asn number,
  bgp_topology varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_dynamic_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_dynamic_details_t (
    peer_information dbms_cloud_oci_compute_cloud_at_customer_peer_information_tbl,
    oracle_asn number,
    bgp_topology varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

peer_information

(optional) The list of peer devices in the dynamic routing configuration.

oracle_asn

(optional) The Oracle Autonomous System Number (ASN) to control routing and exchange information within the dynamic routing configuration.

bgp_topology

(optional) The topology in use for the Border Gateway Protocol (BGP) configuration.

Allowed values are: 'TRIANGLE', 'SQUARE', 'MESH'

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_MANAGEMENT_NODE_TBL Type

Nested table type of dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_tbl FORCE IS TABLE OF (dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_NETWORK_CONFIGURATION_T Type

Configuration information for the Compute Cloud@Customer infrastructure. This network configuration information cannot be updated and is retrieved from the data center. The information will only be available after the connectionState is transitioned to CONNECTED.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_network_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  management_nodes dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_tbl,
  uplink_port_speed_in_gbps number,
  uplink_port_count number,
  uplink_vlan_mtu number,
  uplink_netmask varchar2(32767),
  uplink_port_forward_error_correction varchar2(32767),
  uplink_domain varchar2(32767),
  uplink_gateway_ip varchar2(32767),
  spine_ips dbms_cloud_oci_compute_cloud_at_customer_varchar2_tbl,
  spine_vip varchar2(32767),
  mgmt_vip_hostname varchar2(32767),
  mgmt_vip_ip varchar2(32767),
  dns_ips dbms_cloud_oci_compute_cloud_at_customer_varchar2_tbl,
  infrastructure_routing_static dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_static_details_t,
  infrastructure_routing_dynamic dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_dynamic_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_network_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_network_configuration_t (
    management_nodes dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_management_node_tbl,
    uplink_port_speed_in_gbps number,
    uplink_port_count number,
    uplink_vlan_mtu number,
    uplink_netmask varchar2,
    uplink_port_forward_error_correction varchar2,
    uplink_domain varchar2,
    uplink_gateway_ip varchar2,
    spine_ips dbms_cloud_oci_compute_cloud_at_customer_varchar2_tbl,
    spine_vip varchar2,
    mgmt_vip_hostname varchar2,
    mgmt_vip_ip varchar2,
    dns_ips dbms_cloud_oci_compute_cloud_at_customer_varchar2_tbl,
    infrastructure_routing_static dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_static_details_t,
    infrastructure_routing_dynamic dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_routing_dynamic_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

management_nodes

(optional) Information about the management nodes that are provisioned in the Compute Cloud@Customer infrastructure.

uplink_port_speed_in_gbps

(optional) Uplink port speed defined in gigabytes per second. All uplink ports must have identical speed.

uplink_port_count

(optional) Number of uplink ports per spine switch. Connectivity is identical on both spine switches. For example, if input is two 100 gigabyte ports; then port-1 and port-2 on both spines will be configured.

uplink_vlan_mtu

(optional) The virtual local area network (VLAN) maximum transmission unit (MTU) size for the uplink ports.

uplink_netmask

(optional) Netmask of the subnet that the Compute Cloud@Customer infrastructure is connected to.

uplink_port_forward_error_correction

(optional) The port forward error correction (FEC) setting for the uplink port on the Compute Cloud@Customer infrastructure.

Allowed values are: 'AUTO', 'FIRE_CODE_FEC', 'REED_SOLOMON_CONSORTIUM_16', 'REED_SOLOMON_FEC', 'REED_SOLOMON_IEEE'

uplink_domain

(optional) Domain name to be used as the base domain for the internal network and by public facing services.

uplink_gateway_ip

(optional) Uplink gateway in the datacenter network that the Compute Cloud@Customer connects to.

spine_ips

(optional) Addresses of the network spine switches.

spine_vip

(optional) The spine switch public virtual IP (VIP). Traffic routed to the Compute Cloud@Customer infrastructure and and virtual cloud networks (VCNs) should have this address as next hop.

mgmt_vip_hostname

(optional) The hostname corresponding to the virtual IP (VIP) address of the management nodes.

mgmt_vip_ip

(optional) The IP address used as the virtual IP (VIP) address of the management nodes.

dns_ips

(optional) The domain name system (DNS) addresses that the Compute Cloud@Customer infrastructure uses for the data center network.

infrastructure_routing_static

(optional)

infrastructure_routing_dynamic

(optional)

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_UPGRADE_INFORMATION_T Type

Upgrade information that relates to a Compute Cloud@Customer infrastructure. This information cannot be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_information_t FORCE AUTHID CURRENT_USER IS OBJECT (
  current_version varchar2(32767),
  time_of_scheduled_upgrade timestamp with time zone,
  scheduled_upgrade_duration varchar2(32767),
  is_active number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_information_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_information_t (
    current_version varchar2,
    time_of_scheduled_upgrade timestamp with time zone,
    scheduled_upgrade_duration varchar2,
    is_active number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

current_version

(optional) The current version of software installed on the Compute Cloud@Customer infrastructure.

time_of_scheduled_upgrade

(optional) Compute Cloud@Customer infrastructure next upgrade time. The rack might have performance impacts during this time.

scheduled_upgrade_duration

(optional) Expected duration of Compute Cloud@Customer infrastructure scheduled upgrade. The actual upgrade time might be longer or shorter than this duration depending on rack activity, this is only an estimate.

is_active

(optional) Indication that the Compute Cloud@Customer infrastructure is in the process of an upgrade or an upgrade activity (such as preloading upgrade images).

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_T Type

The Oracle Cloud Infrastructure resource representing the connection to the hardware and software located in a customer's data center running the Compute Cloud@Customer IaaS services.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  short_name varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  subnet_id varchar2(32767),
  connection_state varchar2(32767),
  connection_details varchar2(32767),
  ccc_upgrade_schedule_id varchar2(32767),
  provisioning_fingerprint varchar2(32767),
  provisioning_pin varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  infrastructure_inventory dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_inventory_t,
  infrastructure_network_configuration dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_network_configuration_t,
  upgrade_information dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_information_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_t (
    id varchar2,
    short_name varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    subnet_id varchar2,
    connection_state varchar2,
    connection_details varchar2,
    ccc_upgrade_schedule_id varchar2,
    provisioning_fingerprint varchar2,
    provisioning_pin varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    infrastructure_inventory dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_inventory_t,
    infrastructure_network_configuration dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_network_configuration_t,
    upgrade_information dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_information_t,
    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) The Compute Cloud@Customer infrastructure OCID. This cannot be changed once created.

short_name

(optional) The Compute Cloud@Customer infrastructure short name. This cannot be changed once created. The short name is used to refer to the infrastructure in several contexts and is unique.

display_name

(required) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.

description

(optional) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.

compartment_id

(required) The infrastructure compartment OCID.

subnet_id

(required) OCID for the network subnet that is used to communicate with Compute Cloud@Customer infrastructure.

connection_state

(optional) The current connection state of the infrastructure. A user can only update it from REQUEST to READY or from any state back to REJECT. The system automatically handles the REJECT to REQUEST, READY to CONNECTED, or CONNECTED to DISCONNECTED transitions.

Allowed values are: 'REJECT', 'REQUEST', 'READY', 'CONNECTED', 'DISCONNECTED'

connection_details

(optional) A message describing the current connection state in more detail.

ccc_upgrade_schedule_id

(optional) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be updated at any time.

provisioning_fingerprint

(optional) Fingerprint of a Compute Cloud@Customer infrastructure in a data center generated during the initial connection to this resource. The fingerprint should be verified by the administrator when changing the connectionState from REQUEST to READY.

provisioning_pin

(optional) Code that is required for service personnel to connect a Compute Cloud@Customer infrastructure in a data center to this resource. This code will only be available when the connectionState is REJECT (usually at create time of the Compute Cloud@Customer infrastructure).

time_created

(required) Compute Cloud@Customer infrastructure creation date and time, using an RFC3339 formatted datetime string.

time_updated

(optional) Compute Cloud@Customer infrastructure updated date and time, using an RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the Compute Cloud@Customer infrastructure.

Allowed values are: 'ACTIVE', 'NEEDS_ATTENTION', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current lifecycle state in more detail. For example, this can be used to provide actionable information for a resource that is in a Failed state.

infrastructure_inventory

(optional)

infrastructure_network_configuration

(optional)

upgrade_information

(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\"}}`

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_SUMMARY_T Type

Summary information about a Compute Cloud@Customer infrastructure.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  short_name varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  subnet_id varchar2(32767),
  time_created timestamp with time zone,
  connection_state varchar2(32767),
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_t (
    id varchar2,
    short_name varchar2,
    display_name varchar2,
    compartment_id varchar2,
    subnet_id varchar2,
    time_created timestamp with time zone,
    connection_state varchar2,
    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) The Compute Cloud@Customer infrastructure OCID. This cannot be changed once created.

short_name

(optional) The Compute Cloud@Customer infrastructure short name. This is generated at the time the resource is created and cannot be changed. The short name can be used when communicating with Oracle Service and may be used during the configuration of the data center network.

display_name

(required) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.

compartment_id

(required) The compartment OCID associated with the infrastructure.

subnet_id

(required) OCID for the network subnet that is used to communicate with Compute Cloud@Customer infrastructure.

time_created

(required) Compute Cloud@Customer infrastructure creation date and time. An RFC3339 formatted datetime string.

connection_state

(optional) The current connection state of the infrastructure.

lifecycle_state

(required) The current state of the Compute Cloud@Customer infrastructure.

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_INFRASTRUCTURE_COLLECTION_T Type

Results of a Compute Cloud@Customer infrastructure search.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_collection_t (
    items dbms_cloud_oci_compute_cloud_at_customer_ccc_infrastructure_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of Compute Cloud@Customer infrastructures.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_SCHEDULE_EVENT_T Type

A period where upgrades may be applied to Compute Cloud@Customer infrastructures associated with the schedule. All upgrade windows may not be used.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  description varchar2(32767),
  time_start timestamp with time zone,
  schedule_event_duration varchar2(32767),
  schedule_event_recurrences varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_t (
    name varchar2,
    description varchar2,
    time_start timestamp with time zone,
    schedule_event_duration varchar2,
    schedule_event_recurrences varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Generated name associated with the event.

description

(required) A description of the Compute Cloud@Customer upgrade schedule time block.

time_start

(required) The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.

schedule_event_duration

(required) The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.

schedule_event_recurrences

(optional) Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_SCHEDULE_EVENT_TBL Type

Nested table type of dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_tbl FORCE IS TABLE OF (dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_UPGRADE_SCHEDULE_T Type

Defines a schedule for preferred upgrade times.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  events dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_tbl,
  infrastructure_ids dbms_cloud_oci_compute_cloud_at_customer_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    events dbms_cloud_oci_compute_cloud_at_customer_ccc_schedule_event_tbl,
    infrastructure_ids dbms_cloud_oci_compute_cloud_at_customer_varchar2_tbl,
    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) Upgrade schedule OCID. This cannot be changed once created.

display_name

(required) Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.

description

(optional) An optional description of the Compute Cloud@Customer upgrade schedule. Avoid entering confidential information.

compartment_id

(required) Compartment OCID for the Compute Cloud@Customer upgrade schedule.

time_created

(required) The time the upgrade schedule was created, using an RFC3339 formatted datetime string.

time_updated

(optional) The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.

lifecycle_state

(required) Lifecycle state of the resource.

Allowed values are: 'ACTIVE', 'NEEDS_ATTENTION', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, the message can be used to provide actionable information for a resource in a Failed state.

events

(optional) List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.

infrastructure_ids

(optional) List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_UPGRADE_SCHEDULE_SUMMARY_T Type

Basic information about a Compute Cloud@Customer schedule. This summary only includes high level resource information, not the schedule events.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created 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_compute_cloud_at_customer_ccc_upgrade_schedule_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created 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) The upgrade schedule OCID. This cannot be changed once created.

display_name

(required) Compute Cloud@Customer upgrade schedule display name. Avoid entering any confidential information.

compartment_id

(required) Compartment OCID for the Compute Cloud@Customer Upgrade Schedule.

time_created

(required) The time the upgrade schedule was created. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the Compute Cloud@Customer upgrade schedule.

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) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_UPGRADE_SCHEDULE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CCC_UPGRADE_SCHEDULE_COLLECTION_T Type

Results of a Compute Cloud@Customer upgrade schedule search. Contains the summary items and other information, such as metadata.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_collection_t (
    items dbms_cloud_oci_compute_cloud_at_customer_ccc_upgrade_schedule_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of Compute Cloud@Customer upgrade schedules.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CHANGE_CCC_INFRASTRUCTURE_COMPARTMENT_DETAILS_T Type

Information required for the compartment change operation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_change_ccc_infrastructure_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_change_ccc_infrastructure_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_change_ccc_infrastructure_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 resource should be moved.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CHANGE_CCC_UPGRADE_SCHEDULE_COMPARTMENT_DETAILS_T Type

Change the compartment of a Compute Cloud@Customer upgrade schedule.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_change_ccc_upgrade_schedule_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_change_ccc_upgrade_schedule_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_change_ccc_upgrade_schedule_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 resource should be moved.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CREATE_CCC_INFRASTRUCTURE_DETAILS_T Type

The configuration details for creating Compute Cloud@Customer infrastructure.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_create_ccc_infrastructure_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  subnet_id varchar2(32767),
  connection_state varchar2(32767),
  connection_details varchar2(32767),
  ccc_upgrade_schedule_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_create_ccc_infrastructure_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_create_ccc_infrastructure_details_t (
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    subnet_id varchar2,
    connection_state varchar2,
    connection_details varchar2,
    ccc_upgrade_schedule_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.

description

(optional) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.

compartment_id

(required) The compartment OCID associated with the infrastructure.

subnet_id

(required) Identifier for network subnet that will be used to communicate with Compute Cloud@Customer infrastructure.

connection_state

(optional) The current connection state of the Compute Cloud@Customer infrastructure. This value will default to REJECT if the value is not provided. The only valid value at creation time is REJECT.

connection_details

(optional) A message describing the current connection state in more detail.

ccc_upgrade_schedule_id

(optional) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be upgraded at any time.

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_COMPUTE_CLOUD_AT_CUSTOMER_CREATE_CCC_SCHEDULE_EVENT_T Type

A period where upgrades may be applied to Compute Cloud@Customer infrastructures associated with the schedule. All upgrade windows may not be used.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_t FORCE AUTHID CURRENT_USER IS OBJECT (
  description varchar2(32767),
  time_start timestamp with time zone,
  schedule_event_duration varchar2(32767),
  schedule_event_recurrences varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_t (
    description varchar2,
    time_start timestamp with time zone,
    schedule_event_duration varchar2,
    schedule_event_recurrences varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

description

(required) A description of the Compute Cloud@Customer upgrade schedule time block.

time_start

(required) The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.

schedule_event_duration

(required) The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.

schedule_event_recurrences

(optional) Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CREATE_CCC_SCHEDULE_EVENT_TBL Type

Nested table type of dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_tbl FORCE IS TABLE OF (dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_CREATE_CCC_UPGRADE_SCHEDULE_DETAILS_T Type

Defines a schedule for times when automated Compute Cloud@Customer upgrades are preferred. A created upgrade schedule must supply events with a minimum frequency and duration or the schedule will be rejected. Upgrades may impact performance of Compute Cloud@Customer infrastructures when they are being applied.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_create_ccc_upgrade_schedule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  description varchar2(32767),
  events dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_create_ccc_upgrade_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_create_ccc_upgrade_schedule_details_t (
    display_name varchar2,
    compartment_id varchar2,
    description varchar2,
    events dbms_cloud_oci_compute_cloud_at_customer_create_ccc_schedule_event_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.

compartment_id

(required) Compartment OCID for the Compute Cloud@Customer Upgrade Schedule.

description

(optional) An optional description of the Compute Cloud@Customer upgrade schedule. Avoid entering confidential information.

events

(required) List of preferred times for Compute Cloud@Customer infrastructure to be upgraded.

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_COMPUTE_CLOUD_AT_CUSTOMER_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_UPDATE_CCC_INFRASTRUCTURE_DETAILS_T Type

Updates Compute Cloud@Customer infrastructure configuration details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_update_ccc_infrastructure_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  subnet_id varchar2(32767),
  connection_state varchar2(32767),
  connection_details varchar2(32767),
  ccc_upgrade_schedule_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_update_ccc_infrastructure_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_update_ccc_infrastructure_details_t (
    display_name varchar2,
    description varchar2,
    subnet_id varchar2,
    connection_state varchar2,
    connection_details varchar2,
    ccc_upgrade_schedule_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The name that will be used to display the Compute Cloud@Customer infrastructure in the Oracle Cloud Infrastructure console. Does not have to be unique and can be changed. Avoid entering confidential information.

description

(optional) A mutable client-meaningful text description of the Compute Cloud@Customer infrastructure. Avoid entering confidential information.

subnet_id

(optional) OCID for the network subnet that is used to communicate with Compute Cloud@Customer infrastructure.

connection_state

(optional) An updated connection state of the Compute Cloud@Customer infrastructure.

connection_details

(optional) A message describing the current connection state in more detail.

ccc_upgrade_schedule_id

(optional) Schedule used for upgrades. If no schedule is associated with the infrastructure, it can be updated at any time.

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_COMPUTE_CLOUD_AT_CUSTOMER_UPDATE_CCC_SCHEDULE_EVENT_T Type

A period where upgrades may be applied to Compute Cloud@Customer infrastructures associated with the schedule. All upgrade windows may not be used.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_t FORCE AUTHID CURRENT_USER IS OBJECT (
  description varchar2(32767),
  time_start timestamp with time zone,
  schedule_event_duration varchar2(32767),
  schedule_event_recurrences varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_t (
    description varchar2,
    time_start timestamp with time zone,
    schedule_event_duration varchar2,
    schedule_event_recurrences varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

description

(required) A description of the Compute Cloud@Customer upgrade schedule time block.

time_start

(required) The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.

schedule_event_duration

(required) The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.

schedule_event_recurrences

(optional) Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_UPDATE_CCC_SCHEDULE_EVENT_TBL Type

Nested table type of dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_tbl FORCE IS TABLE OF (dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_COMPUTE_CLOUD_AT_CUSTOMER_UPDATE_CCC_UPGRADE_SCHEDULE_DETAILS_T Type

Updates the schedule details, all schedule information must be entered, similar to an initial schedule create. Include all events in the update.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_compute_cloud_at_customer_update_ccc_upgrade_schedule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  events dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_update_ccc_upgrade_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_compute_cloud_at_customer_update_ccc_upgrade_schedule_details_t (
    display_name varchar2,
    description varchar2,
    events dbms_cloud_oci_compute_cloud_at_customer_update_ccc_schedule_event_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.

description

(optional) An optional description of the Compute Cloud@Customer upgrade schedule. Avoid entering confidential information.

events

(optional) List of preferred times for a Compute Cloud@Customer infrastructure to be upgraded.

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\"}}`

Was this article helpful?