# 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_integration_client = oci.data_integration.DataIntegrationClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_task_schedule_response = data_integration_client.create_task_schedule(
    workspace_id="ocid1.test.oc1..<unique_ID>EXAMPLE-workspaceId-Value",
    application_key="EXAMPLE-applicationKey-Value",
    create_task_schedule_details=oci.data_integration.models.CreateTaskScheduleDetails(
        name="EXAMPLE-name-Value",
        identifier="EXAMPLE-identifier-Value",
        key="EXAMPLE-key-Value",
        model_version="EXAMPLE-modelVersion-Value",
        parent_ref=oci.data_integration.models.ParentReference(
            parent="EXAMPLE-parent-Value",
            root_doc_id="ocid1.test.oc1..<unique_ID>EXAMPLE-rootDocId-Value"),
        description="EXAMPLE-description-Value",
        object_version=407,
        object_status=77,
        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=983,
            object_status=392,
            identifier="EXAMPLE-identifier-Value",
            frequency_details=oci.data_integration.models.MonthlyFrequencyDetails(
                        model_type="MONTHLY",
                        frequency="HOURLY",
                        interval=551,
                        time=oci.data_integration.models.Time(
                            hour=10,
                            minute=5,
                            second=32),
                days=[35]),
            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(
                    "2022-05-09T18:12:47.687Z",
                    "%Y-%m-%dT%H:%M:%S.%fZ"),
                time_updated=datetime.strptime(
                    "2048-02-02T12:58:40.322Z",
                    "%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_SKbma': 'EXAMPLE_VALUE_wqDN0hI1N2Skm4H8wPMJ'},
                registry_version=775,
                labels=["EXAMPLE--Value"],
                is_favorite=True,
                count_statistics=oci.data_integration.models.CountStatistic(
                    object_type_count_list=[
                        oci.data_integration.models.CountStatisticSummary(
                            object_type="CONNECTION",
                            object_count=265)]))),
        is_enabled=True,
        number_of_retries=138,
        retry_delay=5162.737,
        retry_delay_unit="DAYS",
        start_time_millis=98,
        end_time_millis=926,
        is_concurrent_allowed=False,
        is_backfill_enabled=False,
        auth_mode="USER_CERTIFICATE",
        expected_duration=1914.2228,
        expected_duration_unit="SECONDS",
        registry_metadata=oci.data_integration.models.RegistryMetadata(
            aggregator_key="EXAMPLE-aggregatorKey-Value",
            labels=["EXAMPLE--Value"],
            registry_version=717,
            key="EXAMPLE-key-Value",
            is_favorite=True)),
    opc_request_id="VTPK6CLZOZMLZCEWZF7O<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

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