API Gateway Common Types

DBMS_CLOUD_OCI_APIGATEWAY_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_ACCESS_LOG_POLICY_T Type

Configures the logging policies for the access logs of an API Deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_access_log_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_access_log_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_access_log_policy_t (
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) Enables pushing of access logs to the legacy OCI Object Storage log archival bucket. Oracle recommends using the OCI Logging service to enable, retrieve, and query access logs for an API Deployment. If there is an active log object for the API Deployment and its category is set to 'access' in OCI Logging service, the logs will not be uploaded to the legacy OCI Object Storage log archival bucket. Please note that the functionality to push to the legacy OCI Object Storage log archival bucket has been deprecated and will be removed in the future.

DBMS_CLOUD_OCI_APIGATEWAY_JSON_WEB_TOKEN_CLAIM_T Type

An individual JWT claim.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_json_web_token_claim_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  l_values dbms_cloud_oci_apigateway_varchar2_tbl,
  is_required number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_json_web_token_claim_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_json_web_token_claim_t (
    key varchar2,
    l_values dbms_cloud_oci_apigateway_varchar2_tbl,
    is_required number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) Name of the claim.

l_values

(optional) The list of acceptable values for a given claim. If this value is \"null\" or empty and \"isRequired\" set to \"true\", then the presence of this claim in the JWT is validated.

is_required

(optional) Whether the claim is required to be present in the JWT or not. If set to \"false\", the claim values will be matched only if the claim is present in the JWT.

DBMS_CLOUD_OCI_APIGATEWAY_JSON_WEB_TOKEN_CLAIM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_json_web_token_claim_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_json_web_token_claim_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_json_web_token_claim_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_ADDITIONAL_VALIDATION_POLICY_T Type

