Roving Edge Infrastructure Common Types

DBMS_CLOUD_OCI_ROVER_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_ROVER_CA_DETAILS_T Type

Information about the detailed CA bundle content of the rover node.

Syntax

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

Fields

Field Description

ca_bundle_pem

(optional) Plain text certificate chain in PEM format for the subordinate CA associated with given roverNode.

certificate_max_validity_duration

(optional) Max validity of leaf certificates issued by the CA associated with given node, in days, in ISO 8601 format, example \"P365D\".

DBMS_CLOUD_OCI_ROVER_CA_BUNDLE_RESPONSE_T Type

Information about the CA Bundle of the rover node.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_ca_bundle_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rover_node_id varchar2(32767),
  ca_details dbms_cloud_oci_rover_ca_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_ca_bundle_response_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_ca_bundle_response_t (
    rover_node_id varchar2,
    ca_details dbms_cloud_oci_rover_ca_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rover_node_id

(required) rover node ocid

ca_details

(optional)

DBMS_CLOUD_OCI_ROVER_CERTIFICATE_DETAILS_T Type

The details of Oracle Cloud Infrastructure certificate created

Syntax

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

Fields

Field Description

certificate_id

(optional) The id of the certificate.

certificate_name

(optional) The name of the certificate.

DBMS_CLOUD_OCI_ROVER_CHANGE_ROVER_CLUSTER_COMPARTMENT_DETAILS_T Type

Object for moving a cluster to a different compartment.

Syntax

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

DBMS_CLOUD_OCI_ROVER_CHANGE_ROVER_ENTITLEMENT_COMPARTMENT_DETAILS_T Type

Object for moving an entitlement to a different compartment.

Syntax

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

DBMS_CLOUD_OCI_ROVER_CHANGE_ROVER_NODE_COMPARTMENT_DETAILS_T Type

Object for moving a node to a different compartment.

Syntax

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

DBMS_CLOUD_OCI_ROVER_SHIPPING_ADDRESS_T Type

Shipping address for rover devices.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_shipping_address_t FORCE AUTHID CURRENT_USER IS OBJECT (
  addressee varchar2(32767),
  care_of varchar2(32767),
  address1 varchar2(32767),
  address2 varchar2(32767),
  address3 varchar2(32767),
  address4 varchar2(32767),
  city_or_locality varchar2(32767),
  state_or_region varchar2(32767),
  zipcode varchar2(32767),
  country varchar2(32767),
  phone_number varchar2(32767),
  email varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_shipping_address_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_shipping_address_t (
    addressee varchar2,
    care_of varchar2,
    address1 varchar2,
    address2 varchar2,
    address3 varchar2,
    address4 varchar2,
    city_or_locality varchar2,
    state_or_region varchar2,
    zipcode varchar2,
    country varchar2,
    phone_number varchar2,
    email varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

addressee

(required) Addressee in shipping address.

care_of

(optional) CareOf for shipping address.

address1

(required) Address line 1.

address2

(optional) Address line 2.

address3

(optional) Address line 3.

address4

(optional) Address line 4.

city_or_locality

(required) city or locality for shipping address.

state_or_region

(required) state or region for shipping address.

zipcode

(required) zipcode for shipping address.

country

(required) country for shipping address.

phone_number

(required) recipient phone number.

email

(optional) recipient email address.

DBMS_CLOUD_OCI_ROVER_ROVER_WORKLOAD_T Type

Information about a RoverWorkload.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_workload_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  compartment_id varchar2(32767),
  id varchar2(32767),
  l_size varchar2(32767),
  object_count varchar2(32767),
  prefix varchar2(32767),
  range_start varchar2(32767),
  range_end varchar2(32767),
  workload_type varchar2(32767),
  work_request_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_workload_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_workload_t (
    name varchar2,
    compartment_id varchar2,
    id varchar2,
    l_size varchar2,
    object_count varchar2,
    prefix varchar2,
    range_start varchar2,
    range_end varchar2,
    workload_type varchar2,
    work_request_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) Name of the Rover Workload

compartment_id

(required) The OCID of the compartment containing the workload.

id

(required) The Unique Oracle ID (OCID) that is immutable on creation.

l_size

(optional) Size of the workload.

object_count

(optional) Number of objects in a workload.

prefix

(optional) Prefix to filter objects in case it is a bucket.

range_start

(optional) Start of the range in a bucket.

range_end

(optional) End of the range in a bucket.

workload_type

(required) The type of workload

work_request_id

(optional) The compute work request id to track progress of custom image exports.

DBMS_CLOUD_OCI_ROVER_ROVER_WORKLOAD_TBL Type

Nested table type of dbms_cloud_oci_rover_rover_workload_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_workload_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_rover_workload_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_CREATE_ROVER_CLUSTER_DETAILS_T Type

The information required to create a RoverCluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_create_rover_cluster_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  cluster_size number,
  customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
  cluster_workloads dbms_cloud_oci_rover_rover_workload_tbl,
  cluster_type varchar2(32767),
  super_user_password varchar2(32767),
  enclosure_type varchar2(32767),
  unlock_passphrase varchar2(32767),
  point_of_contact varchar2(32767),
  point_of_contact_phone_number varchar2(32767),
  shipping_preference varchar2(32767),
  shipping_vendor varchar2(32767),
  time_pickup_expected timestamp with time zone,
  oracle_shipping_tracking_url varchar2(32767),
  subscription_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  is_import_requested number,
  import_compartment_id varchar2(32767),
  import_file_bucket varchar2(32767),
  data_validation_code varchar2(32767),
  master_key_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_create_rover_cluster_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_create_rover_cluster_details_t (
    display_name varchar2,
    compartment_id varchar2,
    cluster_size number,
    customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
    cluster_workloads dbms_cloud_oci_rover_rover_workload_tbl,
    cluster_type varchar2,
    super_user_password varchar2,
    enclosure_type varchar2,
    unlock_passphrase varchar2,
    point_of_contact varchar2,
    point_of_contact_phone_number varchar2,
    shipping_preference varchar2,
    shipping_vendor varchar2,
    time_pickup_expected timestamp with time zone,
    oracle_shipping_tracking_url varchar2,
    subscription_id varchar2,
    lifecycle_state varchar2,
    lifecycle_state_details varchar2,
    is_import_requested number,
    import_compartment_id varchar2,
    import_file_bucket varchar2,
    data_validation_code varchar2,
    master_key_id 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

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 compartment containing the RoverCluster.

cluster_size

(required) Number of nodes desired in the cluster, in standalone clusters, between 5 and 15 inclusive. In station clusters, between 15 and 30 inclusive.

customer_shipping_address

(optional)

cluster_workloads

(optional) List of existing workloads that should be provisioned on the nodes.

cluster_type

(optional) Type of cluster.

Allowed values are: 'STANDALONE', 'STATION'

super_user_password

(optional) Root password for the rover cluster.

enclosure_type

(optional) The type of enclosure rover nodes in this cluster are shipped in.

Allowed values are: 'RUGGADIZED', 'NON_RUGGADIZED'

unlock_passphrase

(optional) Password to unlock the rover cluster.

point_of_contact

(optional) Name of point of contact for this order if customer is picking up.

point_of_contact_phone_number

(optional) Phone number of point of contact for this order if customer is picking up.

shipping_preference

(optional) Preference for device delivery.

Allowed values are: 'ORACLE_SHIPPED', 'CUSTOMER_PICKUP'

shipping_vendor

(optional) Shipping vendor of choice for orace to customer shipping.

time_pickup_expected

(optional) Expected date when customer wants to pickup the cluster if they chose customer pickup.

oracle_shipping_tracking_url

(optional) Tracking Url for the shipped Rover Cluster.

subscription_id

(optional) ID provided to customer after successful subscription to Rover Stations.

lifecycle_state

(optional) The current state of the RoverCluster.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

is_import_requested

(optional) The flag indicating that customer requests data to be imported to OCI upon Rover cluster return.

import_compartment_id

(optional) An OCID of a compartment where data will be imported to upon Rover cluster return.

import_file_bucket

(optional) Name of a bucket where files from NFS share will be imported to upon Rover cluster return.

data_validation_code

(optional) Validation code returned by data validation tool. Required for return shipping label generation if data import was requested.

master_key_id

(optional) Customer provided master key ID to encrypt secret information. If not provided, Rover's master key will be used for encryption.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_CREATE_ROVER_ENTITLEMENT_DETAILS_T Type

Information required to create a RoverEntitlement.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_create_rover_entitlement_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  requestor_name varchar2(32767),
  requestor_email varchar2(32767),
  entitlement_details varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  tenant_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_create_rover_entitlement_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_create_rover_entitlement_details_t (
    compartment_id varchar2,
    display_name varchar2,
    requestor_name varchar2,
    requestor_email varchar2,
    entitlement_details varchar2,
    lifecycle_state varchar2,
    lifecycle_state_details varchar2,
    tenant_id 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

compartment_id

(required) The OCID of the compartment containing the RoverEntitlement.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

requestor_name

(required) Requestor name for the entitlement.

requestor_email

(required) Requestor email for the entitlement.

entitlement_details

(optional) Details about the entitlement.

lifecycle_state

(optional) The current state of the RoverNode.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

tenant_id

(optional) tenant Id.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_CREATE_ROVER_NODE_DETAILS_T Type

The information required to create a RoverNode.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_create_rover_node_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  shape varchar2(32767),
  customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
  node_workloads dbms_cloud_oci_rover_rover_workload_tbl,
  super_user_password varchar2(32767),
  unlock_passphrase varchar2(32767),
  point_of_contact varchar2(32767),
  point_of_contact_phone_number varchar2(32767),
  shipping_preference varchar2(32767),
  shipping_vendor varchar2(32767),
  time_pickup_expected timestamp with time zone,
  public_key varchar2(32767),
  time_return_window_starts timestamp with time zone,
  time_return_window_ends timestamp with time zone,
  lifecycle_state varchar2(32767),
  enclosure_type varchar2(32767),
  lifecycle_state_details varchar2(32767),
  serial_number varchar2(32767),
  oracle_shipping_tracking_url varchar2(32767),
  is_import_requested number,
  import_compartment_id varchar2(32767),
  import_file_bucket varchar2(32767),
  data_validation_code varchar2(32767),
  master_key_id varchar2(32767),
  certificate_authority_id varchar2(32767),
  time_cert_validity_end timestamp with time zone,
  common_name varchar2(32767),
  cert_compartment_id varchar2(32767),
  cert_key_algorithm varchar2(32767),
  cert_signature_algorithm varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_create_rover_node_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_create_rover_node_details_t (
    display_name varchar2,
    compartment_id varchar2,
    shape varchar2,
    customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
    node_workloads dbms_cloud_oci_rover_rover_workload_tbl,
    super_user_password varchar2,
    unlock_passphrase varchar2,
    point_of_contact varchar2,
    point_of_contact_phone_number varchar2,
    shipping_preference varchar2,
    shipping_vendor varchar2,
    time_pickup_expected timestamp with time zone,
    public_key varchar2,
    time_return_window_starts timestamp with time zone,
    time_return_window_ends timestamp with time zone,
    lifecycle_state varchar2,
    enclosure_type varchar2,
    lifecycle_state_details varchar2,
    serial_number varchar2,
    oracle_shipping_tracking_url varchar2,
    is_import_requested number,
    import_compartment_id varchar2,
    import_file_bucket varchar2,
    data_validation_code varchar2,
    master_key_id varchar2,
    certificate_authority_id varchar2,
    time_cert_validity_end timestamp with time zone,
    common_name varchar2,
    cert_compartment_id varchar2,
    cert_key_algorithm varchar2,
    cert_signature_algorithm 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

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 compartment containing the RoverNode.

shape

(optional) The shape of the node.

customer_shipping_address

(optional)

node_workloads

(optional) List of existing workloads that should be provisioned on the node.

super_user_password

(optional) Root password for the rover node.

unlock_passphrase

(optional) Passphrase to unlock the rover node.

point_of_contact

(optional) Name of point of contact for this order if customer is picking up.

point_of_contact_phone_number

(optional) Phone number of point of contact for this order if customer is picking up.

shipping_preference

(optional) Preference for device delivery.

Allowed values are: 'ORACLE_SHIPPED', 'CUSTOMER_PICKUP'

shipping_vendor

(optional) Shipping vendor of choice for orace to customer shipping.

time_pickup_expected

(optional) Expected date when customer wants to pickup the device if they chose customer pickup.

public_key

(optional) The public key of the resource principal

time_return_window_starts

(optional) Start time for the window to pickup the device from customer.

time_return_window_ends

(optional) End time for the window to pickup the device from customer.

lifecycle_state

(optional) The current state of the RoverNode.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

enclosure_type

(optional) The type of enclosure rover nodes in this cluster are shipped in.

Allowed values are: 'RUGGADIZED', 'NON_RUGGADIZED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

serial_number

(optional) Serial number of the node.

oracle_shipping_tracking_url

(optional) Tracking Url for the shipped FmsRoverNode.

is_import_requested

(optional) The flag indicating that customer requests data to be imported to OCI upon Rover node return.

import_compartment_id

(optional) An OCID of a compartment where data will be imported to upon Rover node return.

import_file_bucket

(optional) Name of a bucket where files from NFS share will be imported to upon Rover node return.

data_validation_code

(optional) Validation code returned by data validation tool. Required for return shipping label generation if data import was requested.

master_key_id

(optional) Customer provided master key ID to encrypt secret information. If not provided, Rover's master key will be used for encryption.

certificate_authority_id

(optional) The certificateAuthorityId of subordinate/intermediate certificate authority.

time_cert_validity_end

(optional) The time after which leaf certificate will invalid.

common_name

(optional) The common name for the leaf certificate.

cert_compartment_id

(optional) The compartmentId of the leaf certificate.

cert_key_algorithm

(optional) key algorithm for issuing leaf certificate.

Allowed values are: 'RSA2048', 'RSA4096', 'ECDSA_P256', 'ECDSA_P384'

cert_signature_algorithm

(optional) signature algorithm for issuing leaf certificate.

Allowed values are: 'SHA256_WITH_RSA', 'SHA384_WITH_RSA', 'SHA512_WITH_RSA', 'SHA256_WITH_ECDSA', 'SHA384_WITH_ECDSA', 'SHA512_WITH_ECDSA'

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_CURRENT_ROVER_BUNDLE_DETAILS_T Type

Information required to list all available valid rover bundle versions that can be upgraded based on current bundle version.

Syntax

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

Fields

Field Description

current_rover_bundle_version

(required) The version of current rover bundle on customer's roverNode or roverCluster device.

DBMS_CLOUD_OCI_ROVER_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_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_ROVER_GENERATE_CERTIFICATE_RESPONSE_T Type

The information of rover node certificate generated by Oracle Cloud Infrastructure certificate service.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_generate_certificate_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rover_node_id varchar2(32767),
  certificate_details dbms_cloud_oci_rover_certificate_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_generate_certificate_response_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_generate_certificate_response_t (
    rover_node_id varchar2,
    certificate_details dbms_cloud_oci_rover_certificate_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rover_node_id

(required) The id of the rover node.

certificate_details

(optional)

DBMS_CLOUD_OCI_ROVER_LEAF_CERTIFICATE_DETAILS_T Type

The details of leaf certificate

Syntax

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

Fields

Field Description

certificate_id

(optional) The id of the certificate

certificate_pem

(optional) The certificate content in PEM format

DBMS_CLOUD_OCI_ROVER_LEAF_CERTIFICATE_RESPONSE_T Type

The information for a left certificate for a rover node

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_leaf_certificate_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rover_node_id varchar2(32767),
  leaf_certificate_details dbms_cloud_oci_rover_leaf_certificate_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_leaf_certificate_response_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_leaf_certificate_response_t (
    rover_node_id varchar2,
    leaf_certificate_details dbms_cloud_oci_rover_leaf_certificate_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rover_node_id

(required) The id of the rover node.

leaf_certificate_details

(optional)

DBMS_CLOUD_OCI_ROVER_RENEW_CERTIFICATE_RESPONSE_T Type

The information of renewed rover node certificate.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_renew_certificate_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rover_node_id varchar2(32767),
  certificate_details dbms_cloud_oci_rover_certificate_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_renew_certificate_response_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_renew_certificate_response_t (
    rover_node_id varchar2,
    certificate_details dbms_cloud_oci_rover_certificate_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rover_node_id

(required) The id of the rover node.

certificate_details

(optional)

DBMS_CLOUD_OCI_ROVER_REPLACE_CA_DETAILS_T Type

Information about the detailed CA bundle replacement of the rover node.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_replace_ca_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ca_bundle_pem varchar2(32767),
  certificate_max_validity_duration varchar2(32767),
  cert_key_algorithm varchar2(32767),
  cert_signature_algorithm varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_replace_ca_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_replace_ca_details_t (
    ca_bundle_pem varchar2,
    certificate_max_validity_duration varchar2,
    cert_key_algorithm varchar2,
    cert_signature_algorithm varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

ca_bundle_pem

(optional) Plain text certificate chain in PEM format for the subordinate CA associated with given roverNode.

certificate_max_validity_duration

(optional) Max validity of leaf certificates issued by the CA associated with given node, in days, in ISO 8601 format, example \"P365D\".

cert_key_algorithm

(optional) key algorithm for issuing leaf certificate.

Allowed values are: 'RSA2048', 'RSA4096', 'ECDSA_P256', 'ECDSA_P384'

cert_signature_algorithm

(optional) signature algorithm for issuing leaf certificate.

Allowed values are: 'SHA256_WITH_RSA', 'SHA384_WITH_RSA', 'SHA512_WITH_RSA', 'SHA256_WITH_ECDSA', 'SHA384_WITH_ECDSA', 'SHA512_WITH_ECDSA'

DBMS_CLOUD_OCI_ROVER_REPLACE_CERTIFICATE_AUTHORITY_RESPONSE_T Type

Information about the replace CA Bundle of the rover node.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_replace_certificate_authority_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rover_node_id varchar2(32767),
  replace_ca_details dbms_cloud_oci_rover_replace_ca_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_replace_certificate_authority_response_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_replace_certificate_authority_response_t (
    rover_node_id varchar2,
    replace_ca_details dbms_cloud_oci_rover_replace_ca_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rover_node_id

(required) rover node ocid

replace_ca_details

(optional)

DBMS_CLOUD_OCI_ROVER_REQUEST_ADDITIONAL_NODES_DETAILS_T Type

Object for request additional nodes for a roverCluster

Syntax

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

Fields

Field Description

number_of_additional_nodes

(required) Number of additional nodes to be requested for a roverCluster.

DBMS_CLOUD_OCI_ROVER_REQUEST_ROVER_BUNDLE_DETAILS_T Type

Information required by Object Storage to process a request to copy an object to another bucket.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_request_rover_bundle_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  destination_compartment_id varchar2(32767),
  destination_bucket_name varchar2(32767),
  bundle_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_request_rover_bundle_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_request_rover_bundle_details_t (
    destination_compartment_id varchar2,
    destination_bucket_name varchar2,
    bundle_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

destination_compartment_id

(required) The compartment OCID of destination compartment that the bundle will be copied to.

destination_bucket_name

(required) The destination bucket name the bundle will be copied to.

bundle_version

(required) The bundle version that customer wants to upgrade to.

DBMS_CLOUD_OCI_ROVER_ROVER_BUNDLE_REQUEST_SUMMARY_T Type

Summary of the RoverBundleRequest

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_bundle_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  destination_compartment_id varchar2(32767),
  destination_bucket_name varchar2(32767),
  bundle_version varchar2(32767),
  work_request_id varchar2(32767),
  time_task_created timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_bundle_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_bundle_request_summary_t (
    id varchar2,
    destination_compartment_id varchar2,
    destination_bucket_name varchar2,
    bundle_version varchar2,
    work_request_id varchar2,
    time_task_created timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique identifier of roverBundleRequest.

destination_compartment_id

(optional) The OCID of destination compartment that the bundle will be copied to.

destination_bucket_name

(optional) The destination bucket name the bundle will be copied to.

bundle_version

(optional) The bundle version that customer wants to upgrade to.

work_request_id

(required) The work request id for an async copyObject operation.

time_task_created

(optional) The time of the task was created. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_ROVER_ROVER_BUNDLE_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_rover_rover_bundle_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_bundle_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_rover_bundle_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_ROVER_BUNDLE_REQUEST_COLLECTION_T Type

All the roverBundleRequests associated to this roverNode or roverCluster.

Syntax

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

Fields

Field Description

items

(required) List of roverBundleRequests.

DBMS_CLOUD_OCI_ROVER_ROVER_BUNDLE_STATUS_T Type

The status of the rover bundle status by a specified work request id.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_bundle_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  bundle_name varchar2(32767),
  error_message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_bundle_status_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_bundle_status_t (
    status varchar2,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone,
    bundle_name varchar2,
    error_message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(required) The progress of the workflow.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'COMPLETED', 'CANCELING', 'CANCELED'

percent_complete

(optional) Percentage of the work request completed.

time_accepted

(optional) The date and time the work request was created. An RFC3339 formatted datetime string.

time_started

(optional) The date and time the work request was started. An RFC3339 formatted datetime string.

time_finished

(optional) The date and time the work request was finished. An RFC3339 formatted datetime string.

bundle_name

(optional) The full name of the bundle.

error_message

(optional) The error message if work request fails.

DBMS_CLOUD_OCI_ROVER_ROVER_BUNDLE_STATUS_DETAILS_T Type

Information required to retrieve rover bundle status of a copyObject operation.

Syntax

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

Fields

Field Description

work_request_id

(required) The workRequestId for an async copyObject operation.

DBMS_CLOUD_OCI_ROVER_ROVER_BUNDLE_VERSION_T Type

Description of rover bundle version.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_bundle_version_t FORCE AUTHID CURRENT_USER IS OBJECT (
  bundle_version varchar2(32767),
  compartment_id varchar2(32767),
  bundle_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_bundle_version_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_bundle_version_t (
    bundle_version varchar2,
    compartment_id varchar2,
    bundle_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

bundle_version

(required) The version of the rover bundle.

compartment_id

(optional) The compartment OCID of roverNode/roverCluster that needs to be upgraded.

bundle_name

(optional) The full name of the bundle.

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_SUMMARY_T Type

Summary of the RoverNode.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_node_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  cluster_id varchar2(32767),
  serial_number varchar2(32767),
  node_type varchar2(32767),
  shape varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_summary_t (
    id varchar2,
    compartment_id varchar2,
    cluster_id varchar2,
    serial_number varchar2,
    node_type varchar2,
    shape varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_state_details 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 OCID of the RoverNode.

compartment_id

(required) The OCID of the compartment containing the RoverNode.

cluster_id

(optional) The cluster ID if the node is part of a cluster.

serial_number

(optional) Serial number of the node.

node_type

(optional) The type of node indicating if it belongs to a cluster

Allowed values are: 'STANDALONE', 'CLUSTERED', 'STATION'

shape

(optional) The shape of the node.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

time_created

(optional) The time the the RoverNode was created. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the RoverNode.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_rover_rover_node_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_node_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_rover_node_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_ROVER_CLUSTER_T Type

Description of RoverCluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_cluster_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  cluster_size number,
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
  nodes dbms_cloud_oci_rover_rover_node_summary_tbl,
  enclosure_type varchar2(32767),
  time_customer_received timestamp with time zone,
  time_customer_returned timestamp with time zone,
  delivery_tracking_info varchar2(32767),
  cluster_workloads dbms_cloud_oci_rover_rover_workload_tbl,
  cluster_type varchar2(32767),
  subscription_id varchar2(32767),
  exterior_door_code varchar2(32767),
  interior_alarm_disarm_code varchar2(32767),
  super_user_password varchar2(32767),
  unlock_passphrase varchar2(32767),
  point_of_contact varchar2(32767),
  point_of_contact_phone_number varchar2(32767),
  shipping_preference varchar2(32767),
  oracle_shipping_tracking_url varchar2(32767),
  shipping_vendor varchar2(32767),
  time_pickup_expected timestamp with time zone,
  time_return_window_starts timestamp with time zone,
  time_return_window_ends timestamp with time zone,
  return_shipping_label_uri varchar2(32767),
  is_import_requested number,
  import_compartment_id varchar2(32767),
  import_file_bucket varchar2(32767),
  data_validation_code varchar2(32767),
  image_export_par varchar2(32767),
  master_key_id varchar2(32767),
  tags varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_cluster_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_cluster_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    cluster_size number,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_state_details varchar2,
    customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
    nodes dbms_cloud_oci_rover_rover_node_summary_tbl,
    enclosure_type varchar2,
    time_customer_received timestamp with time zone,
    time_customer_returned timestamp with time zone,
    delivery_tracking_info varchar2,
    cluster_workloads dbms_cloud_oci_rover_rover_workload_tbl,
    cluster_type varchar2,
    subscription_id varchar2,
    exterior_door_code varchar2,
    interior_alarm_disarm_code varchar2,
    super_user_password varchar2,
    unlock_passphrase varchar2,
    point_of_contact varchar2,
    point_of_contact_phone_number varchar2,
    shipping_preference varchar2,
    oracle_shipping_tracking_url varchar2,
    shipping_vendor varchar2,
    time_pickup_expected timestamp with time zone,
    time_return_window_starts timestamp with time zone,
    time_return_window_ends timestamp with time zone,
    return_shipping_label_uri varchar2,
    is_import_requested number,
    import_compartment_id varchar2,
    import_file_bucket varchar2,
    data_validation_code varchar2,
    image_export_par varchar2,
    master_key_id varchar2,
    tags 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 OCID of RoverCluster.

compartment_id

(required) The OCID of the compartment containing the RoverCluster.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

cluster_size

(required) Size of the cluster.

time_created

(optional) The time the the RoverCluster was created. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the RoverCluster.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

customer_shipping_address

(optional)

nodes

(optional) The summary of nodes that are part of this cluster.

enclosure_type

(optional) The type of enclosure rover nodes in this cluster are shipped in.

Allowed values are: 'RUGGADIZED', 'NON_RUGGADIZED'

time_customer_received

(optional) Time when customer received the cluster.

time_customer_returned

(optional) Time when customer returned the cluster.

delivery_tracking_info

(optional) Tracking information for device shipping.

cluster_workloads

(optional) List of existing workloads that should be provisioned on the nodes.

cluster_type

(optional) Type of cluster.

Allowed values are: 'STANDALONE', 'STATION'

subscription_id

(optional) ID provided to customer after successful subscription to Rover Stations.

exterior_door_code

(optional) Service generated code for the exterior trailer door of the trailer.

interior_alarm_disarm_code

(optional) Service generated code to disarm the interior alarm of the trailer.

super_user_password

(optional) Root password for the rover cluster.

unlock_passphrase

(optional) Password to unlock the rover cluster.

point_of_contact

(optional) Name of point of contact for this order if customer is picking up.

point_of_contact_phone_number

(optional) Phone number of point of contact for this order if customer is picking up.

shipping_preference

(optional) Preference for device delivery.

Allowed values are: 'ORACLE_SHIPPED', 'CUSTOMER_PICKUP'

oracle_shipping_tracking_url

(optional) Tracking Url for the shipped Rover Cluster.

shipping_vendor

(optional) Shipping vendor of choice for orace to customer shipping.

time_pickup_expected

(optional) Expected date when customer wants to pickup the device if they chose customer pickup.

time_return_window_starts

(optional) Start time for the window to pickup the device from customer.

time_return_window_ends

(optional) End time for the window to pickup the device from customer.

return_shipping_label_uri

(optional) Uri to download return shipping label.

is_import_requested

(optional) The flag indicating that customer requests data to be imported to OCI upon Rover cluster return.

import_compartment_id

(optional) An OCID of a compartment where data will be imported to upon Rover cluster return.

import_file_bucket

(optional) Name of a bucket where files from NFS share will be imported to upon Rover cluster return.

data_validation_code

(optional) Validation code returned by data validation tool. Required for return shipping label generation if data import was requested.

image_export_par

(optional) The link to pre-authenticated request for a bucket where image workloads are moved.

master_key_id

(optional) Customer provided master key ID to encrypt secret information. If not provided, Rover's master key will be used for encryption.

tags

(optional) The tags associated with tagSlug.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_ROVER_CLUSTER_CERTIFICATE_T Type

The certificate response

Syntax

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

Fields

Field Description

certificate

(required) The certificate that can be installed on a client to do TLS communication to the cluster

DBMS_CLOUD_OCI_ROVER_ROVER_CLUSTER_SUMMARY_T Type

Summary of the RoverCluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_cluster_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  nodes dbms_cloud_oci_rover_varchar2_tbl,
  cluster_size number,
  cluster_type varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_cluster_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_cluster_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    nodes dbms_cloud_oci_rover_varchar2_tbl,
    cluster_size number,
    cluster_type varchar2,
    lifecycle_state varchar2,
    lifecycle_state_details 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 OCID of RoverCluster.

compartment_id

(required) The OCID of the compartment containing the RoverCluster.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

time_created

(optional) The time the the RoverCluster was created. An RFC3339 formatted datetime string

nodes

(optional) The nodes that are part of this cluster.

cluster_size

(optional) Size of the cluster.

cluster_type

(optional) Type of cluster.

Allowed values are: 'STANDALONE', 'STATION'

lifecycle_state

(required) The current state of the RoverCluster.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_ROVER_CLUSTER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_rover_rover_cluster_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_cluster_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_rover_cluster_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_ROVER_CLUSTER_COLLECTION_T Type

Results of a roverCluster search. Contains both RoverClusterSummary items and other data.

Syntax

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

Fields

Field Description

items

(required) List of roverClusterSummary.

DBMS_CLOUD_OCI_ROVER_ROVER_ENTITLEMENT_T Type

Information about a RoverEntitlement.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_entitlement_t FORCE AUTHID CURRENT_USER IS OBJECT (
  tenant_id varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  requestor_name varchar2(32767),
  requestor_email varchar2(32767),
  lifecycle_state varchar2(32767),
  entitlement_details varchar2(32767),
  lifecycle_state_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_entitlement_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_entitlement_t (
    tenant_id varchar2,
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    requestor_name varchar2,
    requestor_email varchar2,
    lifecycle_state varchar2,
    entitlement_details varchar2,
    lifecycle_state_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

tenant_id

(optional) tenant Id.

id

(required) A property that can uniquely identify the rover entitlement.

compartment_id

(required) The compartment Id for the entitlement.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

requestor_name

(required) Requestor name for the entitlement.

requestor_email

(required) Requestor email for the entitlement.

lifecycle_state

(required) Lifecyclestate for the entitlement.

Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'DELETED'

entitlement_details

(optional) Details about the entitlement.

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

time_created

(optional) Time of creation for the entitlement.

time_updated

(optional) Time when the entitlement was last updated.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_ROVER_ENTITLEMENT_SUMMARY_T Type

Rover entitlement summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_entitlement_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  requestor_name varchar2(32767),
  requestor_email varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_entitlement_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_entitlement_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    requestor_name varchar2,
    requestor_email varchar2,
    lifecycle_state varchar2,
    lifecycle_state_details 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

(optional) Id of the entitlement.

compartment_id

(required) The compartment Id.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

requestor_name

(optional) Requestor name for the entitlement.

requestor_email

(optional) Email id of the requestor for entitlement.

lifecycle_state

(required) Lifecyclestate for the entitlement.

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_ROVER_ENTITLEMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_rover_rover_entitlement_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_entitlement_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_rover_entitlement_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_ROVER_ENTITLEMENT_COLLECTION_T Type

Results of a roverEntitlement search. Contains RoverEntitlementSummary.

Syntax

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

Fields

Field Description

items

(required) List of RoverEntitlementSummary.

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_T Type

Information about a RoverNode.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_node_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  cluster_id varchar2(32767),
  compartment_id varchar2(32767),
  node_type varchar2(32767),
  shape varchar2(32767),
  enclosure_type varchar2(32767),
  serial_number varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
  node_workloads dbms_cloud_oci_rover_rover_workload_tbl,
  time_customer_receieved timestamp with time zone,
  time_customer_returned timestamp with time zone,
  delivery_tracking_info varchar2(32767),
  super_user_password varchar2(32767),
  unlock_passphrase varchar2(32767),
  point_of_contact varchar2(32767),
  point_of_contact_phone_number varchar2(32767),
  shipping_preference varchar2(32767),
  shipping_vendor varchar2(32767),
  time_pickup_expected timestamp with time zone,
  time_return_window_starts timestamp with time zone,
  oracle_shipping_tracking_url varchar2(32767),
  time_return_window_ends timestamp with time zone,
  return_shipping_label_uri varchar2(32767),
  is_import_requested number,
  import_compartment_id varchar2(32767),
  import_file_bucket varchar2(32767),
  data_validation_code varchar2(32767),
  public_key varchar2(32767),
  image_export_par varchar2(32767),
  master_key_id varchar2(32767),
  certificate_authority_id varchar2(32767),
  time_cert_validity_end timestamp with time zone,
  common_name varchar2(32767),
  cert_compartment_id varchar2(32767),
  certificate_version_number varchar2(32767),
  certificate_id varchar2(32767),
  cert_key_algorithm varchar2(32767),
  cert_signature_algorithm varchar2(32767),
  tags varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_t (
    id varchar2,
    cluster_id varchar2,
    compartment_id varchar2,
    node_type varchar2,
    shape varchar2,
    enclosure_type varchar2,
    serial_number varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_state_details varchar2,
    customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
    node_workloads dbms_cloud_oci_rover_rover_workload_tbl,
    time_customer_receieved timestamp with time zone,
    time_customer_returned timestamp with time zone,
    delivery_tracking_info varchar2,
    super_user_password varchar2,
    unlock_passphrase varchar2,
    point_of_contact varchar2,
    point_of_contact_phone_number varchar2,
    shipping_preference varchar2,
    shipping_vendor varchar2,
    time_pickup_expected timestamp with time zone,
    time_return_window_starts timestamp with time zone,
    oracle_shipping_tracking_url varchar2,
    time_return_window_ends timestamp with time zone,
    return_shipping_label_uri varchar2,
    is_import_requested number,
    import_compartment_id varchar2,
    import_file_bucket varchar2,
    data_validation_code varchar2,
    public_key varchar2,
    image_export_par varchar2,
    master_key_id varchar2,
    certificate_authority_id varchar2,
    time_cert_validity_end timestamp with time zone,
    common_name varchar2,
    cert_compartment_id varchar2,
    certificate_version_number varchar2,
    certificate_id varchar2,
    cert_key_algorithm varchar2,
    cert_signature_algorithm varchar2,
    tags 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 OCID of RoverNode.

cluster_id

(optional) The cluster ID if the node is part of a cluster.

compartment_id

(required) The OCID of the compartment containing the RoverNode.

node_type

(optional) The type of node indicating if it belongs to a cluster

Allowed values are: 'STANDALONE', 'CLUSTERED', 'STATION'

shape

(optional) The shape of the node.

enclosure_type

(optional) The type of enclosure rover node is shipped in.

Allowed values are: 'RUGGADIZED', 'NON_RUGGADIZED'

serial_number

(optional) Serial number of the node.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

time_created

(optional) The time the the RoverNode was created. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the RoverNode.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

customer_shipping_address

(optional)

node_workloads

(optional) List of existing workloads that should be provisioned on the node.

time_customer_receieved

(optional) Date and time when customer received tne node.

time_customer_returned

(optional) Date and time when customer returned the node.

delivery_tracking_info

(optional) Tracking information for device shipping.

super_user_password

(optional) Root password for the rover node.

unlock_passphrase

(optional) Password to unlock the rover node.

point_of_contact

(optional) Name of point of contact for this order if customer is picking up.

point_of_contact_phone_number

(optional) Phone number of point of contact for this order if customer is picking up.

shipping_preference

(optional) Preference for device delivery.

Allowed values are: 'ORACLE_SHIPPED', 'CUSTOMER_PICKUP'

shipping_vendor

(optional) Shipping vendor of choice for orace to customer shipping.

time_pickup_expected

(optional) Expected date when customer wants to pickup the device if they chose customer pickup.

time_return_window_starts

(optional) Start time for the window to pickup the device from customer.

oracle_shipping_tracking_url

(optional) Tracking Url for the shipped RoverNode.

time_return_window_ends

(optional) End time for the window to pickup the device from customer.

return_shipping_label_uri

(optional) Uri to download return shipping label.

is_import_requested

(optional) The flag indicating that customer requests data to be imported to OCI upon Rover node return.

import_compartment_id

(optional) An OCID of a compartment where data will be imported to upon Rover node return.

import_file_bucket

(optional) Name of a bucket where files from NFS share will be imported to upon Rover node return.

data_validation_code

(optional) Validation code returned by data validation tool. Required for return shipping label generation if data import was requested.

public_key

(optional) The public key of the resource principal

image_export_par

(optional) The link to pre-authenticated request for a bucket where image workloads are moved.

master_key_id

(optional) Customer provided master key ID to encrypt secret information. If not provided, Rover's master key will be used for encryption.

certificate_authority_id

(optional) The certificateAuthorityId of subordinate/intermediate certificate authority.

time_cert_validity_end

(optional) The time after which leaf certificate will invalid.

common_name

(optional) The common name for the leaf certificate.

cert_compartment_id

(optional) The compartmentId of the leaf certificate.

certificate_version_number

(optional) The version number of the leaf certificate.

certificate_id

(optional) The id of the leaf certificate.

cert_key_algorithm

(optional) key algorithm for issuing leaf certificate.

Allowed values are: 'RSA2048', 'RSA4096', 'ECDSA_P256', 'ECDSA_P384'

cert_signature_algorithm

(optional) signature algorithm for issuing leaf certificate.

Allowed values are: 'SHA256_WITH_RSA', 'SHA384_WITH_RSA', 'SHA512_WITH_RSA', 'SHA256_WITH_ECDSA', 'SHA384_WITH_ECDSA', 'SHA512_WITH_ECDSA'

tags

(optional) The tags associated with tagSlug.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_ACTION_SET_KEY_DETAILS_T Type

The information required to update a rover node's set key details.

Syntax

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

Fields

Field Description

public_key

(optional) The public key of the resource principal

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_CERTIFICATE_T Type

The certificate response

Syntax

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

Fields

Field Description

certificate

(required) The certificate that can be installed on a client to do TLS communication to the node

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_COLLECTION_T Type

Results of a roverNode search. Contains both RoverNodeSummary items and other data.

Syntax

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

Fields

Field Description

items

(required) List of roverNodes.

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_ENCRYPTION_KEY_T Type

The response containing encryption key for a rover node.

Syntax

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

Fields

Field Description

encryption_key

(required) The encryption key key for a rover node.

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_GENERATE_CERTIFICATE_DETAILS_T Type

The information required to generate a certificate for a roverNode.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_node_generate_certificate_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  csr varchar2(32767),
  time_cert_validity_end timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_generate_certificate_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_generate_certificate_details_t (
    csr varchar2,
    time_cert_validity_end timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

csr

(required) The certificate signing request (in PEM format), max size 10240.

time_cert_validity_end

(required) Time when the generated certificate's validity will end.

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_GET_RPT_T Type

The resource principal token response.

Syntax

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

Fields

Field Description

resource_principal_token

(required) The resource principal token blob that contains claims about the resource.

service_principal_session_token

(optional) The service principal session token

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_RENEW_CERTIFICATE_DETAILS_T Type

The information required to renew a certificate for a roverNode.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_node_renew_certificate_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  csr varchar2(32767),
  time_cert_validity_end timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_renew_certificate_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_renew_certificate_details_t (
    csr varchar2,
    time_cert_validity_end timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

csr

(required) The certificate signing request (in PEM format), max size 10240.

time_cert_validity_end

(required) Time when the renewed certificate's validity will end.

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_REPLACE_CERTIFICATE_AUTHORITY_DETAILS_T Type

The information required to replace a certificate authority details for a roverNode.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_rover_node_replace_certificate_authority_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  certificate_authority_id varchar2(32767),
  cert_key_algorithm varchar2(32767),
  cert_signature_algorithm varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_replace_certificate_authority_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_rover_node_replace_certificate_authority_details_t (
    certificate_authority_id varchar2,
    cert_key_algorithm varchar2,
    cert_signature_algorithm varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

certificate_authority_id

(required) The certificate authority id.

cert_key_algorithm

(optional) key algorithm for issuing leaf certificate.

Allowed values are: 'RSA2048', 'RSA4096', 'ECDSA_P256', 'ECDSA_P384'

cert_signature_algorithm

(optional) signature algorithm for issuing leaf certificate.

Allowed values are: 'SHA256_WITH_RSA', 'SHA384_WITH_RSA', 'SHA512_WITH_RSA', 'SHA256_WITH_ECDSA', 'SHA384_WITH_ECDSA', 'SHA512_WITH_ECDSA'

DBMS_CLOUD_OCI_ROVER_ROVER_NODE_SET_KEY_T Type

Information about the success of setting a rover node's resource principal public key.

Syntax

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

Fields

Field Description

is_successful

(required) Whether the node's resource principal public key was set correctly

DBMS_CLOUD_OCI_ROVER_SHAPE_SUMMARY_T Type

A shape of a node on a Rover device.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_shape_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  gpu_description varchar2(32767),
  gpus number,
  memory_in_g_bs number,
  networking_bandwidth_in_gbps number,
  ocpus number,
  processor_description varchar2(32767),
  shape varchar2(32767),
  usb_controller_description varchar2(32767),
  number_of_usb_controllers number,
  tags varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_shape_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_shape_summary_t (
    gpu_description varchar2,
    gpus number,
    memory_in_g_bs number,
    networking_bandwidth_in_gbps number,
    ocpus number,
    processor_description varchar2,
    shape varchar2,
    usb_controller_description varchar2,
    number_of_usb_controllers number,
    tags 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

gpu_description

(optional) A short description of the graphics processing unit (GPU) available for this shape.

gpus

(optional) The number of GPUs available for this shape.

memory_in_g_bs

(optional) The default amount of memory available for this shape, in gigabytes.

networking_bandwidth_in_gbps

(optional) The networking bandwidth available for this shape, in gigabits per second.

ocpus

(optional) The default number of OCPUs available for this shape.

processor_description

(optional) A short description of the shape's processor (CPU).

shape

(required) The name of the shape.

usb_controller_description

(optional) A short description of the USB controller available for this shape.

number_of_usb_controllers

(optional) The number of USB controllers available for this shape.

tags

(optional) The tags associated with tagSlug.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_SHAPE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_rover_shape_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_shape_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_shape_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_SHAPE_COLLECTION_T Type

Results of a listShape search. Contains both Shape items and other data.

Syntax

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

Fields

Field Description

items

(required) List of shapeSummary objects.

DBMS_CLOUD_OCI_ROVER_UPDATE_ROVER_CLUSTER_DETAILS_T Type

The information required to update a RoverCluster.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_update_rover_cluster_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  cluster_size number,
  customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
  cluster_workloads dbms_cloud_oci_rover_rover_workload_tbl,
  super_user_password varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  unlock_passphrase varchar2(32767),
  enclosure_type varchar2(32767),
  point_of_contact varchar2(32767),
  point_of_contact_phone_number varchar2(32767),
  shipping_preference varchar2(32767),
  oracle_shipping_tracking_url varchar2(32767),
  subscription_id varchar2(32767),
  shipping_vendor varchar2(32767),
  time_pickup_expected timestamp with time zone,
  is_import_requested number,
  import_compartment_id varchar2(32767),
  import_file_bucket varchar2(32767),
  data_validation_code varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_update_rover_cluster_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_update_rover_cluster_details_t (
    display_name varchar2,
    cluster_size number,
    customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
    cluster_workloads dbms_cloud_oci_rover_rover_workload_tbl,
    super_user_password varchar2,
    lifecycle_state varchar2,
    lifecycle_state_details varchar2,
    unlock_passphrase varchar2,
    enclosure_type varchar2,
    point_of_contact varchar2,
    point_of_contact_phone_number varchar2,
    shipping_preference varchar2,
    oracle_shipping_tracking_url varchar2,
    subscription_id varchar2,
    shipping_vendor varchar2,
    time_pickup_expected timestamp with time zone,
    is_import_requested number,
    import_compartment_id varchar2,
    import_file_bucket varchar2,
    data_validation_code 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

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

cluster_size

(optional) Number of nodes desired in the cluster, in standalone clusters, between 5 and 15 inclusive. In station clusters, between 15 and 30 inclusive.

customer_shipping_address

(optional)

cluster_workloads

(optional) List of existing workloads that should be provisioned on the nodes.

super_user_password

(optional) Root password for the rover cluster.

lifecycle_state

(optional) The current state of the RoverCluster.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

unlock_passphrase

(optional) Password to unlock the rover cluster.

enclosure_type

(optional) The type of enclosure rover nodes in this cluster are shipped in.

Allowed values are: 'RUGGADIZED', 'NON_RUGGADIZED'

point_of_contact

(optional) Name of point of contact for this order if customer is picking up.

point_of_contact_phone_number

(optional) Phone number of point of contact for this order if customer is picking up.

shipping_preference

(optional) Preference for device delivery.

Allowed values are: 'ORACLE_SHIPPED', 'CUSTOMER_PICKUP'

oracle_shipping_tracking_url

(optional) Tracking Url for the shipped Rover Cluster.

subscription_id

(optional) ID provided to customer after successful subscription to Rover Stations.

shipping_vendor

(optional) Shipping vendor of choice for orace to customer shipping.

time_pickup_expected

(optional) Expected date when customer wants to pickup the device if they chose customer pickup.

is_import_requested

(optional) The flag indicating that customer requests data to be imported to OCI upon Rover cluster return.

import_compartment_id

(optional) An OCID of a compartment where data will be imported to upon Rover cluster return.

import_file_bucket

(optional) Name of a bucket where files from NFS share will be imported to upon Rover cluster return.

data_validation_code

(optional) Validation code returned by data validation tool. Required for return shipping label generation if data import was requested.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_UPDATE_ROVER_ENTITLEMENT_DETAILS_T Type

Information required to update a RoverEntitlement.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_update_rover_entitlement_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  tenant_id varchar2(32767),
  requestor_name varchar2(32767),
  requestor_email varchar2(32767),
  entitlement_details varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_state_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_update_rover_entitlement_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_update_rover_entitlement_details_t (
    display_name varchar2,
    tenant_id varchar2,
    requestor_name varchar2,
    requestor_email varchar2,
    entitlement_details varchar2,
    lifecycle_state varchar2,
    lifecycle_state_details 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

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

tenant_id

(optional) tenant Id.

requestor_name

(optional) Requestor name for the entitlement.

requestor_email

(optional) Requestor email for the entitlement.

entitlement_details

(optional) Details about the entitlement.

lifecycle_state

(optional) The current state of the RoverNode.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_UPDATE_ROVER_NODE_DETAILS_T Type

The information required to update a RoverNode.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_update_rover_node_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  shape varchar2(32767),
  serial_number varchar2(32767),
  customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
  node_workloads dbms_cloud_oci_rover_rover_workload_tbl,
  super_user_password varchar2(32767),
  unlock_passphrase varchar2(32767),
  point_of_contact varchar2(32767),
  point_of_contact_phone_number varchar2(32767),
  oracle_shipping_tracking_url varchar2(32767),
  shipping_preference varchar2(32767),
  shipping_vendor varchar2(32767),
  time_pickup_expected timestamp with time zone,
  lifecycle_state varchar2(32767),
  enclosure_type varchar2(32767),
  lifecycle_state_details varchar2(32767),
  time_return_window_starts timestamp with time zone,
  time_return_window_ends timestamp with time zone,
  is_import_requested number,
  import_compartment_id varchar2(32767),
  import_file_bucket varchar2(32767),
  data_validation_code varchar2(32767),
  public_key varchar2(32767),
  certificate_authority_id varchar2(32767),
  time_cert_validity_end timestamp with time zone,
  common_name varchar2(32767),
  cert_compartment_id varchar2(32767),
  cert_key_algorithm varchar2(32767),
  cert_signature_algorithm varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_update_rover_node_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_update_rover_node_details_t (
    display_name varchar2,
    shape varchar2,
    serial_number varchar2,
    customer_shipping_address dbms_cloud_oci_rover_shipping_address_t,
    node_workloads dbms_cloud_oci_rover_rover_workload_tbl,
    super_user_password varchar2,
    unlock_passphrase varchar2,
    point_of_contact varchar2,
    point_of_contact_phone_number varchar2,
    oracle_shipping_tracking_url varchar2,
    shipping_preference varchar2,
    shipping_vendor varchar2,
    time_pickup_expected timestamp with time zone,
    lifecycle_state varchar2,
    enclosure_type varchar2,
    lifecycle_state_details varchar2,
    time_return_window_starts timestamp with time zone,
    time_return_window_ends timestamp with time zone,
    is_import_requested number,
    import_compartment_id varchar2,
    import_file_bucket varchar2,
    data_validation_code varchar2,
    public_key varchar2,
    certificate_authority_id varchar2,
    time_cert_validity_end timestamp with time zone,
    common_name varchar2,
    cert_compartment_id varchar2,
    cert_key_algorithm varchar2,
    cert_signature_algorithm 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

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

shape

(optional) The shape of workloads in the node.

serial_number

(optional) Serial number of the node.

customer_shipping_address

(optional)

node_workloads

(optional) List of existing workloads that should be provisioned on the node.

super_user_password

(optional) Root password for the rover node.

unlock_passphrase

(optional) Password to unlock the rover node.

point_of_contact

(optional) Name of point of contact for this order if customer is picking up.

point_of_contact_phone_number

(optional) Phone number of point of contact for this order if customer is picking up.

oracle_shipping_tracking_url

(optional) Tracking Url for the shipped FmsRoverNode.

shipping_preference

(optional) Preference for device delivery.

Allowed values are: 'ORACLE_SHIPPED', 'CUSTOMER_PICKUP'

shipping_vendor

(optional) Shipping vendor of choice for orace to customer shipping.

time_pickup_expected

(optional) Expected date when customer wants to pickup the device if they chose customer pickup.

lifecycle_state

(optional) The current state of the RoverNode.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

enclosure_type

(optional) The type of enclosure rover nodes in this cluster are shipped in.

Allowed values are: 'RUGGADIZED', 'NON_RUGGADIZED'

lifecycle_state_details

(optional) A property that can contain details on the lifecycle.

time_return_window_starts

(optional) Start time for the window to pickup the device from customer.

time_return_window_ends

(optional) End time for the window to pickup the device from customer.

is_import_requested

(optional) The flag indicating that customer requests data to be imported to OCI upon Rover node return.

import_compartment_id

(optional) An OCID of a compartment where data will be imported to upon Rover node return.

import_file_bucket

(optional) Name of a bucket where files from NFS share will be imported to upon Rover node return.

data_validation_code

(optional) Validation code returned by data validation tool. Required for return shipping label generation if data import was requested.

public_key

(optional) The public key of the resource principal

certificate_authority_id

(optional) The certificateAuthorityId of subordinate/intermediate certificate authority.

time_cert_validity_end

(optional) The time after which leaf certificate will invalid.

common_name

(optional) The common name for the leaf certificate.

cert_compartment_id

(optional) The compartmentId of the leaf certificate.

cert_key_algorithm

(optional) key algorithm for issuing leaf certificate.

Allowed values are: 'RSA2048', 'RSA4096', 'ECDSA_P256', 'ECDSA_P384'

cert_signature_algorithm

(optional) signature algorithm for issuing leaf certificate.

Allowed values are: 'SHA256_WITH_RSA', 'SHA384_WITH_RSA', 'SHA512_WITH_RSA', 'SHA256_WITH_ECDSA', 'SHA384_WITH_ECDSA', 'SHA512_WITH_ECDSA'

freeform_tags

(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_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),
  metadata json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2,
    metadata json_element_t
  ) 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.

Allowed values are: 'IN_PROGRESS', 'FAILED', 'CREATED', 'UPDATED'

identifier

(required) The unique identifier (OCID) of the resource that the work request affects.

entity_uri

(optional) The URI path that the user can do a GET on to access the resource metadata.

metadata

(optional) Additional information that helps to explain the resource.

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_rover_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_T Type

A description of workRequest status.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  status_details varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_rover_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_t (
    operation_type varchar2,
    status varchar2,
    status_details varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_rover_work_request_resource_tbl,
    percent_complete number,
    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: 'ADD_NODES'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'NEEDS_ATTENTION', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

status_details

(optional) The fine-grained sub-state of a work request.

id

(required) The unique identifier (OCID) of the work request.

compartment_id

(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the object was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_SUMMARY_T Type

A summary of the work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  status_details varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_rover_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    status_details varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_rover_work_request_resource_tbl,
    percent_complete number,
    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: 'ADD_NODES'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'NEEDS_ATTENTION', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

status_details

(optional) The fine-grained sub-state of a work request.

id

(required) The unique identifier (OCID) of the work request.

compartment_id

(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the object was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_rover_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_COLLECTION_T Type

Results of a workRequest search. Contains both workRequest items and other data.

Syntax

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

Fields

Field Description

items

(required) List of workRequests.

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_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_rover_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_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 occurred. Error codes are listed on (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm)

message

(required) A human readable description of the issue encountered.

l_timestamp

(required) The time the error occurred. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_rover_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_ERROR_COLLECTION_T Type

Collection of work request errors.

Syntax

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

Fields

Field Description

items

(required) Work request errors.

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_LOG_T Type

A log message from the execution of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_work_request_log_t FORCE AUTHID CURRENT_USER IS OBJECT (
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_log_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_rover_work_request_log_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) Human-readable log message.

l_timestamp

(required) The time the log message was written. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_LOG_TBL Type

Nested table type of dbms_cloud_oci_rover_work_request_log_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_rover_work_request_log_tbl FORCE IS TABLE OF (dbms_cloud_oci_rover_work_request_log_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_ROVER_WORK_REQUEST_LOG_COLLECTION_T Type

Collection of work request logs.

Syntax

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

Fields

Field Description

items

(required) Work request logs.

Was this article helpful?