Optimizer Types

DBMS_CLOUD_OCI_OP_OPTIMIZER_BULK_APPLY_RECOMMENDATIONS_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_op_optimizer_bulk_apply_recommendations_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_OP_OPTIMIZER_CREATE_PROFILE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_profile

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_DELETE_PROFILE_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_op_optimizer_delete_profile_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_OP_OPTIMIZER_FILTER_RESOURCE_ACTIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of filter_resource_actions

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_GET_CATEGORY_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_category

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_GET_ENROLLMENT_STATUS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_enrollment_status

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_GET_PROFILE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_profile

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_GET_RECOMMENDATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_recommendation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_GET_RESOURCE_ACTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_resource_action

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_GET_WORK_REQUEST_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_work_request

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_CATEGORIES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_categories

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_ENROLLMENT_STATUSES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_enrollment_statuses

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_HISTORIES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_histories

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_PROFILE_LEVELS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_profile_levels

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_PROFILES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_profiles

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_RECOMMENDATION_STRATEGIES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_recommendation_strategies

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_RECOMMENDATIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_recommendations

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_RESOURCE_ACTION_QUERYABLE_FIELDS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_resource_action_queryable_fields

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_RESOURCE_ACTIONS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_resource_actions

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_WORK_REQUEST_ERRORS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_work_request_errors

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_WORK_REQUEST_LOGS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_work_request_logs

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_LIST_WORK_REQUESTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_work_requests

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_UPDATE_ENROLLMENT_STATUS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_enrollment_status

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_UPDATE_PROFILE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_profile

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_UPDATE_RECOMMENDATION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_recommendation

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_OP_OPTIMIZER_UPDATE_RESOURCE_ACTION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of update_resource_action

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

Was this article helpful?