Limits Quotas Types

DBMS_CLOUD_OCI_LM_QUOTAS_ADD_QUOTA_LOCK_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of add_quota_lock

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_LM_QUOTAS_CREATE_QUOTA_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_quota

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_LM_QUOTAS_DELETE_QUOTA_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_lm_quotas_delete_quota_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_LM_QUOTAS_GET_QUOTA_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_quota

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_LIMITS_QUOTA_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_limits_quota_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_limits_quota_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_limits_quota_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_LM_QUOTAS_LIST_QUOTAS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_quotas

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_LM_QUOTAS_REMOVE_QUOTA_LOCK_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of remove_quota_lock

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_LM_QUOTAS_UPDATE_QUOTA_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_quota

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer