# 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
from datetime import datetime
# 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
data_science_client = oci.data_science.DataScienceClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_schedule_response = data_science_client.update_schedule(
schedule_id="ocid1.test.oc1..<unique_ID>EXAMPLE-scheduleId-Value",
update_schedule_details=oci.data_science.models.UpdateScheduleDetails(
display_name="EXAMPLE-displayName-Value",
description="EXAMPLE-description-Value",
trigger=oci.data_science.models.ScheduleICalTrigger(
trigger_type="ICAL",
recurrence="EXAMPLE-recurrence-Value",
time_start=datetime.strptime(
"2034-11-17T12:52:57.242Z",
"%Y-%m-%dT%H:%M:%S.%fZ"),
time_end=datetime.strptime(
"2014-09-24T17:27:23.072Z",
"%Y-%m-%dT%H:%M:%S.%fZ")),
action=oci.data_science.models.ScheduleHttpAction(
action_type="HTTP",
action_details=oci.data_science.models.CreatePipelineRunScheduleActionDetails(
http_action_type="CREATE_PIPELINE_RUN",
create_pipeline_run_details=oci.data_science.models.CreatePipelineRunDetails(
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
pipeline_id="ocid1.test.oc1..<unique_ID>EXAMPLE-pipelineId-Value",
project_id="ocid1.test.oc1..<unique_ID>EXAMPLE-projectId-Value",
display_name="EXAMPLE-displayName-Value",
configuration_override_details=oci.data_science.models.PipelineDefaultConfigurationDetails(
type="DEFAULT",
maximum_runtime_in_minutes=18960,
environment_variables={
'EXAMPLE_KEY_hKPqA': 'EXAMPLE_VALUE_yxVtoDpC4Dv9nMqcYJXN'},
command_line_arguments="EXAMPLE-commandLineArguments-Value"),
log_configuration_override_details=oci.data_science.models.PipelineLogConfigurationDetails(
enable_logging=True,
enable_auto_log_creation=True,
log_group_id="ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value",
log_id="ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value"),
step_override_details=[
oci.data_science.models.PipelineStepOverrideDetails(
step_name="EXAMPLE-stepName-Value",
step_configuration_details=oci.data_science.models.PipelineStepConfigurationDetails(
maximum_runtime_in_minutes=29302,
environment_variables={
'EXAMPLE_KEY_OjOpX': 'EXAMPLE_VALUE_4yZv9b6Pv4MXctntgPB3'},
command_line_arguments="EXAMPLE-commandLineArguments-Value"),
step_container_configuration_details=oci.data_science.models.PipelineOcirContainerConfigurationDetails(
container_type="OCIR_CONTAINER",
image="EXAMPLE-image-Value",
cmd=["EXAMPLE--Value"],
entrypoint=["EXAMPLE--Value"],
image_digest="EXAMPLE-imageDigest-Value",
image_signature_id="ocid1.test.oc1..<unique_ID>EXAMPLE-imageSignatureId-Value"),
step_dataflow_configuration_details=oci.data_science.models.PipelineDataflowConfigurationDetails(
configuration="EXAMPLE-configuration-Value",
driver_shape="EXAMPLE-driverShape-Value",
driver_shape_config_details=oci.data_science.models.PipelineShapeConfigDetails(
ocpus=57.728325,
memory_in_gbs=740.89124),
executor_shape="EXAMPLE-executorShape-Value",
executor_shape_config_details=oci.data_science.models.PipelineShapeConfigDetails(
ocpus=15.289909,
memory_in_gbs=4.95636),
num_executors=812,
warehouse_bucket_uri="EXAMPLE-warehouseBucketUri-Value",
logs_bucket_uri="EXAMPLE-logsBucketUri-Value"))],
freeform_tags={
'EXAMPLE_KEY_r2mOz': 'EXAMPLE_VALUE_fDQpL7j7fcAGtkwRT6Ba'},
defined_tags={
'EXAMPLE_KEY_BZGRM': {
'EXAMPLE_KEY_0DU63': 'EXAMPLE--Value'}},
system_tags={
'EXAMPLE_KEY_6Qk9N': {
'EXAMPLE_KEY_m2hXa': 'EXAMPLE--Value'}}))),
log_details=oci.data_science.models.ScheduleLogDetails(
log_group_id="ocid1.test.oc1..<unique_ID>EXAMPLE-logGroupId-Value",
log_id="ocid1.test.oc1..<unique_ID>EXAMPLE-logId-Value"),
freeform_tags={
'EXAMPLE_KEY_eILnC': 'EXAMPLE_VALUE_xIHYwvAdkNo8sp6GvpgP'},
defined_tags={
'EXAMPLE_KEY_vTBn9': {
'EXAMPLE_KEY_R9CSM': 'EXAMPLE--Value'}}),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="PMJN3FQIL8COIV4LHQJU<unique_ID>")
# Get the data from response
print(update_schedule_response.headers)