Tenant Manager Control Plane Link Types

DBMS_CLOUD_OCI_TMCP_LINK_DELETE_LINK_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_link_delete_link_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_LINK_GET_LINK_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_link

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_LINK_LIST_LINKS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_links

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer