Tenant Manager Control Plane Domain Governance Types
DBMS_CLOUD_OCI_TMCP_DOMAIN_GOVERNANCE_CREATE_DOMAIN_GOVERNANCE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the create_domain_governance request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_governance_create_domain_governance_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_tenant_manager_control_plane_domain_governance_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of create_domain_governance
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TMCP_DOMAIN_GOVERNANCE_DELETE_DOMAIN_GOVERNANCE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the delete_domain_governance request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_governance_delete_domain_governance_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_GOVERNANCE_GET_DOMAIN_GOVERNANCE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the get_domain_governance request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_governance_get_domain_governance_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_tenant_manager_control_plane_domain_governance_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of get_domain_governance
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TMCP_DOMAIN_GOVERNANCE_LIST_DOMAIN_GOVERNANCES_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the list_domain_governances request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_governance_list_domain_governances_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_tenant_manager_control_plane_domain_governance_collection_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;
Fields
Field
Description
response_body
Response body of list_domain_governances
headers
Response headers as JSON data in a JSON object
status_code
HTTP response status code as an integer
DBMS_CLOUD_OCI_TMCP_DOMAIN_GOVERNANCE_UPDATE_DOMAIN_GOVERNANCE_RESPONSE_T Type 🔗
Contains the response body, headers and the status code of the update_domain_governance request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_domain_governance_update_domain_governance_response_t FORCE AUTHID CURRENT_USER IS OBJECT (
response_body dbms_cloud_oci_tenant_manager_control_plane_domain_governance_t,
headers json_object_t,
status_code number
) NOT PERSISTABLE;