CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_APPLICATION_TRACE_CONFIG_T Type 🔗
Define the tracing configuration for an application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_application_trace_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
domain_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_application_trace_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_application_trace_config_t (
is_enabled number,
domain_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_enabled
(optional) Define if tracing is enabled for the resource.
domain_id
(optional) The OCID of the collector (e.g. an APM Domain) trace events will be sent to.
DBMS_CLOUD_OCI_FUNCTIONS_KEY_DETAILS_T Type 🔗
The properties that define the kms keys used by Functions for Image Signature verification.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_key_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
kms_key_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_key_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_key_details_t (
kms_key_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
kms_key_id
(required) The OCIDs of the KMS key that will be used to verify the image signature.
DBMS_CLOUD_OCI_FUNCTIONS_KEY_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_functions_key_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_key_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_functions_key_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_IMAGE_POLICY_CONFIG_T Type 🔗
Define the image signature verification policy for an application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_image_policy_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_policy_enabled number,
key_details dbms_cloud_oci_functions_key_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_image_policy_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_image_policy_config_t (
is_policy_enabled number,
key_details dbms_cloud_oci_functions_key_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_policy_enabled
(required) Define if image signature verification policy is enabled for the application.
key_details
(optional) A list of KMS key details.
DBMS_CLOUD_OCI_FUNCTIONS_APPLICATION_T Type 🔗
An application contains functions and defined attributes shared between those functions, such as network configuration and configuration. Avoid entering confidential information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_application_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
config json_element_t,
subnet_ids dbms_cloud_oci_functions_varchar2_tbl,
shape varchar2(32767),
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
syslog_url varchar2(32767),
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_application_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_application_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
lifecycle_state varchar2,
config json_element_t,
subnet_ids dbms_cloud_oci_functions_varchar2_tbl,
shape varchar2,
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
syslog_url varchar2,
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Application configuration for functions in this application (passed as environment variables). Can be overridden by function configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}` The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
subnet_ids
(optional) The OCIDs of the subnets in which to run functions in the application.
shape
(optional) Valid values are `GENERIC_X86`, `GENERIC_ARM` and `GENERIC_X86_ARM`. Default is `GENERIC_X86`. Setting this to `GENERIC_X86`, will run the functions in the application on X86 processor architecture. Setting this to `GENERIC_ARM`, will run the functions in the application on ARM processor architecture. When set to `GENERIC_X86_ARM`, functions in the application are run on either X86 or ARM processor architecture. Accepted values are: `GENERIC_X86`, `GENERIC_ARM`, `GENERIC_X86_ARM`
(optional) The OCIDs of the Network Security Groups to add the application to.
syslog_url
(optional) A syslog URL to which to send all function logs. Supports tcp, udp, and tcp+tls. The syslog URL must be reachable from all of the subnets configured for the application. Note: If you enable the OCI Logging service for this application, the syslogUrl value is ignored. Function logs are sent to the OCI Logging service, and not to the syslog URL. Example: `tcp://logserver.myserver:1234`
trace_config
(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\"}}`
time_created
(optional) The time the application was created, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
time_updated
(optional) The time the application was updated, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
image_policy_config
(optional)
DBMS_CLOUD_OCI_FUNCTIONS_APPLICATION_SUMMARY_T Type 🔗
Summary of an application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_application_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
subnet_ids dbms_cloud_oci_functions_varchar2_tbl,
shape varchar2(32767),
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_application_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_application_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
lifecycle_state varchar2,
subnet_ids dbms_cloud_oci_functions_varchar2_tbl,
shape varchar2,
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) The OCID of the compartment that contains the application.
display_name
(optional) The display name of the application. The display name is unique within the compartment containing the application.
lifecycle_state
(optional) The current state of the application.
subnet_ids
(optional) The OCIDs of the subnets in which to run functions in the application.
shape
(optional) Valid values are `GENERIC_X86`, `GENERIC_ARM` and `GENERIC_X86_ARM`. Default is `GENERIC_X86`. Setting this to `GENERIC_X86`, will run the functions in the application on X86 processor architecture. Setting this to `GENERIC_ARM`, will run the functions in the application on ARM processor architecture. When set to `GENERIC_X86_ARM`, functions in the application are run on either X86 or ARM processor architecture. Accepted values are: `GENERIC_X86`, `GENERIC_ARM`, `GENERIC_X86_ARM`
(optional) The OCIDs of the Network Security Groups to add the application to.
trace_config
(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\"}}`
time_created
(optional) The time the application was created, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
time_updated
(optional) The time the application was updated, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
image_policy_config
(optional)
DBMS_CLOUD_OCI_FUNCTIONS_CHANGE_APPLICATION_COMPARTMENT_DETAILS_T Type 🔗
Properties to change the compartment of an application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_change_application_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_change_application_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_change_application_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_FUNCTIONS_CONFIG_DETAILS_T Type 🔗
Details about the required and optional Function configurations needed for proper performance of the PBF.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
description varchar2(32767),
is_optional number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_config_details_t (
key varchar2,
description varchar2,
is_optional number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) The key name of the config param.
description
(required) Details about why this config is required and what it will be used for.
is_optional
(optional) Is this a required config or an optional one. Requests with required config params missing will be rejected.
DBMS_CLOUD_OCI_FUNCTIONS_FUNCTION_PROVISIONED_CONCURRENCY_CONFIG_T Type 🔗
Define the strategy for provisioned concurrency for the function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_function_provisioned_concurrency_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
strategy varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_provisioned_concurrency_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_provisioned_concurrency_config_t (
strategy varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
strategy
(required) The strategy for provisioned concurrency to be used.
Allowed values are: 'CONSTANT', 'NONE'
DBMS_CLOUD_OCI_FUNCTIONS_CONSTANT_PROVISIONED_CONCURRENCY_CONFIG_T Type 🔗
Configuration specifying a constant amount of provisioned concurrency.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_constant_provisioned_concurrency_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_functions_function_provisioned_concurrency_config_t (
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_constant_provisioned_concurrency_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_constant_provisioned_concurrency_config_t (
strategy varchar2,
l_count number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_functions_constant_provisioned_concurrency_config_t is a subtype of the dbms_cloud_oci_functions_function_provisioned_concurrency_config_t type.
Fields
Field
Description
l_count
(required) Configuration specifying a constant amount of provisioned concurrency.
DBMS_CLOUD_OCI_FUNCTIONS_CREATE_APPLICATION_DETAILS_T Type 🔗
Properties for a new application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_create_application_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
config json_element_t,
subnet_ids dbms_cloud_oci_functions_varchar2_tbl,
shape varchar2(32767),
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
syslog_url varchar2(32767),
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_create_application_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_create_application_details_t (
compartment_id varchar2,
display_name varchar2,
config json_element_t,
subnet_ids dbms_cloud_oci_functions_varchar2_tbl,
shape varchar2,
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
syslog_url varchar2,
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to create the application within.
display_name
(required) The display name of the application. The display name must be unique within the compartment containing the application. Avoid entering confidential information.
config
(optional) Application configuration. These values are passed on to the function as environment variables, functions may override application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}` The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
subnet_ids
(required) The OCIDs of the subnets in which to run functions in the application.
shape
(optional) Valid values are `GENERIC_X86`, `GENERIC_ARM` and `GENERIC_X86_ARM`. Default is `GENERIC_X86`. Setting this to `GENERIC_X86`, will run the functions in the application on X86 processor architecture. Setting this to `GENERIC_ARM`, will run the functions in the application on ARM processor architecture. When set to `GENERIC_X86_ARM`, functions in the application are run on either X86 or ARM processor architecture. Accepted values are: `GENERIC_X86`, `GENERIC_ARM`, `GENERIC_X86_ARM`
(optional) The OCIDs of the Network Security Groups to add the application to.
syslog_url
(optional) A syslog URL to which to send all function logs. Supports tcp, udp, and tcp+tls. The syslog URL must be reachable from all of the subnets configured for the application. Note: If you enable the OCI Logging service for this application, the syslogUrl value is ignored. Function logs are sent to the OCI Logging service, and not to the syslog URL. Example: `tcp://logserver.myserver:1234`
trace_config
(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\"}}`
image_policy_config
(optional)
DBMS_CLOUD_OCI_FUNCTIONS_FUNCTION_SOURCE_DETAILS_T Type 🔗
The source details for the Function. The function can be created from various sources.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_function_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_source_details_t (
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
source_type
(required) Type of the Function Source. Possible values: PBF.
Allowed values are: 'PRE_BUILT_FUNCTIONS'
DBMS_CLOUD_OCI_FUNCTIONS_FUNCTION_TRACE_CONFIG_T Type 🔗
Define the tracing configuration for a function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_function_trace_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_trace_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_trace_config_t (
is_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_enabled
(optional) Define if tracing is enabled for the resource.
DBMS_CLOUD_OCI_FUNCTIONS_CREATE_FUNCTION_DETAILS_T Type 🔗
Properties to create a new function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_create_function_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
application_id varchar2(32767),
image varchar2(32767),
image_digest varchar2(32767),
source_details dbms_cloud_oci_functions_function_source_details_t,
memory_in_m_bs number,
config json_element_t,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_create_function_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_create_function_details_t (
display_name varchar2,
application_id varchar2,
image varchar2,
image_digest varchar2,
source_details dbms_cloud_oci_functions_function_source_details_t,
memory_in_m_bs number,
config json_element_t,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) The display name of the function. The display name must be unique within the application containing the function. Avoid entering confidential information.
application_id
(required) The OCID of the application this function belongs to.
image
(optional) The qualified name of the Docker image to use in the function, including the image tag. The image should be in the OCI Registry that is in the same region as the function itself. Example: `phx.ocir.io/ten/functions/function:0.0.1`
image_digest
(optional) The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the OCI Registry will be used. Example: `sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7`
source_details
(optional)
memory_in_m_bs
(required) Maximum usable memory for the function (MiB).
config
(optional) Function configuration. These values are passed on to the function as environment variables, this overrides application configuration values. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}` The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
timeout_in_seconds
(optional) Timeout for executions of the function. Value in seconds.
provisioned_concurrency_config
(optional)
trace_config
(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_FUNCTIONS_ERROR_T Type 🔗
An error has occurred.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_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_FUNCTIONS_FUNCTION_T Type 🔗
A function resource defines the code (Docker image) and configuration for a specific function. Functions are defined in applications. Avoid entering confidential information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_function_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
application_id varchar2(32767),
compartment_id varchar2(32767),
image varchar2(32767),
image_digest varchar2(32767),
source_details dbms_cloud_oci_functions_function_source_details_t,
shape varchar2(32767),
memory_in_m_bs number,
config json_element_t,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
invoke_endpoint varchar2(32767),
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_t (
id varchar2,
display_name varchar2,
lifecycle_state varchar2,
application_id varchar2,
compartment_id varchar2,
image varchar2,
image_digest varchar2,
source_details dbms_cloud_oci_functions_function_source_details_t,
shape varchar2,
memory_in_m_bs number,
config json_element_t,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
invoke_endpoint varchar2,
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) The OCID of the application the function belongs to.
compartment_id
(optional) The OCID of the compartment that contains the function.
image
(optional) The qualified name of the Docker image to use in the function, including the image tag. The image should be in the OCI Registry that is in the same region as the function itself. Example: `phx.ocir.io/ten/functions/function:0.0.1`
image_digest
(optional) The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the OCI Registry will be used. Example: `sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7`
source_details
(optional)
shape
(optional) The processor shape (`GENERIC_X86`/`GENERIC_ARM`) on which to run functions in the application, extracted from the image manifest.
(optional) Maximum usable memory for the function (MiB).
config
(optional) Function configuration. Overrides application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}` The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
timeout_in_seconds
(optional) Timeout for executions of the function. Value in seconds.
provisioned_concurrency_config
(optional)
trace_config
(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\"}`
invoke_endpoint
(optional) The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
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\"}}`
time_created
(optional) The time the function was created, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
time_updated
(optional) The time the function was updated, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
DBMS_CLOUD_OCI_FUNCTIONS_FUNCTION_SUMMARY_T Type 🔗
Summary of a function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_function_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
application_id varchar2(32767),
compartment_id varchar2(32767),
lifecycle_state varchar2(32767),
image varchar2(32767),
image_digest varchar2(32767),
source_details dbms_cloud_oci_functions_function_source_details_t,
shape varchar2(32767),
memory_in_m_bs number,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
invoke_endpoint varchar2(32767),
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_function_summary_t (
id varchar2,
display_name varchar2,
application_id varchar2,
compartment_id varchar2,
lifecycle_state varchar2,
image varchar2,
image_digest varchar2,
source_details dbms_cloud_oci_functions_function_source_details_t,
shape varchar2,
memory_in_m_bs number,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
invoke_endpoint varchar2,
defined_tags json_element_t,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) The display name of the function. The display name is unique within the application containing the function.
application_id
(optional) The OCID of the application the function belongs to.
compartment_id
(optional) The OCID of the compartment that contains the function.
lifecycle_state
(optional) The current state of the function.
image
(optional) The qualified name of the Docker image to use in the function, including the image tag. The image should be in the OCI Registry that is in the same region as the function itself. Example: `phx.ocir.io/ten/functions/function:0.0.1`
image_digest
(optional) The image digest for the version of the image that will be pulled when invoking this function. If no value is specified, the digest currently associated with the image in the OCI Registry will be used. Example: `sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7`
source_details
(optional)
shape
(optional) The processor shape (`GENERIC_X86`/`GENERIC_ARM`) on which to run functions in the application, extracted from the image manifest.
(optional) Maximum usable memory for the function (MiB).
timeout_in_seconds
(optional) Timeout for executions of the function. Value in seconds.
provisioned_concurrency_config
(optional)
trace_config
(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\"}`
invoke_endpoint
(optional) The base https invoke URL to set on a client in order to invoke a function. This URL will never change over the lifetime of the function and can be cached.
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\"}}`
time_created
(optional) The time the function was created, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
time_updated
(optional) The time the function was updated, expressed in RFC 3339 timestamp format. Example: `2018-09-12T22:47:12.613Z`
DBMS_CLOUD_OCI_FUNCTIONS_NONE_PROVISIONED_CONCURRENCY_CONFIG_T Type 🔗
Configuration specifying no provisioned concurrency
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_none_provisioned_concurrency_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_functions_function_provisioned_concurrency_config_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_none_provisioned_concurrency_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_none_provisioned_concurrency_config_t (
strategy varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_functions_none_provisioned_concurrency_config_t is a subtype of the dbms_cloud_oci_functions_function_provisioned_concurrency_config_t type.
DBMS_CLOUD_OCI_FUNCTIONS_PUBLISHER_DETAILS_T Type 🔗
Contains details about the publisher of this PBF Listing.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_publisher_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_publisher_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_publisher_details_t (
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Name of the Publisher
DBMS_CLOUD_OCI_FUNCTIONS_TRIGGER_T Type 🔗
PBF specific triggers for activating a PBF.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_trigger_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_trigger_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_trigger_t (
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) A brief descriptive name for the PBF trigger.
DBMS_CLOUD_OCI_FUNCTIONS_TRIGGER_TBL Type 🔗
Nested table type of dbms_cloud_oci_functions_trigger_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_trigger_tbl FORCE IS TABLE OF (dbms_cloud_oci_functions_trigger_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTING_T Type 🔗
PbfListing resources provide details about the available PBFs for consumption by the user. This resource contains details about PBF's functionality, policies required, configuration parameters expected etc.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listing_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
description varchar2(32767),
publisher_details dbms_cloud_oci_functions_publisher_details_t,
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_t (
id varchar2,
name varchar2,
description varchar2,
publisher_details dbms_cloud_oci_functions_publisher_details_t,
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation.
name
(required) A brief descriptive name for the PBF listing. The PBF listing name must be unique, and not match and existing PBF.
description
(required) A short overview of the PBF Listing: the purpose of the PBF and and associated information.
publisher_details
(required)
triggers
(optional) An array of Trigger. A list of triggers that may activate the PBF.
time_created
(required) The time the PbfListing was created. An RFC3339 formatted datetime string.
time_updated
(required) The last time the PbfListing was updated. An RFC3339 formatted datetime string.
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTING_SUMMARY_T Type 🔗
Summary of the PbfListing.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listing_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
name varchar2(32767),
description varchar2(32767),
publisher_details dbms_cloud_oci_functions_publisher_details_t,
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_summary_t (
id varchar2,
name varchar2,
description varchar2,
publisher_details dbms_cloud_oci_functions_publisher_details_t,
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation.
name
(required) A brief descriptive name for the PBF listing. The PBF listing name must be unique, and not match and existing PBF.
description
(required) A short overview of the PBF Listing: the purpose of the PBF and and associated information.
publisher_details
(required)
triggers
(optional) An array of Trigger. A list of triggers that may activate the PBF.
time_created
(required) The time the PbfListing was created. An RFC3339 formatted datetime string.
time_updated
(required) The last time the PbfListing was updated. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the PBF resource.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_FUNCTIONS_POLICY_DETAILS_T Type 🔗
A policy required for this PBF execution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
policy varchar2(32767),
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_policy_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_policy_details_t (
policy varchar2,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
policy
(required) Policy required for PBF execution
description
(required) Details about why this policy is required and what it will be used for.
DBMS_CLOUD_OCI_FUNCTIONS_POLICY_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_functions_policy_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_policy_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_functions_policy_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_REQUIREMENT_DETAILS_T Type 🔗
Minimum memory required by this PBF. The user should use memory greater than or equal to this value while configuring the Function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_requirement_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
min_memory_required_in_m_bs number,
policies dbms_cloud_oci_functions_policy_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_requirement_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_requirement_details_t (
min_memory_required_in_m_bs number,
policies dbms_cloud_oci_functions_policy_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
min_memory_required_in_m_bs
(required) Minimum memory required by this PBF. The user should use memory greater than or equal to this value while configuring the Function.
policies
(optional) List of policies required for this PBF execution.
DBMS_CLOUD_OCI_FUNCTIONS_CONFIG_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_functions_config_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_config_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_functions_config_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTING_VERSION_T Type 🔗
This represents a version of a PbfListing. Each new update from the publisher or the change in the image will result in the creation of new PbfListingVersion resource creation. This is a sub-resource of a PbfListing.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listing_version_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
pbf_listing_id varchar2(32767),
name varchar2(32767),
config dbms_cloud_oci_functions_config_details_tbl,
requirements dbms_cloud_oci_functions_requirement_details_t,
change_summary varchar2(32767),
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_version_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_version_t (
id varchar2,
pbf_listing_id varchar2,
name varchar2,
config dbms_cloud_oci_functions_config_details_tbl,
requirements dbms_cloud_oci_functions_requirement_details_t,
change_summary varchar2,
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation
pbf_listing_id
(required) The OCID of the PbfListing this resource version belongs to.
name
(required) Semantic version
config
(optional) Details about the required and optional Function configurations needed for proper performance of the PBF.
requirements
(required)
change_summary
(required) Details changes are included in this version.
triggers
(required) An array of Trigger. A list of triggers that may activate the PBF.
time_created
(required) The time the PbfListingVersion was created. An RFC3339 formatted datetime string.
time_updated
(required) The last time the PbfListingVersion was updated. An RFC3339 formatted datetime string.
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTING_VERSION_SUMMARY_T Type 🔗
Summary of the PbfListingVersion.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listing_version_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
pbf_listing_id varchar2(32767),
name varchar2(32767),
config dbms_cloud_oci_functions_config_details_tbl,
requirements dbms_cloud_oci_functions_requirement_details_t,
change_summary varchar2(32767),
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_version_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_version_summary_t (
id varchar2,
pbf_listing_id varchar2,
name varchar2,
config dbms_cloud_oci_functions_config_details_tbl,
requirements dbms_cloud_oci_functions_requirement_details_t,
change_summary varchar2,
triggers dbms_cloud_oci_functions_trigger_tbl,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation
pbf_listing_id
(required) The OCID of the PbfListing this resource version belongs to.
name
(required) Semantic version
config
(optional) Details about the required and optional Function configurations needed for proper performance of the PBF.
requirements
(required)
change_summary
(required) Details changes are included in this version.
triggers
(required) An array of Trigger. A list of triggers that may activate the PBF.
time_created
(required) The time the PbfListingVersion was created. An RFC3339 formatted datetime string.
time_updated
(required) The last time the PbfListingVersion was updated. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the PBF resource.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
system_tags
(optional) System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTING_VERSION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_functions_pbf_listing_version_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listing_version_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_functions_pbf_listing_version_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTING_VERSIONS_COLLECTION_T Type 🔗
Results of a PbfListingVersion search. Contains both PbfListingVersionSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listing_versions_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_functions_pbf_listing_version_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_versions_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listing_versions_collection_t (
items dbms_cloud_oci_functions_pbf_listing_version_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of PbfListingVersion.
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTING_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_functions_pbf_listing_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listing_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_functions_pbf_listing_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_PBF_LISTINGS_COLLECTION_T Type 🔗
Results of a PbfListing search. Contains boh PbfListingSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pbf_listings_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_functions_pbf_listing_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listings_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pbf_listings_collection_t (
items dbms_cloud_oci_functions_pbf_listing_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of PbfListingSummary.
DBMS_CLOUD_OCI_FUNCTIONS_PRE_BUILT_FUNCTION_SOURCE_DETAILS_T Type 🔗
The source of the Function which is based on a Pre-Built Function Listing (PbfListing).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_pre_built_function_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_functions_function_source_details_t (
pbf_listing_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pre_built_function_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_pre_built_function_source_details_t (
source_type varchar2,
pbf_listing_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_functions_pre_built_function_source_details_t is a subtype of the dbms_cloud_oci_functions_function_source_details_t type.
Fields
Field
Description
pbf_listing_id
(required) The OCID of the PbfListing this function is sourced from.
DBMS_CLOUD_OCI_FUNCTIONS_TRIGGER_SUMMARY_T Type 🔗
Summary of the Trigger.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_trigger_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_trigger_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_trigger_summary_t (
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) A brief descriptive name for the PBF trigger.
DBMS_CLOUD_OCI_FUNCTIONS_TRIGGER_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_functions_trigger_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_trigger_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_functions_trigger_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_FUNCTIONS_TRIGGERS_COLLECTION_T Type 🔗
Results of a Trigger search. Contains boh TriggerSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_triggers_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_functions_trigger_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_triggers_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_triggers_collection_t (
items dbms_cloud_oci_functions_trigger_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of TriggerSummary.
DBMS_CLOUD_OCI_FUNCTIONS_UPDATE_APPLICATION_DETAILS_T Type 🔗
Properties to update an application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_update_application_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
config json_element_t,
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
syslog_url varchar2(32767),
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_update_application_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_update_application_details_t (
config json_element_t,
network_security_group_ids dbms_cloud_oci_functions_varchar2_tbl,
syslog_url varchar2,
trace_config dbms_cloud_oci_functions_application_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
image_policy_config dbms_cloud_oci_functions_image_policy_config_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
config
(optional) Application configuration. These values are passed on to the function as environment variables, functions may override application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}` The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
network_security_group_ids
(optional) The OCIDs of the Network Security Groups to add the application to.
syslog_url
(optional) A syslog URL to which to send all function logs. Supports tcp, udp, and tcp+tls. The syslog URL must be reachable from all of the subnets configured for the application. Note: If you enable the OCI Logging service for this application, the syslogUrl value is ignored. Function logs are sent to the OCI Logging service, and not to the syslog URL. Example: `tcp://logserver.myserver:1234`
trace_config
(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\"}}`
image_policy_config
(optional)
DBMS_CLOUD_OCI_FUNCTIONS_UPDATE_FUNCTION_DETAILS_T Type 🔗
Updates attributes of a function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_functions_update_function_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
image varchar2(32767),
image_digest varchar2(32767),
memory_in_m_bs number,
config json_element_t,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_update_function_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_functions_update_function_details_t (
image varchar2,
image_digest varchar2,
memory_in_m_bs number,
config json_element_t,
timeout_in_seconds number,
provisioned_concurrency_config dbms_cloud_oci_functions_function_provisioned_concurrency_config_t,
trace_config dbms_cloud_oci_functions_function_trace_config_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
image
(optional) The qualified name of the Docker image to use in the function, including the image tag. The image should be in the OCI Registry that is in the same region as the function itself. If an image is specified but no value for imageDigest is provided, the digest currently associated with the image tag in the OCI Registry will be used. Example: `phx.ocir.io/ten/functions/function:0.0.1`
image_digest
(optional) The image digest for the version of the image that will be pulled when invoking this function. Example: `sha256:ca0eeb6fb05351dfc8759c20733c91def84cb8007aa89a5bf606bc8b315b9fc7`
memory_in_m_bs
(optional) Maximum usable memory for the function (MiB).
config
(optional) Function configuration. These values are passed on to the function as environment variables, this overrides application configuration values. Keys must be ASCII strings consisting solely of letters, digits, and the '_' (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters. Example: `{\"MY_FUNCTION_CONFIG\": \"ConfVal\"}` The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
timeout_in_seconds
(optional) Timeout for executions of the function. Value in seconds.
provisioned_concurrency_config
(optional)
trace_config
(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\"}}`