Media Services Media Stream Types

DBMS_CLOUD_OCI_MDS_MEDIA_STREAM_GENERATE_PLAYLIST_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of generate_playlist

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_MDS_MEDIA_STREAM_GENERATE_SESSION_TOKEN_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of generate_session_token

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer