Tenant Manager Control Plane Sender Invitation Types

DBMS_CLOUD_OCI_TMCP_SENDER_INVITATION_CANCEL_SENDER_INVITATION_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_sender_invitation_cancel_sender_invitation_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_SENDER_INVITATION_CREATE_SENDER_INVITATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_sender_invitation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_SENDER_INVITATION_GET_SENDER_INVITATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_sender_invitation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_SENDER_INVITATION_LIST_SENDER_INVITATIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_sender_invitations

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_SENDER_INVITATION_UPDATE_SENDER_INVITATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_sender_invitation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer