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
compartment_id
(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
entity_version
(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'
id
(required) The Oracle ID (OCID) of the subscription.
compartment_id
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID.
service_name
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
time_created
(required) The date and time of creation, as described in RFC 3339, section 14.29.
time_updated
(required) The date and time of update, as described in RFC 3339, section 14.29.
freeform_tags
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(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
entity_version
(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'
id
(required) The Oracle ID (OCID) of the subscription.
compartment_id
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID.
service_name
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
time_created
(required) The date and time of creation, as described in RFC 3339, section 14.29.
time_updated
(required) The date and time of update, as described in RFC 3339, section 14.29.
freeform_tags
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(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;
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
id
(required) Subscription line item identifier.
product_code
(required) Product code.
quantity
(required) Product number.
billing_model
(required) Billing model supported by the associated line item.
(required) The time the subscription item and associated products should start. An RFC 3339 formatted date and time string.
time_ended
(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
items
(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
region_name
(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
items
(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
sku
(required) Stock Keeping Unit (SKU) ID.
quantity
(optional) Quantity of the stock units.
description
(optional) Description of the stock units.
gsi_order_line_id
(optional) Sales order line identifier.
license_part_description
(optional) Description of the covered product belonging to this SKU.
metric_name
(optional) Base metric for billing the service.
is_base_service_component
(optional) Specifies if the SKU is considered as a parent or child.
is_additional_instance
(optional) Specifies if an additional test instance can be provisioned by the SaaS application.
start_date
(optional) Date and time when the SKU was created.
end_date
(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
duration
(optional) Specifies how long the promotion related to the subscription, if any, is valid in duration units.
duration_unit
(optional) Unit for the duration.
amount
(optional) If a subscription is present, indicates the total amount of promotional subscription credits.
status
(optional) If a subscription is present, indicates the current status of the subscription promotion.
(optional) Speficies whether or not the customer intends to pay after the promotion has expired.
currency_unit
(optional) Currency unit associated with the promotion.
time_started
(optional) Date and time when the promotion starts.
time_expired
(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.
(optional) Specifies whether or not the subscription is legacy.
region_assignment
(optional) Region for the subscription.
skus
(optional) List of SKUs linked to the subscription.
order_ids
(optional) List of subscription order OCIDs that contributed to this subscription.
program_type
(optional) Specifies any program that is associated with the subscription.
customer_country_code
(optional) The country code for the customer associated with the subscription.
cloud_amount_currency
(optional) The currency code for the customer associated with the subscription.
csi_number
(optional) Customer service identifier for the customer associated with the subscription.
subscription_tier
(optional) Tier for the subscription, whether a free promotion subscription or a paid subscription.
is_government_subscription
(optional) Specifies whether or not the subscription is a government subscription.
promotion
(optional) List of promotions related to the subscription.
purchase_entitlement_id
(optional) Purchase entitlement ID associated with the subscription.
start_date
(optional) Subscription start time.
end_date
(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.
(optional) Specifies whether or not the subscription is legacy.
region_assignment
(optional) Region for the subscription.
start_date
(optional) Subscription start time.
end_date
(optional) Subscription end time.
csi_number
(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
entity_version
(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'
id
(required) The Oracle ID (OCID) of the subscription.
compartment_id
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID.
service_name
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
time_created
(required) The date and time of creation, as described in RFC 3339, section 14.29.
time_updated
(required) The date and time of update, as described in RFC 3339, section 14.29.
freeform_tags
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(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
classic_subscription_id
(required) Classic subscription ID.
is_classic_subscription
(optional) Specifies whether or not the subscription is from classic systems.
payment_model
(optional) The pay model of the subscription, such as 'Pay as you go' or 'Monthly'.
(optional) List of SKUs linked to this subscription.
program_type
(optional) Specifies any program that is associated with the subscription.
customer_country_code
(optional) The country code for the customer associated with the subscription.
cloud_amount_currency
(optional) The currency code for the customer associated with the subscription.
csi_number
(optional) Customer service identifier for the customer associated with the subscription.
subscription_tier
(optional) Tier for the subscription, whether a free promotion subscription or a paid subscription.
is_government_subscription
(optional) Specifies whether or not the subscription is a government subscription.
promotion
(optional) List of promotions related to the subscription.
purchase_entitlement_id
(optional) Purchase entitlement ID associated with the subscription.
start_date
(optional) Subscription start time.
end_date
(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
entity_version
(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'
id
(required) The Oracle ID (OCID) of the subscription.
compartment_id
(required) The Oracle ID (OCID) of the owning compartment. Always a tenancy OCID.
service_name
(required) The type of subscription, such as 'UCM', 'SAAS', 'ERP', 'CRM'.
time_created
(required) The date and time of creation, as described in RFC 3339, section 14.29.
time_updated
(required) The date and time of update, as described in RFC 3339, section 14.29.
freeform_tags
(required) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(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
classic_subscription_id
(required) Classic subscription ID.
is_classic_subscription
(optional) Specifies whether or not the subscription is from classic systems.
payment_model
(optional) The pay model of the subscription, such as 'Pay as you go' or 'Monthly'.
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
subscription_number
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
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
subscription_number
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
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
subscription_number
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
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
subscription_number
(required) Unique Oracle Cloud Subscriptions identifier that is immutable on creation.
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
compartment_id
(required) The tenancy ID of the parent tenancy.
tenancy_name
(required) The tenancy name to use for the child tenancy.
home_region
(required) The home region to use for the child tenancy. This must be a region where the parent tenancy is subscribed.
admin_email
(required) Email address of the child tenancy administrator.
policy_name
(optional) The name to use for the administrator policy in the child tenancy. Must contain only letters and underscores.
governance_status
(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
compartment_id
(required) OCID of the tenancy.
domain_name
(required) The domain name.
subscription_email
(optional) Email address to be used to notify the user, and that the ONS subscription will be created with.
is_governance_enabled
(optional) Indicates whether governance should be enabled for this domain. Defaults to false.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_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
compartment_id
(required) OCID of the tenancy.
domain_id
(required) OCID of the domain.
subscription_email
(required) Email address to be used to notify the user, and that the ONS subscription will be created with.
ons_topic_id
(required) The ONS topic associated with this domain governance entity.
ons_subscription_id
(required) The ONS subscription associated with this domain governance entity.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_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
compartment_id
(required) OCID of the sender tenancy.
recipient_tenancy_id
(required) OCID of the recipient tenancy.
recipient_email_address
(optional) Email address of the recipient.
display_name
(optional) A user-created name to describe the invitation. Avoid entering confidential information.
subjects
(optional) The list of subjects this invitation contains.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_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
compartment_id
(required) OCID of the compartment. Always a tenancy OCID.
subscription_id
(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
id
(required) The OCID of the domain.
domain_name
(required) The domain name.
owner_id
(required) The OCID of the tenancy that has started the registration process for this domain.
(required) The code that the owner of the domain will need to add as a TXT record to their domain.
time_created
(optional) Date-time when this domain was created. An RFC 3339-formatted date and time string.
time_updated
(optional) Date-time when this domain was last updated. An RFC 3339-formatted date and time string.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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
id
(required) OCID of the domain.
domain_name
(required) The domain name.
owner_id
(required) The OCID of the tenancy that has started the registration process for this domain.
lifecycle_state
(required) The lifecycle state of the domain.
status
(required) Status of the domain.
txt_record
(required) The code that the owner of the domain will need to add as a TXT record to their domain.
time_created
(optional) Date-time when this domain was created. An RFC 3339-formatted date and time string.
time_updated
(optional) Date-time when this domain was last updated. An RFC 3339-formatted date and time string.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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
items
(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
id
(required) The OCID of the domain governance entity.
owner_id
(required) The OCID of the tenancy that owns this domain governance entity.
domain_id
(required) The OCID of the domain associated with this domain governance entity.
lifecycle_state
(required) Lifecycle state of the domain governance entity.
Allowed values are: 'ACTIVE', 'INACTIVE'
is_governance_enabled
(optional) Indicates whether governance is enabled for this domain.
subscription_email
(optional) Email address to be used to notify the user, and that the ONS subscription will be created with.
ons_topic_id
(required) The ONS topic associated with this domain governance entity.
ons_subscription_id
(required) The ONS subscription associated with this domain governance entity.
time_created
(optional) Date-time when this domain governance was created. An RFC 3339-formatted date and time string.
time_updated
(optional) Date-time when this domain governance was last updated. An RFC 3339-formatted date and time string.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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
id
(required) The OCID of the domain governance entity.
owner_id
(required) The OCID of the tenancy that owns this domain governance entity.
domain_id
(required) The OCID of the domain associated with this domain governance entity.
lifecycle_state
(required) The lifecycle state of the domain governance entity.
is_governance_enabled
(required) Indicates whether governance is enabled for this domain.
subscription_email
(optional) Email address to be used to notify the user, and that the ONS subscription will be created with.
ons_topic_id
(required) The ONS topic associated with this domain governance entity.
ons_subscription_id
(required) The ONS subscription associated with this domain governance entity.
time_created
(optional) Date-time when this domain governance was created. An RFC 3339-formatted date and time string.
time_updated
(optional) Date-time when this domain governance was last updated. An RFC 3339-formatted date and time string.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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;
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
code
(required) A short error code that defines the error, meant for programmatic parsing.
message
(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;
(optional) Date-time when this link was last updated.
time_terminated
(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;
(optional) Date-time when this link was last updated.
time_terminated
(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
items
(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
l_number
(optional) SKU number.
name
(optional) SKU name.
quantity
(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
spm_subscription_id
(required) Subscription ID.
service
(required) Subscription service name.
start_date
(required) Subscription start date. An RFC 3339-formatted date and time string.
end_date
(required) Subscription end date. An RFC 3339-formatted date and time string.
skus
(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
order_number
(required) Immutable and unique order number holding customer subscription information.
data_center_region
(optional) Order's data center region.
admin_email
(required) Email address of the administrator who owns the subscription.
order_state
(required) State of the order.
subscriptions
(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
id
(required) OCID of the organization.
display_name
(optional) A display name for the organization. Avoid entering confidential information.
compartment_id
(required) OCID of the compartment containing the organization. Always a tenancy OCID.
parent_name
(optional) The name of the tenancy that is the organization parent.
default_ucm_subscription_id
(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) Date and time when the organization was created.
time_updated
(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
id
(required) OCID of the organization.
display_name
(optional) A display name for the organization. Avoid entering confidential information.
compartment_id
(required) OCID of the compartment containing the organization. Always a tenancy OCID.
parent_name
(optional) The name of the tenancy that is the organization parent.
default_ucm_subscription_id
(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.
lifecycle_state
(required) Lifecycle state of the organization.
time_created
(required) Date and time when the organization was created.
time_updated
(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;
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
tenancy_id
(required) OCID of the tenancy.
name
(optional) Name of the tenancy.
lifecycle_state
(optional) Lifecycle state of the organization tenancy.
(optional) Date and time when the tenancy joined the organization.
time_left
(optional) Date and time when the tenancy left the organization.
is_approved_for_transfer
(optional) Parameter to indicate the tenancy is approved for transfer to another organization.
governance_status
(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
tenancy_id
(required) OCID of the tenancy.
name
(optional) Name of the tenancy.
lifecycle_state
(optional) Lifecycle state of the organization tenancy.
(optional) Date and time when the tenancy joined the organization.
time_left
(optional) Date and time when the tenancy left the organization.
is_approved_for_transfer
(optional) Parameter to indicate the tenancy is approved for transfer to another organization.
governance_status
(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;
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
id
(required) OCID of the recipient invitation.
compartment_id
(required) OCID of the recipient tenancy.
subjects
(required) The list of subjects the invitation contains.
sender_invitation_id
(required) OCID of the corresponding sender invitation.
sender_tenancy_id
(required) OCID of the sender tenancy.
lifecycle_state
(required) Lifecycle state of the recipient invitation.
(optional) A user-created name to describe the invitation. Avoid entering confidential information.
time_created
(required) Date and time when the recipient invitation was created.
time_updated
(optional) Date and time when the recipient invitation was last updated.
recipient_email_address
(optional) Email address of the recipient.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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
id
(required) OCID of the recipient invitation.
compartment_id
(required) OCID of the recipient tenancy.
display_name
(required) A user-created name to describe the invitation. Avoid entering confidential information.
subjects
(required) The list of subjects the invitation contains.
sender_invitation_id
(required) OCID of the corresponding sender invitation.
sender_tenancy_id
(required) OCID of the sender tenancy.
lifecycle_state
(required) Lifecycle state of the recipient invitation.
(required) Date and time when the recipient invitation was created.
time_updated
(optional) Date and time when the recipient invitation was last updated.
recipient_email_address
(optional) Email address of the recipient.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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;
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
workflow_instance_id
(optional) Id of failed workflow
workflow_instance_name
(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
id
(required) OCID of the sender invitation.
compartment_id
(required) OCID of the sender tenancy.
subjects
(required) The list of subjects the invitation contains.
recipient_invitation_id
(optional) OCID of the corresponding recipient invitation.
recipient_tenancy_id
(required) OCID of the recipient tenancy.
lifecycle_state
(required) Lifecycle state of the sender invitation.
(optional) A user-created name to describe the invitation. Avoid entering confidential information.
time_created
(required) Date and time when the sender invitation was created.
time_updated
(optional) Date and time when the sender invitation was last updated.
recipient_email_address
(optional) Email address of the recipient.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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
id
(required) OCID of the sender invitation.
compartment_id
(required) OCID of the sender tenancy.
display_name
(required) A user-created name to describe the invitation. Avoid entering confidential information.
subjects
(required) The list of subjects the invitation contains.
recipient_invitation_id
(optional) OCID of the corresponding recipient invitation.
recipient_tenancy_id
(required) OCID of the recipient tenancy.
lifecycle_state
(required) Lifecycle state of the sender invitation.
(required) Date and time when the sender invitation was created.
time_updated
(optional) Date and time when the sender invitation was last updated.
recipient_email_address
(optional) Email address of the recipient.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_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;
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;
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
id
(required) Subscription line item identifier.
product_code
(required) Product code.
quantity
(required) Product number.
billing_model
(required) Billing model supported by the associated line item.
(required) The time the subscription item and associated products should start. An RFC 3339 formatted date and time string.
time_ended
(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
items
(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
id
(required) OCID of the mapping between subscription and compartment identified by the tenancy.
subscription_id
(required) OCID of the subscription.
compartment_id
(required) OCID of the compartment. Always a tenancy OCID.
is_explicitly_assigned
(required) Denotes if the subscription is explicity assigned to the root compartment or tenancy.
lifecycle_state
(required) Lifecycle state of the subscriptionMapping.
(optional) Date-time when subscription mapping was terminated.
time_created
(required) Date-time when subscription mapping was created.
time_updated
(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
id
(required) OCID of the mapping between subscription and compartment identified by the tenancy.
subscription_id
(required) OCID of the subscription.
compartment_id
(required) OCID of the compartment. Always a tenancy OCID.
is_explicitly_assigned
(required) Denotes if the subscription is explicity assigned to the root compartment or tenancy.
lifecycle_state
(required) Lifecycle state of the subscription mapping.
time_terminated
(optional) Date-time when subscription mapping was terminated.
time_created
(required) Date-time when subscription mapping was created.
time_updated
(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;
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
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_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
subscription_email
(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.
is_governance_enabled
(optional) Indicates whether governance is enabled for this domain.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_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
default_ucm_subscription_id
(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
display_name
(optional) A user-created name to describe the invitation. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_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
display_name
(optional) A user-created name to describe the invitation. Avoid entering confidential information.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_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
entity_type
(required) The resource type the work request affects.
action_type
(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.
(required) The identifier of the resource the work request affects.
entity_uri
(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;
(required) The OCID of the compartment that contains the work request.
resources
(required) The resources affected by the work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_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;
(required) The OCID of the compartment that contains the work request.
resources
(required) The resources affected by the work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_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;
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
code
(required) A machine-usable code for the error that occured. Error codes are listed in API Errors.
message
(required) A human-readable description of the issue encountered.
l_timestamp
(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;
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
message
(required) Human-readable log message.
l_timestamp
(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;