Governance Rules CP Types

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_CREATE_GOVERNANCE_RULE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_governance_rule

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_CREATE_INCLUSION_CRITERION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of create_inclusion_criterion

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_DELETE_GOVERNANCE_RULE_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_grcp_governance_rule_delete_governance_rule_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_GRCP_GOVERNANCE_RULE_DELETE_INCLUSION_CRITERION_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_grcp_governance_rule_delete_inclusion_criterion_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_GRCP_GOVERNANCE_RULE_GET_ENFORCED_GOVERNANCE_RULE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_enforced_governance_rule

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_GET_GOVERNANCE_RULE_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_governance_rule

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_GET_INCLUSION_CRITERION_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_inclusion_criterion

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_GET_TENANCY_ATTACHMENT_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of get_tenancy_attachment

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_LIST_ENFORCED_GOVERNANCE_RULES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_enforced_governance_rules

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_LIST_GOVERNANCE_RULES_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_governance_rules

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_LIST_INCLUSION_CRITERIA_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_inclusion_criteria

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_LIST_TENANCY_ATTACHMENTS_RESPONSE_T Type

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

Syntax

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

Fields

Field Description

response_body

Response body of list_tenancy_attachments

headers

Response headers as JSON data in a JSON object

status_code

HTTP response status code as an integer

DBMS_CLOUD_OCI_GRCP_GOVERNANCE_RULE_RETRY_GOVERNANCE_RULE_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_grcp_governance_rule_retry_governance_rule_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_GRCP_GOVERNANCE_RULE_RETRY_TENANCY_ATTACHMENT_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_grcp_governance_rule_retry_tenancy_attachment_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_GRCP_GOVERNANCE_RULE_UPDATE_GOVERNANCE_RULE_RESPONSE_T Type

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

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_grcp_governance_rule_update_governance_rule_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