DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_VARCHAR2_TBL Type 🔗
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TEMPLATE_T Type 🔗
Template object for the governance rule. It could be of type QUOTA, TAG or REGION_RESTRICTION.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_template_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_template_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_template_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) Type of the governance rule, can be one of QUOTA, TAG, ALLOWED_REGIONS. Example: `QUOTA`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ALLOWED_REGIONS_TEMPLATE_T Type 🔗
Template for governance rules of type allowed regions (ALLOWED_REGIONS).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_allowed_regions_template_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_governance_rules_control_plane_template_t (
display_name varchar2(32767),
description varchar2(32767),
regions dbms_cloud_oci_governance_rules_control_plane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_allowed_regions_template_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_allowed_regions_template_t (
l_type varchar2,
display_name varchar2,
description varchar2,
regions dbms_cloud_oci_governance_rules_control_plane_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_governance_rules_control_plane_allowed_regions_template_t is a subtype of the dbms_cloud_oci_governance_rules_control_plane_template_t type.
Fields
Field
Description
display_name
(required) Display name of the allowed region resource.
description
(optional) Description of the allowed region resource.
regions
(required) List of allowed regions.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ASSOCIATION_T Type 🔗
Association represents the basis on which the governance rule will be applied to the opted-in child tenancies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_association_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_association_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_association_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) Type of Association, can be one of TENANCY, ALL or TAG. We support only TENANCY for now. Example: `TENANCY`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_BASE_TAG_DEFINITION_VALIDATOR_T Type 🔗
Validates a definedTag value. Each validator performs validation steps in addition to the standard validation for definedTag values. For more information, see Limits on Tags. If you define a validator after a value has been set for a defined tag, then any updates that attempt to change the value must pass the additional validation defined by the current rule. Previously set values (even those that would fail the current validation) are not updated. You can still update other attributes to resources that contain a non-valid defined tag. To clear the validator call UpdateTag with DefaultTagDefinitionValidator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t FORCE AUTHID CURRENT_USER IS OBJECT (
validator_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t (
validator_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
validator_type
(required) Specifies the type of validation: a static value (no validation) or a list.
Allowed values are: 'ENUM', 'DEFAULT'
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_CREATE_GOVERNANCE_RULE_DETAILS_T Type 🔗
Request object for CreateGovernanceRule operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_create_governance_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
creation_option varchar2(32767),
template dbms_cloud_oci_governance_rules_control_plane_template_t,
related_resource_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_create_governance_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_create_governance_rule_details_t (
compartment_id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
creation_option varchar2,
template dbms_cloud_oci_governance_rules_control_plane_template_t,
related_resource_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The Oracle ID (OCID) of the root compartment containing the governance rule.
display_name
(required) Display name of the governance rule.
description
(optional) Description of the governance rule.
l_type
(required) Type of the governance rule, can be one of QUOTA, TAG, ALLOWED_REGIONS. Example: `QUOTA`
(required) The type of option used to create the governance rule, could be one of TEMPLATE or CLONE. Example: `TEMPLATE`
Allowed values are: 'TEMPLATE', 'CLONE'
template
(required)
related_resource_id
(optional) The Oracle ID (OCID) of the resource, which was used as a template to create this governance rule.
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_GOVERNANCE_RULES_CONTROL_PLANE_CREATE_INCLUSION_CRITERION_DETAILS_T Type 🔗
Request object for Createinclusion criterion operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_create_inclusion_criterion_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
governance_rule_id varchar2(32767),
l_type varchar2(32767),
association dbms_cloud_oci_governance_rules_control_plane_association_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_create_inclusion_criterion_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_create_inclusion_criterion_details_t (
governance_rule_id varchar2,
l_type varchar2,
association dbms_cloud_oci_governance_rules_control_plane_association_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
governance_rule_id
(required) The Oracle ID (OCID) of the governance rule. Every inclusion criterion is associated with a governance rule.
l_type
(required) Type of inclusion criterion - TENANCY, ALL or TAG. We support TENANCY and ALL for now.
association
(optional)
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_DEFAULT_TAG_DEFINITION_VALIDATOR_T Type 🔗
Use this validator to clear any existing validator on the tag key definition with the UpdateTag operation. Using this `validatorType` is the same as not setting any value on the validator field. The resultant value for `validatorType` returned in the response body is `null`.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_default_tag_definition_validator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_default_tag_definition_validator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_default_tag_definition_validator_t (
validator_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_governance_rules_control_plane_default_tag_definition_validator_t is a subtype of the dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t type.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ENFORCED_GOVERNANCE_RULE_T Type 🔗
Represents the governance rule shown to the child which is a subset of governance rule resource in parent tenancy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
governance_rule_display_name varchar2(32767),
l_type varchar2(32767),
template dbms_cloud_oci_governance_rules_control_plane_template_t,
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_t (
id varchar2,
compartment_id varchar2,
governance_rule_display_name varchar2,
l_type varchar2,
template dbms_cloud_oci_governance_rules_control_plane_template_t,
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) The Oracle ID (OCID) of the enforced governance rule.
compartment_id
(required) The Oracle ID (OCID) of the child's root compartment to which the governance rule is attached.
governance_rule_display_name
(required) Display name of the governance rule.
l_type
(required) Type of the governance rule, can be one of QUOTA, TAG, ALLOWED_REGIONS. Example: `QUOTA`
(required) The current state of the governance rule.
Allowed values are: 'ACTIVE', 'DELETED'
time_created
(required) Date and time the governance rule was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the governance rule was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ENFORCED_GOVERNANCE_RULE_SUMMARY_T Type 🔗
A summary of the enforced governance rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
governance_rule_display_name varchar2(32767),
l_type varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_t (
id varchar2,
compartment_id varchar2,
governance_rule_display_name varchar2,
l_type 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) The Oracle ID (OCID) of the enforced governance rule.
compartment_id
(required) The Oracle ID (OCID) of the child's root compartment to which the governance rule is attached.
governance_rule_display_name
(required) Display name of the governance rule.
l_type
(required) Type of the governance rule, can be one of QUOTA, TAG, ALLOWED_REGIONS. Example: `QUOTA`
(required) The current state of the governance rule.
Allowed values are: 'ACTIVE', 'DELETED'
time_created
(required) Date and time the governance rule was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the governance rule was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ENFORCED_GOVERNANCE_RULE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ENFORCED_GOVERNANCE_RULE_COLLECTION_T Type 🔗
Results of an enforced governance rule search. Contains EnforcedGovernanceRuleSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_collection_t (
items dbms_cloud_oci_governance_rules_control_plane_enforced_governance_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of EnforcedGovernanceRuleSummary objects.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ENUM_TAG_DEFINITION_VALIDATOR_T Type 🔗
Used to validate the value set for a defined tag and contains the list of allowable `values`. You must specify at least one valid value in the `values` array. You can't have blank or or empty strings (`\"\"`). Duplicate values are not allowed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_enum_tag_definition_validator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t (
l_values dbms_cloud_oci_governance_rules_control_plane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enum_tag_definition_validator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_enum_tag_definition_validator_t (
validator_type varchar2,
l_values dbms_cloud_oci_governance_rules_control_plane_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_governance_rules_control_plane_enum_tag_definition_validator_t is a subtype of the dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t type.
Fields
Field
Description
l_values
(optional) The list of allowed values for a definedTag value.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_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_GOVERNANCE_RULES_CONTROL_PLANE_GOVERNANCE_RULE_T Type 🔗
Represents a rule in parent tenancy which governs resources in child tenancies.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_governance_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
l_type varchar2(32767),
creation_option varchar2(32767),
template dbms_cloud_oci_governance_rules_control_plane_template_t,
related_resource_id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_governance_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_governance_rule_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
l_type varchar2,
creation_option varchar2,
template dbms_cloud_oci_governance_rules_control_plane_template_t,
related_resource_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The Oracle ID (OCID) of the governance rule.
compartment_id
(required) The Oracle ID (OCID) of the root compartment containing the governance rule.
display_name
(required) Display name of the governance rule.
description
(optional) Description of the governance rule.
l_type
(required) Type of the governance rule, can be one of QUOTA, TAG, ALLOWED_REGIONS. Example: `QUOTA`
(required) The type of option used to create the governance rule, could be one of TEMPLATE or CLONE. Example: `TEMPLATE`
Allowed values are: 'TEMPLATE', 'CLONE'
template
(required)
related_resource_id
(optional) The Oracle ID (OCID) of the resource, which was used as a template to create this governance rule.
time_created
(required) Date and time the governance rule was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the governance rule was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
lifecycle_state
(required) The current state of the governance rule.
Allowed values are: 'ACTIVE', 'DELETED'
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\"}}`
system_tags
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_GOVERNANCE_RULE_SUMMARY_T Type 🔗
A summary of the governance rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
l_type varchar2(32767),
creation_option varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
l_type varchar2,
creation_option varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The Oracle ID (OCID) of the governance rule.
compartment_id
(required) The Oracle ID (OCID) of the root compartment containing the governance rule.
display_name
(required) Display name of the governance rule.
l_type
(required) Type of the governance rule, can be one of QUOTA, TAG, ALLOWED_REGIONS. Example: `QUOTA`
(required) The type of option used to create the governance rule, could be one of TEMPLATE or CLONE. Example: `TEMPLATE`
Allowed values are: 'TEMPLATE', 'CLONE'
time_created
(required) Date and time the governance rule was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the governance rule was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
lifecycle_state
(required) The current state of the governance rule.
Allowed values are: 'ACTIVE', 'DELETED'
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\"}}`
system_tags
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_GOVERNANCE_RULE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_GOVERNANCE_RULE_COLLECTION_T Type 🔗
Results of a governance rule search. Contains GovernanceRuleSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_governance_rule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_governance_rule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_governance_rule_collection_t (
items dbms_cloud_oci_governance_rules_control_plane_governance_rule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of GovernanceRuleSummary objects.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_INCLUSION_CRITERION_T Type 🔗
Represents the criterion for the inclusion of the child tenancies under a governance rule. This can be either TENANCY or TAG.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
governance_rule_id varchar2(32767),
l_type varchar2(32767),
association dbms_cloud_oci_governance_rules_control_plane_association_t,
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_t (
id varchar2,
governance_rule_id varchar2,
l_type varchar2,
association dbms_cloud_oci_governance_rules_control_plane_association_t,
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) The Oracle ID (OCID) of the inclusion criterion.
governance_rule_id
(required) The Oracle ID (OCID) of the governance rule. Every inclusion criterion is associated with a governance rule.
l_type
(required) Type of inclusion criterion - TENANCY, ALL or TAG. We support TENANCY and ALL for now.
Allowed values are: 'TENANCY', 'ALL'
association
(optional)
lifecycle_state
(required) The current state of the inclusion criterion.
Allowed values are: 'ACTIVE', 'DELETED'
time_created
(required) Date and time the inclusion criterion was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the inclusion criterion was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_INCLUSION_CRITERION_SUMMARY_T Type 🔗
Summary of the inclusion criterion.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
governance_rule_id varchar2(32767),
l_type varchar2(32767),
association dbms_cloud_oci_governance_rules_control_plane_association_t,
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_t (
id varchar2,
governance_rule_id varchar2,
l_type varchar2,
association dbms_cloud_oci_governance_rules_control_plane_association_t,
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) The Oracle ID (OCID) of the inclusion criterion.
governance_rule_id
(required) The Oracle ID (OCID) of the governance rule. Every inclusion criterion is associated with a governance rule.
l_type
(required) Type of inclusion criterion - TENANCY, ALL or TAG. We support TENANCY and ALL for now.
association
(optional)
lifecycle_state
(required) The current state of the inclusion criterion.
time_created
(required) Date and time the inclusion criterion was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the inclusion criterion was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_INCLUSION_CRITERION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_INCLUSION_CRITERION_COLLECTION_T Type 🔗
Results of a inclusion criterion search. Contains inclusion criterion summary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_collection_t (
items dbms_cloud_oci_governance_rules_control_plane_inclusion_criterion_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of inclusionCriteria.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_QUOTA_TEMPLATE_T Type 🔗
Quota template for governance rule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_quota_template_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_governance_rules_control_plane_template_t (
display_name varchar2(32767),
description varchar2(32767),
statements dbms_cloud_oci_governance_rules_control_plane_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_quota_template_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_quota_template_t (
l_type varchar2,
display_name varchar2,
description varchar2,
statements dbms_cloud_oci_governance_rules_control_plane_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_governance_rules_control_plane_quota_template_t is a subtype of the dbms_cloud_oci_governance_rules_control_plane_template_t type.
Fields
Field
Description
display_name
(required) Display name of the quota resource.
description
(optional) Description of the quota resource.
statements
(required) List of quota statements.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TAG_T Type 🔗
Details of the tag that is being created.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tag_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
description varchar2(32767),
is_cost_tracking number,
validator dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tag_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tag_t (
name varchar2,
description varchar2,
is_cost_tracking number,
validator dbms_cloud_oci_governance_rules_control_plane_base_tag_definition_validator_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name you assign to the tag during creation. This is the tag key definition. The name must be unique within the tag namespace and cannot be changed.
description
(optional) The description assigned to the tag during creation.
is_cost_tracking
(optional) Indicates whether the tag is enabled for cost tracking.
validator
(optional)
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TAG_DEFAULT_T Type 🔗
Tag defaults let you specify a default tag (tagnamespace.tag=\"value\") to apply to all resource types in a specified compartment. The tag default is applied at the time the resource is created. Resources that exist in the compartment before you create the tag default are not tagged.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tag_default_t FORCE AUTHID CURRENT_USER IS OBJECT (
tag_name varchar2(32767),
value varchar2(32767),
is_required number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tag_default_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tag_default_t (
tag_name varchar2,
value varchar2,
is_required number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tag_name
(required) The name of the tag. The tag default will always assign a default value for this tag name.
value
(required) The default value for the tag name. This will be applied to all new resources created in the compartment.
is_required
(required) If you specify that a value is required, a value is set during resource creation (either by the user creating the resource or another tag default). If no value is set, resource creation is blocked. * If the `isRequired` flag is set to \"true\", the value is set during resource creation. * If the `isRequired` flag is set to \"false\", the value you enter is set during resource creation. Example: `false`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TAG_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_tag_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tag_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_tag_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TAG_DEFAULT_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_tag_default_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tag_default_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_tag_default_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TAG_TEMPLATE_T Type 🔗
Template for governance rules of type tag.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tag_template_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_governance_rules_control_plane_template_t (
name varchar2(32767),
description varchar2(32767),
tags dbms_cloud_oci_governance_rules_control_plane_tag_tbl,
tag_defaults dbms_cloud_oci_governance_rules_control_plane_tag_default_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tag_template_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tag_template_t (
l_type varchar2,
name varchar2,
description varchar2,
tags dbms_cloud_oci_governance_rules_control_plane_tag_tbl,
tag_defaults dbms_cloud_oci_governance_rules_control_plane_tag_default_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_governance_rules_control_plane_tag_template_t is a subtype of the dbms_cloud_oci_governance_rules_control_plane_template_t type.
Fields
Field
Description
name
(required) The name of the tag namespace. It must be unique across all tag namespaces in the tenancy and cannot be changed.
description
(optional) Description of the tag namespace.
tags
(optional) Represents an array of tags for tag namespace.
tag_defaults
(optional)
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TENANCY_ASSOCIATION_T Type 🔗
Tenancy association represents the tenancy id to which the governance rule will be applied.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tenancy_association_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_governance_rules_control_plane_association_t (
tenancy_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_association_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_association_t (
l_type varchar2,
tenancy_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_governance_rules_control_plane_tenancy_association_t is a subtype of the dbms_cloud_oci_governance_rules_control_plane_association_t type.
Fields
Field
Description
tenancy_id
(required) The Oracle ID (OCID) of the tenancy to which the governance rule will be applied as part of this tenancy inclusion criterion.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TENANCY_ATTACHMENT_T Type 🔗
Tenancy attachment associates a tenancy to a governance rule via an inclusion criterion.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
governance_rule_id varchar2(32767),
tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_attempted timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_t (
id varchar2,
compartment_id varchar2,
governance_rule_id varchar2,
tenancy_id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_attempted timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The Oracle ID (OCID) of the tenancy attachment.
compartment_id
(required) The Oracle ID (OCID) of the root compartment containing the tenancy attachment.
governance_rule_id
(required) The Oracle ID (OCID) of the governance rule. Every tenancy attachment is associated with a governance rule.
tenancy_id
(required) The Oracle ID (OCID) of the tenancy to which the governance rule is attached.
lifecycle_state
(required) The current state of the tenancy attachment.
(required) Date and time the tenancy attachment was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the tenancy attachment was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_last_attempted
(optional) Date and time the tenancy attachment was last attempted. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TENANCY_ATTACHMENT_SUMMARY_T Type 🔗
Summary of the tenancy attachment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
governance_rule_id varchar2(32767),
tenancy_id varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_attempted timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_t (
id varchar2,
compartment_id varchar2,
governance_rule_id varchar2,
tenancy_id varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_attempted timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The Oracle ID (OCID) of the tenancy attachment.
compartment_id
(required) The Oracle ID (OCID) of the root compartment containing the tenancy attachment.
governance_rule_id
(required) The Oracle ID (OCID) of the governance rule. Every tenancy attachment is associated with a governance rule.
tenancy_id
(required) The Oracle ID (OCID) of the tenancy to which the governance rule is attached.
lifecycle_state
(required) The current state of the tenancy attachment.
time_created
(required) Date and time the tenancy attachment was created. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_updated
(required) Date and time the tenancy attachment was updated. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
time_last_attempted
(optional) Date and time the tenancy attachment was last attempted. An RFC3339 formatted datetime string. Example: `2016-08-25T21:10:29.600Z`
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TENANCY_ATTACHMENT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_TENANCY_ATTACHMENT_COLLECTION_T Type 🔗
Results of a tenancy attachment search. Contains tenancy attachment summary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_collection_t (
items dbms_cloud_oci_governance_rules_control_plane_tenancy_attachment_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of tenancy attachments.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_UPDATE_GOVERNANCE_RULE_DETAILS_T Type 🔗
Request object for UpdateGovernanceRule operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_update_governance_rule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
template dbms_cloud_oci_governance_rules_control_plane_template_t,
related_resource_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_update_governance_rule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_update_governance_rule_details_t (
display_name varchar2,
description varchar2,
template dbms_cloud_oci_governance_rules_control_plane_template_t,
related_resource_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Display name of the governance rule.
description
(optional) Description of the governance rule.
template
(optional)
related_resource_id
(optional) The Oracle ID (OCID) of the resource, which was used as a template to create this governance rule.
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_GOVERNANCE_RULES_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_governance_rules_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),
metadata json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2,
metadata json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entity_type
(required) The resource type the work request affects.
action_type
(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively.
(required) The identifier of the resource the work request affects.
entity_uri
(optional) The URI path that the user can do a GET on to access the resource metadata
metadata
(optional) Additional information that helps to explain the resource.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_T Type 🔗
A description of workrequest status
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_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_governance_rules_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_governance_rules_control_plane_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_governance_rules_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. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used
resources
(required) The resources affected by this work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_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_governance_rules_control_plane_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_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 on (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm)
message
(required) A human readable description of the issue encountered.
l_timestamp
(required) The time the error occured. An RFC3339 formatted datetime string.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_ERROR_COLLECTION_T Type 🔗
Results of a workRequestError search. Contains both WorkRequestError items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_governance_rules_control_plane_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_error_collection_t (
items dbms_cloud_oci_governance_rules_control_plane_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestError objects.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_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_governance_rules_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_governance_rules_control_plane_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_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 RFC3339 formatted datetime string
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_LOG_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type 🔗
Results of a workRequestLog search. Contains both workRequestLog items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_collection_t (
items dbms_cloud_oci_governance_rules_control_plane_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestLogEntries.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_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_governance_rules_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_governance_rules_control_plane_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_governance_rules_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. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used
resources
(required) The resources affected by this work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time the request was created, as described in RFC 3339, section 14.29.
time_started
(optional) The date and time the request was started, as described in RFC 3339, section 14.29.
time_finished
(optional) The date and time the object was finished, as described in RFC 3339.
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_governance_rules_control_plane_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_governance_rules_control_plane_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_GOVERNANCE_RULES_CONTROL_PLANE_WORK_REQUEST_SUMMARY_COLLECTION_T Type 🔗
Results of a workRequest search. Contains both WorkRequest items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_governance_rules_control_plane_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_governance_rules_control_plane_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_governance_rules_control_plane_work_request_summary_collection_t (
items dbms_cloud_oci_governance_rules_control_plane_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;