Tenant Manager Control Plane Recipient Invitation Types

DBMS_CLOUD_OCI_TMCP_RECIPIENT_INVITATION_ACCEPT_RECIPIENT_INVITATION_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_tmcp_recipient_invitation_accept_recipient_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_RECIPIENT_INVITATION_GET_RECIPIENT_INVITATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_recipient_invitation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_RECIPIENT_INVITATION_IGNORE_RECIPIENT_INVITATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of ignore_recipient_invitation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_RECIPIENT_INVITATION_LIST_RECIPIENT_INVITATIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_recipient_invitations

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_TMCP_RECIPIENT_INVITATION_UPDATE_RECIPIENT_INVITATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_recipient_invitation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer