Resource Manager Common Types

DBMS_CLOUD_OCI_RESOURCE_MANAGER_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TERRAFORM_ADVANCED_OPTIONS_T Type

Specifies advanced options for Terraform commands. These options are not necessary for normal usage of Terraform.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_terraform_advanced_options_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_refresh_required number,
  parallelism number,
  detailed_log_level varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_terraform_advanced_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_terraform_advanced_options_t (
    is_refresh_required number,
    parallelism number,
    detailed_log_level varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_refresh_required

(optional) Specifies whether to refresh the state for each resource before running the job (operation). Refreshing the state can affect performance. Consider setting to `false` if the configuration includes several resources. Used with the following operations: `PLAN`, `APPLY`, `DESTROY`.

parallelism

(optional) Limits the number of concurrent Terraform operations when walking the graph. Use this parameter to help debug Terraform issues or to accomplish certain special use cases. A higher value might cause resources to be throttled. Used with the following operations: `PLAN`, `APPLY`, `DESTROY`.

detailed_log_level

(optional) Enables detailed logs at the specified verbosity for running the job (operation).

Allowed values are: 'ERROR', 'WARN', 'INFO', 'DEBUG', 'TRACE'

DBMS_CLOUD_OCI_RESOURCE_MANAGER_JOB_OPERATION_DETAILS_T Type

Job details that are specific to the operation type.

Syntax

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

Fields

Field Description

operation

(required) Terraform-specific operation to execute.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_APPLY_JOB_OPERATION_DETAILS_T Type

Job details that are specific to apply operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_apply_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  execution_plan_strategy varchar2(32767),
  execution_plan_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_job_operation_details_t (
    operation varchar2,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    execution_plan_strategy varchar2,
    execution_plan_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_apply_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

execution_plan_strategy

(required) Specifies the source of the execution plan to apply. Use `AUTO_APPROVED` to run the job without an execution plan.

Allowed values are: 'FROM_PLAN_JOB_ID', 'FROM_LATEST_PLAN_JOB', 'AUTO_APPROVED'

execution_plan_job_id

(optional) The OCID of the plan job that contains the execution plan used for this job, or `null` if no execution plan was used.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_JOB_OPERATION_DETAILS_SUMMARY_T Type

A summary of job details that is specific to the operation type.

Syntax

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

Fields

Field Description

operation

(required) Terraform-specific operation to execute.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_APPLY_JOB_OPERATION_DETAILS_SUMMARY_T Type

Job details that are specific to apply operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_apply_job_operation_details_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_summary_t (
  execution_plan_strategy varchar2(32767),
  execution_plan_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_job_operation_details_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_job_operation_details_summary_t (
    operation varchar2,
    execution_plan_strategy varchar2,
    execution_plan_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_apply_job_operation_details_summary_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_summary_t type.

Fields

Field Description

execution_plan_strategy

(required) Specifies the source of the execution plan to apply. Use `AUTO_APPROVED` to run the job without an execution plan.

execution_plan_job_id

(optional) The OCID of the plan job that contains the execution plan used for this job, or `null` if no execution plan was used.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_APPLY_JOB_PLAN_RESOLUTION_T Type

Deprecated. Use the property `executionPlanStrategy` in `jobOperationDetails` instead.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t FORCE AUTHID CURRENT_USER IS OBJECT (
  plan_job_id varchar2(32767),
  is_use_latest_job_id number,
  is_auto_approved number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t (
    plan_job_id varchar2,
    is_use_latest_job_id number,
    is_auto_approved number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

plan_job_id

(optional) The OCID that specifies the most recently executed plan job.

is_use_latest_job_id

(optional) Specifies whether to use the OCID of the most recently run plan job. `True` if using the latest job OCID. Must be a plan job that completed successfully.

is_auto_approved

(optional) Specifies whether to use the configuration directly, without reference to a Plan job. `True` if using the configuration directly. Note that it is not necessary for a Plan job to have run successfully.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_APPLY_ROLLBACK_JOB_OPERATION_DETAILS_T Type

Job details that are specific to an apply rollback job. For more information about apply rollback jobs, see Creating an Apply Rollback Job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  execution_plan_rollback_strategy varchar2(32767),
  execution_plan_rollback_job_id varchar2(32767),
  target_rollback_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_t (
    operation varchar2,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    execution_plan_rollback_strategy varchar2,
    execution_plan_rollback_job_id varchar2,
    target_rollback_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

execution_plan_rollback_strategy

(required) Specifies the source of the execution plan for rollback to apply. Use `AUTO_APPROVED` to run the job without an execution plan for rollback.

Allowed values are: 'FROM_PLAN_ROLLBACK_JOB_ID', 'FROM_LATEST_PLAN_ROLLBACK_JOB_ID', 'AUTO_APPROVED'

execution_plan_rollback_job_id

(optional) The OCID of a plan rollback job, for use when specifying `\"FROM_PLAN_ROLLBACK_JOB_ID\"` as the `executionPlanRollbackStrategy`.

target_rollback_job_id

(optional) The OCID of a successful apply job, for use when specifying `\"AUTO_APPROVED\"` as the `executionPlanRollbackStrategy`.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_APPLY_ROLLBACK_JOB_OPERATION_DETAILS_SUMMARY_T Type

Job details that are specific to an apply rollback job. For more information about apply rollback jobs, see Creating an Apply Rollback Job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_summary_t (
  execution_plan_rollback_strategy varchar2(32767),
  execution_plan_rollback_job_id varchar2(32767),
  target_rollback_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_summary_t (
    operation varchar2,
    execution_plan_rollback_strategy varchar2,
    execution_plan_rollback_job_id varchar2,
    target_rollback_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_apply_rollback_job_operation_details_summary_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_summary_t type.

Fields

Field Description

execution_plan_rollback_strategy

(required) Specifies the source of the execution plan for rollback to apply. Use `AUTO_APPROVED` to run the job without an execution plan for rollback.

execution_plan_rollback_job_id

(optional) The OCID of a plan rollback job, for use when specifying `\"FROM_PLAN_ROLLBACK_JOB_ID\"` as the `executionPlanRollbackStrategy`.

target_rollback_job_id

(optional) The OCID of a successful apply job, for use when specifying `\"AUTO_APPROVED\"` as the `executionPlanRollbackStrategy`.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_ASSOCIATED_RESOURCE_SUMMARY_T Type

Summary information for a resource associated with a stack or job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_associated_resource_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  resource_id varchar2(32767),
  resource_name varchar2(32767),
  resource_type varchar2(32767),
  attributes json_element_t,
  time_created timestamp with time zone,
  l_region varchar2(32767),
  resource_address varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_associated_resource_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_associated_resource_summary_t (
    resource_id varchar2,
    resource_name varchar2,
    resource_type varchar2,
    attributes json_element_t,
    time_created timestamp with time zone,
    l_region varchar2,
    resource_address varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

resource_id

(optional) Unique identifier for the resource.

resource_name

(optional) Name of the resource.

resource_type

(optional) Resource type. For more information about resource types supported for the Oracle Cloud Infrastructure (OCI) provider, see Oracle Cloud Infrastructure Provider.

attributes

(optional) Resource attribute values. Each value is represented as a key-value pair. Example: `{\"state\": \"AVAILABLE\"}`

time_created

(optional) The date and time when the stack was created. Format is defined by RFC3339. Example: `2022-07-25T21:10:29.600Z`

l_region

(optional) Resource region. For information about regions, see Regions and Availability Domains. Example: `us-phoenix-1`

resource_address

(optional) Terraform resource address.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_ASSOCIATED_RESOURCE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_associated_resource_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_associated_resource_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_associated_resource_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_ASSOCIATED_RESOURCES_COLLECTION_T Type

The list of associated resources for the indicated stack or job.

Syntax

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

Fields

Field Description

items

(required) Collection of resources associated with a stack or job.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CONFIG_SOURCE_T Type

Information about the Terraform configuration.

Syntax

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

Fields

Field Description

config_source_type

(required) The type of configuration source to use for the Terraform configuration.

Allowed values are: 'BITBUCKET_CLOUD_CONFIG_SOURCE', 'BITBUCKET_SERVER_CONFIG_SOURCE', 'COMPARTMENT_CONFIG_SOURCE', 'DEVOPS_CONFIG_SOURCE', 'GIT_CONFIG_SOURCE', 'OBJECT_STORAGE_CONFIG_SOURCE', 'ZIP_UPLOAD'

working_directory

(optional) File path to the directory to use for running Terraform. If not specified, the root directory is used. Required when using a zip Terraform configuration (`configSourceType` value of `ZIP_UPLOAD`) that contains folders. Ignored for the `configSourceType` value of `COMPARTMENT_CONFIG_SOURCE`. For more information about required and recommended file structure, see File Structure (Terraform Configurations for Resource Manager).

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_CLOUD_CONFIG_SOURCE_T Type

Metadata about the Bitbucket Cloud configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  workspace_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    workspace_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_t type.

Fields

Field Description

configuration_source_provider_id

(required) The OCID of the Bitbucket Cloud configuration source.

repository_url

(required) The URL of the Bitbucket Cloud repository for the configuration source.

branch_name

(optional) The name of the branch in the Bitbucket Cloud repository for the configuration source.

workspace_id

(required) The id of the workspace in Bitbucket Cloud for the configuration source

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CONFIG_SOURCE_RECORD_T Type

Information about the Terraform configuration.

Syntax

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

Fields

Field Description

config_source_record_type

(required) The type of configuration source to use for the Terraform configuration.

Allowed values are: 'BITBUCKET_CLOUD_CONFIG_SOURCE', 'BITBUCKET_SERVER_CONFIG_SOURCE', 'COMPARTMENT_CONFIG_SOURCE', 'DEVOPS_CONFIG_SOURCE', 'GIT_CONFIG_SOURCE', 'OBJECT_STORAGE_CONFIG_SOURCE', 'ZIP_UPLOAD'

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_CLOUD_CONFIG_SOURCE_RECORD_T Type

Metadata about the Bitbucket Cloud configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_record_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_record_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  workspace_id varchar2(32767),
  commit_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_record_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_record_t (
    config_source_record_type varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    workspace_id varchar2,
    commit_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_cloud_config_source_record_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_record_t type.

Fields

Field Description

configuration_source_provider_id

(required) Unique identifier (OCID) for the Bitbucket Cloud configuration source.

repository_url

(required) The URL of the Bitbucket Cloud repository.

branch_name

(optional) The name of the branch within the Bitbucket Cloud repository.

workspace_id

(required) The id of the workspace in Bitbucket Cloud for the configuration source.

commit_id

(optional) The unique identifier (SHA-1 hash) of the individual change to the Bitbucket Cloud repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PRIVATE_SERVER_CONFIG_DETAILS_T Type

Details about a private endpoint associated with the configuration source provider.

Syntax

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

Fields

Field Description

private_endpoint_id

(required) The OCID of a private endpoint associated with the configuration source provider.

certificate_id

(required) The OCID of a certificate associated with the configuration source provider.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CONFIGURATION_SOURCE_PROVIDER_T Type

The properties that define a configuration source provider. For more information, see Managing Configuration Source Providers.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_configuration_source_provider_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  config_source_provider_type varchar2(32767),
  private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
  username varchar2(32767),
  secret_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_configuration_source_provider_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_configuration_source_provider_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    username varchar2,
    secret_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(optional) The OCID of the configuration source provider.

compartment_id

(optional) The OCID of the compartment where the configuration source provider is located.

display_name

(optional) Human-readable display name for the configuration source provider.

description

(optional) Description of the configuration source provider.

time_created

(optional) The date and time when the configuration source provider was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

lifecycle_state

(optional) The current lifecycle state of the configuration source provider. For more information about configuration source provider lifecycle states in Resource Manager, see Key Concepts.

Allowed values are: 'ACTIVE'

config_source_provider_type

(required) The type of configuration source provider. The `BITBUCKET_CLOUD_USERNAME_APPPASSWORD` type corresponds to Bitbucket Cloud. The `BITBUCKET_SERVER_ACCESS_TOKEN` type corresponds to Bitbucket Server. The `GITLAB_ACCESS_TOKEN` type corresponds to GitLab. The `GITHUB_ACCESS_TOKEN` type corresponds to GitHub.

Allowed values are: 'BITBUCKET_CLOUD_USERNAME_APPPASSWORD', 'BITBUCKET_SERVER_ACCESS_TOKEN', 'GITLAB_ACCESS_TOKEN', 'GITHUB_ACCESS_TOKEN'

private_server_config_details

(optional)

username

(optional) Username which is used to authorize the user.

secret_id

(optional) Secret ocid which is used to authorize the user.

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_CLOUD_USERNAME_APP_PASSWORD_CONFIGURATION_SOURCE_PROVIDER_T Type

The properties that define a configuration source provider of the type `BITBUCKET_CLOUD_USERNAME_APPPASSWORD`. This type corresponds to a configuration source provider in Bitbucket cloud that is authenticated with a username and app password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    username varchar2,
    secret_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_t type.

Fields

Field Description

api_endpoint

(optional) The Bitbucket cloud service endpoint. Example: `https://bitbucket.org/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CONFIGURATION_SOURCE_PROVIDER_SUMMARY_T Type

Summary information for a configuration source provider.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  config_source_provider_type varchar2(32767),
  private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(optional) The OCID of the configuration source provider.

compartment_id

(optional) The OCID of the compartment where the configuration source provider is located.

display_name

(optional) Human-readable display name for the configuration source provider.

description

(optional) General description of the configuration source provider.

time_created

(optional) The date and time when the configuration source provider was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

lifecycle_state

(optional) Current state of the specified configuration source provider. For more information about configuration source provider lifecycle states in Resource Manager, see Key Concepts. Allowable values: - ACTIVE

config_source_provider_type

(required) The type of configuration source provider. The `BITBUCKET_CLOUD_USERNAME_APPPASSWORD` type corresponds to Bitbucket Cloud. The `BITBUCKET_SERVER_ACCESS_TOKEN` type corresponds to Bitbucket Server. The `GITLAB_ACCESS_TOKEN` type corresponds to GitLab. The `GITHUB_ACCESS_TOKEN` type corresponds to GitHub.

private_server_config_details

(optional)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_CLOUD_USERNAME_APP_PASSWORD_CONFIGURATION_SOURCE_PROVIDER_SUMMARY_T Type

Summary information for a configuration source provider of the type `BITBUCKET_CLOUD_USERNAME_APPPASSWORD`. This type corresponds to a configuration source provider in Bitbucket cloud that is authenticated with a username and app password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_cloud_username_app_password_configuration_source_provider_summary_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t type.

Fields

Field Description

api_endpoint

(optional) The Bitbucket cloud service endpoint. Example: `https://bitbucket.org/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_SERVER_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_T Type

The properties that define a configuration source provider of the type `BITBUCKET_SERVER_ACCESS_TOKEN`. This type corresponds to a configuration source provider in Bitbucket server that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    username varchar2,
    secret_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_t type.

Fields

Field Description

api_endpoint

(optional) The Bitbucket server service endpoint. Example: `https://bitbucket.org/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_SERVER_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_SUMMARY_T Type

Summary information for a configuration source provider of the type `BITBUCKET_SERVER_ACCESS_TOKEN`. This type corresponds to a configuration source provider in Bitbucket server that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_server_access_token_configuration_source_provider_summary_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t type.

Fields

Field Description

api_endpoint

(optional) The Bitbucket server service endpoint. Example: `https://bitbucket.org/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_SERVER_CONFIG_SOURCE_T Type

Metadata about the Bitbucket Server configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_server_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  project_id varchar2(32767),
  repository_id varchar2(32767),
  clone_url varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_config_source_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    project_id varchar2,
    repository_id varchar2,
    clone_url varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_server_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_t type.

Fields

Field Description

configuration_source_provider_id

(required) The OCID of the Bitbucket Server configuration source.

repository_url

(required) The URL of the Bitbucket Server repository for the configuration source.

branch_name

(optional) The name of the branch in the Bitbucket Server repository for the configuration source.

project_id

(optional) Unique identifier for a Bitbucket Server project.

repository_id

(optional) Bitbucket Server repository identifier, usually identified as <repository>.git.

clone_url

(optional) The clone URL of Bitbucket Server configuration source.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_BITBUCKET_SERVER_CONFIG_SOURCE_RECORD_T Type

Metadata about the Bitbucket Server configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_bitbucket_server_config_source_record_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_record_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  commit_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_config_source_record_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_bitbucket_server_config_source_record_t (
    config_source_record_type varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    commit_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_bitbucket_server_config_source_record_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_record_t type.

Fields

Field Description

configuration_source_provider_id

(required) Unique identifier (OCID) for the Bitbucket Server configuration source.

repository_url

(required) The URL of the Bitbucket Server repository.

branch_name

(optional) The name of the branch within the Bitbucket Server repository.

commit_id

(optional) The unique identifier (SHA-1 hash) of the individual change to the Bitbucket Server repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CANCELLATION_DETAILS_T Type

Cancellation details for a job.

Syntax

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

Fields

Field Description

is_forced

(optional) Indicates whether a forced cancellation was requested for the job while it was running. A forced cancellation can result in an incorrect state file. For example, the state file might not reflect the exact state of the provisioned resources.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CHANGE_CONFIGURATION_SOURCE_PROVIDER_COMPARTMENT_DETAILS_T Type

Compartment details for moving a configuration source provider.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the configuration source provider to.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CHANGE_PRIVATE_ENDPOINT_COMPARTMENT_DETAILS_T Type

Compartment details for moving a private endpoint.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the private endpoint to.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CHANGE_STACK_COMPARTMENT_DETAILS_T Type

Compartment details for moving a stack.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the Stack should be moved.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CHANGE_TEMPLATE_COMPARTMENT_DETAILS_T Type

Compartment details for moving a template.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment to move the configuration source provider to.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_COMPARTMENT_CONFIG_SOURCE_T Type

Compartment to use for creating the stack. The new stack will include definitions for supported resource types in this compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_compartment_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_t (
  compartment_id varchar2(32767),
  l_region varchar2(32767),
  services_to_discover dbms_cloud_oci_resource_manager_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_compartment_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_compartment_config_source_t (
    config_source_type varchar2,
    working_directory varchar2,
    compartment_id varchar2,
    l_region varchar2,
    services_to_discover dbms_cloud_oci_resource_manager_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_compartment_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_t type.

Fields

Field Description

compartment_id

(required) The OCID of the compartment to use for creating the stack. The new stack will include definitions for supported resource types in this compartment.

l_region

(required) The region to use for creating the stack. The new stack will include definitions for supported resource types in this region.

services_to_discover

(optional) Filter for services to use with Resource Discovery. For example, \"database\" limits resource discovery to resource types within the Database service. The specified services must be in scope of the given compartment OCID (tenancy level for root compartment, compartment level otherwise). If not specified, then all services at the scope of the given compartment OCID are used.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CONFIGURATION_SOURCE_PROVIDER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_configuration_source_provider_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CONFIGURATION_SOURCE_PROVIDER_COLLECTION_T Type

Collection of configuration source providers.

Syntax

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

Fields

Field Description

items

(optional) Collection of configuration source providers.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_JOB_OPERATION_DETAILS_T Type

Job details that are specific to the operation type.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_job_operation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation varchar2(32767),
  is_provider_upgrade_required number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_job_operation_details_t (
    operation varchar2,
    is_provider_upgrade_required number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

operation

(required) Terraform-specific operation to execute.

is_provider_upgrade_required

(optional) Specifies whether or not to upgrade provider versions. Within the version constraints of your Terraform configuration, use the latest versions available from the source of Terraform providers. For more information about this option, see Dependency Lock File (terraform.io).

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_APPLY_JOB_OPERATION_DETAILS_T Type

Job details that are specific to apply operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_apply_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  execution_plan_strategy varchar2(32767),
  execution_plan_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_apply_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_apply_job_operation_details_t (
    operation varchar2,
    is_provider_upgrade_required number,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    execution_plan_strategy varchar2,
    execution_plan_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_apply_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

execution_plan_strategy

(optional) Specifies the source of the execution plan to apply. Use `AUTO_APPROVED` to run the job without an execution plan.

execution_plan_job_id

(optional) The OCID of a plan job, for use when specifying `FROM_PLAN_JOB_ID` as the `executionPlanStrategy`.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_APPLY_ROLLBACK_JOB_OPERATION_DETAILS_T Type

Job details that are specific to an apply rollback job. For more information about apply rollback jobs, see Creating an Apply Rollback Job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_apply_rollback_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  execution_plan_rollback_strategy varchar2(32767),
  execution_plan_rollback_job_id varchar2(32767),
  target_rollback_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_apply_rollback_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_apply_rollback_job_operation_details_t (
    operation varchar2,
    is_provider_upgrade_required number,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    execution_plan_rollback_strategy varchar2,
    execution_plan_rollback_job_id varchar2,
    target_rollback_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_apply_rollback_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

execution_plan_rollback_strategy

(required) Specifies the source of the execution plan for rollback to apply. Use `AUTO_APPROVED` to run the job without an execution plan for rollback job.

execution_plan_rollback_job_id

(optional) The OCID of a plan rollback job, for use when specifying `\"FROM_PLAN_ROLLBACK_JOB_ID\"` as the `executionPlanRollbackStrategy`.

target_rollback_job_id

(optional) The OCID of a successful apply job, for use when specifying `\"AUTO_APPROVED\"` as the `executionPlanRollbackStrategy`.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_CONFIG_SOURCE_DETAILS_T Type

Creation details for a configuration source used with the stack.

Syntax

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

Fields

Field Description

config_source_type

(required) Specifies the `configSourceType` for uploading the Terraform configuration.

working_directory

(optional) File path to the directory to use for running Terraform. If not specified, the root directory is used. Required when using a zip Terraform configuration (`configSourceType` value of `ZIP_UPLOAD`) that contains folders. Ignored for the `configSourceType` value of `COMPARTMENT_CONFIG_SOURCE`. For more information about required and recommended file structure, see File Structure (Terraform Configurations for Resource Manager).

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_BITBUCKET_CLOUD_CONFIG_SOURCE_DETAILS_T Type

Creation details for a Bitbucket Cloud configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_bitbucket_cloud_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  workspace_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_cloud_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_cloud_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    workspace_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_bitbucket_cloud_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

configuration_source_provider_id

(required) The OCID of the Bitbucket Cloud configuration source.

repository_url

(required) The URL of the Bitbucket Cloud repository for the configuration source.

branch_name

(optional) The name of the branch in the Bitbucket Cloud repository for the configuration source.

workspace_id

(required) The id of the workspace in Bitbucket Cloud for the configuration source

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Creation details for a configuration source provider.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  config_source_provider_type varchar2(32767),
  private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

compartment_id

(optional) The OCID of the compartment where you want to create the configuration source provider.

display_name

(optional) Human-readable name of the configuration source provider. Avoid entering confidential information.

description

(optional) Description of the configuration source provider. Avoid entering confidential information.

config_source_provider_type

(required) The type of configuration source provider. The `GITLAB_ACCESS_TOKEN` type corresponds to GitLab. The `GITHUB_ACCESS_TOKEN` type corresponds to GitHub. The `BITBUCKET_CLOUD_USERNAME_APPPASSWORD` type corresponds to Bitbucket Cloud. The `BITBUCKET_SERVER_ACCESS_TOKEN` type corresponds to Bitbucket Server.

private_server_config_details

(optional)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_BITBUCKET_CLOUD_USERNAME_APP_PASSWORD_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Creation details for a configuration source provider of the type `BITBUCKET_CLOUD_USERNAME_appPASSWORD`. This type corresponds to a configuration source provider in Bitbucket that is authenticated with a username and app password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_bitbucket_cloud_username_app_password_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t (
  api_endpoint varchar2(32767),
  username varchar2(32767),
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_cloud_username_app_password_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_cloud_username_app_password_configuration_source_provider_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2,
    username varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_bitbucket_cloud_username_app_password_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t type.

Fields

Field Description

api_endpoint

(required) The Bitbucket cloud service endpoint. Example: `https://bitbucket.org/`

username

(required) The username for the user of the Bitbucket cloud repository.

secret_id

(required) The secret ocid which is used to authorize the user.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_BITBUCKET_SERVER_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

The details for creating a configuration source provider of the type `BITBUCKET_SERVER_ACCESS_TOKEN`. This type corresponds to a configuration source provider in Bitbucket server that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_bitbucket_server_access_token_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t (
  secret_id varchar2(32767),
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_server_access_token_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_server_access_token_configuration_source_provider_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    secret_id varchar2,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_bitbucket_server_access_token_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t type.

Fields

Field Description

secret_id

(required) The secret ocid which is used to authorize the user.

api_endpoint

(required) The Bitbucket Server service endpoint Example: `https://bitbucket.org/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_BITBUCKET_SERVER_CONFIG_SOURCE_DETAILS_T Type

Creation details for a Bitbucket Server configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_bitbucket_server_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  project_id varchar2(32767),
  repository_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_server_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_bitbucket_server_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    project_id varchar2,
    repository_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_bitbucket_server_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

configuration_source_provider_id

(required) Unique identifier (OCID) for the Bitbucket Server configuration source.

repository_url

(required) The URL of the Bitbucket Server repository.

branch_name

(optional) The name of the branch within the Bitbucket Server repository.

project_id

(optional) Unique identifier for a Bitbucket Server project.

repository_id

(optional) Bitbucket Server repository identifier, usually identified as <repository>.git.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_COMPARTMENT_CONFIG_SOURCE_DETAILS_T Type

Creation details for a configuration source based on the specified compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_compartment_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  compartment_id varchar2(32767),
  l_region varchar2(32767),
  services_to_discover dbms_cloud_oci_resource_manager_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_compartment_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_compartment_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    compartment_id varchar2,
    l_region varchar2,
    services_to_discover dbms_cloud_oci_resource_manager_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_compartment_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

compartment_id

(required) The OCID of the compartment to use for creating the stack. The new stack will include definitions for supported resource types in scope of the specified compartment OCID (tenancy level for root compartment, compartment level otherwise).

l_region

(required) The region to use for creating the stack. The new stack will include definitions for supported resource types in this region.

services_to_discover

(optional) Filter for services to use with Resource Discovery. For example, \"database\" limits resource discovery to resource types within the Database service. The specified services must be in scope of the given compartment OCID (tenancy level for root compartment, compartment level otherwise). If not specified, then all services at the scope of the given compartment OCID are used.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_DESTROY_JOB_OPERATION_DETAILS_T Type

Job details that are specific to destroy operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_destroy_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  execution_plan_strategy varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_destroy_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_destroy_job_operation_details_t (
    operation varchar2,
    is_provider_upgrade_required number,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    execution_plan_strategy varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_destroy_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

execution_plan_strategy

(required) Specifies the source of the execution plan to apply. Currently, only `AUTO_APPROVED` is allowed, which indicates that the job will be run without an execution plan.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_DEV_OPS_CONFIG_SOURCE_DETAILS_T Type

Creation details for a DevOps configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_dev_ops_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  project_id varchar2(32767),
  repository_id varchar2(32767),
  branch_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_dev_ops_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_dev_ops_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    project_id varchar2,
    repository_id varchar2,
    branch_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_dev_ops_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

project_id

(required) The OCID of the PROJECT Type.

repository_id

(required) The OCID of the REPOSITORY Type.

branch_name

(optional) The name of the branch that contains the Terraform configuration.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_GIT_CONFIG_SOURCE_DETAILS_T Type

Creation details for configuration Git information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_git_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_git_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_git_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_git_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

configuration_source_provider_id

(required) Unique identifier (OCID) for the Git configuration source.

repository_url

(optional) The URL of the Git repository.

branch_name

(optional) The name of the branch within the Git repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_GITHUB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Creation details for a configuration source provider of the type `GITHUB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitHub that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_github_access_token_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t (
  api_endpoint varchar2(32767),
  access_token varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_github_access_token_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_github_access_token_configuration_source_provider_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2,
    access_token varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_github_access_token_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t type.

Fields

Field Description

api_endpoint

(required) The GitHub service endpoint. Example: `https://github.com/`

access_token

(required) The personal access token to be configured on the GitHub repository. Avoid entering confidential information.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_GITLAB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Creation details for a configuration source provider of the type `GITLAB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitLab that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_gitlab_access_token_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t (
  api_endpoint varchar2(32767),
  access_token varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_gitlab_access_token_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_gitlab_access_token_configuration_source_provider_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2,
    access_token varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_gitlab_access_token_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_configuration_source_provider_details_t type.

Fields

Field Description

api_endpoint

(required) The Git service endpoint. Example: `https://gitlab.com`

access_token

(required) The personal access token to be configured on the GitLab repository. Avoid entering confidential information.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_IMPORT_TF_STATE_JOB_OPERATION_DETAILS_T Type

Job details that are specific to import Terraform state operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_import_tf_state_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_job_operation_details_t (
  tf_state_base64_encoded clob,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_import_tf_state_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_import_tf_state_job_operation_details_t (
    operation varchar2,
    is_provider_upgrade_required number,
    tf_state_base64_encoded clob
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_import_tf_state_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_job_operation_details_t type.

Fields

Field Description

tf_state_base64_encoded

(required) Base64-encoded state file

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_JOB_DETAILS_T Type

Creation details for a job for running inside the specified stack.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  stack_id varchar2(32767),
  display_name varchar2(32767),
  operation varchar2(32767),
  job_operation_details dbms_cloud_oci_resource_manager_create_job_operation_details_t,
  apply_job_plan_resolution dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_job_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_job_details_t (
    stack_id varchar2,
    display_name varchar2,
    operation varchar2,
    job_operation_details dbms_cloud_oci_resource_manager_create_job_operation_details_t,
    apply_job_plan_resolution dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

stack_id

(required) The OCID of the stack that is associated with the current job.

display_name

(optional) Description of the job.

operation

(optional) Terraform-specific operation to execute.

job_operation_details

(optional)

apply_job_plan_resolution

(optional)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_OBJECT_STORAGE_CONFIG_SOURCE_DETAILS_T Type

Creation details for an Object Storage bucket that contains Terraform configuration files.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_object_storage_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  l_region varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_object_storage_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_object_storage_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    l_region varchar2,
    namespace varchar2,
    bucket_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_object_storage_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

l_region

(required) The name of the bucket's region. Example: `us-phoenix-1`

namespace

(required) The Object Storage namespace that contains the bucket.

bucket_name

(required) The name of the bucket that contains the Terraform configuration files.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_PLAN_JOB_OPERATION_DETAILS_T Type

Job details that are specific to plan operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_plan_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_plan_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_plan_job_operation_details_t (
    operation varchar2,
    is_provider_upgrade_required number,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_plan_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_PLAN_ROLLBACK_JOB_OPERATION_DETAILS_T Type

Job details that are specific to a plan rollback job. For more information about plan rollback jobs, see Creating a Plan Rollback Job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_plan_rollback_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  target_rollback_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_plan_rollback_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_plan_rollback_job_operation_details_t (
    operation varchar2,
    is_provider_upgrade_required number,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    target_rollback_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_plan_rollback_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

target_rollback_job_id

(required) The OCID of a successful apply job to use for the plan rollback job.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_PRIVATE_ENDPOINT_DETAILS_T Type

Creation details for a private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
  nsg_id_list dbms_cloud_oci_resource_manager_varchar2_tbl,
  is_used_with_configuration_source_provider number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_private_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_private_endpoint_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    vcn_id varchar2,
    subnet_id varchar2,
    dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
    nsg_id_list dbms_cloud_oci_resource_manager_varchar2_tbl,
    is_used_with_configuration_source_provider number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment containing this private endpoint.

display_name

(required) The private endpoint display name. Avoid entering confidential information.

description

(optional) Description of the private endpoint. Avoid entering confidential information.

vcn_id

(required) The OCID of the VCN for the private endpoint.

subnet_id

(required) The OCID of the subnet within the VCN for the private endpoint.

dns_zones

(optional) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.

nsg_id_list

(optional) The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.

is_used_with_configuration_source_provider

(optional) When `true`, allows the private endpoint to be used with a configuration source provider.

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CUSTOM_TERRAFORM_PROVIDER_T Type

Location information about custom Terraform providers for a stack. For more information, see Custom Providers. Note: Older stacks must be explicitly updated to use Terraform Registry (`isThirdPartyProviderExperienceEnabled=true`). See UPDATE_STACK Function. For more information, see Using Terraform Registry with Older Stacks.

Syntax

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

Fields

Field Description

l_region

(required) The name of the region that contains the bucket you want. For information about regions, see Regions and Availability Domains. Example: `us-phoenix-1`

namespace

(required) The Object Storage namespace that contains the bucket you want. For information about Object Storage namespaces, see Understanding Object Storage Namespaces.

bucket_name

(required) The name of the bucket that contains the binary files for the custom Terraform providers. For information about buckets, see Managing Buckets.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_STACK_DETAILS_T Type

Creation details for a stack.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_stack_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  config_source dbms_cloud_oci_resource_manager_create_config_source_details_t,
  custom_terraform_provider dbms_cloud_oci_resource_manager_custom_terraform_provider_t,
  variables json_element_t,
  terraform_version varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_stack_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_stack_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    config_source dbms_cloud_oci_resource_manager_create_config_source_details_t,
    custom_terraform_provider dbms_cloud_oci_resource_manager_custom_terraform_provider_t,
    variables json_element_t,
    terraform_version varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) Unique identifier (OCID) of the compartment in which the stack resides.

display_name

(optional) The stack's display name.

description

(optional) Description of the stack.

config_source

(required)

custom_terraform_provider

(optional)

variables

(optional) Terraform variables associated with this resource. Maximum number of variables supported is 250. The maximum size of each variable, including both name and value, is 8192 bytes. Example: `{\"CompartmentId\": \"compartment-id-value\"}`

terraform_version

(optional) The version of Terraform to use with the stack. Example: `0.12.x`

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_STACK_TEMPLATE_CONFIG_SOURCE_DETAILS_T Type

Creation details for a template to use as the source of the Terraform configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_stack_template_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  template_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_stack_template_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_stack_template_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    template_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_stack_template_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

template_id

(required)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_TEMPLATE_CONFIG_SOURCE_DETAILS_T Type

Creation details for a configuration source used for a template.

Syntax

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

Fields

Field Description

template_config_source_type

(required) Specifies the `configSourceType` for uploading the Terraform configuration.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_TEMPLATE_DETAILS_T Type

Creation details for a template.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_template_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  long_description varchar2(32767),
  logo_file_base64_encoded varchar2(32767),
  template_config_source dbms_cloud_oci_resource_manager_create_template_config_source_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_template_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_template_details_t (
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    long_description varchar2,
    logo_file_base64_encoded varchar2,
    template_config_source dbms_cloud_oci_resource_manager_create_template_config_source_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment containing this template.

display_name

(required) The template's display name. Avoid entering confidential information.

description

(required) Description of the template. Avoid entering confidential information.

long_description

(optional) Detailed description of the template. This description is displayed in the Console page listing templates when the template is expanded. Avoid entering confidential information.

logo_file_base64_encoded

(optional) Base64-encoded logo to use as the template icon. Template icon file requirements: PNG format, 50 KB maximum, 110 x 110 pixels.

template_config_source

(required)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_TEMPLATE_ZIP_UPLOAD_CONFIG_SOURCE_DETAILS_T Type

Creation details for a zip file used for a template.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_template_zip_upload_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_template_config_source_details_t (
  zip_file_base64_encoded varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_template_zip_upload_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_template_zip_upload_config_source_details_t (
    template_config_source_type varchar2,
    zip_file_base64_encoded varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_template_zip_upload_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_template_config_source_details_t type.

Fields

Field Description

zip_file_base64_encoded

(required)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_CREATE_ZIP_UPLOAD_CONFIG_SOURCE_DETAILS_T Type

Creation details for a Terraform configuration zip file.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_create_zip_upload_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_create_config_source_details_t (
  zip_file_base64_encoded varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_zip_upload_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_create_zip_upload_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    zip_file_base64_encoded varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_create_zip_upload_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_create_config_source_details_t type.

Fields

Field Description

zip_file_base64_encoded

(required)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_DESTROY_JOB_OPERATION_DETAILS_T Type

Job details that are specific to destroy operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_destroy_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  execution_plan_strategy varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_destroy_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_destroy_job_operation_details_t (
    operation varchar2,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    execution_plan_strategy varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_destroy_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

execution_plan_strategy

(required) Specifies the source of the execution plan to apply. Currently, only `AUTO_APPROVED` is allowed, which indicates that the job will be run without an execution plan.

Allowed values are: 'AUTO_APPROVED'

DBMS_CLOUD_OCI_RESOURCE_MANAGER_DESTROY_JOB_OPERATION_DETAILS_SUMMARY_T Type

Job details that are specific to destroy operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_destroy_job_operation_details_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_summary_t (
  execution_plan_strategy varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_destroy_job_operation_details_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_destroy_job_operation_details_summary_t (
    operation varchar2,
    execution_plan_strategy varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_destroy_job_operation_details_summary_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_summary_t type.

Fields

Field Description

execution_plan_strategy

(required) Specifies the source of the execution plan to apply. Currently, only `AUTO_APPROVED` is allowed, which indicates that the job will be run without an execution plan.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_DETECT_STACK_DRIFT_DETAILS_T Type

Details for detecting drift in a stack.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_detect_stack_drift_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  resource_addresses dbms_cloud_oci_resource_manager_varchar2_tbl,
  is_provider_upgrade_required number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_detect_stack_drift_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_detect_stack_drift_details_t (
    resource_addresses dbms_cloud_oci_resource_manager_varchar2_tbl,
    is_provider_upgrade_required number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

resource_addresses

(optional) The list of resources in the specified stack to detect drift for. Each resource is identified by a resource address, which is a string derived from the resource type and name specified in the stack's Terraform configuration plus an optional index. For example, the resource address for the fourth Compute instance with the name \"test_instance\" is oci_core_instance.test_instance3]. For more details and examples of resource addresses, see the Terraform documentation at [Resource spec.

is_provider_upgrade_required

(optional) Specifies whether or not to upgrade provider versions. Within the version constraints of your Terraform configuration, use the latest versions available from the source of Terraform providers. For more information about this option, see Dependency Lock File (terraform.io).

DBMS_CLOUD_OCI_RESOURCE_MANAGER_DEV_OPS_CONFIG_SOURCE_T Type

Metadata about the DevOps configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_dev_ops_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_t (
  project_id varchar2(32767),
  repository_id varchar2(32767),
  branch_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_dev_ops_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_dev_ops_config_source_t (
    config_source_type varchar2,
    working_directory varchar2,
    project_id varchar2,
    repository_id varchar2,
    branch_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_dev_ops_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_t type.

Fields

Field Description

project_id

(required) The OCID of the PROJECT Type.

repository_id

(required) The OCID of the REPOSITORY Type.

branch_name

(optional) The name of the branch that contains the Terraform configuration.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_DEV_OPS_CONFIG_SOURCE_RECORD_T Type

Metadata about the DevOps configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_dev_ops_config_source_record_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_record_t (
  project_id varchar2(32767),
  repository_id varchar2(32767),
  branch_name varchar2(32767),
  commit_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_dev_ops_config_source_record_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_dev_ops_config_source_record_t (
    config_source_record_type varchar2,
    project_id varchar2,
    repository_id varchar2,
    branch_name varchar2,
    commit_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_dev_ops_config_source_record_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_record_t type.

Fields

Field Description

project_id

(required) The OCID of the PROJECT Type.

repository_id

(required) The OCID of the REPOSITORY Type.

branch_name

(required) The name of the branch that contains the Terraform configuration.

commit_id

(optional) The unique identifier (SHA-1 hash) of the individual change to the DevOps repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_ERROR_T Type

Error that occurs during the execution of a job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_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. For more information, see API Errors.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_FAILURE_DETAILS_T Type

Syntax

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

Fields

Field Description

code

(required) Job failure reason.

Allowed values are: 'INTERNAL_SERVICE_ERROR', 'TERRAFORM_EXECUTION_ERROR', 'TERRAFORM_CONFIG_UNZIP_FAILED', 'INVALID_WORKING_DIRECTORY', 'JOB_TIMEOUT', 'TERRAFORM_CONFIG_VIRUS_FOUND', 'TERRAFORM_GIT_CLONE_FAILURE', 'TERRAFORM_GIT_CHECKOUT_FAILURE', 'TERRAFORM_OBJECT_STORAGE_CONFIG_SOURCE_EMPTY_BUCKET', 'TERRAFORM_OBJECT_STORAGE_CONFIG_SOURCE_NO_TF_FILE_PRESENT', 'TERRAFORM_OBJECT_STORAGE_CONFIG_SOURCE_UNSUPPORTED_OBJECT_SIZE', 'CUSTOM_TERRAFORM_PROVIDER_BUCKET_NOT_FOUND', 'CUSTOM_TERRAFORM_PROVIDER_UNSUPPORTED_OBJECT_SIZE'

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_GIT_CONFIG_SOURCE_T Type

Metadata about the Git configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_git_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_git_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_git_config_source_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_git_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_t type.

Fields

Field Description

configuration_source_provider_id

(required) The OCID of the Git configuration source.

repository_url

(optional) The URL of the Git repository for the configuration source.

branch_name

(optional) The name of the branch in the Git repository for the configuration source.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_GIT_CONFIG_SOURCE_RECORD_T Type

Metadata about the Git configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_git_config_source_record_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_record_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  commit_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_git_config_source_record_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_git_config_source_record_t (
    config_source_record_type varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    commit_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_git_config_source_record_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_record_t type.

Fields

Field Description

configuration_source_provider_id

(required) Unique identifier (OCID) for the Git configuration source.

repository_url

(optional) The URL of the Git repository.

branch_name

(optional) The name of the branch within the Git repository.

commit_id

(optional) The unique identifier (SHA-1 hash) of the individual change to the Git repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_GITHUB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_T Type

The properties that define a configuration source provider of the type `GITHUB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitHub that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    username varchar2,
    secret_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_t type.

Fields

Field Description

api_endpoint

(optional) The GitHub service endpoint. Example: `https://github.com/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_GITHUB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_SUMMARY_T Type

Summary information for a configuration source provider of the type `GITHUB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitHub that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_github_access_token_configuration_source_provider_summary_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t type.

Fields

Field Description

api_endpoint

(optional) The GitHub service endpoint. Example: `https://github.com/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_GITLAB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_T Type

The properties that define a configuration source provider of the type `GITLAB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitLab that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    username varchar2,
    secret_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_t type.

Fields

Field Description

api_endpoint

(optional) The Git service endpoint. Example: `https://gitlab.com`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_GITLAB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_SUMMARY_T Type

Summary information for a configuration source provider of the type `GITLAB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitLab that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t (
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_gitlab_access_token_configuration_source_provider_summary_t is a subtype of the dbms_cloud_oci_resource_manager_configuration_source_provider_summary_t type.

Fields

Field Description

api_endpoint

(optional) The Git service endpoint. Example: `https://gitlab.com`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_IMPORT_TF_STATE_JOB_OPERATION_DETAILS_T Type

Job details that are specific to import Terraform state operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_t (
    operation varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_t type.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_IMPORT_TF_STATE_JOB_OPERATION_DETAILS_SUMMARY_T Type

Job details that are specific to import Terraform state operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_summary_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_summary_t (
    operation varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_import_tf_state_job_operation_details_summary_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_summary_t type.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_JOB_T Type

The properties of a job. A job performs the actions that are defined in your Terraform configuration. For instructions on managing jobs, see Managing Jobs. For more information about jobs, see Key Concepts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_job_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  stack_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  operation varchar2(32767),
  is_third_party_provider_experience_enabled number,
  is_provider_upgrade_required number,
  job_operation_details dbms_cloud_oci_resource_manager_job_operation_details_t,
  apply_job_plan_resolution dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t,
  resolved_plan_job_id varchar2(32767),
  time_created timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  failure_details dbms_cloud_oci_resource_manager_failure_details_t,
  cancellation_details dbms_cloud_oci_resource_manager_cancellation_details_t,
  working_directory varchar2(32767),
  variables json_element_t,
  config_source dbms_cloud_oci_resource_manager_config_source_record_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_job_t (
    id varchar2,
    stack_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    operation varchar2,
    is_third_party_provider_experience_enabled number,
    is_provider_upgrade_required number,
    job_operation_details dbms_cloud_oci_resource_manager_job_operation_details_t,
    apply_job_plan_resolution dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t,
    resolved_plan_job_id varchar2,
    time_created timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    failure_details dbms_cloud_oci_resource_manager_failure_details_t,
    cancellation_details dbms_cloud_oci_resource_manager_cancellation_details_t,
    working_directory varchar2,
    variables json_element_t,
    config_source dbms_cloud_oci_resource_manager_config_source_record_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the job.

stack_id

(optional) The OCID of the stack that is associated with the job.

compartment_id

(optional) The OCID of the compartment in which the job's associated stack resides.

display_name

(optional) The job's display name.

operation

(optional) The type of job executing.

Allowed values are: 'PLAN', 'APPLY', 'DESTROY', 'IMPORT_TF_STATE', 'PLAN_ROLLBACK', 'APPLY_ROLLBACK'

is_third_party_provider_experience_enabled

(optional) When `true`, the stack sources third-party Terraform providers from Terraform Registry and allows CUSTOM_TERRAFORM_PROVIDER Function. For more information about stack sourcing of third-party Terraform providers, see Third-party Provider Configuration.

is_provider_upgrade_required

(optional) Specifies whether or not to upgrade provider versions. Within the version constraints of your Terraform configuration, use the latest versions available from the source of Terraform providers. For more information about this option, see Dependency Lock File (terraform.io).

job_operation_details

(optional)

apply_job_plan_resolution

(optional)

resolved_plan_job_id

(optional) Deprecated. Use the property `executionPlanJobId` in `jobOperationDetails` instead. The plan job OCID that was used (if this was an apply job and was not auto-approved).

time_created

(optional) The date and time when the job was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

time_finished

(optional) The date and time when the job stopped running, irrespective of whether the job ran successfully. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

lifecycle_state

(optional) Current state of the specified job. For more information about job lifecycle states in Resource Manager, see Key Concepts.

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

failure_details

(optional)

cancellation_details

(optional)

working_directory

(optional) File path to the directory to use for running Terraform. If not specified, the root directory is used. Required when using a zip Terraform configuration (`configSourceType` value of `ZIP_UPLOAD`) that contains folders. Ignored for the `configSourceType` value of `COMPARTMENT_CONFIG_SOURCE`. For more information about required and recommended file structure, see File Structure (Terraform Configurations for Resource Manager).

variables

(optional) Terraform variables associated with this resource. Maximum number of variables supported is 250. The maximum size of each variable, including both name and value, is 8192 bytes. Example: `{\"CompartmentId\": \"compartment-id-value\"}`

config_source

(optional)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_JOB_OUTPUT_SUMMARY_T Type

Terraform output associated with a job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_job_output_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  output_name varchar2(32767),
  output_type varchar2(32767),
  output_value varchar2(32767),
  is_sensitive number,
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_job_output_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_job_output_summary_t (
    output_name varchar2,
    output_type varchar2,
    output_value varchar2,
    is_sensitive number,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

output_name

(optional) Name of the output.

output_type

(optional) Output resource type.

output_value

(optional) Value of the Terraform output.

is_sensitive

(optional) When `true`, output is sensitive.

description

(optional) Description of the output.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_JOB_OUTPUT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_job_output_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_job_output_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_job_output_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_JOB_OUTPUTS_COLLECTION_T Type

The list of outputs associated with a job.

Syntax

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

Fields

Field Description

items

(required) A list of output summaries.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_JOB_SUMMARY_T Type

Summary information for a job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_job_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  stack_id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  operation varchar2(32767),
  job_operation_details dbms_cloud_oci_resource_manager_job_operation_details_summary_t,
  apply_job_plan_resolution dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t,
  resolved_plan_job_id varchar2(32767),
  time_created timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_job_summary_t (
    id varchar2,
    stack_id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    operation varchar2,
    job_operation_details dbms_cloud_oci_resource_manager_job_operation_details_summary_t,
    apply_job_plan_resolution dbms_cloud_oci_resource_manager_apply_job_plan_resolution_t,
    resolved_plan_job_id varchar2,
    time_created timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the job.

stack_id

(optional) The OCID of the stack that is associated with the specified job.

compartment_id

(optional) The OCID of the compartment where the stack of the associated job resides.

display_name

(optional) The job's display name.

operation

(optional) The type of job executing

job_operation_details

(optional)

apply_job_plan_resolution

(optional)

resolved_plan_job_id

(optional) Deprecated. Use the property `executionPlanJobId` in `jobOperationDetails` instead. The plan job OCID that was used (if this was an apply job and was not auto-approved).

time_created

(optional) The date and time the job was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

time_finished

(optional) The date and time the job succeeded or failed. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

lifecycle_state

(optional) Current state of the specified job. For more information about job lifecycle states in Resource Manager, see Key Concepts. Allowable values: - ACCEPTED - IN_PROGRESS - FAILED - SUCCEEDED - CANCELING - CANCELED

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_LOG_ENTRY_T Type

Log entry for an operation resulting from a job's execution.

Syntax

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

Fields

Field Description

l_type

(optional) Specifies the log type for the log entry.

Allowed values are: 'TERRAFORM_CONSOLE'

l_level

(optional) Specifies the severity level of the log entry.

Allowed values are: 'TRACE', 'DEBUG', 'INFO', 'WARN', 'ERROR', 'FATAL'

l_timestamp

(optional) The date and time of the log entry. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

message

(optional) The log entry value.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_OBJECT_STORAGE_CONFIG_SOURCE_T Type

Metadata about the Object Storage configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_object_storage_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_t (
  l_region varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_object_storage_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_object_storage_config_source_t (
    config_source_type varchar2,
    working_directory varchar2,
    l_region varchar2,
    namespace varchar2,
    bucket_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_object_storage_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_t type.

Fields

Field Description

l_region

(required) The name of the bucket's region. Example: `us-phoenix-1`

namespace

(required) The Object Storage namespace that contains the bucket.

bucket_name

(required) The name of the bucket that contains the Terraform configuration files. Maximum file size (applies to each file in the bucket): 100 MB. (In a bucket, a file is an object.)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_OBJECT_STORAGE_CONFIG_SOURCE_RECORD_T Type

Metadata about the Object Storage configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_object_storage_config_source_record_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_record_t (
  l_region varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_object_storage_config_source_record_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_object_storage_config_source_record_t (
    config_source_record_type varchar2,
    l_region varchar2,
    namespace varchar2,
    bucket_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_object_storage_config_source_record_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_record_t type.

Fields

Field Description

l_region

(required) The name of the bucket's region. Example: `us-phoenix-1`

namespace

(required) The Object Storage namespace that contains the bucket.

bucket_name

(required) The name of the bucket that contains the Terraform configuration files.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PLAN_JOB_OPERATION_DETAILS_T Type

Job details that are specific to plan operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_plan_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_job_operation_details_t (
    operation varchar2,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_plan_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PLAN_JOB_OPERATION_DETAILS_SUMMARY_T Type

Job details that are specific to plan operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_plan_job_operation_details_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_summary_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_job_operation_details_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_job_operation_details_summary_t (
    operation varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_plan_job_operation_details_summary_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_summary_t type.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PLAN_ROLLBACK_JOB_OPERATION_DETAILS_T Type

Job details that are specific to a plan rollback job. For more information about plan rollback jobs, see Creating a Plan Rollback Job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_t (
  terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
  target_rollback_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_t (
    operation varchar2,
    terraform_advanced_options dbms_cloud_oci_resource_manager_terraform_advanced_options_t,
    target_rollback_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_t type.

Fields

Field Description

terraform_advanced_options

(optional)

target_rollback_job_id

(required) The OCID of a successful apply job to use for the plan rollback job.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PLAN_ROLLBACK_JOB_OPERATION_DETAILS_SUMMARY_T Type

Job details that are specific to a plan rollback job. For more information about plan rollback jobs, see Creating a Plan Rollback Job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_job_operation_details_summary_t (
  target_rollback_job_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_summary_t (
    operation varchar2,
    target_rollback_job_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_plan_rollback_job_operation_details_summary_t is a subtype of the dbms_cloud_oci_resource_manager_job_operation_details_summary_t type.

Fields

Field Description

target_rollback_job_id

(required) The OCID of a successful apply job to use for the plan rollback job.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PRIVATE_ENDPOINT_T Type

A private endpoint allowing Resource Manager to access nonpublic cloud resources. For more information about private endpoints, see Private Endpoint Management.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_private_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  source_ips dbms_cloud_oci_resource_manager_varchar2_tbl,
  nsg_id_list dbms_cloud_oci_resource_manager_varchar2_tbl,
  is_used_with_configuration_source_provider number,
  dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_private_endpoint_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_private_endpoint_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    vcn_id varchar2,
    subnet_id varchar2,
    source_ips dbms_cloud_oci_resource_manager_varchar2_tbl,
    nsg_id_list dbms_cloud_oci_resource_manager_varchar2_tbl,
    is_used_with_configuration_source_provider number,
    dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the private endpoint.

compartment_id

(required) The OCID of the compartment containing this private endpoint.

display_name

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

description

(optional) Description of the private endpoint. Avoid entering confidential information.

vcn_id

(required) The OCID of the VCN for the private endpoint.

subnet_id

(required) The OCID of the subnet within the VCN for the private endpoint.

source_ips

(optional) The source IP addresses that Resource Manager uses to connect to your network. Automatically assigned by Resource Manager.

nsg_id_list

(optional) The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.

is_used_with_configuration_source_provider

(optional) When `true`, allows the private endpoint to be used with a configuration source provider.

dns_zones

(optional) DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. Specify DNS fully qualified domain names (FQDNs); DNS Proxy forwards related DNS FQDN queries to the consumer DNS resolver. For DNS FQDNs not specified, queries go to service provider VCN resolver. Example: `abc.oraclevcn.com`

time_created

(optional) The date and time at which the private endpoint was created. Format is defined by RFC3339. Example: `2020-11-25T21:10:29.600Z`

lifecycle_state

(optional) The current lifecycle state of the private endpoint.

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

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PRIVATE_ENDPOINT_SUMMARY_T Type

The summary metadata associated with the private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_private_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  vcn_id varchar2(32767),
  is_used_with_configuration_source_provider number,
  dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_private_endpoint_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_private_endpoint_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    vcn_id varchar2,
    is_used_with_configuration_source_provider number,
    dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the private endpoint.

compartment_id

(required) The OCID of the compartment containing this private endpoint.

display_name

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

description

(optional) Description of the private endpoint. Avoid entering confidential information.

vcn_id

(required) The OCID of the VCN for the private endpoint.

is_used_with_configuration_source_provider

(optional) When `true`, allows the private endpoint to be used with a configuration source provider.

dns_zones

(optional) DNS zones to use for accessing private Git servers. For private Git server instructions, see Private Git Server. DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.

time_created

(optional) The date and time when the private endpoint was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

lifecycle_state

(optional) The current lifecycle state of the private endpoint. Allowable values: - ACTIVE - CREATING - DELETING - DELETED - FAILED

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PRIVATE_ENDPOINT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_private_endpoint_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_private_endpoint_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_private_endpoint_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_PRIVATE_ENDPOINT_COLLECTION_T Type

A list of private endpoints that match filter criteria, if any. Results contain `PrivateEndpointSummary` objects.

Syntax

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

Fields

Field Description

items

(required) A list of private endpoints.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_REACHABLE_IP_T Type

The reachable, or alternative, IP address for a nonpublic IP address that is associated with the private endpoint. Resource Manager uses this IP address to connect to nonpublic resources through the associated private endpoint.

Syntax

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

Fields

Field Description

ip_address

(required) Reachable IP address associated with the private endpoint.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_RESOURCE_DISCOVERY_SERVICE_SUMMARY_T Type

A service supported for use with Resource Discovery.

Syntax

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

Fields

Field Description

name

(optional) A supported service. Example: `core` For reference on service names, see the Terraform provider documentation.

discovery_scope

(optional) The scope of the service as used with Resource Discovery. This property determines the type of compartment OCID required: root compartment (`TENANCY`) or not (`COMPARTMENT`). For example, `identity` is at the root compartment scope while `database` is at the compartment scope.

Allowed values are: 'TENANCY', 'COMPARTMENT'

DBMS_CLOUD_OCI_RESOURCE_MANAGER_RESOURCE_DISCOVERY_SERVICE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_resource_discovery_service_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_resource_discovery_service_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_resource_discovery_service_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_RESOURCE_DISCOVERY_SERVICE_COLLECTION_T Type

Syntax

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

Fields

Field Description

items

(required) Collection of supported services for Resource Discovery.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_STACK_T Type

The properties that define a stack. A stack is the collection of Oracle Cloud Infrastructure resources corresponding to a given Terraform configuration. For instructions on managing stacks, see Managing Stacks. For more information about stacks, see Key Concepts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_stack_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  config_source dbms_cloud_oci_resource_manager_config_source_t,
  custom_terraform_provider dbms_cloud_oci_resource_manager_custom_terraform_provider_t,
  is_third_party_provider_experience_enabled number,
  variables json_element_t,
  terraform_version varchar2(32767),
  stack_drift_status varchar2(32767),
  time_drift_last_checked timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_stack_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_stack_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    config_source dbms_cloud_oci_resource_manager_config_source_t,
    custom_terraform_provider dbms_cloud_oci_resource_manager_custom_terraform_provider_t,
    is_third_party_provider_experience_enabled number,
    variables json_element_t,
    terraform_version varchar2,
    stack_drift_status varchar2,
    time_drift_last_checked timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) Unique identifier (OCID) for the stack.

compartment_id

(optional) Unique identifier (OCID) for the compartment where the stack is located.

display_name

(optional) Human-readable name of the stack.

description

(optional) Description of the stack.

time_created

(optional) The date and time at which the stack was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

lifecycle_state

(optional) The current lifecycle state of the stack. For more information about stack lifecycle states in Resource Manager, see Key Concepts.

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

config_source

(optional)

custom_terraform_provider

(optional)

is_third_party_provider_experience_enabled

(optional) When `true`, the stack sources third-party Terraform providers from Terraform Registry and allows CUSTOM_TERRAFORM_PROVIDER Function. For more information about stack sourcing of third-party Terraform providers, see Third-party Provider Configuration.

variables

(optional) Terraform variables associated with this resource. Maximum number of variables supported is 250. The maximum size of each variable, including both name and value, is 8192 bytes. Example: `{\"CompartmentId\": \"compartment-id-value\"}`

terraform_version

(optional) The version of Terraform specified for the stack. Example: `0.12.x`

stack_drift_status

(optional) Drift status of the stack. Drift refers to differences between the actual (current) state of the stack and the expected (defined) state of the stack.

Allowed values are: 'NOT_CHECKED', 'IN_SYNC', 'DRIFTED'

time_drift_last_checked

(optional) The date and time when the drift detection was last executed. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_STACK_RESOURCE_DRIFT_SUMMARY_T Type

Drift status details for the indicated resource and stack. Includes actual and expected (defined) properties.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_stack_resource_drift_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  stack_id varchar2(32767),
  compartment_id varchar2(32767),
  resource_name varchar2(32767),
  resource_id varchar2(32767),
  resource_type varchar2(32767),
  resource_drift_status varchar2(32767),
  actual_properties json_element_t,
  expected_properties json_element_t,
  time_drift_checked timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_stack_resource_drift_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_stack_resource_drift_summary_t (
    stack_id varchar2,
    compartment_id varchar2,
    resource_name varchar2,
    resource_id varchar2,
    resource_type varchar2,
    resource_drift_status varchar2,
    actual_properties json_element_t,
    expected_properties json_element_t,
    time_drift_checked timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

stack_id

(optional) The OCID of the stack.

compartment_id

(optional) The OCID of the compartment where the stack is located.

resource_name

(optional) The name of the resource as defined in the stack.

resource_id

(optional) The OCID of the resource provisioned by Terraform.

resource_type

(optional) The provider resource type. Must be supported by the Oracle Cloud Infrastructure provider. Example: `oci_core_instance`

resource_drift_status

(optional) The drift status of the resource. A drift status value indicates whether or not the actual state of the resource differs from the expected (defined) state for that resource.

Allowed values are: 'NOT_CHECKED', 'IN_SYNC', 'MODIFIED', 'DELETED'

actual_properties

(optional) Actual values of properties that the stack defines for the indicated resource. Each property and value is provided as a key-value pair. The following example shows actual values for the resource's display name and server type: `{\"display_name\": \"tf-default-dhcp-options-new\", \"options.0.server_type\": \"VcnLocalPlusInternet\"}`

expected_properties

(optional) Expected values of properties that the stack defines for the indicated resource. Each property and value is provided as a key-value pair. The following example shows expected (defined) values for the resource's display name and server type: `{\"display_name\": \"tf-default-dhcp-options\", \"options.0.server_type\": \"VcnLocalPlusInternet\"}`

time_drift_checked

(optional) The date and time when the drift detection was executed. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_STACK_RESOURCE_DRIFT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_stack_resource_drift_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_stack_resource_drift_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_stack_resource_drift_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_STACK_RESOURCE_DRIFT_COLLECTION_T Type

Drift status details for resources in the stack.

Syntax

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

Fields

Field Description

items

(required) Collection of drift status details for all resources defined in the stack.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_STACK_SUMMARY_T Type

Summary information for a stack.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_stack_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  terraform_version varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_stack_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_stack_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    terraform_version varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) Unique identifier of the specified stack.

compartment_id

(optional) Unique identifier of the compartment in which the stack resides.

display_name

(optional) Human-readable display name for the stack.

description

(optional) General description of the stack.

time_created

(optional) The date and time when the stack was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

lifecycle_state

(optional) The current lifecycle state of the stack. For more information about stack lifecycle states in Resource Manager, see Key Concepts. Allowable values: - CREATING - ACTIVE - DELETING - DELETED - FAILED

terraform_version

(optional) The version of Terraform specified for the stack. Example: `0.12.x`

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_CONFIG_SOURCE_T Type

Information about the Template.

Syntax

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

Fields

Field Description

template_config_source_type

(required) The type of configuration source to use for the template configuration.

Allowed values are: 'ZIP_UPLOAD'

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_T Type

The properties that define a template. A template is a pre-built Terraform configuration that provisions a set of resources used in a common scenario.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_template_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  category_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  long_description varchar2(32767),
  is_free_tier number,
  time_created timestamp with time zone,
  template_config_source dbms_cloud_oci_resource_manager_template_config_source_t,
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_template_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_template_t (
    id varchar2,
    compartment_id varchar2,
    category_id varchar2,
    display_name varchar2,
    description varchar2,
    long_description varchar2,
    is_free_tier number,
    time_created timestamp with time zone,
    template_config_source dbms_cloud_oci_resource_manager_template_config_source_t,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier (OCID) for the template.

compartment_id

(optional) The OCID of the compartment containing this template.

category_id

(optional) Unique identifier for the category where the template is located. Possible values are `0` (Quick Starts), `1` (Service), `2` (Architecture), and `3` (Private).

display_name

(optional) Human-readable name of the template.

description

(optional) Brief description of the template.

long_description

(optional) Detailed description of the template. This description is displayed in the Console page listing templates when the template is expanded. Avoid entering confidential information.

is_free_tier

(optional) whether the template will work for free tier tenancy.

time_created

(optional) The date and time at which the template was created. Format is defined by RFC3339. Example: `2020-11-25T21:10:29.600Z`

template_config_source

(optional)

lifecycle_state

(optional) The current lifecycle state of the template.

Allowed values are: 'ACTIVE'

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_CATEGORY_SUMMARY_T Type

Summary information for the template category.

Syntax

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

Fields

Field Description

id

(optional) Unique identifier for the template category. Possible values are `0` (Quickstarts), `1` (Service), `2` (Architecture), and `3` (Private). Template category labels are displayed in the Console page listing templates. Quickstarts, Service, and Architecture templates (categories 0, 1, and 2) are available in all compartments. Each private template (category 3) is available in the compartment where it was created.

display_name

(optional) The name of the template category.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_CATEGORY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_template_category_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_template_category_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_template_category_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_CATEGORY_SUMMARY_COLLECTION_T Type

Results of a `ListTemplateCategories` operation.

Syntax

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

Fields

Field Description

items

(required) A list of template categories.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_SUMMARY_T Type

Summary information for a template.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_template_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  is_free_tier number,
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_template_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_template_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    description varchar2,
    is_free_tier number,
    time_created timestamp with time zone,
    lifecycle_state varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) Unique identifier of the specified template.

compartment_id

(optional) The OCID of the compartment containing this template.

display_name

(optional) Human-readable display name for the template.

description

(optional) Brief description of the template.

is_free_tier

(optional) whether the template will work for free tier tenancy.

time_created

(optional) The date and time at which the template was created. Format is defined by RFC3339. Example: `2020-11-25T21:10:29.600Z`

lifecycle_state

(optional) The current lifecycle state of the template. Allowable values: - ACTIVE

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_template_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_template_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_template_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_SUMMARY_COLLECTION_T Type

Results of a `ListTemplates` operation.

Syntax

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

Fields

Field Description

items

(required) A list of template summaries.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TEMPLATE_ZIP_UPLOAD_CONFIG_SOURCE_T Type

Metadata about the zip file containing the Terraform configuration for the template.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_template_zip_upload_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_template_config_source_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_template_zip_upload_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_template_zip_upload_config_source_t (
    template_config_source_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_template_zip_upload_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_template_config_source_t type.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TERRAFORM_VERSION_SUMMARY_T Type

A Terraform version supported for use with stacks.

Syntax

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

Fields

Field Description

name

(optional) A supported Terraform version. Example: `0.12.x`

is_default

(optional) Indicates whether this Terraform version is used by default in CREATE_STACK Function.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TERRAFORM_VERSION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_terraform_version_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_terraform_version_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_terraform_version_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_TERRAFORM_VERSION_COLLECTION_T Type

The list of Terraform versions supported for use with stacks.

Syntax

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

Fields

Field Description

items

(required) Collection of supported Terraform versions.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_CONFIG_SOURCE_DETAILS_T Type

Update details for a configuration source.

Syntax

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

Fields

Field Description

config_source_type

(required) Specifies the `configSourceType` for uploading the Terraform configuration.

working_directory

(optional) File path to the directory to use for running Terraform. If not specified, the root directory is used. Required when using a zip Terraform configuration (`configSourceType` value of `ZIP_UPLOAD`) that contains folders. Ignored for the `configSourceType` value of `COMPARTMENT_CONFIG_SOURCE`. For more information about required and recommended file structure, see File Structure (Terraform Configurations for Resource Manager).

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_BITBUCKET_CLOUD_CONFIG_SOURCE_DETAILS_T Type

Update details for a Bitbucket Cloud configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_bitbucket_cloud_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_config_source_details_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  workspace_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_cloud_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_cloud_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    workspace_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_bitbucket_cloud_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_config_source_details_t type.

Fields

Field Description

configuration_source_provider_id

(required) The OCID of the Bitbucket Cloud configuration source.

repository_url

(optional) The URL of the Bitbucket Cloud repository for the configuration source.

branch_name

(optional) The name of the branch in the Bitbucket Cloud repository for the configuration source.

workspace_id

(optional) The id of the workspace in Bitbucket Cloud for the configuration source

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Update details for a configuration source provider.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  config_source_provider_type varchar2(32767),
  private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t (
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) Human-readable name of the configuration source provider. Avoid entering confidential information.

description

(optional) Description of the configuration source provider. Avoid entering confidential information.

config_source_provider_type

(optional) The type of configuration source provider. The `BITBUCKET_CLOUD_USERNAME_APPPASSWORD` type corresponds to Bitbucket Cloud. The `BITBUCKET_SERVER_ACCESS_TOKEN` type corresponds to Bitbucket Server. The `GITLAB_ACCESS_TOKEN` type corresponds to GitLab. The `GITHUB_ACCESS_TOKEN` type corresponds to GitHub.

private_server_config_details

(optional)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_BITBUCKET_CLOUD_USERNAME_APP_PASSWORD_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Update details for a configuration source provider of the type `BITBUCKET_CLOUD_USERNAME_APPPASSWORD`. This type corresponds to a configuration source provider in Bitbucket that is authenticated with a username and app password.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_bitbucket_cloud_username_app_password_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t (
  api_endpoint varchar2(32767),
  username varchar2(32767),
  secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_cloud_username_app_password_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_cloud_username_app_password_configuration_source_provider_details_t (
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2,
    username varchar2,
    secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_bitbucket_cloud_username_app_password_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t type.

Fields

Field Description

api_endpoint

(optional) The Bitbucket service endpoint. Example: `https://bitbucket.org/`

username

(optional) The username for the user of the Bitbucket cloud repository.

secret_id

(optional) The secret ocid which is used to authorize the user.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_BITBUCKET_SERVER_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

The details for creating a configuration source provider of the type `BITBUCKET_SERVER_ACCESS_TOKEN`. This type corresponds to a configuration source provider in Bitbucket server that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_bitbucket_server_access_token_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t (
  secret_id varchar2(32767),
  api_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_server_access_token_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_server_access_token_configuration_source_provider_details_t (
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    secret_id varchar2,
    api_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_bitbucket_server_access_token_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t type.

Fields

Field Description

secret_id

(optional) The secret ocid which is used to authorize the user.

api_endpoint

(optional) The Bitbucket server service endpoint Example: `https://bitbucket.org/`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_BITBUCKET_SERVER_CONFIG_SOURCE_DETAILS_T Type

Update details for a Bitbucket Server configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_bitbucket_server_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_config_source_details_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  project_id varchar2(32767),
  repository_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_server_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_bitbucket_server_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2,
    project_id varchar2,
    repository_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_bitbucket_server_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_config_source_details_t type.

Fields

Field Description

configuration_source_provider_id

(required) Unique identifier (OCID) for the Bitbucket Server configuration source.

repository_url

(optional) The URL of the Bitbucket Server repository.

branch_name

(optional) The name of the branch within the Bitbucket Server repository.

project_id

(optional) Unique identifier for a Bitbucket Server project.

repository_id

(optional) Bitbucket Server repository identifier, usually identified as <repository>.git.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_DEV_OPS_CONFIG_SOURCE_DETAILS_T Type

Update details for a DevOps configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_dev_ops_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_config_source_details_t (
  project_id varchar2(32767),
  repository_id varchar2(32767),
  branch_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_dev_ops_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_dev_ops_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    project_id varchar2,
    repository_id varchar2,
    branch_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_dev_ops_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_config_source_details_t type.

Fields

Field Description

project_id

(required) The OCID of the PROJECT Type.

repository_id

(required) The OCID of the REPOSITORY Type.

branch_name

(optional) The name of the branch that contains the Terraform configuration.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_GIT_CONFIG_SOURCE_DETAILS_T Type

Update details for a Git configuration source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_git_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_config_source_details_t (
  configuration_source_provider_id varchar2(32767),
  repository_url varchar2(32767),
  branch_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_git_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_git_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    configuration_source_provider_id varchar2,
    repository_url varchar2,
    branch_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_git_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_config_source_details_t type.

Fields

Field Description

configuration_source_provider_id

(required) Unique identifier (OCID) for the Git configuration source.

repository_url

(optional) The URL of the Git repository.

branch_name

(optional) The name of the branch within the Git repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_GITHUB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Update details for a configuration source provider of the type `GITHUB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitHub that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_github_access_token_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t (
  api_endpoint varchar2(32767),
  access_token varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_github_access_token_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_github_access_token_configuration_source_provider_details_t (
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2,
    access_token varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_github_access_token_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t type.

Fields

Field Description

api_endpoint

(optional) The GitHub service endpoint. Example: `https://github.com/`

access_token

(optional) The personal access token to be configured on the GitHub repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_GITLAB_ACCESS_TOKEN_CONFIGURATION_SOURCE_PROVIDER_DETAILS_T Type

Update details for configuration source provider of the type `GITLAB_ACCESS_TOKEN`. This type corresponds to a configuration source provider in GitLab that is authenticated with a personal access token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_gitlab_access_token_configuration_source_provider_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t (
  api_endpoint varchar2(32767),
  access_token varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_gitlab_access_token_configuration_source_provider_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_gitlab_access_token_configuration_source_provider_details_t (
    display_name varchar2,
    description varchar2,
    config_source_provider_type varchar2,
    private_server_config_details dbms_cloud_oci_resource_manager_private_server_config_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    api_endpoint varchar2,
    access_token varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_gitlab_access_token_configuration_source_provider_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_configuration_source_provider_details_t type.

Fields

Field Description

api_endpoint

(optional) The Git service endpoint. Example: `https://gitlab.com`

access_token

(optional) The personal access token to be configured on the GitLab repository.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_JOB_DETAILS_T Type

Update details for a job.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_job_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_resource_manager_update_job_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_job_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) The new display name to set.

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_OBJECT_STORAGE_CONFIG_SOURCE_DETAILS_T Type

Update details for an Object Storage bucket that contains Terraform configuration files.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_object_storage_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_config_source_details_t (
  l_region varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_object_storage_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_object_storage_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    l_region varchar2,
    namespace varchar2,
    bucket_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_object_storage_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_config_source_details_t type.

Fields

Field Description

l_region

(optional) The name of the bucket's region. Example: `us-phoenix-1`

namespace

(optional) The Object Storage namespace that contains the bucket.

bucket_name

(optional) The name of the bucket that contains the Terraform configuration files.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_PRIVATE_ENDPOINT_DETAILS_T Type

Update details for a private endpoint.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  vcn_id varchar2(32767),
  subnet_id varchar2(32767),
  dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
  nsg_id_list dbms_cloud_oci_resource_manager_varchar2_tbl,
  is_used_with_configuration_source_provider number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_private_endpoint_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_private_endpoint_details_t (
    display_name varchar2,
    description varchar2,
    vcn_id varchar2,
    subnet_id varchar2,
    dns_zones dbms_cloud_oci_resource_manager_varchar2_tbl,
    nsg_id_list dbms_cloud_oci_resource_manager_varchar2_tbl,
    is_used_with_configuration_source_provider number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The private endpoint display name. Avoid entering confidential information.

description

(optional) Description of the private endpoint. Avoid entering confidential information.

vcn_id

(optional) The OCID of the VCN for the private endpoint.

subnet_id

(optional) The OCID of the subnet within the VCN for the private endpoint.

dns_zones

(optional) DNS Proxy forwards any DNS FQDN queries over into the consumer DNS resolver if the DNS FQDN is included in the dns zones list otherwise it goes to service provider VCN resolver.

nsg_id_list

(optional) The OCIDs of network security groups (NSGs) for the private endpoint. Order does not matter.

is_used_with_configuration_source_provider

(optional) When `true`, allows the private endpoint to be used with a configuration source provider.

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_STACK_DETAILS_T Type

Update details for a stack.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_stack_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  config_source dbms_cloud_oci_resource_manager_update_config_source_details_t,
  custom_terraform_provider dbms_cloud_oci_resource_manager_custom_terraform_provider_t,
  is_third_party_provider_experience_enabled number,
  variables json_element_t,
  terraform_version varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_stack_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_stack_details_t (
    display_name varchar2,
    description varchar2,
    config_source dbms_cloud_oci_resource_manager_update_config_source_details_t,
    custom_terraform_provider dbms_cloud_oci_resource_manager_custom_terraform_provider_t,
    is_third_party_provider_experience_enabled number,
    variables json_element_t,
    terraform_version varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The name of the stack.

description

(optional) Description of the stack.

config_source

(optional)

custom_terraform_provider

(optional)

is_third_party_provider_experience_enabled

(optional) When `true`, changes the stack's sourcing of third-party Terraform providers to Terraform Registry and allows CUSTOM_TERRAFORM_PROVIDER Function. Applies to older stacks. Once set to `true`, cannot be reverted. For more information about stack sourcing of third-party Terraform providers, see Third-party Provider Configuration.

variables

(optional) Terraform variables associated with this resource. The maximum number of variables supported is 250. The maximum size of each variable, including both name and value, is 8192 bytes. Example: `{\"CompartmentId\": \"compartment-id-value\"}`

terraform_version

(optional) The version of Terraform to use with the stack. Example: `0.12.x`

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_TEMPLATE_CONFIG_SOURCE_DETAILS_T Type

Update details for a configuration source for a template.

Syntax

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

Fields

Field Description

template_config_source_type

(required) Specifies the `configSourceType` for uploading the Terraform configuration.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_TEMPLATE_DETAILS_T Type

Update details for a template.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_template_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  long_description varchar2(32767),
  logo_file_base64_encoded varchar2(32767),
  template_config_source dbms_cloud_oci_resource_manager_update_template_config_source_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_template_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_template_details_t (
    display_name varchar2,
    description varchar2,
    long_description varchar2,
    logo_file_base64_encoded varchar2,
    template_config_source dbms_cloud_oci_resource_manager_update_template_config_source_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The template's display name. Avoid entering confidential information.

description

(optional) Description of the template. Avoid entering confidential information.

long_description

(optional) Detailed description of the template. This description is displayed in the Console page listing templates when the template is expanded. Avoid entering confidential information.

logo_file_base64_encoded

(optional) Base64-encoded logo for the template.

template_config_source

(optional)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_TEMPLATE_ZIP_UPLOAD_CONFIG_SOURCE_DETAILS_T Type

Update details for a configuration zip file.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_template_zip_upload_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_template_config_source_details_t (
  zip_file_base64_encoded varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_template_zip_upload_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_template_zip_upload_config_source_details_t (
    template_config_source_type varchar2,
    zip_file_base64_encoded varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_template_zip_upload_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_template_config_source_details_t type.

Fields

Field Description

zip_file_base64_encoded

(optional)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_UPDATE_ZIP_UPLOAD_CONFIG_SOURCE_DETAILS_T Type

Update details for a Terraform configuration zip file.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_update_zip_upload_config_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_update_config_source_details_t (
  zip_file_base64_encoded varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_zip_upload_config_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_update_zip_upload_config_source_details_t (
    config_source_type varchar2,
    working_directory varchar2,
    zip_file_base64_encoded varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_update_zip_upload_config_source_details_t is a subtype of the dbms_cloud_oci_resource_manager_update_config_source_details_t type.

Fields

Field Description

zip_file_base64_encoded

(optional)

DBMS_CLOUD_OCI_RESOURCE_MANAGER_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
  action_type varchar2(32767),
  entity_type varchar2(32767),
  identifier varchar2(32767),
  entity_uri varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_work_request_resource_t (
    action_type varchar2,
    entity_type varchar2,
    identifier varchar2,
    entity_uri varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

action_type

(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource at which point it will transition to CREATED, UPDATED, or DELETED, respectively.

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

entity_type

(required) The resource type the work request affects.

identifier

(required) An OCID or other unique identifier for the resource.

entity_uri

(optional) The URI path that you can use for a GET request to access the resource metadata.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_resource_manager_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_resource_manager_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_RESOURCE_MANAGER_WORK_REQUEST_T Type

The status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_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_resource_manager_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_resource_manager_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_resource_manager_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The asynchronous operation tracked by this work request.

Allowed values are: 'CHANGE_STACK_COMPARTMENT', 'CREATE_STACK_FROM_COMPARTMENT', 'DRIFT_DETECTION', 'CREATE_PRIVATE_ENDPOINT', 'UPDATE_PRIVATE_ENDPOINT', 'DELETE_PRIVATE_ENDPOINT'

status

(required) The status of the work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED'

id

(required) The OCID identifying this work request.

compartment_id

(required) The OCID of the compartment containing this work request.

resources

(required) The resources affected by this work request.

percent_complete

(required) The amount of work done relative to the total amount of work.

time_accepted

(required) The date and time when the work request was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

time_started

(optional) The date and time when the work request transitioned from ACCEPTED to IN_PROGRESS. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

time_finished

(optional) The date and time when the work request reached a terminal state (FAILED or SUCCEEDED). Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_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_resource_manager_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_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 short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error string.

l_timestamp

(required) The date and time when the error happened. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_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_resource_manager_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_resource_manager_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_work_request_log_entry_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) A human-readable log message.

l_timestamp

(required) The date and time when the log message was written. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_WORK_REQUEST_SUMMARY_T Type

A summary of the status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_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_resource_manager_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_resource_manager_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_resource_manager_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The asynchronous operation tracked by this work request.

status

(required) The status of the specified work request.

id

(required) The OCID identifying this work request.

compartment_id

(required) Unique identifier (OCID) of the compartment that contains the work request.

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the work request completed.

time_accepted

(required) The date and time when the work request was created. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

time_started

(optional) The date and time when the work request transitioned from ACCEPTED to IN_PROGRESS. Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

time_finished

(optional) The date and time when the work request reached a terminal state (FAILED or SUCCEEDED). Format is defined by RFC3339. Example: `2020-01-25T21:10:29.600Z`

DBMS_CLOUD_OCI_RESOURCE_MANAGER_ZIP_UPLOAD_CONFIG_SOURCE_T Type

Metadata about the zip file containing the Terraform configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_zip_upload_config_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_zip_upload_config_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_zip_upload_config_source_t (
    config_source_type varchar2,
    working_directory varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_zip_upload_config_source_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_t type.

DBMS_CLOUD_OCI_RESOURCE_MANAGER_ZIP_UPLOAD_CONFIG_SOURCE_RECORD_T Type

Information about the user-provided Terraform configuration zip file.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_resource_manager_zip_upload_config_source_record_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_resource_manager_config_source_record_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_zip_upload_config_source_record_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_resource_manager_zip_upload_config_source_record_t (
    config_source_record_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_resource_manager_zip_upload_config_source_record_t is a subtype of the dbms_cloud_oci_resource_manager_config_source_record_t type.

Was this article helpful?