Identity Dataplane Types

DBMS_CLOUD_OCI_IDP_DATAPLANE_GENERATE_SCOPED_ACCESS_TOKEN_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of generate_scoped_access_token

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_IDP_DATAPLANE_GENERATE_USER_SECURITY_TOKEN_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of generate_user_security_token

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer