# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).
import oci
# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()
# Initialize service client with default config file
functions_client = oci.functions.FunctionsManagementClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_function_response = functions_client.update_function(
function_id="ocid1.test.oc1..<unique_ID>EXAMPLE-functionId-Value",
update_function_details=oci.functions.models.UpdateFunctionDetails(
memory_in_mbs=665,
config={
'EXAMPLE_KEY_nFV17': 'EXAMPLE_VALUE_KAZFrz0XZAQfZPDHH0xg'},
timeout_in_seconds=348,
provisioned_concurrency_config=oci.functions.models.ConstantProvisionedConcurrencyConfig(
strategy="CONSTANT",
count=912),
detached_mode_timeout_in_seconds=925,
failure_destination=oci.functions.models.StreamFailureDestinationDetails(
kind="STREAM",
stream_id="ocid1.test.oc1..<unique_ID>EXAMPLE-streamId-Value"),
success_destination=oci.functions.models.QueueSuccessDestinationDetails(
kind="QUEUE",
queue_id="ocid1.test.oc1..<unique_ID>EXAMPLE-queueId-Value",
channel_id="ocid1.test.oc1..<unique_ID>EXAMPLE-channelId-Value"),
trace_config=oci.functions.models.FunctionTraceConfig(
is_enabled=False),
source_details=oci.functions.models.UpdateArchiveFunctionSourceDetails(
source_type="ARCHIVE",
archive_source_details=oci.functions.models.UpdateObjectStorageArchiveSourceDetails(
archive_source_type="OBJECT_STORAGE_ARCHIVE",
bucket_name="EXAMPLE-bucketName-Value",
namespace="EXAMPLE-namespace-Value",
object_name="EXAMPLE-objectName-Value",
object_version_id="ocid1.test.oc1..<unique_ID>EXAMPLE-objectVersionId-Value"),
handler="EXAMPLE-handler-Value",
runtime_config=oci.functions.models.UpdateManualRuntimeConfig(
runtime_config_type="MANUAL",
functions_runtime_version_id="ocid1.test.oc1..<unique_ID>EXAMPLE-functionsRuntimeVersionId-Value",
functions_runtime_name="EXAMPLE-functionsRuntimeName-Value")),
freeform_tags={
'EXAMPLE_KEY_zrsTU': 'EXAMPLE_VALUE_JgOFYX6IZG71B9eNGbNK'},
defined_tags={
'EXAMPLE_KEY_n9IJR': {
'EXAMPLE_KEY_G8ekY': 'EXAMPLE--Value'}}),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="WXA79D3RJPQUVPZEMF5R<unique_ID>")
# Get the data from response
print(update_function_response.headers)