Tenant Manager Control Plane Common Types
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_VARCHAR2_TBL Type
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ACTIVATE_ORDER_DETAILS_T Type
The parameters for activating an order subscription in a tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_activate_order_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_activate_order_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_activate_order_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Tenant ID to activate the order. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ASSIGNED_SUBSCRIPTION_T Type
Assigned subscription type, which carries shared properties for any assigned subscription version.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_version varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
service_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) The entity version of the subscription, whether V1 (the legacy schema version), or V2 (the latest 20230401 API version). Allowed values are: 'V1', 'V2' |
|
(required) The Oracle ID (OCID) of the subscription. |
|
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID. |
|
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'. |
|
(required) The date and time of creation, as described in RFC 3339, section 14.29. |
|
(required) The date and time of update, as described in RFC 3339, section 14.29. |
|
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ASSIGNED_SUBSCRIPTION_SUMMARY_T Type
Assigned subscription summary type, which carries shared properties for any assigned subscription summary version.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_version varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
service_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) The entity version of the subscription, whether V1 (the legacy schema version), or V2 (the latest 20230401 API version). Allowed values are: 'V1', 'V2' |
|
(required) The Oracle ID (OCID) of the subscription. |
|
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID. |
|
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'. |
|
(required) The date and time of creation, as described in RFC 3339, section 14.29. |
|
(required) The date and time of update, as described in RFC 3339, section 14.29. |
|
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ASSIGNED_SUBSCRIPTION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ASSIGNED_SUBSCRIPTION_COLLECTION_T Type
Collection of assigned subscription summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing assigned subscription summary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ASSIGNED_SUBSCRIPTION_LINE_ITEM_SUMMARY_T Type
Summary of the line item in an assigned subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
product_code varchar2(32767),
quantity number,
billing_model varchar2(32767),
time_started timestamp with time zone,
time_ended timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_t (
id varchar2,
product_code varchar2,
quantity number,
billing_model varchar2,
time_started timestamp with time zone,
time_ended timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Subscription line item identifier. |
|
(required) Product code. |
|
(required) Product number. |
|
(required) Billing model supported by the associated line item. Allowed values are: 'COMMITMENT', 'PAYGO', 'PROMOTION' |
|
(required) The time the subscription item and associated products should start. An RFC 3339 formatted date and time string. |
|
(required) The time the subscription item and associated products should end. An RFC 3339 formatted date and time string. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ASSIGNED_SUBSCRIPTION_LINE_ITEM_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ASSIGNED_SUBSCRIPTION_LINE_ITEM_COLLECTION_T Type
Collection of line item summaries in an assigned subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_line_item_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing line item summaries in an assigned subscription. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_AVAILABLE_REGION_SUMMARY_T Type
The summary of region availability for a subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
region_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_t (
region_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Region availability for the subscription. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_AVAILABLE_REGION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_AVAILABLE_REGION_COLLECTION_T Type
List of available regions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_available_region_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_available_region_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_available_region_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_available_region_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing available region items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_SKU_T Type
SKU information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_t FORCE AUTHID CURRENT_USER IS OBJECT (
sku varchar2(32767),
quantity number,
description varchar2(32767),
gsi_order_line_id varchar2(32767),
license_part_description varchar2(32767),
metric_name varchar2(32767),
is_base_service_component number,
is_additional_instance number,
start_date timestamp with time zone,
end_date timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_t (
sku varchar2,
quantity number,
description varchar2,
gsi_order_line_id varchar2,
license_part_description varchar2,
metric_name varchar2,
is_base_service_component number,
is_additional_instance number,
start_date timestamp with time zone,
end_date timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Stock Keeping Unit (SKU) ID. |
|
(optional) Quantity of the stock units. |
|
(optional) Description of the stock units. |
|
(optional) Sales order line identifier. |
|
(optional) Description of the covered product belonging to this SKU. |
|
(optional) Base metric for billing the service. |
|
(optional) Specifies if the SKU is considered as a parent or child. |
|
(optional) Specifies if an additional test instance can be provisioned by the SaaS application. |
|
(optional) Date and time when the SKU was created. |
|
(optional) Date and time when the SKU ended. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_PROMOTION_T Type
Promotion information for a subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_promotion_t FORCE AUTHID CURRENT_USER IS OBJECT (
duration number,
duration_unit varchar2(32767),
amount number,
status varchar2(32767),
is_intent_to_pay number,
currency_unit varchar2(32767),
time_started timestamp with time zone,
time_expired timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_promotion_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_promotion_t (
duration number,
duration_unit varchar2,
amount number,
status varchar2,
is_intent_to_pay number,
currency_unit varchar2,
time_started timestamp with time zone,
time_expired timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Specifies how long the promotion related to the subscription, if any, is valid in duration units. |
|
(optional) Unit for the duration. |
|
(optional) If a subscription is present, indicates the total amount of promotional subscription credits. |
|
(optional) If a subscription is present, indicates the current status of the subscription promotion. Allowed values are: 'INITIALIZED', 'ACTIVE', 'EXPIRED' |
|
(optional) Speficies whether or not the customer intends to pay after the promotion has expired. |
|
(optional) Currency unit associated with the promotion. |
|
(optional) Date and time when the promotion starts. |
|
(optional) Date and time when the promotion ends. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_SKU_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_PROMOTION_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_promotion_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_promotion_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_promotion_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLASSIC_ASSIGNED_SUBSCRIPTION_T Type
Assigned subscription information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_t (
lifecycle_state varchar2(32767),
classic_subscription_id varchar2(32767),
is_classic_subscription number,
region_assignment varchar2(32767),
skus dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_tbl,
order_ids dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
program_type varchar2(32767),
customer_country_code varchar2(32767),
cloud_amount_currency varchar2(32767),
csi_number varchar2(32767),
subscription_tier varchar2(32767),
is_government_subscription number,
promotion dbms_cloud_oci_tenant_manager_control_plane_promotion_tbl,
purchase_entitlement_id varchar2(32767),
start_date timestamp with time zone,
end_date timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
classic_subscription_id varchar2,
is_classic_subscription number,
region_assignment varchar2,
skus dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_tbl,
order_ids dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
program_type varchar2,
customer_country_code varchar2,
cloud_amount_currency varchar2,
csi_number varchar2,
subscription_tier varchar2,
is_government_subscription number,
promotion dbms_cloud_oci_tenant_manager_control_plane_promotion_tbl,
purchase_entitlement_id varchar2,
start_date timestamp with time zone,
end_date timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_t
type.
Fields
Field | Description |
---|---|
|
(required) Lifecycle state of the subscription. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED' |
|
(required) Subscription ID. |
|
(optional) Specifies whether or not the subscription is legacy. |
|
(optional) Region for the subscription. |
|
(optional) List of SKUs linked to the subscription. |
|
(optional) List of subscription order OCIDs that contributed to this subscription. |
|
(optional) Specifies any program that is associated with the subscription. |
|
(optional) The country code for the customer associated with the subscription. |
|
(optional) The currency code for the customer associated with the subscription. |
|
(optional) Customer service identifier for the customer associated with the subscription. |
|
(optional) Tier for the subscription, whether a free promotion subscription or a paid subscription. |
|
(optional) Specifies whether or not the subscription is a government subscription. |
|
(optional) List of promotions related to the subscription. |
|
(optional) Purchase entitlement ID associated with the subscription. |
|
(optional) Subscription start time. |
|
(optional) Subscription end time. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLASSIC_ASSIGNED_SUBSCRIPTION_SUMMARY_T Type
Summary of assigned subscription information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t (
lifecycle_state varchar2(32767),
classic_subscription_id varchar2(32767),
is_classic_subscription number,
region_assignment varchar2(32767),
start_date timestamp with time zone,
end_date timestamp with time zone,
csi_number varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_summary_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
classic_subscription_id varchar2,
is_classic_subscription number,
region_assignment varchar2,
start_date timestamp with time zone,
end_date timestamp with time zone,
csi_number varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_classic_assigned_subscription_summary_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t
type.
Fields
Field | Description |
---|---|
|
(required) Lifecycle state of the subscription. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED' |
|
(required) Subscription ID. |
|
(optional) Specifies whether or not the subscription is legacy. |
|
(optional) Region for the subscription. |
|
(optional) Subscription start time. |
|
(optional) Subscription end time. |
|
(optional) Customer service identifier for the customer associated with the subscription. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_T Type
Base subscription type, which carries shared properties for any subscription version.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_version varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
service_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) The entity version of the subscription, whether V1 (the legacy schema version), or V2 (the latest 20230401 API version). Allowed values are: 'V1', 'V2' |
|
(required) The Oracle ID (OCID) of the subscription. |
|
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID. |
|
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'. |
|
(required) The date and time of creation, as described in RFC 3339, section 14.29. |
|
(required) The date and time of update, as described in RFC 3339, section 14.29. |
|
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLASSIC_SUBSCRIPTION_T Type
Subscription information for the compartmentId. Only root compartments are allowed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_subscription_t (
classic_subscription_id varchar2(32767),
is_classic_subscription number,
payment_model varchar2(32767),
region_assignment varchar2(32767),
lifecycle_state varchar2(32767),
skus dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_tbl,
program_type varchar2(32767),
customer_country_code varchar2(32767),
cloud_amount_currency varchar2(32767),
csi_number varchar2(32767),
subscription_tier varchar2(32767),
is_government_subscription number,
promotion dbms_cloud_oci_tenant_manager_control_plane_promotion_tbl,
purchase_entitlement_id varchar2(32767),
start_date timestamp with time zone,
end_date timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
classic_subscription_id varchar2,
is_classic_subscription number,
payment_model varchar2,
region_assignment varchar2,
lifecycle_state varchar2,
skus dbms_cloud_oci_tenant_manager_control_plane_subscription_sku_tbl,
program_type varchar2,
customer_country_code varchar2,
cloud_amount_currency varchar2,
csi_number varchar2,
subscription_tier varchar2,
is_government_subscription number,
promotion dbms_cloud_oci_tenant_manager_control_plane_promotion_tbl,
purchase_entitlement_id varchar2,
start_date timestamp with time zone,
end_date timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_subscription_t
type.
Fields
Field | Description |
---|---|
|
(required) Classic subscription ID. |
|
(optional) Specifies whether or not the subscription is from classic systems. |
|
(optional) The pay model of the subscription, such as 'Pay as you go' or 'Monthly'. |
|
(optional) Region for the subscription. |
|
(required) Lifecycle state of the subscription. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) List of SKUs linked to this subscription. |
|
(optional) Specifies any program that is associated with the subscription. |
|
(optional) The country code for the customer associated with the subscription. |
|
(optional) The currency code for the customer associated with the subscription. |
|
(optional) Customer service identifier for the customer associated with the subscription. |
|
(optional) Tier for the subscription, whether a free promotion subscription or a paid subscription. |
|
(optional) Specifies whether or not the subscription is a government subscription. |
|
(optional) List of promotions related to the subscription. |
|
(optional) Purchase entitlement ID associated with the subscription. |
|
(optional) Subscription start time. |
|
(optional) Subscription end time. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_SUMMARY_T Type
Base subscription summary type, which carries shared properties for any subscription summary version.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_version varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
service_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) The entity version of the subscription, whether V1 (the legacy schema version), or V2 (the latest 20230401 API version). Allowed values are: 'V1', 'V2' |
|
(required) The Oracle ID (OCID) of the subscription. |
|
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID. |
|
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'. |
|
(required) The date and time of creation, as described in RFC 3339, section 14.29. |
|
(required) The date and time of update, as described in RFC 3339, section 14.29. |
|
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLASSIC_SUBSCRIPTION_SUMMARY_T Type
Summary of subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t (
classic_subscription_id varchar2(32767),
is_classic_subscription number,
payment_model varchar2(32767),
region_assignment varchar2(32767),
lifecycle_state varchar2(32767),
start_date timestamp with time zone,
end_date timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_summary_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
classic_subscription_id varchar2,
is_classic_subscription number,
payment_model varchar2,
region_assignment varchar2,
lifecycle_state varchar2,
start_date timestamp with time zone,
end_date timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_classic_subscription_summary_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t
type.
Fields
Field | Description |
---|---|
|
(required) Classic subscription ID. |
|
(optional) Specifies whether or not the subscription is from classic systems. |
|
(optional) The pay model of the subscription, such as 'Pay as you go' or 'Monthly'. |
|
(optional) Region for the subscription. |
|
(optional) Lifecycle state of the subscription. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Subscription start time. |
|
(optional) Subscription end time. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLOUD_ASSIGNED_SUBSCRIPTION_T Type
Assigned subscription information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_t (
subscription_number varchar2(32767),
currency_code varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
subscription_number varchar2,
currency_code varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_t
type.
Fields
Field | Description |
---|---|
|
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation. |
|
(required) Currency code. For example USD, MXN. |
|
(required) Lifecycle state of the subscription. Allowed values are: 'NEEDS_ATTENTION', 'ACTIVE', 'INACTIVE', 'FAILED', 'CREATING' |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLOUD_ASSIGNED_SUBSCRIPTION_SUMMARY_T Type
Summary of assigned subscription information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t (
subscription_number varchar2(32767),
currency_code varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_summary_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
subscription_number varchar2,
currency_code varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_cloud_assigned_subscription_summary_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_assigned_subscription_summary_t
type.
Fields
Field | Description |
---|---|
|
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation. |
|
(required) Currency code. For example USD, MXN. |
|
(required) Lifecycle state of the subscription. Allowed values are: 'NEEDS_ATTENTION', 'ACTIVE', 'INACTIVE', 'FAILED', 'CREATING' |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLOUD_SUBSCRIPTION_T Type
Subscription information for compartment ID. Only root compartments are allowed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_subscription_t (
subscription_number varchar2(32767),
currency_code varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
subscription_number varchar2,
currency_code varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_subscription_t
type.
Fields
Field | Description |
---|---|
|
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation. |
|
(required) Currency code. For example USD, MXN. |
|
(required) Lifecycle state of the subscription. Allowed values are: 'NEEDS_ATTENTION', 'ACTIVE', 'INACTIVE', 'FAILED', 'CREATING' |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CLOUD_SUBSCRIPTION_SUMMARY_T Type
Summary of subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t (
subscription_number varchar2(32767),
currency_code varchar2(32767),
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_summary_t (
entity_version varchar2,
id varchar2,
compartment_id varchar2,
service_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
subscription_number varchar2,
currency_code varchar2,
lifecycle_state varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_tenant_manager_control_plane_cloud_subscription_summary_t
is a subtype of the dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t
type.
Fields
Field | Description |
---|---|
|
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation. |
|
(required) Currency code. For example USD, MXN. |
|
(required) Lifecycle state of the subscription. Allowed values are: 'NEEDS_ATTENTION', 'ACTIVE', 'INACTIVE', 'FAILED', 'CREATING' |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CREATE_CHILD_TENANCY_DETAILS_T Type
The parameters for creating a child tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_create_child_tenancy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
tenancy_name varchar2(32767),
home_region varchar2(32767),
admin_email varchar2(32767),
policy_name varchar2(32767),
governance_status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_child_tenancy_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_child_tenancy_details_t (
compartment_id varchar2,
tenancy_name varchar2,
home_region varchar2,
admin_email varchar2,
policy_name varchar2,
governance_status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The tenancy ID of the parent tenancy. |
|
(required) The tenancy name to use for the child tenancy. |
|
(required) The home region to use for the child tenancy. This must be a region where the parent tenancy is subscribed. |
|
(required) Email address of the child tenancy administrator. |
|
(optional) The name to use for the administrator policy in the child tenancy. Must contain only letters and underscores. |
|
(optional) The governance status of the child tenancy. Allowed values are: 'OPTED_IN', 'OPTED_OUT' |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CREATE_DOMAIN_DETAILS_T Type
The parameters for creating a domain.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_create_domain_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
domain_name varchar2(32767),
subscription_email varchar2(32767),
is_governance_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_domain_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_domain_details_t (
compartment_id varchar2,
domain_name varchar2,
subscription_email varchar2,
is_governance_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the tenancy. |
|
(required) The domain name. |
|
(optional) Email address to be used to notify the user, and that the ONS subscription will be created with. |
|
(optional) Indicates whether governance should be enabled for this domain. Defaults to false. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CREATE_DOMAIN_GOVERNANCE_DETAILS_T Type
The parameters for creating a domain governance entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_create_domain_governance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
domain_id varchar2(32767),
subscription_email varchar2(32767),
ons_topic_id varchar2(32767),
ons_subscription_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_domain_governance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_domain_governance_details_t (
compartment_id varchar2,
domain_id varchar2,
subscription_email varchar2,
ons_topic_id varchar2,
ons_subscription_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the tenancy. |
|
(required) OCID of the domain. |
|
(required) Email address to be used to notify the user, and that the ONS subscription will be created with. |
|
(required) The ONS topic associated with this domain governance entity. |
|
(required) The ONS subscription associated with this domain governance entity. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CREATE_SENDER_INVITATION_DETAILS_T Type
The parameters for creating a sender invitation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_create_sender_invitation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
recipient_tenancy_id varchar2(32767),
recipient_email_address varchar2(32767),
display_name varchar2(32767),
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_sender_invitation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_sender_invitation_details_t (
compartment_id varchar2,
recipient_tenancy_id varchar2,
recipient_email_address varchar2,
display_name varchar2,
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the sender tenancy. |
|
(required) OCID of the recipient tenancy. |
|
(optional) Email address of the recipient. |
|
(optional) A user-created name to describe the invitation. Avoid entering confidential information. |
|
(optional) The list of subjects this invitation contains. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_CREATE_SUBSCRIPTION_MAPPING_DETAILS_T Type
CreateSubscriptionMappingDetails contains subscription and compartment identified by the tenancy, and OCID information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_create_subscription_mapping_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
subscription_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_subscription_mapping_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_create_subscription_mapping_details_t (
compartment_id varchar2,
subscription_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the compartment. Always a tenancy OCID. |
|
(required) OCID of Subscription. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_T Type
The domain model that is associated with a tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
domain_name varchar2(32767),
owner_id varchar2(32767),
lifecycle_state varchar2(32767),
status varchar2(32767),
txt_record 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_tenant_manager_control_plane_domain_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_t (
id varchar2,
domain_name varchar2,
owner_id varchar2,
lifecycle_state varchar2,
status varchar2,
txt_record 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 |
---|---|
|
(required) The OCID of the domain. |
|
(required) The domain name. |
|
(required) The OCID of the tenancy that has started the registration process for this domain. |
|
(required) Lifecycle state of the domain. Allowed values are: 'ACTIVE', 'DELETED', 'FAILED' |
|
(required) Status of the domain. Allowed values are: 'PENDING', 'RELEASING', 'RELEASED', 'EXPIRING', 'REVOKING', 'REVOKED', 'ACTIVE', 'FAILED' |
|
(required) The code that the owner of the domain will need to add as a TXT record to their domain. |
|
(optional) Date-time when this domain was created. An RFC 3339-formatted date and time string. |
|
(optional) Date-time when this domain was last updated. An RFC 3339-formatted date and time string. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_SUMMARY_T Type
The summary of a domain owned by a tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
domain_name varchar2(32767),
owner_id varchar2(32767),
lifecycle_state varchar2(32767),
status varchar2(32767),
txt_record 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_tenant_manager_control_plane_domain_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_summary_t (
id varchar2,
domain_name varchar2,
owner_id varchar2,
lifecycle_state varchar2,
status varchar2,
txt_record 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 |
---|---|
|
(required) OCID of the domain. |
|
(required) The domain name. |
|
(required) The OCID of the tenancy that has started the registration process for this domain. |
|
(required) The lifecycle state of the domain. |
|
(required) Status of the domain. |
|
(required) The code that the owner of the domain will need to add as a TXT record to their domain. |
|
(optional) Date-time when this domain was created. An RFC 3339-formatted date and time string. |
|
(optional) Date-time when this domain was last updated. An RFC 3339-formatted date and time string. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_domain_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_domain_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_COLLECTION_T Type
Result of a query request for a list of domains. Contains DomainSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_domain_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_domain_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing DomainSummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_GOVERNANCE_T Type
The model for a domain governance entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_governance_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
owner_id varchar2(32767),
domain_id varchar2(32767),
lifecycle_state varchar2(32767),
is_governance_enabled number,
subscription_email varchar2(32767),
ons_topic_id varchar2(32767),
ons_subscription_id 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_tenant_manager_control_plane_domain_governance_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_governance_t (
id varchar2,
owner_id varchar2,
domain_id varchar2,
lifecycle_state varchar2,
is_governance_enabled number,
subscription_email varchar2,
ons_topic_id varchar2,
ons_subscription_id 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 |
---|---|
|
(required) The OCID of the domain governance entity. |
|
(required) The OCID of the tenancy that owns this domain governance entity. |
|
(required) The OCID of the domain associated with this domain governance entity. |
|
(required) Lifecycle state of the domain governance entity. Allowed values are: 'ACTIVE', 'INACTIVE' |
|
(optional) Indicates whether governance is enabled for this domain. |
|
(optional) Email address to be used to notify the user, and that the ONS subscription will be created with. |
|
(required) The ONS topic associated with this domain governance entity. |
|
(required) The ONS subscription associated with this domain governance entity. |
|
(optional) Date-time when this domain governance was created. An RFC 3339-formatted date and time string. |
|
(optional) Date-time when this domain governance was last updated. An RFC 3339-formatted date and time string. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_GOVERNANCE_SUMMARY_T Type
The summary of a domain govenance entity owned by a tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_governance_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
owner_id varchar2(32767),
domain_id varchar2(32767),
lifecycle_state varchar2(32767),
is_governance_enabled number,
subscription_email varchar2(32767),
ons_topic_id varchar2(32767),
ons_subscription_id 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_tenant_manager_control_plane_domain_governance_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_governance_summary_t (
id varchar2,
owner_id varchar2,
domain_id varchar2,
lifecycle_state varchar2,
is_governance_enabled number,
subscription_email varchar2,
ons_topic_id varchar2,
ons_subscription_id 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 |
---|---|
|
(required) The OCID of the domain governance entity. |
|
(required) The OCID of the tenancy that owns this domain governance entity. |
|
(required) The OCID of the domain associated with this domain governance entity. |
|
(required) The lifecycle state of the domain governance entity. |
|
(required) Indicates whether governance is enabled for this domain. |
|
(optional) Email address to be used to notify the user, and that the ONS subscription will be created with. |
|
(required) The ONS topic associated with this domain governance entity. |
|
(required) The ONS subscription associated with this domain governance entity. |
|
(optional) Date-time when this domain governance was created. An RFC 3339-formatted date and time string. |
|
(optional) Date-time when this domain governance was last updated. An RFC 3339-formatted date and time string. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_GOVERNANCE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_domain_governance_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_governance_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_domain_governance_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_DOMAIN_GOVERNANCE_COLLECTION_T Type
Result of a query request for a list of domain governance entities. Contains DomainGovernanceSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_domain_governance_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_domain_governance_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_governance_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_domain_governance_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_domain_governance_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing DomainGovernanceSummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ERROR_T Type
Error information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A short error code that defines the error, meant for programmatic parsing. |
|
(required) A human-readable error string. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_LINK_T Type
A link between a parent tenancy and a child tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_link_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
parent_tenancy_id varchar2(32767),
child_tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_terminated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_link_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_link_t (
id varchar2,
parent_tenancy_id varchar2,
child_tenancy_id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_terminated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the link. |
|
(required) OCID of the parent tenancy. |
|
(required) OCID of the child tenancy. |
|
(optional) Lifecycle state of the link. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'FAILED', 'TERMINATED' |
|
(required) Date-time when this link was created. |
|
(optional) Date-time when this link was last updated. |
|
(optional) Date-time when this link was terminated. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_LINK_SUMMARY_T Type
The summary of a link between a parent tenancy and a child tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_link_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
parent_tenancy_id varchar2(32767),
child_tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_terminated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_link_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_link_summary_t (
id varchar2,
parent_tenancy_id varchar2,
child_tenancy_id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_terminated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the link. |
|
(required) OCID of the parent tenancy. |
|
(required) OCID of the child tenancy. |
|
(optional) Lifecycle state of the link. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'FAILED', 'TERMINATED' |
|
(required) Date-time when this link was created |
|
(optional) Date-time when this link was last updated. |
|
(optional) Date-time when this link was terminated. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_LINK_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_link_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_link_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_link_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_LINK_COLLECTION_T Type
Result of a query request for a list of links. Contains Link items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_link_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_link_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_link_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_link_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_link_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing LinkSummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SKU_T Type
A single subscription SKU.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_sku_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_number varchar2(32767),
name varchar2(32767),
quantity number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sku_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sku_t (
l_number varchar2,
name varchar2,
quantity number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) SKU number. |
|
(optional) SKU name. |
|
(optional) SKU quantity. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SKU_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_sku_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_sku_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_sku_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_INFO_T Type
A single subscription's details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
spm_subscription_id varchar2(32767),
service varchar2(32767),
start_date timestamp with time zone,
end_date timestamp with time zone,
skus dbms_cloud_oci_tenant_manager_control_plane_sku_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_info_t (
spm_subscription_id varchar2,
service varchar2,
start_date timestamp with time zone,
end_date timestamp with time zone,
skus dbms_cloud_oci_tenant_manager_control_plane_sku_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Subscription ID. |
|
(required) Subscription service name. |
|
(required) Subscription start date. An RFC 3339-formatted date and time string. |
|
(required) Subscription end date. An RFC 3339-formatted date and time string. |
|
(required) List of SKUs the subscription contains. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_INFO_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_subscription_info_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_info_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_subscription_info_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORDER_T Type
Order details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_order_t FORCE AUTHID CURRENT_USER IS OBJECT (
order_number varchar2(32767),
data_center_region varchar2(32767),
admin_email varchar2(32767),
order_state varchar2(32767),
subscriptions dbms_cloud_oci_tenant_manager_control_plane_subscription_info_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_order_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_order_t (
order_number varchar2,
data_center_region varchar2,
admin_email varchar2,
order_state varchar2,
subscriptions dbms_cloud_oci_tenant_manager_control_plane_subscription_info_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Immutable and unique order number holding customer subscription information. |
|
(optional) Order's data center region. |
|
(required) Email address of the administrator who owns the subscription. |
|
(required) State of the order. |
|
(required) Array of subscriptions associated with the order. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_T Type
An organization entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
parent_name varchar2(32767),
default_ucm_subscription_id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
parent_name varchar2,
default_ucm_subscription_id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the organization. |
|
(optional) A display name for the organization. Avoid entering confidential information. |
|
(required) OCID of the compartment containing the organization. Always a tenancy OCID. |
|
(optional) The name of the tenancy that is the organization parent. |
|
(required) OCID of the default Universal Credits Model subscription. Any tenancy joining the organization will automatically get assigned this subscription, if a subscription is not explictly assigned. |
|
(required) Lifecycle state of the organization. Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED' |
|
(required) Date and time when the organization was created. |
|
(optional) Date and time when the organization was last updated. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_SUMMARY_T Type
An organization entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
parent_name varchar2(32767),
default_ucm_subscription_id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
parent_name varchar2,
default_ucm_subscription_id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the organization. |
|
(optional) A display name for the organization. Avoid entering confidential information. |
|
(required) OCID of the compartment containing the organization. Always a tenancy OCID. |
|
(optional) The name of the tenancy that is the organization parent. |
|
(required) OCID of the default Universal Credits Model subscription. Any tenancy joining the organization will automatically get assigned this subscription, if a subscription is not explictly assigned. |
|
(required) Lifecycle state of the organization. |
|
(required) Date and time when the organization was created. |
|
(optional) Date and time when the organization was last updated. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_organization_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_organization_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_COLLECTION_T Type
Result of a query request for a list of organizations. Contains OrganizationSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_organization_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_organization_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing OrganizationSummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_TENANCY_T Type
The information about the organization tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenancy_id varchar2(32767),
name varchar2(32767),
lifecycle_state varchar2(32767),
role varchar2(32767),
time_joined timestamp with time zone,
time_left timestamp with time zone,
is_approved_for_transfer number,
governance_status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_t (
tenancy_id varchar2,
name varchar2,
lifecycle_state varchar2,
role varchar2,
time_joined timestamp with time zone,
time_left timestamp with time zone,
is_approved_for_transfer number,
governance_status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the tenancy. |
|
(optional) Name of the tenancy. |
|
(optional) Lifecycle state of the organization tenancy. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'DELETED', 'FAILED', 'DELETING' |
|
(optional) Role of the organization tenancy. Allowed values are: 'PARENT', 'CHILD', 'NONE' |
|
(optional) Date and time when the tenancy joined the organization. |
|
(optional) Date and time when the tenancy left the organization. |
|
(optional) Parameter to indicate the tenancy is approved for transfer to another organization. |
|
(required) The governance status of the tenancy. Allowed values are: 'OPTED_IN', 'OPTED_OUT' |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_TENANCY_SUMMARY_T Type
An organization tenancy summary entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenancy_id varchar2(32767),
name varchar2(32767),
lifecycle_state varchar2(32767),
role varchar2(32767),
time_joined timestamp with time zone,
time_left timestamp with time zone,
is_approved_for_transfer number,
governance_status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_t (
tenancy_id varchar2,
name varchar2,
lifecycle_state varchar2,
role varchar2,
time_joined timestamp with time zone,
time_left timestamp with time zone,
is_approved_for_transfer number,
governance_status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the tenancy. |
|
(optional) Name of the tenancy. |
|
(optional) Lifecycle state of the organization tenancy. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'DELETED', 'FAILED', 'DELETING' |
|
(optional) Role of the organization tenancy. Allowed values are: 'PARENT', 'CHILD', 'NONE' |
|
(optional) Date and time when the tenancy joined the organization. |
|
(optional) Date and time when the tenancy left the organization. |
|
(optional) Parameter to indicate the tenancy is approved for transfer to another organization. |
|
(required) The governance status of the tenancy. Allowed values are: 'OPTED_IN', 'OPTED_OUT' |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_TENANCY_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_ORGANIZATION_TENANCY_COLLECTION_T Type
Result of a query request for a list of organization tenancies. Contains OrganizationTenancySummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_organization_tenancy_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing OrganizationTenancySummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_RECIPIENT_INVITATION_T Type
The invitation model that the recipient owns.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
sender_invitation_id varchar2(32767),
sender_tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
status varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_t (
id varchar2,
compartment_id varchar2,
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
sender_invitation_id varchar2,
sender_tenancy_id varchar2,
lifecycle_state varchar2,
status varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address 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 |
---|---|
|
(required) OCID of the recipient invitation. |
|
(required) OCID of the recipient tenancy. |
|
(required) The list of subjects the invitation contains. |
|
(required) OCID of the corresponding sender invitation. |
|
(required) OCID of the sender tenancy. |
|
(required) Lifecycle state of the recipient invitation. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'FAILED', 'TERMINATED' |
|
(required) Status of the recipient invitation. Allowed values are: 'PENDING', 'CANCELED', 'ACCEPTED', 'IGNORED', 'EXPIRED', 'FAILED' |
|
(optional) A user-created name to describe the invitation. Avoid entering confidential information. |
|
(required) Date and time when the recipient invitation was created. |
|
(optional) Date and time when the recipient invitation was last updated. |
|
(optional) Email address of the recipient. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_RECIPIENT_INVITATION_SUMMARY_T Type
The summary of the invitation model that the recipient owns.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
sender_invitation_id varchar2(32767),
sender_tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
status varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
sender_invitation_id varchar2,
sender_tenancy_id varchar2,
lifecycle_state varchar2,
status varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address 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 |
---|---|
|
(required) OCID of the recipient invitation. |
|
(required) OCID of the recipient tenancy. |
|
(required) A user-created name to describe the invitation. Avoid entering confidential information. |
|
(required) The list of subjects the invitation contains. |
|
(required) OCID of the corresponding sender invitation. |
|
(required) OCID of the sender tenancy. |
|
(required) Lifecycle state of the recipient invitation. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'FAILED', 'TERMINATED' |
|
(required) Status of the recipient invitation. Allowed values are: 'PENDING', 'CANCELED', 'ACCEPTED', 'IGNORED', 'EXPIRED', 'FAILED' |
|
(required) Date and time when the recipient invitation was created. |
|
(optional) Date and time when the recipient invitation was last updated. |
|
(optional) Email address of the recipient. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_RECIPIENT_INVITATION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_RECIPIENT_INVITATION_COLLECTION_T Type
Result of a query request for a list of recipient invitations. Contains RecipientInvitationSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_recipient_invitation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing RecipientInvitationSummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_REVIVE_WORKFLOW_INSTANCE_DETAILS_T Type
The parameters for reviving failed workflow
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_revive_workflow_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
workflow_instance_id varchar2(32767),
workflow_instance_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_revive_workflow_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_revive_workflow_instance_details_t (
workflow_instance_id varchar2,
workflow_instance_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Id of failed workflow |
|
(optional) Service specific workflow instance name |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SENDER_INVITATION_T Type
The invitation model that the sender owns.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
recipient_invitation_id varchar2(32767),
recipient_tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
status varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_t (
id varchar2,
compartment_id varchar2,
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
recipient_invitation_id varchar2,
recipient_tenancy_id varchar2,
lifecycle_state varchar2,
status varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address 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 |
---|---|
|
(required) OCID of the sender invitation. |
|
(required) OCID of the sender tenancy. |
|
(required) The list of subjects the invitation contains. |
|
(optional) OCID of the corresponding recipient invitation. |
|
(required) OCID of the recipient tenancy. |
|
(required) Lifecycle state of the sender invitation. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'FAILED', 'TERMINATED' |
|
(required) Status of the sender invitation. Allowed values are: 'PENDING', 'CANCELED', 'ACCEPTED', 'EXPIRED', 'FAILED' |
|
(optional) A user-created name to describe the invitation. Avoid entering confidential information. |
|
(required) Date and time when the sender invitation was created. |
|
(optional) Date and time when the sender invitation was last updated. |
|
(optional) Email address of the recipient. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SENDER_INVITATION_SUMMARY_T Type
The summary of the invitation model that the sender owns.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
recipient_invitation_id varchar2(32767),
recipient_tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
status varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
subjects dbms_cloud_oci_tenant_manager_control_plane_varchar2_tbl,
recipient_invitation_id varchar2,
recipient_tenancy_id varchar2,
lifecycle_state varchar2,
status varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
recipient_email_address 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 |
---|---|
|
(required) OCID of the sender invitation. |
|
(required) OCID of the sender tenancy. |
|
(required) A user-created name to describe the invitation. Avoid entering confidential information. |
|
(required) The list of subjects the invitation contains. |
|
(optional) OCID of the corresponding recipient invitation. |
|
(required) OCID of the recipient tenancy. |
|
(required) Lifecycle state of the sender invitation. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'FAILED', 'TERMINATED' |
|
(required) Status of the sender invitation. Allowed values are: 'PENDING', 'CANCELED', 'ACCEPTED', 'EXPIRED', 'FAILED' |
|
(required) Date and time when the sender invitation was created. |
|
(optional) Date and time when the sender invitation was last updated. |
|
(optional) Email address of the recipient. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SENDER_INVITATION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SENDER_INVITATION_COLLECTION_T Type
Result of a query request for a list of sender invitations. Contains SenderInvitationSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_sender_invitation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing SenderInvitationSummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_COLLECTION_T Type
List of subscription summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_subscription_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing subscription summary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_LINE_ITEM_SUMMARY_T Type
Summary of line items in a subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
product_code varchar2(32767),
quantity number,
billing_model varchar2(32767),
time_started timestamp with time zone,
time_ended timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_t (
id varchar2,
product_code varchar2,
quantity number,
billing_model varchar2,
time_started timestamp with time zone,
time_ended timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Subscription line item identifier. |
|
(required) Product code. |
|
(required) Product number. |
|
(required) Billing model supported by the associated line item. Allowed values are: 'COMMITMENT', 'PAYGO', 'PROMOTION' |
|
(required) The time the subscription item and associated products should start. An RFC 3339 formatted date and time string. |
|
(required) The time the subscription item and associated products should end. An RFC 3339 formatted date and time string. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_LINE_ITEM_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_LINE_ITEM_COLLECTION_T Type
Collection of line item summaries in a subscription.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_subscription_line_item_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing line item summaries in a subscription. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_MAPPING_T Type
Subscription mapping information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
subscription_id varchar2(32767),
compartment_id varchar2(32767),
is_explicitly_assigned number,
lifecycle_state varchar2(32767),
time_terminated timestamp with time zone,
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_t (
id varchar2,
subscription_id varchar2,
compartment_id varchar2,
is_explicitly_assigned number,
lifecycle_state varchar2,
time_terminated timestamp with time zone,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the mapping between subscription and compartment identified by the tenancy. |
|
(required) OCID of the subscription. |
|
(required) OCID of the compartment. Always a tenancy OCID. |
|
(required) Denotes if the subscription is explicity assigned to the root compartment or tenancy. |
|
(required) Lifecycle state of the subscriptionMapping. Allowed values are: 'CREATING', 'ACTIVE', 'INACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Date-time when subscription mapping was terminated. |
|
(required) Date-time when subscription mapping was created. |
|
(required) Date-time when subscription mapping was updated. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_MAPPING_SUMMARY_T Type
Subscription mapping information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
subscription_id varchar2(32767),
compartment_id varchar2(32767),
is_explicitly_assigned number,
lifecycle_state varchar2(32767),
time_terminated timestamp with time zone,
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_t (
id varchar2,
subscription_id varchar2,
compartment_id varchar2,
is_explicitly_assigned number,
lifecycle_state varchar2,
time_terminated timestamp with time zone,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the mapping between subscription and compartment identified by the tenancy. |
|
(required) OCID of the subscription. |
|
(required) OCID of the compartment. Always a tenancy OCID. |
|
(required) Denotes if the subscription is explicity assigned to the root compartment or tenancy. |
|
(required) Lifecycle state of the subscription mapping. |
|
(optional) Date-time when subscription mapping was terminated. |
|
(required) Date-time when subscription mapping was created. |
|
(required) Date-time when subscription mapping was updated. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_MAPPING_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_SUBSCRIPTION_MAPPING_COLLECTION_T Type
List of subscription mappings.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_subscription_mapping_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing subscription mapping items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_UPDATE_DOMAIN_DETAILS_T Type
The parameters for updating a domain.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_update_domain_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_domain_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_domain_details_t (
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_UPDATE_DOMAIN_GOVERNANCE_DETAILS_T Type
The parameters for updating a domain govenance entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_update_domain_governance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
subscription_email varchar2(32767),
is_governance_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_domain_governance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_domain_governance_details_t (
subscription_email varchar2,
is_governance_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Email address to be used to notify the user, and that the ONS subscription will be created with. The ONS subscription for the previous email will also be deleted. |
|
(optional) Indicates whether governance is enabled for this domain. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_UPDATE_ORGANIZATION_DETAILS_T Type
The parameters for updating an organization.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_update_organization_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
default_ucm_subscription_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_organization_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_organization_details_t (
default_ucm_subscription_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID of the default Universal Credits Model subscription. Any tenancy joining the organization will automatically get assigned this subscription, if a subscription is not explictly assigned. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_UPDATE_RECIPIENT_INVITATION_DETAILS_T Type
The parameters for updating a recipient invitation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_update_recipient_invitation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_recipient_invitation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_recipient_invitation_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) A user-created name to describe the invitation. Avoid entering confidential information. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_UPDATE_SENDER_INVITATION_DETAILS_T Type
The parameters for updating a sender invitation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_update_sender_invitation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_sender_invitation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_update_sender_invitation_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) A user-created name to describe the invitation. Avoid entering confidential information. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_RESOURCE_T Type
A resource created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The resource type the work request affects. |
|
(required) Indicates how the 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: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED' |
|
(required) The identifier of the resource the work request affects. |
|
(optional) The URI path so that the user can do a GET to access the resource metadata. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_RESOURCE_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_T Type
A description of the work request status.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_tenant_manager_control_plane_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_tenant_manager_control_plane_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_tenant_manager_control_plane_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 |
---|---|
|
(required) Type of the work request. Allowed values are: 'CREATE_SENDER_INVITATION', 'ACCEPT_RECIPIENT_INVITATION', 'CANCEL_SENDER_INVITATION', 'COMPLETE_ORDER_ACTIVATION', 'ACTIVATE_ORDER_EXISTING_TENANCY', 'REGISTER_DOMAIN', 'RELEASE_DOMAIN', 'CREATE_CHILD_TENANCY', 'ASSIGN_DEFAULT_SUBSCRIPTION', 'MANUAL_LINK_CREATION', 'TERMINATE_ORGANIZATION_TENANCY', 'UPDATE_SAAS_CAPABILITY', 'SOFT_TERMINATE_TENANCY', 'HARD_TERMINATE_TENANCY', 'RESTORE_TENANCY', 'LOG_TENANCY_TERMINATION_REQUEST', 'SELF_OPT_IN', 'SELF_OPT_OUT' |
|
(required) Status of the current work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED' |
|
(required) The ID of the work request. |
|
(required) The OCID of the compartment that contains the work request. |
|
(required) The resources affected by the work request. |
|
(required) Percentage of the request completed. |
|
(required) The date and time the request was created, as described in RFC 3339, section 14.29. |
|
(optional) The date and time the request was started, as described in RFC 3339, section 14.29. |
|
(optional) The date and time the object was finished, as described in RFC 3339. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_SUMMARY_T Type
A summary of work request status.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_tenant_manager_control_plane_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_tenant_manager_control_plane_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_tenant_manager_control_plane_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 |
---|---|
|
(required) Type of the work request. Allowed values are: 'CREATE_SENDER_INVITATION', 'ACCEPT_RECIPIENT_INVITATION', 'CANCEL_SENDER_INVITATION', 'COMPLETE_ORDER_ACTIVATION', 'ACTIVATE_ORDER_EXISTING_TENANCY', 'REGISTER_DOMAIN', 'RELEASE_DOMAIN', 'CREATE_CHILD_TENANCY', 'ASSIGN_DEFAULT_SUBSCRIPTION', 'MANUAL_LINK_CREATION', 'TERMINATE_ORGANIZATION_TENANCY', 'UPDATE_SAAS_CAPABILITY', 'SOFT_TERMINATE_TENANCY', 'HARD_TERMINATE_TENANCY', 'RESTORE_TENANCY', 'LOG_TENANCY_TERMINATION_REQUEST', 'SELF_OPT_IN', 'SELF_OPT_OUT' |
|
(required) Status of the current work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED' |
|
(required) The ID of the work request. |
|
(required) The OCID of the compartment that contains the work request. |
|
(required) The resources affected by the work request. |
|
(required) Percentage of the request completed. |
|
(required) The date and time the request was created, as described in RFC 3339, section 14.29. |
|
(optional) The date and time the request was started, as described in RFC 3339, section 14.29. |
|
(optional) The date and time the object was finished, as described in RFC 3339. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_COLLECTION_T Type
Result of a query request for a list of work requests. Contains WorkRequestSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing WorkRequestSummary items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_ERROR_T Type
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_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_tenant_manager_control_plane_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A machine-usable code for the error that occured. Error codes are listed in API Errors. |
|
(required) A human-readable description of the issue encountered. |
|
(required) The time the error occured. An RFC 3339 formatted date and time string. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_ERROR_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_ERROR_COLLECTION_T Type
Result of a query request for a list of work request errors. Contains WorkRequestError items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_error_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing WorkRequestError items. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_LOG_ENTRY_T Type
A log message from the execution of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Human-readable log message. |
|
(required) The time the log message was written. An RFC 3339 formatted date and time string. |
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_LOG_ENTRY_TBL Type
Nested table type of dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_TENANT_MANAGER_CONTROL_PLANE_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type
Result of a query request for a list of work request log entries. Contains WorkRequestLogEntry items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_collection_t (
items dbms_cloud_oci_tenant_manager_control_plane_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Array containing WorkRequestLogEntry items. |