Additional JWT validation checks.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_additional_validation_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  issuers dbms_cloud_oci_apigateway_varchar2_tbl,
  audiences dbms_cloud_oci_apigateway_varchar2_tbl,
  verify_claims dbms_cloud_oci_apigateway_json_web_token_claim_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_additional_validation_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_additional_validation_policy_t (
    issuers dbms_cloud_oci_apigateway_varchar2_tbl,
    audiences dbms_cloud_oci_apigateway_varchar2_tbl,
    verify_claims dbms_cloud_oci_apigateway_json_web_token_claim_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

issuers

(optional) A list of parties that could have issued the token.

audiences

(optional) The list of intended recipients for the token.

verify_claims

(optional) A list of claims which should be validated to consider the token valid.

DBMS_CLOUD_OCI_APIGATEWAY_ROUTE_AUTHORIZATION_POLICY_T Type

If authentication has been performed, validate whether the request scope (if any) applies to this route. If no RouteAuthorizationPolicy is defined for a route, a policy with a type of AUTHENTICATION_ONLY is applied.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_route_authorization_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_route_authorization_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_route_authorization_policy_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(optional) Indicates how authorization should be applied. For a type of ANY_OF, an \"allowedScope\" property must also be specified. Otherwise, only a type is required. For a type of ANONYMOUS, an authenticated API must have the \"isAnonymousAccessAllowed\" property set to \"true\" in the authentication policy.

Allowed values are: 'ANONYMOUS', 'ANY_OF', 'AUTHENTICATION_ONLY'

DBMS_CLOUD_OCI_APIGATEWAY_ANONYMOUS_ROUTE_AUTHORIZATION_POLICY_T Type

For a type of ANONYMOUS, an authenticated API must have the \"isAnonymousAccessAllowed\" property set to \"true\" in the authentication policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_anonymous_route_authorization_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_route_authorization_policy_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_anonymous_route_authorization_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_anonymous_route_authorization_policy_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_anonymous_route_authorization_policy_t is a subtype of the dbms_cloud_oci_apigateway_route_authorization_policy_t type.

DBMS_CLOUD_OCI_APIGATEWAY_ANY_OF_ROUTE_AUTHORIZATION_POLICY_T Type

If authentication has been performed, validate whether the request scope (if any) applies to this route.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_any_of_route_authorization_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_route_authorization_policy_t (
  allowed_scope dbms_cloud_oci_apigateway_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_any_of_route_authorization_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_any_of_route_authorization_policy_t (
    l_type varchar2,
    allowed_scope dbms_cloud_oci_apigateway_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_any_of_route_authorization_policy_t is a subtype of the dbms_cloud_oci_apigateway_route_authorization_policy_t type.

Fields

Field Description

allowed_scope

(required) A user whose scope includes any of these access ranges is allowed on this route. Access ranges are case-sensitive.

DBMS_CLOUD_OCI_APIGATEWAY_DYNAMIC_SELECTION_KEY_T Type

Base policy for defining how to match the context variable in an incoming request with selection keys when dynamically routing and dynamically authenticating requests.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_dynamic_selection_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  is_default number,
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_selection_key_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_selection_key_t (
    l_type varchar2,
    is_default number,
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(optional) Type of the selection key.

Allowed values are: 'ANY_OF', 'WILDCARD'

is_default

(optional) Specifies whether to use the route or authentication server associated with this selection key as the default. The default is used if the value of a context variable in an incoming request does not match any of the other selection key values when dynamically routing and dynamically authenticating requests.

name

(required) Name assigned to the branch.

DBMS_CLOUD_OCI_APIGATEWAY_ANY_OF_SELECTION_KEY_T Type

When dynamically routing and dynamically authenticating requests, the route or authentication server associated with a set of selection keys is used if the context variable in an incoming request exactly matches one of the keys in the set.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_any_of_selection_key_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_dynamic_selection_key_t (
  l_values dbms_cloud_oci_apigateway_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_any_of_selection_key_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_any_of_selection_key_t (
    l_type varchar2,
    is_default number,
    name varchar2,
    l_values dbms_cloud_oci_apigateway_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_any_of_selection_key_t is a subtype of the dbms_cloud_oci_apigateway_dynamic_selection_key_t type.

Fields

Field Description

l_values

(optional) The set of selection keys to match with the context variable in an incoming request. If the context variable exactly matches one of the keys in the set, the request is sent to the route or authentication server associated with the set.

DBMS_CLOUD_OCI_APIGATEWAY_API_VALIDATION_RESULT_T Type

The result of single validation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_validation_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  result varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validation_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validation_result_t (
    name varchar2,
    result varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of the validation.

result

(required) Result of the validation.

Allowed values are: 'ERROR', 'WARNING', 'OK', 'FAILED'

DBMS_CLOUD_OCI_APIGATEWAY_API_VALIDATION_RESULT_TBL Type

Nested table type of dbms_cloud_oci_apigateway_api_validation_result_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_validation_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_api_validation_result_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_API_T Type

An API is simple container for an API Specification. For more information, see API Gateway Concepts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  specification_type varchar2(32767),
  validation_results dbms_cloud_oci_apigateway_api_validation_result_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    specification_type varchar2,
    validation_results dbms_cloud_oci_apigateway_api_validation_result_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

time_created

(optional) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the API.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current lifecycleState in more detail. For ACTIVE state it describes if the document has been validated and the possible values are: - 'New' for just updated API Specifications - 'Validating' for a document which is being validated. - 'Valid' the document has been validated without any errors or warnings - 'Warning' the document has been validated and contains warnings - 'Error' the document has been validated and contains errors - 'Failed' the document validation failed - 'Canceled' the document validation was canceled For other states it may provide more details like actionable information.

specification_type

(optional) Type of API Specification file.

validation_results

(optional) Status of each feature available from the API.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_API_SUMMARY_T Type

A summary of the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  specification_type varchar2(32767),
  validation_results dbms_cloud_oci_apigateway_api_validation_result_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    specification_type varchar2,
    validation_results dbms_cloud_oci_apigateway_api_validation_result_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

time_created

(optional) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the API.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current lifecycleState in more detail. For ACTIVE state it describes if the document has been validated and the possible values are: - 'New' for just updated API Specifications - 'Validating' for a document which is being validated. - 'Valid' the document has been validated without any errors or warnings - 'Warning' the document has been validated and contains warnings - 'Error' the document has been validated and contains errors - 'Failed' the document validation failed - 'Canceled' the document validation was canceled For other states it may provide more details like actionable information.

specification_type

(optional) Type of API Specification file.

validation_results

(optional) Status of each feature available from the API.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_API_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_api_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_api_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_API_COLLECTION_T Type

Collection of API summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_api_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_collection_t (
    items dbms_cloud_oci_apigateway_api_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) API summaries.

DBMS_CLOUD_OCI_APIGATEWAY_AUTHENTICATION_POLICY_T Type

Information on how to authenticate incoming requests.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_authentication_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_anonymous_access_allowed number,
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_authentication_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_authentication_policy_t (
    is_anonymous_access_allowed number,
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

is_anonymous_access_allowed

(optional) Whether an unauthenticated user may access the API. Must be \"true\" to enable ANONYMOUS route authorization.

l_type

(required) Type of the authentication policy to use.

Allowed values are: 'CUSTOM_AUTHENTICATION', 'JWT_AUTHENTICATION', 'TOKEN_AUTHENTICATION'

DBMS_CLOUD_OCI_APIGATEWAY_RATE_LIMITING_POLICY_T Type

Limit the number of requests that should be handled for the specified window using a specfic key.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rate_limiting_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rate_in_requests_per_second number,
  rate_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rate_limiting_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rate_limiting_policy_t (
    rate_in_requests_per_second number,
    rate_key varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rate_in_requests_per_second

(required) The maximum number of requests per second to allow.

rate_key

(required) The key used to group requests together.

Allowed values are: 'CLIENT_IP', 'TOTAL'

DBMS_CLOUD_OCI_APIGATEWAY_CORS_POLICY_T Type

Enable CORS (Cross-Origin-Resource-Sharing) request handling.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_cors_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  allowed_origins dbms_cloud_oci_apigateway_varchar2_tbl,
  allowed_methods dbms_cloud_oci_apigateway_varchar2_tbl,
  allowed_headers dbms_cloud_oci_apigateway_varchar2_tbl,
  exposed_headers dbms_cloud_oci_apigateway_varchar2_tbl,
  is_allow_credentials_enabled number,
  max_age_in_seconds number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_cors_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_cors_policy_t (
    allowed_origins dbms_cloud_oci_apigateway_varchar2_tbl,
    allowed_methods dbms_cloud_oci_apigateway_varchar2_tbl,
    allowed_headers dbms_cloud_oci_apigateway_varchar2_tbl,
    exposed_headers dbms_cloud_oci_apigateway_varchar2_tbl,
    is_allow_credentials_enabled number,
    max_age_in_seconds number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

allowed_origins

(required) The list of allowed origins that the CORS handler will use to respond to CORS requests. The gateway will send the Access-Control-Allow-Origin header with the best origin match for the circumstances. '*' will match any origins, and 'null' will match queries from 'file:' origins. All other origins must be qualified with the scheme, full hostname, and port if necessary.

allowed_methods

(optional) The list of allowed HTTP methods that will be returned for the preflight OPTIONS request in the Access-Control-Allow-Methods header. '*' will allow all methods.

allowed_headers

(optional) The list of headers that will be allowed from the client via the Access-Control-Allow-Headers header. '*' will allow all headers.

exposed_headers

(optional) The list of headers that the client will be allowed to see from the response as indicated by the Access-Control-Expose-Headers header. '*' will expose all headers.

is_allow_credentials_enabled

(optional) Whether to send the Access-Control-Allow-Credentials header to allow CORS requests with cookies.

max_age_in_seconds

(optional) The time in seconds for the client to cache preflight responses. This is sent as the Access-Control-Max-Age if greater than 0.

DBMS_CLOUD_OCI_APIGATEWAY_MUTUAL_TLS_DETAILS_T Type

Properties used to configure client mTLS verification when API Consumer makes connection to the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_mutual_tls_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_verified_certificate_required number,
  allowed_sans dbms_cloud_oci_apigateway_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_mutual_tls_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_mutual_tls_details_t (
    is_verified_certificate_required number,
    allowed_sans dbms_cloud_oci_apigateway_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_verified_certificate_required

(optional) Determines whether to enable client verification when API Consumer makes connection to the gateway.

allowed_sans

(optional) Allowed list of CN or SAN which will be used for verification of certificate.

DBMS_CLOUD_OCI_APIGATEWAY_USAGE_PLANS_POLICY_T Type

Usage plan policies for this deployment

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_usage_plans_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  token_locations dbms_cloud_oci_apigateway_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plans_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plans_policy_t (
    token_locations dbms_cloud_oci_apigateway_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

token_locations

(required) A list of context variables specifying where API tokens may be located in a request. Example locations: - \"request.headers[token]\" - \"request.query[token]\" - \"request.auth[Token]\" - \"request.path[TOKEN]\"

DBMS_CLOUD_OCI_APIGATEWAY_SELECTION_SOURCE_POLICY_T Type

The type of selector to use when dynamically routing and dynamically authenticating requests.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_selection_source_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_selection_source_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_selection_source_policy_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the Selection source to use.

Allowed values are: 'SINGLE'

DBMS_CLOUD_OCI_APIGATEWAY_AUTHENTICATION_SERVER_POLICY_T Type

Policy for the details regarding each authentication server under dynamic authentication. We specify the value of selectors for which this authentication server must be selected for a request under keys. We specify the configuration details of authentication server under authenticationServerDetail.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_authentication_server_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key dbms_cloud_oci_apigateway_dynamic_selection_key_t,
  authentication_server_detail dbms_cloud_oci_apigateway_authentication_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_authentication_server_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_authentication_server_policy_t (
    key dbms_cloud_oci_apigateway_dynamic_selection_key_t,
    authentication_server_detail dbms_cloud_oci_apigateway_authentication_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required)

authentication_server_detail

(required)

DBMS_CLOUD_OCI_APIGATEWAY_AUTHENTICATION_SERVER_POLICY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_authentication_server_policy_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_authentication_server_policy_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_authentication_server_policy_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_DYNAMIC_AUTHENTICATION_POLICY_T Type

Policy on how to authenticate requests when multiple authentication options are configured for a deployment. For an incoming request, the value of selector specified under selectionSource will be matched against the keys specified for each authentication server. The authentication server whose key matches the value of selector will be used for authentication.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_dynamic_authentication_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  selection_source dbms_cloud_oci_apigateway_selection_source_policy_t,
  authentication_servers dbms_cloud_oci_apigateway_authentication_server_policy_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_authentication_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_authentication_policy_t (
    selection_source dbms_cloud_oci_apigateway_selection_source_policy_t,
    authentication_servers dbms_cloud_oci_apigateway_authentication_server_policy_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

selection_source

(required)

authentication_servers

(required) List of authentication servers to choose from during dynamic authentication.

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_REQUEST_POLICIES_T Type

Global behavior applied to all requests received by the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_request_policies_t FORCE AUTHID CURRENT_USER IS OBJECT (
  authentication dbms_cloud_oci_apigateway_authentication_policy_t,
  rate_limiting dbms_cloud_oci_apigateway_rate_limiting_policy_t,
  cors dbms_cloud_oci_apigateway_cors_policy_t,
  mutual_tls dbms_cloud_oci_apigateway_mutual_tls_details_t,
  usage_plans dbms_cloud_oci_apigateway_usage_plans_policy_t,
  dynamic_authentication dbms_cloud_oci_apigateway_dynamic_authentication_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_request_policies_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_request_policies_t (
    authentication dbms_cloud_oci_apigateway_authentication_policy_t,
    rate_limiting dbms_cloud_oci_apigateway_rate_limiting_policy_t,
    cors dbms_cloud_oci_apigateway_cors_policy_t,
    mutual_tls dbms_cloud_oci_apigateway_mutual_tls_details_t,
    usage_plans dbms_cloud_oci_apigateway_usage_plans_policy_t,
    dynamic_authentication dbms_cloud_oci_apigateway_dynamic_authentication_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

authentication

(optional)

rate_limiting

(optional)

cors

(optional)

mutual_tls

(optional)

usage_plans

(optional)

dynamic_authentication

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_EXECUTION_LOG_POLICY_T Type

Configures the logging policies for the execution logs of an API Deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_execution_log_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  log_level varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_execution_log_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_execution_log_policy_t (
    is_enabled number,
    log_level varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) Enables pushing of execution logs to the legacy OCI Object Storage log archival bucket. Oracle recommends using the OCI Logging service to enable, retrieve, and query execution logs for an API Deployment. If there is an active log object for the API Deployment and its category is set to 'execution' in OCI Logging service, the logs will not be uploaded to the legacy OCI Object Storage log archival bucket. Please note that the functionality to push to the legacy OCI Object Storage log archival bucket has been deprecated and will be removed in the future.

log_level

(optional) Specifies the log level used to control logging output of execution logs. Enabling logging at a given level also enables logging at all higher levels.

Allowed values are: 'INFO', 'WARN', 'ERROR'

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_LOGGING_POLICIES_T Type

Policies controlling the pushing of logs to OCI Public Logging.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_logging_policies_t FORCE AUTHID CURRENT_USER IS OBJECT (
  access_log dbms_cloud_oci_apigateway_access_log_policy_t,
  execution_log dbms_cloud_oci_apigateway_execution_log_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_logging_policies_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_logging_policies_t (
    access_log dbms_cloud_oci_apigateway_access_log_policy_t,
    execution_log dbms_cloud_oci_apigateway_execution_log_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

access_log

(optional)

execution_log

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_QUERY_PARAMETER_VALIDATION_ITEM_T Type

Query parameter validation properties.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_query_parameter_validation_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  required number,
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_query_parameter_validation_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_query_parameter_validation_item_t (
    required number,
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

required

(optional) Determines if the parameter is required in the request.

name

(required) Parameter name.

DBMS_CLOUD_OCI_APIGATEWAY_QUERY_PARAMETER_VALIDATION_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_query_parameter_validation_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_query_parameter_validation_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_query_parameter_validation_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_QUERY_PARAMETER_VALIDATION_REQUEST_POLICY_T Type

Validate the URL query parameters on the incoming API requests on a specific route.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_query_parameter_validation_request_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  parameters dbms_cloud_oci_apigateway_query_parameter_validation_item_tbl,
  validation_mode varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_query_parameter_validation_request_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_query_parameter_validation_request_policy_t (
    parameters dbms_cloud_oci_apigateway_query_parameter_validation_item_tbl,
    validation_mode varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

parameters

(optional)

validation_mode

(optional) Validation behavior mode. In `ENFORCING` mode, upon a validation failure, the request will be rejected with a 4xx response and not sent to the backend. In `PERMISSIVE` mode, the result of the validation will be exposed as metrics while the request will follow the normal path. `DISABLED` type turns the validation off.

Allowed values are: 'ENFORCING', 'PERMISSIVE', 'DISABLED'

DBMS_CLOUD_OCI_APIGATEWAY_HEADER_VALIDATION_ITEM_T Type

Header validation properties.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_header_validation_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  required number,
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_validation_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_validation_item_t (
    required number,
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

required

(optional) Determines if the header is required in the request.

name

(required) Parameter name.

DBMS_CLOUD_OCI_APIGATEWAY_HEADER_VALIDATION_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_header_validation_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_header_validation_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_header_validation_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_HEADER_VALIDATION_REQUEST_POLICY_T Type

Validate the HTTP headers on the incoming API requests on a specific route.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_header_validation_request_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  headers dbms_cloud_oci_apigateway_header_validation_item_tbl,
  validation_mode varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_validation_request_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_validation_request_policy_t (
    headers dbms_cloud_oci_apigateway_header_validation_item_tbl,
    validation_mode varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

headers

(optional)

validation_mode

(optional) Validation behavior mode. In `ENFORCING` mode, upon a validation failure, the request will be rejected with a 4xx response and not sent to the backend. In `PERMISSIVE` mode, the result of the validation will be exposed as metrics while the request will follow the normal path. `DISABLED` type turns the validation off.

Allowed values are: 'ENFORCING', 'PERMISSIVE', 'DISABLED'

DBMS_CLOUD_OCI_APIGATEWAY_CONTENT_VALIDATION_T Type

Content validation properties.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_content_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  validation_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_content_validation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_content_validation_t (
    validation_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

validation_type

(required) Validation type defines the content validation method. Make the validation to first parse the body as the respective format.

Allowed values are: 'NONE'

DBMS_CLOUD_OCI_APIGATEWAY_BODY_VALIDATION_REQUEST_POLICY_T Type

Validate the payload body of the incoming API requests on a specific route.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_body_validation_request_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  required number,
  content json_element_t,
  validation_mode varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_body_validation_request_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_body_validation_request_policy_t (
    required number,
    content json_element_t,
    validation_mode varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

required

(optional) Determines if the request body is required in the request.

content

(required) The content of the request body. The key is a media type range subset restricted to the following schema key ::= ( / ( \"*\" \"/\" \"*\" ) / ( type \"/\" \"*\" ) / ( type \"/\" subtype ) ) For requests that match multiple keys, only the most specific key is applicable. e.g. `text/plain` overrides `text/*`

validation_mode

(optional) Validation behavior mode. In `ENFORCING` mode, upon a validation failure, the request will be rejected with a 4xx response and not sent to the backend. In `PERMISSIVE` mode, the result of the validation will be exposed as metrics while the request will follow the normal path. `DISABLED` type turns the validation off.

Allowed values are: 'ENFORCING', 'PERMISSIVE', 'DISABLED'

DBMS_CLOUD_OCI_APIGATEWAY_SET_HEADER_POLICY_ITEM_T Type

Set will add a new header if it was not in the original request. If the header already exists on the request, you can choose to override, append, or skip it.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_set_header_policy_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  l_values dbms_cloud_oci_apigateway_varchar2_tbl,
  if_exists varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_header_policy_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_header_policy_item_t (
    name varchar2,
    l_values dbms_cloud_oci_apigateway_varchar2_tbl,
    if_exists varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The case-insensitive name of the header. This name must be unique across transformation policies.

l_values

(required) A list of new values. Each value can be a constant or may include one or more expressions enclosed within ${} delimiters.

if_exists

(optional) If a header with the same name already exists in the request, OVERWRITE will overwrite the value, APPEND will append to the existing value, or SKIP will keep the existing value.

Allowed values are: 'OVERWRITE', 'APPEND', 'SKIP'

DBMS_CLOUD_OCI_APIGATEWAY_SET_HEADER_POLICY_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_set_header_policy_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_set_header_policy_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_set_header_policy_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SET_HEADER_POLICY_T Type

Set HTTP headers as they pass through the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_set_header_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_set_header_policy_item_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_header_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_header_policy_t (
    items dbms_cloud_oci_apigateway_set_header_policy_item_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The list of headers.

DBMS_CLOUD_OCI_APIGATEWAY_RENAME_HEADER_POLICY_ITEM_T Type

The value will be a copy of the original value of the source header and will not be affected by any other transformation policies applied to that header.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rename_header_policy_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_from varchar2(32767),
  l_to varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_header_policy_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_header_policy_item_t (
    l_from varchar2,
    l_to varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_from

(required) The original case-insensitive name of the header. This name must be unique across transformation policies.

l_to

(required) The new name of the header. This name must be unique across transformation policies.

DBMS_CLOUD_OCI_APIGATEWAY_RENAME_HEADER_POLICY_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_rename_header_policy_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rename_header_policy_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_rename_header_policy_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_RENAME_HEADER_POLICY_T Type

Rename HTTP headers as they pass through the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rename_header_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_rename_header_policy_item_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_header_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_header_policy_t (
    items dbms_cloud_oci_apigateway_rename_header_policy_item_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The list of headers.

DBMS_CLOUD_OCI_APIGATEWAY_FILTER_HEADER_POLICY_ITEM_T Type

A header to drop (with BLOCK) or pass through (with ALLOW).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_filter_header_policy_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_header_policy_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_header_policy_item_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The case-insensitive name of the header. This name must be unique across transformation policies.

DBMS_CLOUD_OCI_APIGATEWAY_FILTER_HEADER_POLICY_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_filter_header_policy_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_filter_header_policy_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_filter_header_policy_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_FILTER_HEADER_POLICY_T Type

Filter HTTP headers as they pass through the gateway. The gateway applies filters after other transformations, so any headers set or renamed must also be listed here when using an ALLOW type policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_filter_header_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  items dbms_cloud_oci_apigateway_filter_header_policy_item_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_header_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_header_policy_t (
    l_type varchar2,
    items dbms_cloud_oci_apigateway_filter_header_policy_item_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_type

(required) BLOCK drops any headers that are in the list of items, so it acts as an exclusion list. ALLOW permits only the headers in the list and removes all others, so it acts as an inclusion list.

Allowed values are: 'ALLOW', 'BLOCK'

items

(required) The list of headers.

DBMS_CLOUD_OCI_APIGATEWAY_HEADER_TRANSFORMATION_POLICY_T Type

A set of transformations to apply to HTTP headers that pass through the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_header_transformation_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  set_headers dbms_cloud_oci_apigateway_set_header_policy_t,
  rename_headers dbms_cloud_oci_apigateway_rename_header_policy_t,
  filter_headers dbms_cloud_oci_apigateway_filter_header_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_transformation_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_transformation_policy_t (
    set_headers dbms_cloud_oci_apigateway_set_header_policy_t,
    rename_headers dbms_cloud_oci_apigateway_rename_header_policy_t,
    filter_headers dbms_cloud_oci_apigateway_filter_header_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

set_headers

(optional)

rename_headers

(optional)

filter_headers

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_SET_QUERY_PARAMETER_POLICY_ITEM_T Type

Set will add a new query parameter if it was not in the original request. If the parameter already exists on the request, you can choose to override, append, or skip it.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_set_query_parameter_policy_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  l_values dbms_cloud_oci_apigateway_varchar2_tbl,
  if_exists varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_query_parameter_policy_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_query_parameter_policy_item_t (
    name varchar2,
    l_values dbms_cloud_oci_apigateway_varchar2_tbl,
    if_exists varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The case-sensitive name of the query parameter. This name must be unique across transformation policies.

l_values

(required) A list of new values. Each value can be a constant or may include one or more expressions enclosed within ${} delimiters.

if_exists

(optional) If a query parameter with the same name already exists in the request, OVERWRITE will overwrite the value, APPEND will append to the existing value, or SKIP will keep the existing value.

Allowed values are: 'OVERWRITE', 'APPEND', 'SKIP'

DBMS_CLOUD_OCI_APIGATEWAY_SET_QUERY_PARAMETER_POLICY_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_set_query_parameter_policy_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_set_query_parameter_policy_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_set_query_parameter_policy_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SET_QUERY_PARAMETER_POLICY_T Type

Set parameters on the query string as they pass through the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_set_query_parameter_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_set_query_parameter_policy_item_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_query_parameter_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_set_query_parameter_policy_t (
    items dbms_cloud_oci_apigateway_set_query_parameter_policy_item_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The list of query parameters.

DBMS_CLOUD_OCI_APIGATEWAY_RENAME_QUERY_PARAMETER_POLICY_ITEM_T Type

The value will be a copy of the original value of the source parameter and will not be affected by any other transformation policies applied to that parameter.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_from varchar2(32767),
  l_to varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_t (
    l_from varchar2,
    l_to varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_from

(required) The original case-sensitive name of the query parameter. This name must be unique across transformation policies.

l_to

(required) The new name of the query parameter. This name must be unique across transformation policies.

DBMS_CLOUD_OCI_APIGATEWAY_RENAME_QUERY_PARAMETER_POLICY_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_RENAME_QUERY_PARAMETER_POLICY_T Type

Rename parameters on the query string as they pass through the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rename_query_parameter_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_query_parameter_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rename_query_parameter_policy_t (
    items dbms_cloud_oci_apigateway_rename_query_parameter_policy_item_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The list of query parameters.

DBMS_CLOUD_OCI_APIGATEWAY_FILTER_QUERY_PARAMETER_POLICY_ITEM_T Type

A query parameter to drop (with BLOCK) or pass through (with ALLOW).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The case-sensitive name of the query parameter.

DBMS_CLOUD_OCI_APIGATEWAY_FILTER_QUERY_PARAMETER_POLICY_ITEM_TBL Type

Nested table type of dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_FILTER_QUERY_PARAMETER_POLICY_T Type

Filter parameters from the query string as they pass through the gateway. The gateway applies filters after other transformations, so any parameters set or renamed must also be listed here when using an ALLOW type policy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_filter_query_parameter_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  items dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_query_parameter_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_filter_query_parameter_policy_t (
    l_type varchar2,
    items dbms_cloud_oci_apigateway_filter_query_parameter_policy_item_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_type

(required) BLOCK drops any query parameters that are in the list of items, so it acts as an exclusion list. ALLOW permits only the parameters in the list and removes all others, so it acts as an inclusion list.

Allowed values are: 'ALLOW', 'BLOCK'

items

(required) The list of query parameters.

DBMS_CLOUD_OCI_APIGATEWAY_QUERY_PARAMETER_TRANSFORMATION_POLICY_T Type

A set of transformations to apply to query parameters that pass through the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_query_parameter_transformation_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  set_query_parameters dbms_cloud_oci_apigateway_set_query_parameter_policy_t,
  rename_query_parameters dbms_cloud_oci_apigateway_rename_query_parameter_policy_t,
  filter_query_parameters dbms_cloud_oci_apigateway_filter_query_parameter_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_query_parameter_transformation_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_query_parameter_transformation_policy_t (
    set_query_parameters dbms_cloud_oci_apigateway_set_query_parameter_policy_t,
    rename_query_parameters dbms_cloud_oci_apigateway_rename_query_parameter_policy_t,
    filter_query_parameters dbms_cloud_oci_apigateway_filter_query_parameter_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

set_query_parameters

(optional)

rename_query_parameters

(optional)

filter_query_parameters

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_RESPONSE_CACHE_LOOKUP_POLICY_T Type

Base policy for Response Cache lookup.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_response_cache_lookup_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  is_enabled number,
  is_private_caching_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_lookup_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_lookup_policy_t (
    l_type varchar2,
    is_enabled number,
    is_private_caching_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the Response Cache Store Policy.

Allowed values are: 'SIMPLE_LOOKUP_POLICY'

is_enabled

(optional) Whether this policy is currently enabled.

is_private_caching_enabled

(optional) Set true to allow caching responses where the request has an Authorization header. Ensure you have configured your cache key additions to get the level of isolation across authenticated requests that you require. When false, any request with an Authorization header will not be stored in the Response Cache. If using the CustomAuthenticationPolicy then the tokenHeader/tokenQueryParam are also subject to this check.

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_ROUTE_REQUEST_POLICIES_T Type

Behavior applied to any requests received by the API on this route.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_route_request_policies_t FORCE AUTHID CURRENT_USER IS OBJECT (
  authorization dbms_cloud_oci_apigateway_route_authorization_policy_t,
  cors dbms_cloud_oci_apigateway_cors_policy_t,
  query_parameter_validations dbms_cloud_oci_apigateway_query_parameter_validation_request_policy_t,
  header_validations dbms_cloud_oci_apigateway_header_validation_request_policy_t,
  body_validation dbms_cloud_oci_apigateway_body_validation_request_policy_t,
  header_transformations dbms_cloud_oci_apigateway_header_transformation_policy_t,
  query_parameter_transformations dbms_cloud_oci_apigateway_query_parameter_transformation_policy_t,
  response_cache_lookup dbms_cloud_oci_apigateway_response_cache_lookup_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_request_policies_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_request_policies_t (
    authorization dbms_cloud_oci_apigateway_route_authorization_policy_t,
    cors dbms_cloud_oci_apigateway_cors_policy_t,
    query_parameter_validations dbms_cloud_oci_apigateway_query_parameter_validation_request_policy_t,
    header_validations dbms_cloud_oci_apigateway_header_validation_request_policy_t,
    body_validation dbms_cloud_oci_apigateway_body_validation_request_policy_t,
    header_transformations dbms_cloud_oci_apigateway_header_transformation_policy_t,
    query_parameter_transformations dbms_cloud_oci_apigateway_query_parameter_transformation_policy_t,
    response_cache_lookup dbms_cloud_oci_apigateway_response_cache_lookup_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

authorization

(optional)

cors

(optional)

query_parameter_validations

(optional)

header_validations

(optional)

body_validation

(optional)

header_transformations

(optional)

query_parameter_transformations

(optional)

response_cache_lookup

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_RESPONSE_CACHE_STORE_POLICY_T Type

Base policy for how a response from a backend is cached in the Response Cache.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_response_cache_store_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_store_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_store_policy_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the Response Cache Store Policy.

Allowed values are: 'FIXED_TTL_STORE_POLICY'

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_ROUTE_RESPONSE_POLICIES_T Type

Behavior applied to any responses sent by the API for requests on this route.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_route_response_policies_t FORCE AUTHID CURRENT_USER IS OBJECT (
  header_transformations dbms_cloud_oci_apigateway_header_transformation_policy_t,
  response_cache_store dbms_cloud_oci_apigateway_response_cache_store_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_response_policies_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_response_policies_t (
    header_transformations dbms_cloud_oci_apigateway_header_transformation_policy_t,
    response_cache_store dbms_cloud_oci_apigateway_response_cache_store_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

header_transformations

(optional)

response_cache_store

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_ROUTE_BACKEND_T Type

The backend to forward requests to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_route_backend_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_backend_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the API backend.

Allowed values are: 'ORACLE_FUNCTIONS_BACKEND', 'HTTP_BACKEND', 'STOCK_RESPONSE_BACKEND', 'DYNAMIC_ROUTING_BACKEND', 'OAUTH2_LOGOUT_BACKEND'

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_ROUTE_T Type

A single route that forwards requests to a particular backend and may contain some additional policies.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_route_t FORCE AUTHID CURRENT_USER IS OBJECT (
  path varchar2(32767),
  methods dbms_cloud_oci_apigateway_varchar2_tbl,
  request_policies dbms_cloud_oci_apigateway_api_specification_route_request_policies_t,
  response_policies dbms_cloud_oci_apigateway_api_specification_route_response_policies_t,
  logging_policies dbms_cloud_oci_apigateway_api_specification_logging_policies_t,
  backend dbms_cloud_oci_apigateway_api_specification_route_backend_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_route_t (
    path varchar2,
    methods dbms_cloud_oci_apigateway_varchar2_tbl,
    request_policies dbms_cloud_oci_apigateway_api_specification_route_request_policies_t,
    response_policies dbms_cloud_oci_apigateway_api_specification_route_response_policies_t,
    logging_policies dbms_cloud_oci_apigateway_api_specification_logging_policies_t,
    backend dbms_cloud_oci_apigateway_api_specification_route_backend_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

path

(required) A URL path pattern that must be matched on this route. The path pattern may contain a subset of RFC 6570 identifiers to allow wildcard and parameterized matching.

methods

(optional) A list of allowed methods on this route.

Allowed values are: 'ANY', 'HEAD', 'GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'OPTIONS'

request_policies

(optional)

response_policies

(optional)

logging_policies

(optional)

backend

(required)

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_ROUTE_TBL Type

Nested table type of dbms_cloud_oci_apigateway_api_specification_route_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_route_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_api_specification_route_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_API_SPECIFICATION_T Type

The logical configuration of the API exposed by a deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_specification_t FORCE AUTHID CURRENT_USER IS OBJECT (
  request_policies dbms_cloud_oci_apigateway_api_specification_request_policies_t,
  logging_policies dbms_cloud_oci_apigateway_api_specification_logging_policies_t,
  routes dbms_cloud_oci_apigateway_api_specification_route_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_specification_t (
    request_policies dbms_cloud_oci_apigateway_api_specification_request_policies_t,
    logging_policies dbms_cloud_oci_apigateway_api_specification_logging_policies_t,
    routes dbms_cloud_oci_apigateway_api_specification_route_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

request_policies

(optional)

logging_policies

(optional)

routes

(optional) A list of routes that this API exposes.

DBMS_CLOUD_OCI_APIGATEWAY_API_VALIDATION_DETAIL_T Type

Detail of a single error or warning.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_validation_detail_t FORCE AUTHID CURRENT_USER IS OBJECT (
  msg varchar2(32767),
  severity varchar2(32767),
  src json_array_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validation_detail_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validation_detail_t (
    msg varchar2,
    severity varchar2,
    src json_array_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

msg

(optional) Description of the warning/error.

severity

(optional) Severity of the issue.

Allowed values are: 'INFO', 'WARNING', 'ERROR'

src

(optional) Position of the issue in the specification file (line, column).

DBMS_CLOUD_OCI_APIGATEWAY_API_VALIDATION_DETAIL_TBL Type

Nested table type of dbms_cloud_oci_apigateway_api_validation_detail_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_validation_detail_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_api_validation_detail_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_API_VALIDATION_DETAILS_T Type

Detail of an error or warning.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_validation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  details dbms_cloud_oci_apigateway_api_validation_detail_tbl,
  name varchar2(32767),
  result varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validation_details_t (
    details dbms_cloud_oci_apigateway_api_validation_detail_tbl,
    name varchar2,
    result varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

details

(optional) Details of validation.

name

(required) Name of the validation.

result

(required) Result of the validation.

Allowed values are: 'ERROR', 'WARNING', 'OK', 'FAILED'

DBMS_CLOUD_OCI_APIGATEWAY_API_VALIDATION_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_apigateway_api_validation_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_validation_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_api_validation_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_API_VALIDATIONS_T Type

The result of validations conducted on the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_api_validations_t FORCE AUTHID CURRENT_USER IS OBJECT (
  validations dbms_cloud_oci_apigateway_api_validation_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validations_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_api_validations_t (
    validations dbms_cloud_oci_apigateway_api_validation_details_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

validations

(required) API validation results.

DBMS_CLOUD_OCI_APIGATEWAY_AUTHENTICATION_ONLY_ROUTE_AUTHORIZATION_POLICY_T Type

Only authentication is performed for the request and authorization is skipped.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_authentication_only_route_authorization_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_route_authorization_policy_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_authentication_only_route_authorization_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_authentication_only_route_authorization_policy_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_authentication_only_route_authorization_policy_t is a subtype of the dbms_cloud_oci_apigateway_route_authorization_policy_t type.

DBMS_CLOUD_OCI_APIGATEWAY_CA_BUNDLE_T Type

Reference to the CA bundle that should be used on the gateway

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_ca_bundle_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_ca_bundle_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_ca_bundle_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the CA bundle

Allowed values are: 'CA_BUNDLE', 'CERTIFICATE_AUTHORITY'

DBMS_CLOUD_OCI_APIGATEWAY_CERTIFICATE_T Type

A certificate contains information to be installed on a gateway to secure the traffic going through it. For more information, see API Gateway Concepts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_certificate_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  subject_names dbms_cloud_oci_apigateway_varchar2_tbl,
  time_not_valid_after timestamp with time zone,
  certificate varchar2(32767),
  intermediate_certificates varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificate_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificate_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    subject_names dbms_cloud_oci_apigateway_varchar2_tbl,
    time_not_valid_after timestamp with time zone,
    certificate varchar2,
    intermediate_certificates varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

subject_names

(required) The entity to be secured by the certificate and additional host names.

time_not_valid_after

(required) The date and time the certificate will expire.

certificate

(required) The data of the leaf certificate in pem format.

intermediate_certificates

(optional) The intermediate certificate data associated with the certificate in pem format.

time_created

(required) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the certificate.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_CERTIFICATE_SUMMARY_T Type

A summary of the certificate.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_certificate_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  subject_names dbms_cloud_oci_apigateway_varchar2_tbl,
  time_not_valid_after timestamp with time zone,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificate_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificate_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    subject_names dbms_cloud_oci_apigateway_varchar2_tbl,
    time_not_valid_after timestamp with time zone,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

subject_names

(required) The entity to be secured by the certificate and additional host names.

time_not_valid_after

(required) The date and time the certificate will expire.

time_created

(required) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the certificate.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_CERTIFICATE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_certificate_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_certificate_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_certificate_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_CERTIFICATE_COLLECTION_T Type

Collection of certificate summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_certificate_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_certificate_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificate_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificate_collection_t (
    items dbms_cloud_oci_apigateway_certificate_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Certificate summaries.

DBMS_CLOUD_OCI_APIGATEWAY_CERTIFICATES_CA_BUNDLE_T Type

CA bundle from Certificates Service that should be used on the gateway for TLS validation

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_certificates_ca_bundle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_ca_bundle_t (
  ca_bundle_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificates_ca_bundle_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificates_ca_bundle_t (
    l_type varchar2,
    ca_bundle_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_certificates_ca_bundle_t is a subtype of the dbms_cloud_oci_apigateway_ca_bundle_t type.

Fields

Field Description

ca_bundle_id

(optional) The OCID of the resource.

DBMS_CLOUD_OCI_APIGATEWAY_CERTIFICATES_CERTIFICATE_AUTHORITY_T Type

Certificate Authority from Certificates Service that should be used on the gateway for TLS validation

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_certificates_certificate_authority_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_ca_bundle_t (
  certificate_authority_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificates_certificate_authority_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_certificates_certificate_authority_t (
    l_type varchar2,
    certificate_authority_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_certificates_certificate_authority_t is a subtype of the dbms_cloud_oci_apigateway_ca_bundle_t type.

Fields

Field Description

certificate_authority_id

(optional) The OCID of the resource.

DBMS_CLOUD_OCI_APIGATEWAY_CHANGE_API_COMPARTMENT_DETAILS_T Type

The new compartment details for the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_change_api_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_api_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_api_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the resource is created.

DBMS_CLOUD_OCI_APIGATEWAY_CHANGE_CERTIFICATE_COMPARTMENT_DETAILS_T Type

The new compartment details for the certificate.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_change_certificate_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_certificate_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_certificate_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the resource is created.

DBMS_CLOUD_OCI_APIGATEWAY_CHANGE_DEPLOYMENT_COMPARTMENT_DETAILS_T Type

The new compartment details for the deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_change_deployment_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_deployment_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_deployment_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the resource is created.

DBMS_CLOUD_OCI_APIGATEWAY_CHANGE_GATEWAY_COMPARTMENT_DETAILS_T Type

The new compartment details for the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_change_gateway_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_gateway_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_gateway_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the resource is created.

DBMS_CLOUD_OCI_APIGATEWAY_CHANGE_SUBSCRIBER_COMPARTMENT_DETAILS_T Type

The new compartment details for the subscriber.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_change_subscriber_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_subscriber_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_subscriber_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the resource is created.

DBMS_CLOUD_OCI_APIGATEWAY_CHANGE_USAGE_PLAN_COMPARTMENT_DETAILS_T Type

The new compartment details for the usage plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_change_usage_plan_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_usage_plan_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_change_usage_plan_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which the resource is created.

DBMS_CLOUD_OCI_APIGATEWAY_CLIENT_T Type

A Client.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_client_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  token varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_client_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_client_t (
    name varchar2,
    token varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the client. Must be unique within a subscriber.

token

(required) The token for the client. Must be unique within a tenancy.

DBMS_CLOUD_OCI_APIGATEWAY_CLIENT_APP_DETAILS_T Type

Client App Credential details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_client_app_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_client_app_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_client_app_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) To specify where the Client App details should be taken from.

Allowed values are: 'VALIDATION_BLOCK', 'CUSTOM'

DBMS_CLOUD_OCI_APIGATEWAY_CLIENT_SUMMARY_T Type

A summary of a client.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_client_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_client_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_client_summary_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The client name.

DBMS_CLOUD_OCI_APIGATEWAY_CREATE_API_DETAILS_T Type

Information about the new API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_create_api_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  content varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_api_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_api_details_t (
    display_name varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    content varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

content

(optional) API Specification content in json or yaml format

DBMS_CLOUD_OCI_APIGATEWAY_CREATE_CERTIFICATE_DETAILS_T Type

Information about a new certificate.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_create_certificate_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  private_key varchar2(32767),
  certificate varchar2(32767),
  intermediate_certificates varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_certificate_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_certificate_details_t (
    display_name varchar2,
    compartment_id varchar2,
    private_key varchar2,
    certificate varchar2,
    intermediate_certificates varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

private_key

(required) The private key associated with the certificate in pem format.

certificate

(required) The data of the leaf certificate in pem format.

intermediate_certificates

(optional) The intermediate certificate data associated with the certificate in pem format.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_CREATE_DEPLOYMENT_DETAILS_T Type

Information about a new deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_create_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  gateway_id varchar2(32767),
  compartment_id varchar2(32767),
  path_prefix varchar2(32767),
  specification dbms_cloud_oci_apigateway_api_specification_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_deployment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_deployment_details_t (
    display_name varchar2,
    gateway_id varchar2,
    compartment_id varchar2,
    path_prefix varchar2,
    specification dbms_cloud_oci_apigateway_api_specification_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

gateway_id

(required) The OCID of the resource.

compartment_id

(required) The OCID of the compartment in which the resource is created.

path_prefix

(required) A path on which to deploy all routes contained in the API deployment specification. For more information, see Deploying an API on an API Gateway by Creating an API Deployment.

specification

(required)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_RESPONSE_CACHE_DETAILS_T Type

Base Gateway response cache.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_response_cache_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the Response Cache.

Allowed values are: 'EXTERNAL_RESP_CACHE', 'NONE'

DBMS_CLOUD_OCI_APIGATEWAY_CA_BUNDLE_TBL Type

Nested table type of dbms_cloud_oci_apigateway_ca_bundle_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_ca_bundle_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_ca_bundle_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_CREATE_GATEWAY_DETAILS_T Type

Information about the new gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_create_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  endpoint_type varchar2(32767),
  subnet_id varchar2(32767),
  network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
  certificate_id varchar2(32767),
  response_cache_details dbms_cloud_oci_apigateway_response_cache_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  ca_bundles dbms_cloud_oci_apigateway_ca_bundle_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_gateway_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_gateway_details_t (
    display_name varchar2,
    compartment_id varchar2,
    endpoint_type varchar2,
    subnet_id varchar2,
    network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
    certificate_id varchar2,
    response_cache_details dbms_cloud_oci_apigateway_response_cache_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    ca_bundles dbms_cloud_oci_apigateway_ca_bundle_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

endpoint_type

(required) Gateway endpoint type. `PUBLIC` will have a public ip address assigned to it, while `PRIVATE` will only be accessible on a private IP address on the subnet. Example: `PUBLIC` or `PRIVATE`

subnet_id

(required) The OCID of the subnet in which related resources are created.

network_security_group_ids

(optional) An array of Network Security Groups OCIDs associated with this API Gateway.

certificate_id

(optional) The OCID of the resource.

response_cache_details

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

ca_bundles

(optional) An array of CA bundles that should be used on the Gateway for TLS validation.

DBMS_CLOUD_OCI_APIGATEWAY_CREATE_SDK_DETAILS_T Type

Information about the new SDK.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_create_sdk_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  target_language varchar2(32767),
  api_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  parameters json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_sdk_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_sdk_details_t (
    display_name varchar2,
    target_language varchar2,
    api_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    parameters json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

target_language

(required) The string representing the target programming language for generating the SDK.

api_id

(required) The OCID of API resource

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

parameters

(optional) Additional optional configurations that can be passed to generate SDK Api. The applicable parameters are listed under \"parameters\" when \"/sdkLanguageTypes\" is called. Example: `{\"configName\": \"configValue\"}`

DBMS_CLOUD_OCI_APIGATEWAY_CLIENT_TBL Type

Nested table type of dbms_cloud_oci_apigateway_client_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_client_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_client_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_CREATE_SUBSCRIBER_DETAILS_T Type

Information about a new subscriber.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_create_subscriber_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  clients dbms_cloud_oci_apigateway_client_tbl,
  usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_subscriber_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_subscriber_details_t (
    display_name varchar2,
    compartment_id varchar2,
    clients dbms_cloud_oci_apigateway_client_tbl,
    usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

clients

(required) The clients belonging to this subscriber.

usage_plans

(required) An array of OCIDs of usage plan resources.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_RATE_LIMIT_T Type

Rate-limiting policy for a usage plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_rate_limit_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value number,
  unit varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rate_limit_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_rate_limit_t (
    value number,
    unit varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

value

(required) The number of requests that can be made per time period.

unit

(required) The unit of time over which rate limits are calculated. Example: `SECOND`

Allowed values are: 'SECOND'

DBMS_CLOUD_OCI_APIGATEWAY_QUOTA_T Type

Quota policy for a usage plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_quota_t FORCE AUTHID CURRENT_USER IS OBJECT (
  value number,
  unit varchar2(32767),
  reset_policy varchar2(32767),
  operation_on_breach varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_quota_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_quota_t (
    value number,
    unit varchar2,
    reset_policy varchar2,
    operation_on_breach varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

value

(required) The number of requests that can be made per time period.

unit

(required) The unit of time over which quotas are calculated. Example: `MINUTE` or `MONTH`

Allowed values are: 'MINUTE', 'HOUR', 'DAY', 'WEEK', 'MONTH'

reset_policy

(required) The policy that controls when quotas will reset. Example: `CALENDAR`

Allowed values are: 'CALENDAR'

operation_on_breach

(required) What the usage plan will do when a quota is breached: `REJECT` will allow no further requests `ALLOW` will continue to allow further requests

Allowed values are: 'REJECT', 'ALLOW'

DBMS_CLOUD_OCI_APIGATEWAY_ENTITLEMENT_TARGET_T Type

An entitlement target, describing which deployment the entitlement should be applied to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_entitlement_target_t FORCE AUTHID CURRENT_USER IS OBJECT (
  deployment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_entitlement_target_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_entitlement_target_t (
    deployment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

deployment_id

(required) The OCID of a deployment resource.

DBMS_CLOUD_OCI_APIGATEWAY_ENTITLEMENT_TARGET_TBL Type

Nested table type of dbms_cloud_oci_apigateway_entitlement_target_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_entitlement_target_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_entitlement_target_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_ENTITLEMENT_T Type

A usage plan entitlement, comprising of rate limits, quotas and the deployments they are applied to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_entitlement_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  description varchar2(32767),
  rate_limit dbms_cloud_oci_apigateway_rate_limit_t,
  quota dbms_cloud_oci_apigateway_quota_t,
  targets dbms_cloud_oci_apigateway_entitlement_target_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_entitlement_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_entitlement_t (
    name varchar2,
    description varchar2,
    rate_limit dbms_cloud_oci_apigateway_rate_limit_t,
    quota dbms_cloud_oci_apigateway_quota_t,
    targets dbms_cloud_oci_apigateway_entitlement_target_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) An entitlement name, unique within a usage plan.

description

(optional) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.

rate_limit

(optional)

quota

(optional)

targets

(optional) A collection of targeted deployments that the entitlement will be applied to.

DBMS_CLOUD_OCI_APIGATEWAY_ENTITLEMENT_TBL Type

Nested table type of dbms_cloud_oci_apigateway_entitlement_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_entitlement_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_entitlement_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_CREATE_USAGE_PLAN_DETAILS_T Type

Information about a new usage plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_create_usage_plan_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  entitlements dbms_cloud_oci_apigateway_entitlement_tbl,
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_usage_plan_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_create_usage_plan_details_t (
    display_name varchar2,
    entitlements dbms_cloud_oci_apigateway_entitlement_tbl,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

entitlements

(required) A collection of entitlements to assign to the newly created usage plan.

compartment_id

(required) The OCID of the compartment in which the resource is created.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_VALIDATION_FAILURE_POLICY_T Type

Policy for defining behaviour on validation failure.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_validation_failure_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_failure_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_failure_policy_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the Validation failure Policy.

Allowed values are: 'MODIFY_RESPONSE', 'OAUTH2'

DBMS_CLOUD_OCI_APIGATEWAY_CUSTOM_AUTHENTICATION_POLICY_T Type

Use a function to validate a custom header or query parameter sent with the request authentication. A valid policy must specify either tokenHeader or tokenQueryParam.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_custom_authentication_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_authentication_policy_t (
  function_id varchar2(32767),
  token_header varchar2(32767),
  token_query_param varchar2(32767),
  parameters json_element_t,
  cache_key dbms_cloud_oci_apigateway_varchar2_tbl,
  validation_failure_policy dbms_cloud_oci_apigateway_validation_failure_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_custom_authentication_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_custom_authentication_policy_t (
    is_anonymous_access_allowed number,
    l_type varchar2,
    function_id varchar2,
    token_header varchar2,
    token_query_param varchar2,
    parameters json_element_t,
    cache_key dbms_cloud_oci_apigateway_varchar2_tbl,
    validation_failure_policy dbms_cloud_oci_apigateway_validation_failure_policy_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_custom_authentication_policy_t is a subtype of the dbms_cloud_oci_apigateway_authentication_policy_t type.

Fields

Field Description

function_id

(required) The OCID of the Oracle Functions function resource.

token_header

(optional) The name of the header containing the authentication token.

token_query_param

(optional) The name of the query parameter containing the authentication token.

parameters

(optional) A map where key is a user defined string and value is a context expressions whose values will be sent to the custom auth function. Values should contain an expression. Example: `{\"foo\": \"request.header[abc]\"}`

cache_key

(optional) A list of keys from \"parameters\" attribute value whose values will be added to the cache key.

validation_failure_policy

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_CUSTOM_CLIENT_APP_DETAILS_T Type

Client App Credentials to be provided again.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_custom_client_app_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_client_app_details_t (
  client_id varchar2(32767),
  client_secret_id varchar2(32767),
  client_secret_version_number number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_custom_client_app_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_custom_client_app_details_t (
    l_type varchar2,
    client_id varchar2,
    client_secret_id varchar2,
    client_secret_version_number number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_custom_client_app_details_t is a subtype of the dbms_cloud_oci_apigateway_client_app_details_t type.

Fields

Field Description

client_id

(required) Client ID for the OAuth2/OIDC app.

client_secret_id

(required) The OCID of the Oracle Vault Service secret resource.

client_secret_version_number

(required) The version number of the client secret to use.

DBMS_CLOUD_OCI_APIGATEWAY_DEPLOYMENT_T Type

A deployment deploys an API on a gateway. Avoid entering confidential information. For more information, see API Gateway Concepts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_deployment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  gateway_id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  path_prefix varchar2(32767),
  endpoint varchar2(32767),
  specification dbms_cloud_oci_apigateway_api_specification_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_deployment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_deployment_t (
    id varchar2,
    gateway_id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    path_prefix varchar2,
    endpoint varchar2,
    specification dbms_cloud_oci_apigateway_api_specification_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

gateway_id

(required) The OCID of the resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

path_prefix

(required) A path on which to deploy all routes contained in the API deployment specification. For more information, see Deploying an API on an API Gateway by Creating an API Deployment.

endpoint

(required) The endpoint to access this deployment on the gateway.

specification

(required)

time_created

(optional) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the deployment.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_DEPLOYMENT_SUMMARY_T Type

A summary of the deployment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_deployment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  gateway_id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  path_prefix varchar2(32767),
  endpoint varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_deployment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_deployment_summary_t (
    id varchar2,
    gateway_id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    path_prefix varchar2,
    endpoint varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

gateway_id

(required) The OCID of the resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

path_prefix

(required) The path on which all routes contained in the API deployment specification are deployed. For more information, see Deploying an API on an API Gateway by Creating an API Deployment.

endpoint

(required) The endpoint to access this deployment on the gateway.

time_created

(optional) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the deployment.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_DEPLOYMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_deployment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_deployment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_deployment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_DEPLOYMENT_COLLECTION_T Type

Collection of deployment summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_deployment_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_deployment_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_deployment_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_deployment_collection_t (
    items dbms_cloud_oci_apigateway_deployment_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Deployment summaries.

DBMS_CLOUD_OCI_APIGATEWAY_SOURCE_URI_DETAILS_T Type

Auth endpoint details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_source_uri_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_source_uri_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_source_uri_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the Uri detail.

Allowed values are: 'DISCOVERY_URI', 'VALIDATION_BLOCK'

DBMS_CLOUD_OCI_APIGATEWAY_DISCOVERY_URI_SOURCE_URI_DETAILS_T Type

Discovery Uri information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_discovery_uri_source_uri_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_source_uri_details_t (
  uri varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_discovery_uri_source_uri_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_discovery_uri_source_uri_details_t (
    l_type varchar2,
    uri varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_discovery_uri_source_uri_details_t is a subtype of the dbms_cloud_oci_apigateway_source_uri_details_t type.

Fields

Field Description

uri

(required) The discovery URI for the auth server.

DBMS_CLOUD_OCI_APIGATEWAY_DYNAMIC_ROUTING_TYPE_ROUTING_BACKEND_T Type

Policy for the details regarding each routing backend under dynamic routing. We specify the value of selectors for which this routing backend must be selected for a request under keys. We specify the configuration details of routing backend under backend.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key dbms_cloud_oci_apigateway_dynamic_selection_key_t,
  backend dbms_cloud_oci_apigateway_api_specification_route_backend_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_t (
    key dbms_cloud_oci_apigateway_dynamic_selection_key_t,
    backend dbms_cloud_oci_apigateway_api_specification_route_backend_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required)

backend

(required)

DBMS_CLOUD_OCI_APIGATEWAY_DYNAMIC_ROUTING_TYPE_ROUTING_BACKEND_TBL Type

Nested table type of dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_DYNAMIC_ROUTING_BACKEND_T Type

Send the request to the backend dynamically selected based on the incoming request's context.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_dynamic_routing_backend_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_api_specification_route_backend_t (
  selection_source dbms_cloud_oci_apigateway_selection_source_policy_t,
  routing_backends dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_routing_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_dynamic_routing_backend_t (
    l_type varchar2,
    selection_source dbms_cloud_oci_apigateway_selection_source_policy_t,
    routing_backends dbms_cloud_oci_apigateway_dynamic_routing_type_routing_backend_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_dynamic_routing_backend_t is a subtype of the dbms_cloud_oci_apigateway_api_specification_route_backend_t type.

Fields

Field Description

selection_source

(required)

routing_backends

(required) List of backends to chose from for Dynamic Routing.

DBMS_CLOUD_OCI_APIGATEWAY_ENTITLEMENT_SUMMARY_T Type

A summary of an entitlement included in a usage plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_entitlement_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  description varchar2(32767),
  rate_limit dbms_cloud_oci_apigateway_rate_limit_t,
  quota dbms_cloud_oci_apigateway_quota_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_entitlement_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_entitlement_summary_t (
    name varchar2,
    description varchar2,
    rate_limit dbms_cloud_oci_apigateway_rate_limit_t,
    quota dbms_cloud_oci_apigateway_quota_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) An entitlement name, unique within a usage plan.

description

(optional) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.

rate_limit

(optional)

quota

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_APIGATEWAY_RESPONSE_CACHE_RESP_SERVER_T Type

Details of a RESP based cache store server

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_response_cache_resp_server_t FORCE AUTHID CURRENT_USER IS OBJECT (
  host varchar2(32767),
  port number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_resp_server_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_response_cache_resp_server_t (
    host varchar2,
    port number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

host

(required) Hostname or IP address (IPv4 only) where the cache store is running.

port

(required) The port the cache store is exposed on.

DBMS_CLOUD_OCI_APIGATEWAY_RESPONSE_CACHE_RESP_SERVER_TBL Type

Nested table type of dbms_cloud_oci_apigateway_response_cache_resp_server_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_response_cache_resp_server_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_response_cache_resp_server_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_EXTERNAL_RESP_CACHE_T Type

Connection details for an external RESP based cache store for Response Caching.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_external_resp_cache_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_response_cache_details_t (
  servers dbms_cloud_oci_apigateway_response_cache_resp_server_tbl,
  authentication_secret_id varchar2(32767),
  authentication_secret_version_number number,
  is_ssl_enabled number,
  is_ssl_verify_disabled number,
  connect_timeout_in_ms number,
  read_timeout_in_ms number,
  send_timeout_in_ms number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_external_resp_cache_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_external_resp_cache_t (
    l_type varchar2,
    servers dbms_cloud_oci_apigateway_response_cache_resp_server_tbl,
    authentication_secret_id varchar2,
    authentication_secret_version_number number,
    is_ssl_enabled number,
    is_ssl_verify_disabled number,
    connect_timeout_in_ms number,
    read_timeout_in_ms number,
    send_timeout_in_ms number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_external_resp_cache_t is a subtype of the dbms_cloud_oci_apigateway_response_cache_details_t type.

Fields

Field Description

servers

(required) The set of cache store members to connect to. At present only a single server is supported.

authentication_secret_id

(required) The OCID of the Oracle Vault Service secret resource.

authentication_secret_version_number

(required) The version number of the authentication secret to use.

is_ssl_enabled

(optional) Defines if the connection should be over SSL.

is_ssl_verify_disabled

(optional) Defines whether or not to uphold SSL verification.

connect_timeout_in_ms

(optional) Defines the timeout for establishing a connection with the Response Cache.

read_timeout_in_ms

(optional) Defines the timeout for reading data from the Response Cache.

send_timeout_in_ms

(optional) Defines the timeout for transmitting data to the Response Cache.

DBMS_CLOUD_OCI_APIGATEWAY_FIXED_TTL_RESPONSE_CACHE_STORE_POLICY_T Type

How a response from a backend is cached in the Response Cache.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_fixed_ttl_response_cache_store_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_response_cache_store_policy_t (
  time_to_live_in_seconds number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_fixed_ttl_response_cache_store_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_fixed_ttl_response_cache_store_policy_t (
    l_type varchar2,
    time_to_live_in_seconds number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_fixed_ttl_response_cache_store_policy_t is a subtype of the dbms_cloud_oci_apigateway_response_cache_store_policy_t type.

Fields

Field Description

time_to_live_in_seconds

(required) Sets the number of seconds for a response from a backend being stored in the Response Cache before it expires.

DBMS_CLOUD_OCI_APIGATEWAY_IP_ADDRESS_T Type

IP address associated with the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_ip_address_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ip_address varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_ip_address_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_ip_address_t (
    ip_address varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

ip_address

(required) An IP address.

DBMS_CLOUD_OCI_APIGATEWAY_IP_ADDRESS_TBL Type

Nested table type of dbms_cloud_oci_apigateway_ip_address_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_ip_address_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_ip_address_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_GATEWAY_T Type

A gateway is a virtual network appliance in a regional subnet. A gateway routes inbound traffic to back-end services including public, private, and partner HTTP APIs, as well as Oracle Functions. Avoid entering confidential information. For more information, see API Gateway Concepts.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_gateway_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  endpoint_type varchar2(32767),
  subnet_id varchar2(32767),
  network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  hostname varchar2(32767),
  certificate_id varchar2(32767),
  ip_addresses dbms_cloud_oci_apigateway_ip_address_tbl,
  response_cache_details dbms_cloud_oci_apigateway_response_cache_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  ca_bundles dbms_cloud_oci_apigateway_ca_bundle_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_gateway_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_gateway_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    endpoint_type varchar2,
    subnet_id varchar2,
    network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    hostname varchar2,
    certificate_id varchar2,
    ip_addresses dbms_cloud_oci_apigateway_ip_address_tbl,
    response_cache_details dbms_cloud_oci_apigateway_response_cache_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    ca_bundles dbms_cloud_oci_apigateway_ca_bundle_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

endpoint_type

(required) Gateway endpoint type. `PUBLIC` will have a public ip address assigned to it, while `PRIVATE` will only be accessible on a private IP address on the subnet. Example: `PUBLIC` or `PRIVATE`

Allowed values are: 'PUBLIC', 'PRIVATE'

subnet_id

(optional) The OCID of the subnet in which related resources are created.

network_security_group_ids

(optional) An array of Network Security Groups OCIDs associated with this API Gateway.

time_created

(optional) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the gateway.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

hostname

(optional) The hostname for APIs deployed on the gateway.

certificate_id

(optional) The OCID of the resource.

ip_addresses

(optional) An array of IP addresses associated with the gateway.

response_cache_details

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

ca_bundles

(optional) An array of CA bundles that should be used on the Gateway for TLS validation.

DBMS_CLOUD_OCI_APIGATEWAY_GATEWAY_SUMMARY_T Type

A summary of the gateway.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_gateway_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  endpoint_type varchar2(32767),
  subnet_id varchar2(32767),
  network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  hostname varchar2(32767),
  certificate_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_gateway_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_gateway_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    endpoint_type varchar2,
    subnet_id varchar2,
    network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    hostname varchar2,
    certificate_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

compartment_id

(required) The OCID of the compartment in which the resource is created.

endpoint_type

(required) Gateway endpoint type. `PUBLIC` will have a public ip address assigned to it, while `PRIVATE` will only be accessible on a private IP address on the subnet. Example: `PUBLIC` or `PRIVATE`

subnet_id

(optional) The OCID of the subnet in which related resources are created.

network_security_group_ids

(optional) An array of Network Security Groups OCIDs associated with this API Gateway.

time_created

(optional) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the gateway.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

hostname

(optional) The hostname for the APIs deployed on the gateway.

certificate_id

(optional) The OCID of the resource.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_GATEWAY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_gateway_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_gateway_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_gateway_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_GATEWAY_COLLECTION_T Type

Collection of gateway summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_gateway_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_gateway_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_gateway_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_gateway_collection_t (
    items dbms_cloud_oci_apigateway_gateway_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Gateway summaries.

DBMS_CLOUD_OCI_APIGATEWAY_HTTP_BACKEND_T Type

Send the request to an HTTP backend.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_http_backend_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_api_specification_route_backend_t (
  url varchar2(32767),
  connect_timeout_in_seconds number,
  read_timeout_in_seconds number,
  send_timeout_in_seconds number,
  is_ssl_verify_disabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_http_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_http_backend_t (
    l_type varchar2,
    url varchar2,
    connect_timeout_in_seconds number,
    read_timeout_in_seconds number,
    send_timeout_in_seconds number,
    is_ssl_verify_disabled number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_http_backend_t is a subtype of the dbms_cloud_oci_apigateway_api_specification_route_backend_t type.

Fields

Field Description

url

(required)

connect_timeout_in_seconds

(optional) Defines a timeout for establishing a connection with a proxied server.

read_timeout_in_seconds

(optional) Defines a timeout for reading a response from the proxied server.

send_timeout_in_seconds

(optional) Defines a timeout for transmitting a request to the proxied server.

is_ssl_verify_disabled

(optional) Defines whether or not to uphold SSL verification.

DBMS_CLOUD_OCI_APIGATEWAY_HEADER_FIELD_SPECIFICATION_T Type

Header in key/value pair.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_header_field_specification_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  value varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_field_specification_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_header_field_specification_t (
    name varchar2,
    value varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) Name of the header.

value

(optional) Value of the header.

DBMS_CLOUD_OCI_APIGATEWAY_STATIC_PUBLIC_KEY_T Type

A static public key which is used to verify the JWT signature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_static_public_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
  kid varchar2(32767),
  format varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_static_public_key_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_static_public_key_t (
    kid varchar2,
    format varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

kid

(required) A unique key ID. This key will be used to verify the signature of a JWT with matching \"kid\".

format

(required) The format of the public key.

Allowed values are: 'JSON_WEB_KEY', 'PEM'

DBMS_CLOUD_OCI_APIGATEWAY_JSON_WEB_KEY_T Type

A JSON Web Key that represents the public key used for verifying the JWT signature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_json_web_key_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_static_public_key_t (
  kty varchar2(32767),
  use varchar2(32767),
  key_ops dbms_cloud_oci_apigateway_varchar2_tbl,
  alg varchar2(32767),
  n varchar2(32767),
  e varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_json_web_key_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_json_web_key_t (
    kid varchar2,
    format varchar2,
    kty varchar2,
    use varchar2,
    key_ops dbms_cloud_oci_apigateway_varchar2_tbl,
    alg varchar2,
    n varchar2,
    e varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_json_web_key_t is a subtype of the dbms_cloud_oci_apigateway_static_public_key_t type.

Fields

Field Description

kty

(required) The key type.

Allowed values are: 'RSA'

use

(optional) The intended use of the public key.

Allowed values are: 'sig'

key_ops

(optional) The operations for which this key is to be used.

Allowed values are: 'verify'

alg

(required) The algorithm intended for use with this key.

n

(required) The base64 url encoded modulus of the RSA public key represented by this key.

e

(required) The base64 url encoded exponent of the RSA public key represented by this key.

DBMS_CLOUD_OCI_APIGATEWAY_PUBLIC_KEY_SET_T Type

A set of Public Keys that will be used to verify the JWT signature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_public_key_set_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_public_key_set_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_public_key_set_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the public key set.

Allowed values are: 'STATIC_KEYS', 'REMOTE_JWKS'

DBMS_CLOUD_OCI_APIGATEWAY_JWT_AUTHENTICATION_POLICY_T Type

Validate a JWT token present in the header or query parameter. A valid policy must specify either tokenHeader or tokenQueryParam.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_jwt_authentication_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_authentication_policy_t (
  token_header varchar2(32767),
  token_query_param varchar2(32767),
  token_auth_scheme varchar2(32767),
  max_clock_skew_in_seconds number,
  issuers dbms_cloud_oci_apigateway_varchar2_tbl,
  audiences dbms_cloud_oci_apigateway_varchar2_tbl,
  verify_claims dbms_cloud_oci_apigateway_json_web_token_claim_tbl,
  public_keys dbms_cloud_oci_apigateway_public_key_set_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_jwt_authentication_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_jwt_authentication_policy_t (
    is_anonymous_access_allowed number,
    l_type varchar2,
    token_header varchar2,
    token_query_param varchar2,
    token_auth_scheme varchar2,
    max_clock_skew_in_seconds number,
    issuers dbms_cloud_oci_apigateway_varchar2_tbl,
    audiences dbms_cloud_oci_apigateway_varchar2_tbl,
    verify_claims dbms_cloud_oci_apigateway_json_web_token_claim_tbl,
    public_keys dbms_cloud_oci_apigateway_public_key_set_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_jwt_authentication_policy_t is a subtype of the dbms_cloud_oci_apigateway_authentication_policy_t type.

Fields

Field Description

token_header

(optional) The name of the header containing the authentication token.

token_query_param

(optional) The name of the query parameter containing the authentication token.

token_auth_scheme

(optional) The authentication scheme that is to be used when authenticating the token. This must to be provided if \"tokenHeader\" is specified.

max_clock_skew_in_seconds

(optional) The maximum expected time difference between the system clocks of the token issuer and the API Gateway.

issuers

(required) A list of parties that could have issued the token.

audiences

(required) The list of intended recipients for the token.

verify_claims

(optional) A list of claims which should be validated to consider the token valid.

public_keys

(required)

DBMS_CLOUD_OCI_APIGATEWAY_MODIFY_RESPONSE_VALIDATION_FAILURE_POLICY_T Type

Policy to specify how to modify the response code, body and headers.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_modify_response_validation_failure_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_validation_failure_policy_t (
  response_code varchar2(32767),
  response_message varchar2(32767),
  response_header_transformations dbms_cloud_oci_apigateway_header_transformation_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_modify_response_validation_failure_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_modify_response_validation_failure_policy_t (
    l_type varchar2,
    response_code varchar2,
    response_message varchar2,
    response_header_transformations dbms_cloud_oci_apigateway_header_transformation_policy_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_modify_response_validation_failure_policy_t is a subtype of the dbms_cloud_oci_apigateway_validation_failure_policy_t type.

Fields

Field Description

response_code

(optional) HTTP response code, can include context variables.

response_message

(optional) HTTP response message.

response_header_transformations

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_NO_CACHE_T Type

Configures the gateway with no caching. Cache lookup and store policies will not be supported.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_no_cache_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_response_cache_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_no_cache_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_no_cache_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_no_cache_t is a subtype of the dbms_cloud_oci_apigateway_response_cache_details_t type.

DBMS_CLOUD_OCI_APIGATEWAY_NO_CONTENT_VALIDATION_T Type

No content validation properties.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_no_content_validation_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_content_validation_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_no_content_validation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_no_content_validation_t (
    validation_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_no_content_validation_t is a subtype of the dbms_cloud_oci_apigateway_content_validation_t type.

DBMS_CLOUD_OCI_APIGATEWAY_O_AUTH2_LOGOUT_BACKEND_T Type

Backend which when called triggers OAuth2 logout.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_o_auth2_logout_backend_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_api_specification_route_backend_t (
  allowed_post_logout_uris dbms_cloud_oci_apigateway_varchar2_tbl,
  post_logout_state varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_o_auth2_logout_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_o_auth2_logout_backend_t (
    l_type varchar2,
    allowed_post_logout_uris dbms_cloud_oci_apigateway_varchar2_tbl,
    post_logout_state varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_o_auth2_logout_backend_t is a subtype of the dbms_cloud_oci_apigateway_api_specification_route_backend_t type.

Fields

Field Description

allowed_post_logout_uris

(optional)

post_logout_state

(optional) Defines a state that should be shared on redirecting to postLogout URL.

DBMS_CLOUD_OCI_APIGATEWAY_O_AUTH2_RESPONSE_VALIDATION_FAILURE_POLICY_T Type

Policy to specify OAuth2 flow configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_o_auth2_response_validation_failure_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_validation_failure_policy_t (
  client_details dbms_cloud_oci_apigateway_client_app_details_t,
  source_uri_details dbms_cloud_oci_apigateway_source_uri_details_t,
  scopes dbms_cloud_oci_apigateway_varchar2_tbl,
  max_expiry_duration_in_hours number,
  use_cookies_for_session number,
  use_cookies_for_intermediate_steps number,
  use_pkce number,
  response_type varchar2(32767),
  fallback_redirect_path varchar2(32767),
  logout_path varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_o_auth2_response_validation_failure_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_o_auth2_response_validation_failure_policy_t (
    l_type varchar2,
    client_details dbms_cloud_oci_apigateway_client_app_details_t,
    source_uri_details dbms_cloud_oci_apigateway_source_uri_details_t,
    scopes dbms_cloud_oci_apigateway_varchar2_tbl,
    max_expiry_duration_in_hours number,
    use_cookies_for_session number,
    use_cookies_for_intermediate_steps number,
    use_pkce number,
    response_type varchar2,
    fallback_redirect_path varchar2,
    logout_path varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_o_auth2_response_validation_failure_policy_t is a subtype of the dbms_cloud_oci_apigateway_validation_failure_policy_t type.

Fields

Field Description

client_details

(required)

source_uri_details

(required)

scopes

(required) List of scopes.

max_expiry_duration_in_hours

(optional) The duration for which the OAuth2 success token should be cached before it is fetched again.

use_cookies_for_session

(optional) Defines whether or not to use cookies for session maintenance.

use_cookies_for_intermediate_steps

(optional) Defines whether or not to use cookies for OAuth2 intermediate steps.

use_pkce

(optional) Defines whether or not to support PKCE.

response_type

(required) Response Type.

Allowed values are: 'CODE'

fallback_redirect_path

(optional) The path to be used as fallback after OAuth2.

logout_path

(optional) The path to be used as logout.

DBMS_CLOUD_OCI_APIGATEWAY_ORACLE_FUNCTION_BACKEND_T Type

Send the request to an Oracle Functions function.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_oracle_function_backend_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_api_specification_route_backend_t (
  function_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_oracle_function_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_oracle_function_backend_t (
    l_type varchar2,
    function_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_oracle_function_backend_t is a subtype of the dbms_cloud_oci_apigateway_api_specification_route_backend_t type.

Fields

Field Description

function_id

(required) The OCID of the Oracle Functions function resource.

DBMS_CLOUD_OCI_APIGATEWAY_PEM_ENCODED_PUBLIC_KEY_T Type

A PEM-encoded public key used for verifying the JWT signature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_pem_encoded_public_key_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_static_public_key_t (
  key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_pem_encoded_public_key_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_pem_encoded_public_key_t (
    kid varchar2,
    format varchar2,
    key varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_pem_encoded_public_key_t is a subtype of the dbms_cloud_oci_apigateway_static_public_key_t type.

Fields

Field Description

key

(required) The content of the PEM-encoded public key.

DBMS_CLOUD_OCI_APIGATEWAY_REMOTE_JSON_WEB_KEY_SET_T Type

A set of public keys that is retrieved at run-time from a remote location to verify the JWT signature. The set should only contain JWK-formatted keys.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_remote_json_web_key_set_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_public_key_set_t (
  uri varchar2(32767),
  is_ssl_verify_disabled number,
  max_cache_duration_in_hours number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_remote_json_web_key_set_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_remote_json_web_key_set_t (
    l_type varchar2,
    uri varchar2,
    is_ssl_verify_disabled number,
    max_cache_duration_in_hours number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_remote_json_web_key_set_t is a subtype of the dbms_cloud_oci_apigateway_public_key_set_t type.

Fields

Field Description

uri

(required) The uri from which to retrieve the key. It must be accessible without authentication.

is_ssl_verify_disabled

(optional) Defines whether or not to uphold SSL verification.

max_cache_duration_in_hours

(optional) The duration for which the JWKS should be cached before it is fetched again.

DBMS_CLOUD_OCI_APIGATEWAY_REQUEST_PARAMETER_VALIDATION_T Type

Common parameter validation properties.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_request_parameter_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_request_parameter_validation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_request_parameter_validation_t (
    name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Parameter name.

DBMS_CLOUD_OCI_APIGATEWAY_SDK_T Type

Information about the SDK.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  api_id varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  display_name varchar2(32767),
  target_language varchar2(32767),
  artifact_url varchar2(32767),
  time_artifact_url_expires_at timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  parameters json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_t (
    id varchar2,
    api_id varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    display_name varchar2,
    target_language varchar2,
    artifact_url varchar2,
    time_artifact_url_expires_at timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    parameters json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

api_id

(required) The OCID of API resource

compartment_id

(optional) The OCID of the compartment in which the resource is created.

time_created

(optional) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

target_language

(required) The string representing the target programming language for generating the SDK.

artifact_url

(optional) File location for generated SDK.

time_artifact_url_expires_at

(optional) Expiry of artifact url.

lifecycle_state

(optional) The current state of the SDK. - The SDK will be in CREATING state if the SDK creation is in progress. - The SDK will be in ACTIVE state if create is successful. - The SDK will be in FAILED state if the create, or delete fails. - The SDK will be in DELETING state if the deletion in in progress. - The SDK will be in DELETED state if the delete is successful.

Allowed values are: 'CREATING', 'ACTIVE', 'FAILED', 'DELETING', 'DELETED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

parameters

(optional) Additional optional configurations passed. The applicable config keys are listed under \"parameters\" when \"/sdkLanguageTypes\" is called. Example: `{\"configName\": \"configValue\"}`

DBMS_CLOUD_OCI_APIGATEWAY_SDK_SUMMARY_T Type

A summary of the SDK.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  display_name varchar2(32767),
  target_language varchar2(32767),
  lifecycle_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_summary_t (
    id varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    display_name varchar2,
    target_language varchar2,
    lifecycle_state varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

compartment_id

(optional) The OCID of the compartment in which the resource is created.

time_created

(required) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time this resource was last updated. An RFC3339 formatted datetime string.

display_name

(required) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

target_language

(required) The string representing the target programming language for generating the SDK.

lifecycle_state

(optional) The current state of the SDK.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_SDK_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_sdk_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_sdk_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SDK_COLLECTION_T Type

Collection of the existing SDKs.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_sdk_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_collection_t (
    items dbms_cloud_oci_apigateway_sdk_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) SDK summaries.

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_OPTIONAL_PARAMETERS_ALLOWED_VALUE_T Type

Allowed value object.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_t (
    name varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) Name of the allowed value.

description

(optional) Description for the allowed value.

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_OPTIONAL_PARAMETERS_ALLOWED_VALUE_TBL Type

Nested table type of dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_OPTIONAL_PARAMETERS_T Type

List of additional applicable parameters for any given target language.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_optional_parameters_t FORCE AUTHID CURRENT_USER IS OBJECT (
  param_name varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  is_required number,
  max_size number,
  input_type varchar2(32767),
  allowed_values dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_optional_parameters_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_optional_parameters_t (
    param_name varchar2,
    display_name varchar2,
    description varchar2,
    is_required number,
    max_size number,
    input_type varchar2,
    allowed_values dbms_cloud_oci_apigateway_sdk_language_optional_parameters_allowed_value_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

param_name

(required) Name of the parameter.

display_name

(optional) Display name of the parameter.

description

(optional) Description for the parameter.

is_required

(optional) Information on whether the parameter is required or not.

max_size

(optional) Maximum size as input value for this parameter.

input_type

(optional) The input type for this param. - Input type is ENUM when only specific list of input strings are allowed. - Input type is EMAIL when input type is an email ID. - Input type is URI when input type is an URI. - Input type is STRING in all other cases.

Allowed values are: 'ENUM', 'EMAIL', 'URI', 'STRING'

allowed_values

(optional) List of allowed input values. Example: `[{\"name\": \"name1\", \"description\": \"description1\"}, ...]`

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_OPTIONAL_PARAMETERS_TBL Type

Nested table type of dbms_cloud_oci_apigateway_sdk_language_optional_parameters_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_optional_parameters_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_sdk_language_optional_parameters_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_TYPE_SUMMARY_T Type

SDK target language details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_type_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  display_name varchar2(32767),
  version varchar2(32767),
  description varchar2(32767),
  parameters dbms_cloud_oci_apigateway_sdk_language_optional_parameters_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_type_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_type_summary_t (
    name varchar2,
    display_name varchar2,
    version varchar2,
    description varchar2,
    parameters dbms_cloud_oci_apigateway_sdk_language_optional_parameters_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of the programming language.

display_name

(optional) Display name of the target programming language.

version

(required) Version string of the programming language defined in name.

description

(optional) Additional details.

parameters

(optional) List of optional configurations that can be used while generating SDK for the given target language.

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_TYPE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_sdk_language_type_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_type_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_sdk_language_type_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_TYPE_COLLECTION_T Type

Collection of available SDK target languages.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_type_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_sdk_language_type_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_type_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_type_collection_t (
    items dbms_cloud_oci_apigateway_sdk_language_type_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) SDK target language details.

DBMS_CLOUD_OCI_APIGATEWAY_SDK_LANGUAGE_TYPES_T Type

SDK target language details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_sdk_language_types_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  display_name varchar2(32767),
  version varchar2(32767),
  description varchar2(32767),
  parameters dbms_cloud_oci_apigateway_sdk_language_optional_parameters_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_types_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_sdk_language_types_t (
    name varchar2,
    display_name varchar2,
    version varchar2,
    description varchar2,
    parameters dbms_cloud_oci_apigateway_sdk_language_optional_parameters_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) Name of the programming language.

display_name

(optional) Display name of the target programming language.

version

(required) Version string of the programming language defined in name.

description

(optional) Additional details.

parameters

(optional) List of optional configurations that can be used while generating SDK for the given target language.

DBMS_CLOUD_OCI_APIGATEWAY_SIMPLE_LOOKUP_POLICY_T Type

Provides ability to vary the cache key using context expressions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_simple_lookup_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_response_cache_lookup_policy_t (
  cache_key_additions dbms_cloud_oci_apigateway_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_simple_lookup_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_simple_lookup_policy_t (
    l_type varchar2,
    is_enabled number,
    is_private_caching_enabled number,
    cache_key_additions dbms_cloud_oci_apigateway_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_simple_lookup_policy_t is a subtype of the dbms_cloud_oci_apigateway_response_cache_lookup_policy_t type.

Fields

Field Description

cache_key_additions

(optional) A list of context expressions whose values will be added to the base cache key. Values should contain an expression enclosed within ${} delimiters. Only the request context is available.

DBMS_CLOUD_OCI_APIGATEWAY_SINGLE_SELECTION_SOURCE_POLICY_T Type

The single context variable in an incoming request to match against specified selection keys when dynamically routing and dynamically authenticating requests.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_single_selection_source_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_selection_source_policy_t (
  selector varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_single_selection_source_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_single_selection_source_policy_t (
    l_type varchar2,
    selector varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_single_selection_source_policy_t is a subtype of the dbms_cloud_oci_apigateway_selection_source_policy_t type.

Fields

Field Description

selector

(required) String describing the context variable used as selector.

DBMS_CLOUD_OCI_APIGATEWAY_STATIC_PUBLIC_KEY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_static_public_key_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_static_public_key_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_static_public_key_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_STATIC_PUBLIC_KEY_SET_T Type

A set of static public keys that will be used to verify the JWT signature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_static_public_key_set_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_public_key_set_t (
  keys dbms_cloud_oci_apigateway_static_public_key_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_static_public_key_set_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_static_public_key_set_t (
    l_type varchar2,
    keys dbms_cloud_oci_apigateway_static_public_key_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_static_public_key_set_t is a subtype of the dbms_cloud_oci_apigateway_public_key_set_t type.

Fields

Field Description

keys

(optional) The set of static public keys.

DBMS_CLOUD_OCI_APIGATEWAY_HEADER_FIELD_SPECIFICATION_TBL Type

Nested table type of dbms_cloud_oci_apigateway_header_field_specification_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_header_field_specification_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_header_field_specification_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_STOCK_RESPONSE_BACKEND_T Type

Send the request to a mock backend.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_stock_response_backend_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_api_specification_route_backend_t (
  body varchar2(32767),
  status number,
  headers dbms_cloud_oci_apigateway_header_field_specification_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_stock_response_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_stock_response_backend_t (
    l_type varchar2,
    body varchar2,
    status number,
    headers dbms_cloud_oci_apigateway_header_field_specification_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_stock_response_backend_t is a subtype of the dbms_cloud_oci_apigateway_api_specification_route_backend_t type.

Fields

Field Description

body

(optional) The body of the stock response from the mock backend.

status

(required) The status code of the stock response from the mock backend.

headers

(optional) The headers of the stock response from the mock backend.

DBMS_CLOUD_OCI_APIGATEWAY_SUBSCRIBER_T Type

A subscriber, which encapsulates a number of clients and usage plans that they are subscribed to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_subscriber_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  clients dbms_cloud_oci_apigateway_client_tbl,
  usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_subscriber_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_subscriber_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    clients dbms_cloud_oci_apigateway_client_tbl,
    usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

compartment_id

(required) The OCID of the compartment in which the resource is created.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

clients

(required) The clients belonging to this subscriber.

usage_plans

(required) An array of OCIDs of usage plan resources.

time_created

(required) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(required) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the subscriber.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_CLIENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_client_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_client_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_client_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SUBSCRIBER_SUMMARY_T Type

A summary of a subscriber.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_subscriber_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  clients dbms_cloud_oci_apigateway_client_summary_tbl,
  usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_subscriber_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_subscriber_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    clients dbms_cloud_oci_apigateway_client_summary_tbl,
    usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

compartment_id

(required) The OCID of the compartment in which the resource is created.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

clients

(required) The clients belonging to this subscriber.

usage_plans

(required) An array of OCIDs of usage plan resources.

time_created

(required) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(required) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the subscriber.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_SUBSCRIBER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_subscriber_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_subscriber_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_subscriber_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_SUBSCRIBER_COLLECTION_T Type

Collection of subscriber summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_subscriber_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_subscriber_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_subscriber_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_subscriber_collection_t (
    items dbms_cloud_oci_apigateway_subscriber_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Subscriber summaries.

DBMS_CLOUD_OCI_APIGATEWAY_TOKEN_AUTHENTICATION_VALIDATION_POLICY_T Type

Authentication Policies for the Token Authentication types.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_token_authentication_validation_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  additional_validation_policy dbms_cloud_oci_apigateway_additional_validation_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_validation_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_validation_policy_t (
    l_type varchar2,
    additional_validation_policy dbms_cloud_oci_apigateway_additional_validation_policy_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of the token validation policy.

Allowed values are: 'STATIC_KEYS', 'REMOTE_JWKS', 'REMOTE_DISCOVERY'

additional_validation_policy

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_TOKEN_AUTHENTICATION_POLICY_T Type

Validate a token present in the header or query parameter. A valid policy must specify either tokenHeader or tokenQueryParam.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_token_authentication_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_authentication_policy_t (
  token_header varchar2(32767),
  token_query_param varchar2(32767),
  token_auth_scheme varchar2(32767),
  max_clock_skew_in_seconds number,
  validation_policy dbms_cloud_oci_apigateway_token_authentication_validation_policy_t,
  validation_failure_policy dbms_cloud_oci_apigateway_validation_failure_policy_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_policy_t (
    is_anonymous_access_allowed number,
    l_type varchar2,
    token_header varchar2,
    token_query_param varchar2,
    token_auth_scheme varchar2,
    max_clock_skew_in_seconds number,
    validation_policy dbms_cloud_oci_apigateway_token_authentication_validation_policy_t,
    validation_failure_policy dbms_cloud_oci_apigateway_validation_failure_policy_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_token_authentication_policy_t is a subtype of the dbms_cloud_oci_apigateway_authentication_policy_t type.

Fields

Field Description

token_header

(optional) The name of the header containing the authentication token.

token_query_param

(optional) The name of the query parameter containing the authentication token.

token_auth_scheme

(optional) The authentication scheme that is to be used when authenticating the token. This must to be provided if \"tokenHeader\" is specified.

max_clock_skew_in_seconds

(optional) The maximum expected time difference between the system clocks of the token issuer and the API Gateway.

validation_policy

(required)

validation_failure_policy

(optional)

DBMS_CLOUD_OCI_APIGATEWAY_TOKEN_AUTHENTICATION_REMOTE_DISCOVERY_VALIDATION_POLICY_T Type

Instrospect Url based validation retrieved at run-time from a remote location to verify the provided token.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_token_authentication_remote_discovery_validation_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_token_authentication_validation_policy_t (
  client_details dbms_cloud_oci_apigateway_client_app_details_t,
  source_uri_details dbms_cloud_oci_apigateway_source_uri_details_t,
  is_ssl_verify_disabled number,
  max_cache_duration_in_hours number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_remote_discovery_validation_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_remote_discovery_validation_policy_t (
    l_type varchar2,
    additional_validation_policy dbms_cloud_oci_apigateway_additional_validation_policy_t,
    client_details dbms_cloud_oci_apigateway_client_app_details_t,
    source_uri_details dbms_cloud_oci_apigateway_source_uri_details_t,
    is_ssl_verify_disabled number,
    max_cache_duration_in_hours number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_token_authentication_remote_discovery_validation_policy_t is a subtype of the dbms_cloud_oci_apigateway_token_authentication_validation_policy_t type.

Fields

Field Description

client_details

(required)

source_uri_details

(required)

is_ssl_verify_disabled

(optional) Defines whether or not to uphold SSL verification.

max_cache_duration_in_hours

(optional) The duration for which the introspect URL response should be cached before it is fetched again.

DBMS_CLOUD_OCI_APIGATEWAY_TOKEN_AUTHENTICATION_REMOTE_JWKS_VALIDATION_POLICY_T Type

A set of public keys that is retrieved at run-time from a remote location to verify the JWT signature. The set should only contain JWK-formatted keys.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_token_authentication_remote_jwks_validation_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_token_authentication_validation_policy_t (
  uri varchar2(32767),
  is_ssl_verify_disabled number,
  max_cache_duration_in_hours number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_remote_jwks_validation_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_remote_jwks_validation_policy_t (
    l_type varchar2,
    additional_validation_policy dbms_cloud_oci_apigateway_additional_validation_policy_t,
    uri varchar2,
    is_ssl_verify_disabled number,
    max_cache_duration_in_hours number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_token_authentication_remote_jwks_validation_policy_t is a subtype of the dbms_cloud_oci_apigateway_token_authentication_validation_policy_t type.

Fields

Field Description

uri

(required) The uri from which to retrieve the key. It must be accessible without authentication.

is_ssl_verify_disabled

(optional) Defines whether or not to uphold SSL verification.

max_cache_duration_in_hours

(optional) The duration for which the JWKS should be cached before it is fetched again.

DBMS_CLOUD_OCI_APIGATEWAY_TOKEN_AUTHENTICATION_STATIC_KEYS_VALIDATION_POLICY_T Type

A set of static public keys that will be used to verify the JWT signature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_token_authentication_static_keys_validation_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_token_authentication_validation_policy_t (
  keys dbms_cloud_oci_apigateway_static_public_key_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_static_keys_validation_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_token_authentication_static_keys_validation_policy_t (
    l_type varchar2,
    additional_validation_policy dbms_cloud_oci_apigateway_additional_validation_policy_t,
    keys dbms_cloud_oci_apigateway_static_public_key_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_token_authentication_static_keys_validation_policy_t is a subtype of the dbms_cloud_oci_apigateway_token_authentication_validation_policy_t type.

Fields

Field Description

keys

(optional) The set of static public keys.

DBMS_CLOUD_OCI_APIGATEWAY_UPDATE_API_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_update_api_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  content varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_api_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_api_details_t (
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    content varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

content

(optional) API Specification content in json or yaml format

DBMS_CLOUD_OCI_APIGATEWAY_UPDATE_CERTIFICATE_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_update_certificate_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_certificate_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_certificate_details_t (
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_UPDATE_DEPLOYMENT_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_update_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  specification dbms_cloud_oci_apigateway_api_specification_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_deployment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_deployment_details_t (
    display_name varchar2,
    specification dbms_cloud_oci_apigateway_api_specification_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

specification

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_UPDATE_GATEWAY_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_update_gateway_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
  certificate_id varchar2(32767),
  response_cache_details dbms_cloud_oci_apigateway_response_cache_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  ca_bundles dbms_cloud_oci_apigateway_ca_bundle_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_gateway_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_gateway_details_t (
    display_name varchar2,
    network_security_group_ids dbms_cloud_oci_apigateway_varchar2_tbl,
    certificate_id varchar2,
    response_cache_details dbms_cloud_oci_apigateway_response_cache_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    ca_bundles dbms_cloud_oci_apigateway_ca_bundle_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

network_security_group_ids

(optional) An array of Network Security Groups OCIDs associated with this API Gateway.

certificate_id

(optional) The OCID of the resource.

response_cache_details

(optional)

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

ca_bundles

(optional) An array of CA bundles that should be used on the Gateway for TLS validation.

DBMS_CLOUD_OCI_APIGATEWAY_UPDATE_SDK_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_update_sdk_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_sdk_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_sdk_details_t (
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_UPDATE_SUBSCRIBER_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_update_subscriber_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  clients dbms_cloud_oci_apigateway_client_tbl,
  usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_subscriber_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_subscriber_details_t (
    display_name varchar2,
    clients dbms_cloud_oci_apigateway_client_tbl,
    usage_plans dbms_cloud_oci_apigateway_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

clients

(optional) The clients belonging to the subscriber.

usage_plans

(optional) An array of OCIDs of usage plan resources.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_UPDATE_USAGE_PLAN_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_update_usage_plan_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  entitlements dbms_cloud_oci_apigateway_entitlement_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_usage_plan_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_update_usage_plan_details_t (
    display_name varchar2,
    entitlements dbms_cloud_oci_apigateway_entitlement_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

entitlements

(optional) A collection of entitlements to update the current usage plan with.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_USAGE_PLAN_T Type

A usage plan controls access of subscribers to deployments, controlling rate limits and quotas for usage.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_usage_plan_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  entitlements dbms_cloud_oci_apigateway_entitlement_tbl,
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plan_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plan_t (
    id varchar2,
    display_name varchar2,
    entitlements dbms_cloud_oci_apigateway_entitlement_tbl,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of a usage plan resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

entitlements

(required) A collection of entitlements currently assigned to the usage plan.

compartment_id

(required) The OCID of the compartment in which the resource is created.

time_created

(required) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(required) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the usage plan.

Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_ENTITLEMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_entitlement_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_entitlement_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_entitlement_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_USAGE_PLAN_SUMMARY_T Type

A summary of the usage plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_usage_plan_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  entitlements dbms_cloud_oci_apigateway_entitlement_summary_tbl,
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plan_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plan_summary_t (
    id varchar2,
    display_name varchar2,
    entitlements dbms_cloud_oci_apigateway_entitlement_summary_tbl,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of a usage plan resource.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`

entitlements

(required) A collection of entitlements applied by the usage plan.

compartment_id

(required) The OCID of the compartment in which the resource is created.

time_created

(required) The time this resource was created. An RFC3339 formatted datetime string.

time_updated

(required) The time this resource was last updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the usage plan.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_APIGATEWAY_USAGE_PLAN_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_usage_plan_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_usage_plan_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_usage_plan_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_USAGE_PLAN_COLLECTION_T Type

Collection of usage plan summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_usage_plan_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_usage_plan_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plan_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_usage_plan_collection_t (
    items dbms_cloud_oci_apigateway_usage_plan_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Usage plan summaries.

DBMS_CLOUD_OCI_APIGATEWAY_VALIDATION_BLOCK_CLIENT_APP_DETAILS_T Type

Client App Credentials to be used from validation block.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_validation_block_client_app_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_client_app_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_block_client_app_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_block_client_app_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_validation_block_client_app_details_t is a subtype of the dbms_cloud_oci_apigateway_client_app_details_t type.

DBMS_CLOUD_OCI_APIGATEWAY_VALIDATION_BLOCK_SOURCE_URI_DETAILS_T Type

Source Uri information to be used from validation block.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_validation_block_source_uri_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_source_uri_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_block_source_uri_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_block_source_uri_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_validation_block_source_uri_details_t is a subtype of the dbms_cloud_oci_apigateway_source_uri_details_t type.

DBMS_CLOUD_OCI_APIGATEWAY_VALIDATION_REQUEST_POLICY_T Type

Top-level validation policy mixin (not directly used).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_validation_request_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  validation_mode varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_request_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_validation_request_policy_t (
    validation_mode varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

validation_mode

(optional) Validation behavior mode. In `ENFORCING` mode, upon a validation failure, the request will be rejected with a 4xx response and not sent to the backend. In `PERMISSIVE` mode, the result of the validation will be exposed as metrics while the request will follow the normal path. `DISABLED` type turns the validation off.

Allowed values are: 'ENFORCING', 'PERMISSIVE', 'DISABLED'

DBMS_CLOUD_OCI_APIGATEWAY_WILDCARD_SELECTION_KEY_T Type

When dynamically routing and dynamically authenticating requests, the route or authentication server associated with a selection key containing a wildcard is used if the context variable in an incoming request matches that key.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_wildcard_selection_key_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_apigateway_dynamic_selection_key_t (
  expression varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_wildcard_selection_key_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_wildcard_selection_key_t (
    l_type varchar2,
    is_default number,
    name varchar2,
    expression varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_apigateway_wildcard_selection_key_t is a subtype of the dbms_cloud_oci_apigateway_dynamic_selection_key_t type.

Fields

Field Description

expression

(required) A selection key string containing a wildcard to match with the context variable in an incoming request. If the context variable matches the string, the request is sent to the route or authentication server associated with the selection key. Valid wildcards are '*' (zero or more characters) and '+' (one or more characters). The string can only contain one wildcard, and the wildcard must be at the start or the end of the string.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  action_type varchar2(32767),
  identifier varchar2(32767),
  entity_uri varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type the work request affects.

action_type

(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the IN_PROGRESS state until work is complete for that resource; at which point, it will transition to CREATED, UPDATED, or DELETED, respectively.

Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'FAILED'

identifier

(required) The identifier of the resource the work request affects.

entity_uri

(optional) The URI path on which the user can perform a GET operation to access the resource metadata.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_apigateway_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_T Type

A description of the work request status.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  operation_type varchar2(32767),
  status varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_apigateway_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_t (
    id varchar2,
    operation_type varchar2,
    status varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_apigateway_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the resource.

operation_type

(required) The type of the work request.

Allowed values are: 'CREATE_GATEWAY', 'UPDATE_GATEWAY', 'DELETE_GATEWAY', 'CREATE_DEPLOYMENT', 'UPDATE_DEPLOYMENT', 'DELETE_DEPLOYMENT', 'CREATE_CERTIFICATE', 'UPDATE_CERTIFICATE', 'DELETE_CERTIFICATE', 'CREATE_API', 'UPDATE_API', 'DELETE_API', 'VALIDATE_API', 'CREATE_SDK', 'DELETE_SDK', 'CREATE_USAGE_PLAN', 'UPDATE_USAGE_PLAN', 'DELETE_USAGE_PLAN', 'CREATE_SUBSCRIBER', 'UPDATE_SUBSCRIBER', 'DELETE_SUBSCRIBER'

status

(required) The status of the work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

compartment_id

(required) The OCID of the compartment in which the resource is created.

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the request was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_SUMMARY_T Type

A summary of the work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  work_request_id varchar2(32767),
  compartment_id varchar2(32767),
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    work_request_id varchar2,
    compartment_id varchar2,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The type of the work request.

status

(required) The status of the work request.

work_request_id

(required) The OCID of the resource.

compartment_id

(required) The OCID of the compartment in which the resource is created.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the request was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_apigateway_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_COLLECTION_T Type

Collection of work request summaries.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_work_request_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_collection_t (
    items dbms_cloud_oci_apigateway_work_request_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Work request summaries.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_error_t (
    code varchar2,
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A machine-usable code for the error that occured. See <a href=\"/Content/API/References/apierrors.htm\">API Errors</a>.

message

(required) A human-readable description of the issue encountered.

l_timestamp

(required) The time the error occured. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_apigateway_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_ERROR_COLLECTION_T Type

Collection of work request errors.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_error_collection_t (
    items dbms_cloud_oci_apigateway_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Work request errors.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_LOG_T Type

A log message from the execution of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_log_t FORCE AUTHID CURRENT_USER IS OBJECT (
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_log_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_log_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) Human-readable log message.

l_timestamp

(required) The time the log message was written. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_LOG_TBL Type

Nested table type of dbms_cloud_oci_apigateway_work_request_log_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_log_tbl FORCE IS TABLE OF (dbms_cloud_oci_apigateway_work_request_log_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_APIGATEWAY_WORK_REQUEST_LOG_COLLECTION_T Type

Collection of work request logs.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_apigateway_work_request_log_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_apigateway_work_request_log_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_log_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_apigateway_work_request_log_collection_t (
    items dbms_cloud_oci_apigateway_work_request_log_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) Work request logs.

Was this article helpful?