# 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).

from datetime import datetime
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
data_integration_client = oci.data_integration.DataIntegrationClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_task_schedule_response = data_integration_client.update_task_schedule(
    workspace_id="ocid1.test.oc1..<unique_ID>EXAMPLE-workspaceId-Value",
    application_key="EXAMPLE-applicationKey-Value",
    task_schedule_key="EXAMPLE-taskScheduleKey-Value",
    update_task_schedule_details=oci.data_integration.models.UpdateTaskScheduleDetails(
        key="EXAMPLE-key-Value",
        object_version=975,
        model_version="EXAMPLE-modelVersion-Value",
        model_type="EXAMPLE-modelType-Value",
        parent_ref=oci.data_integration.models.ParentReference(
            parent="EXAMPLE-parent-Value",
            root_doc_id="ocid1.test.oc1..<unique_ID>EXAMPLE-rootDocId-Value"),
        name="EXAMPLE-name-Value",
        description="EXAMPLE-description-Value",
        object_status=746,
        identifier="EXAMPLE-identifier-Value",
        schedule_ref=oci.data_integration.models.Schedule(
            key="EXAMPLE-key-Value",
            model_version="EXAMPLE-modelVersion-Value",
            model_type="EXAMPLE-modelType-Value",
            parent_ref=oci.data_integration.models.ParentReference(
                    parent="EXAMPLE-parent-Value",
                    root_doc_id="ocid1.test.oc1..<unique_ID>EXAMPLE-rootDocId-Value"),
            name="EXAMPLE-name-Value",
            description="EXAMPLE-description-Value",
            object_version=261,
            object_status=870,
            identifier="EXAMPLE-identifier-Value",
            frequency_details=oci.data_integration.models.DailyFrequencyDetails(
                        model_type="DAILY",
                        frequency="HOURLY",
                        interval=466,
                        time=oci.data_integration.models.Time(
                            hour=10,
                            minute=7,
                            second=1)),
            timezone="EXAMPLE-timezone-Value",
            is_daylight_adjustment_enabled=True,
            metadata=oci.data_integration.models.ObjectMetadata(
                created_by="EXAMPLE-createdBy-Value",
                created_by_name="EXAMPLE-createdByName-Value",
                updated_by="EXAMPLE-updatedBy-Value",
                updated_by_name="EXAMPLE-updatedByName-Value",
                time_created=datetime.strptime(
                    "2027-12-08T21:50:19.961Z",
                    "%Y-%m-%dT%H:%M:%S.%fZ"),
                time_updated=datetime.strptime(
                    "2021-04-05T04:13:27.452Z",
                    "%Y-%m-%dT%H:%M:%S.%fZ"),
                aggregator_key="EXAMPLE-aggregatorKey-Value",
                aggregator=oci.data_integration.models.AggregatorSummary(
                    type="EXAMPLE-type-Value",
                    key="EXAMPLE-key-Value",
                    name="EXAMPLE-name-Value",
                    identifier="EXAMPLE-identifier-Value",
                    description="EXAMPLE-description-Value"),
                identifier_path="EXAMPLE-identifierPath-Value",
                info_fields={
                    'EXAMPLE_KEY_0Vsqz': 'EXAMPLE_VALUE_r47zIDYPj9OtTPqu8S8C'},
                registry_version=937,
                labels=["EXAMPLE--Value"],
                is_favorite=True,
                count_statistics=oci.data_integration.models.CountStatistic(
                    object_type_count_list=[
                        oci.data_integration.models.CountStatisticSummary(
                            object_type="DATA_FLOW",
                            object_count=834)]))),
        is_enabled=True,
        number_of_retries=547,
        retry_delay=9717.182,
        retry_delay_unit="MINUTES",
        start_time_millis=923,
        end_time_millis=564,
        is_concurrent_allowed=True,
        is_backfill_enabled=False,
        auth_mode="RESOURCE_PRINCIPAL",
        expected_duration=9735.705,
        expected_duration_unit="SECONDS",
        registry_metadata=oci.data_integration.models.RegistryMetadata(
            aggregator_key="EXAMPLE-aggregatorKey-Value",
            labels=["EXAMPLE--Value"],
            registry_version=156,
            key="EXAMPLE-key-Value",
            is_favorite=True)),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="MMFG18PPIMWFAVIGZC2B<unique_ID>")

# Get the data from response
print(update_task_schedule_response.data)