Tenant Manager Control Plane Domain Types

DBMS_CLOUD_OCI_TMCP_DOMAIN_CREATE_DOMAIN_RESPONSE_T Type

Contains the response body, headers and the status code of the create_domain request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_create_domain_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_tenant_manager_control_plane_domain_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of create_domain

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_DOMAIN_DELETE_DOMAIN_RESPONSE_T Type

Contains the response body, headers and the status code of the delete_domain request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_delete_domain_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_DOMAIN_GET_DOMAIN_RESPONSE_T Type

Contains the response body, headers and the status code of the get_domain request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_get_domain_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_tenant_manager_control_plane_domain_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of get_domain

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_DOMAIN_LIST_DOMAINS_RESPONSE_T Type

Contains the response body, headers and the status code of the list_domains request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_list_domains_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_tenant_manager_control_plane_domain_collection_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of list_domains

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_DOMAIN_UPDATE_DOMAIN_RESPONSE_T Type

Contains the response body, headers and the status code of the update_domain request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_update_domain_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
  response_body dbms_cloud_oci_tenant_manager_control_plane_domain_t,
  headers json_object_t,
  status_code number 
) NOT PERSISTABLE;

Fields

Field Description

response_body

Response body of update_domain

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer