1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataIntegration
  5. WorkspaceApplicationSchedule
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

oci.DataIntegration.WorkspaceApplicationSchedule

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi

    This resource provides the Workspace Application Schedule resource in Oracle Cloud Infrastructure Data Integration service.

    Endpoint to create a new schedule

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testWorkspaceApplicationSchedule = new oci.dataintegration.WorkspaceApplicationSchedule("test_workspace_application_schedule", {
        applicationKey: workspaceApplicationScheduleApplicationKey,
        identifier: workspaceApplicationScheduleIdentifier,
        name: workspaceApplicationScheduleName,
        workspaceId: testWorkspace.id,
        description: workspaceApplicationScheduleDescription,
        frequencyDetails: {
            modelType: workspaceApplicationScheduleFrequencyDetailsModelType,
            customExpression: workspaceApplicationScheduleFrequencyDetailsCustomExpression,
            dayOfWeek: workspaceApplicationScheduleFrequencyDetailsDayOfWeek,
            days: workspaceApplicationScheduleFrequencyDetailsDays,
            frequency: workspaceApplicationScheduleFrequencyDetailsFrequency,
            interval: workspaceApplicationScheduleFrequencyDetailsInterval,
            time: {
                hour: workspaceApplicationScheduleFrequencyDetailsTimeHour,
                minute: workspaceApplicationScheduleFrequencyDetailsTimeMinute,
                second: workspaceApplicationScheduleFrequencyDetailsTimeSecond,
            },
            weekOfMonth: workspaceApplicationScheduleFrequencyDetailsWeekOfMonth,
        },
        isDaylightAdjustmentEnabled: workspaceApplicationScheduleIsDaylightAdjustmentEnabled,
        key: workspaceApplicationScheduleKey,
        modelVersion: workspaceApplicationScheduleModelVersion,
        objectStatus: workspaceApplicationScheduleObjectStatus,
        objectVersion: workspaceApplicationScheduleObjectVersion,
        registryMetadata: {
            aggregatorKey: workspaceApplicationScheduleRegistryMetadataAggregatorKey,
            isFavorite: workspaceApplicationScheduleRegistryMetadataIsFavorite,
            key: workspaceApplicationScheduleRegistryMetadataKey,
            labels: workspaceApplicationScheduleRegistryMetadataLabels,
            registryVersion: workspaceApplicationScheduleRegistryMetadataRegistryVersion,
        },
        timezone: workspaceApplicationScheduleTimezone,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_workspace_application_schedule = oci.data_integration.WorkspaceApplicationSchedule("test_workspace_application_schedule",
        application_key=workspace_application_schedule_application_key,
        identifier=workspace_application_schedule_identifier,
        name=workspace_application_schedule_name,
        workspace_id=test_workspace["id"],
        description=workspace_application_schedule_description,
        frequency_details=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsArgs(
            model_type=workspace_application_schedule_frequency_details_model_type,
            custom_expression=workspace_application_schedule_frequency_details_custom_expression,
            day_of_week=workspace_application_schedule_frequency_details_day_of_week,
            days=workspace_application_schedule_frequency_details_days,
            frequency=workspace_application_schedule_frequency_details_frequency,
            interval=workspace_application_schedule_frequency_details_interval,
            time=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs(
                hour=workspace_application_schedule_frequency_details_time_hour,
                minute=workspace_application_schedule_frequency_details_time_minute,
                second=workspace_application_schedule_frequency_details_time_second,
            ),
            week_of_month=workspace_application_schedule_frequency_details_week_of_month,
        ),
        is_daylight_adjustment_enabled=workspace_application_schedule_is_daylight_adjustment_enabled,
        key=workspace_application_schedule_key,
        model_version=workspace_application_schedule_model_version,
        object_status=workspace_application_schedule_object_status,
        object_version=workspace_application_schedule_object_version,
        registry_metadata=oci.data_integration.WorkspaceApplicationScheduleRegistryMetadataArgs(
            aggregator_key=workspace_application_schedule_registry_metadata_aggregator_key,
            is_favorite=workspace_application_schedule_registry_metadata_is_favorite,
            key=workspace_application_schedule_registry_metadata_key,
            labels=workspace_application_schedule_registry_metadata_labels,
            registry_version=workspace_application_schedule_registry_metadata_registry_version,
        ),
        timezone=workspace_application_schedule_timezone)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataIntegration"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataIntegration.NewWorkspaceApplicationSchedule(ctx, "test_workspace_application_schedule", &DataIntegration.WorkspaceApplicationScheduleArgs{
    			ApplicationKey: pulumi.Any(workspaceApplicationScheduleApplicationKey),
    			Identifier:     pulumi.Any(workspaceApplicationScheduleIdentifier),
    			Name:           pulumi.Any(workspaceApplicationScheduleName),
    			WorkspaceId:    pulumi.Any(testWorkspace.Id),
    			Description:    pulumi.Any(workspaceApplicationScheduleDescription),
    			FrequencyDetails: &dataintegration.WorkspaceApplicationScheduleFrequencyDetailsArgs{
    				ModelType:        pulumi.Any(workspaceApplicationScheduleFrequencyDetailsModelType),
    				CustomExpression: pulumi.Any(workspaceApplicationScheduleFrequencyDetailsCustomExpression),
    				DayOfWeek:        pulumi.Any(workspaceApplicationScheduleFrequencyDetailsDayOfWeek),
    				Days:             pulumi.Any(workspaceApplicationScheduleFrequencyDetailsDays),
    				Frequency:        pulumi.Any(workspaceApplicationScheduleFrequencyDetailsFrequency),
    				Interval:         pulumi.Any(workspaceApplicationScheduleFrequencyDetailsInterval),
    				Time: &dataintegration.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs{
    					Hour:   pulumi.Any(workspaceApplicationScheduleFrequencyDetailsTimeHour),
    					Minute: pulumi.Any(workspaceApplicationScheduleFrequencyDetailsTimeMinute),
    					Second: pulumi.Any(workspaceApplicationScheduleFrequencyDetailsTimeSecond),
    				},
    				WeekOfMonth: pulumi.Any(workspaceApplicationScheduleFrequencyDetailsWeekOfMonth),
    			},
    			IsDaylightAdjustmentEnabled: pulumi.Any(workspaceApplicationScheduleIsDaylightAdjustmentEnabled),
    			Key:                         pulumi.Any(workspaceApplicationScheduleKey),
    			ModelVersion:                pulumi.Any(workspaceApplicationScheduleModelVersion),
    			ObjectStatus:                pulumi.Any(workspaceApplicationScheduleObjectStatus),
    			ObjectVersion:               pulumi.Any(workspaceApplicationScheduleObjectVersion),
    			RegistryMetadata: &dataintegration.WorkspaceApplicationScheduleRegistryMetadataArgs{
    				AggregatorKey:   pulumi.Any(workspaceApplicationScheduleRegistryMetadataAggregatorKey),
    				IsFavorite:      pulumi.Any(workspaceApplicationScheduleRegistryMetadataIsFavorite),
    				Key:             pulumi.Any(workspaceApplicationScheduleRegistryMetadataKey),
    				Labels:          pulumi.Any(workspaceApplicationScheduleRegistryMetadataLabels),
    				RegistryVersion: pulumi.Any(workspaceApplicationScheduleRegistryMetadataRegistryVersion),
    			},
    			Timezone: pulumi.Any(workspaceApplicationScheduleTimezone),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testWorkspaceApplicationSchedule = new Oci.DataIntegration.WorkspaceApplicationSchedule("test_workspace_application_schedule", new()
        {
            ApplicationKey = workspaceApplicationScheduleApplicationKey,
            Identifier = workspaceApplicationScheduleIdentifier,
            Name = workspaceApplicationScheduleName,
            WorkspaceId = testWorkspace.Id,
            Description = workspaceApplicationScheduleDescription,
            FrequencyDetails = new Oci.DataIntegration.Inputs.WorkspaceApplicationScheduleFrequencyDetailsArgs
            {
                ModelType = workspaceApplicationScheduleFrequencyDetailsModelType,
                CustomExpression = workspaceApplicationScheduleFrequencyDetailsCustomExpression,
                DayOfWeek = workspaceApplicationScheduleFrequencyDetailsDayOfWeek,
                Days = workspaceApplicationScheduleFrequencyDetailsDays,
                Frequency = workspaceApplicationScheduleFrequencyDetailsFrequency,
                Interval = workspaceApplicationScheduleFrequencyDetailsInterval,
                Time = new Oci.DataIntegration.Inputs.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs
                {
                    Hour = workspaceApplicationScheduleFrequencyDetailsTimeHour,
                    Minute = workspaceApplicationScheduleFrequencyDetailsTimeMinute,
                    Second = workspaceApplicationScheduleFrequencyDetailsTimeSecond,
                },
                WeekOfMonth = workspaceApplicationScheduleFrequencyDetailsWeekOfMonth,
            },
            IsDaylightAdjustmentEnabled = workspaceApplicationScheduleIsDaylightAdjustmentEnabled,
            Key = workspaceApplicationScheduleKey,
            ModelVersion = workspaceApplicationScheduleModelVersion,
            ObjectStatus = workspaceApplicationScheduleObjectStatus,
            ObjectVersion = workspaceApplicationScheduleObjectVersion,
            RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationScheduleRegistryMetadataArgs
            {
                AggregatorKey = workspaceApplicationScheduleRegistryMetadataAggregatorKey,
                IsFavorite = workspaceApplicationScheduleRegistryMetadataIsFavorite,
                Key = workspaceApplicationScheduleRegistryMetadataKey,
                Labels = workspaceApplicationScheduleRegistryMetadataLabels,
                RegistryVersion = workspaceApplicationScheduleRegistryMetadataRegistryVersion,
            },
            Timezone = workspaceApplicationScheduleTimezone,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataIntegration.WorkspaceApplicationSchedule;
    import com.pulumi.oci.DataIntegration.WorkspaceApplicationScheduleArgs;
    import com.pulumi.oci.DataIntegration.inputs.WorkspaceApplicationScheduleFrequencyDetailsArgs;
    import com.pulumi.oci.DataIntegration.inputs.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs;
    import com.pulumi.oci.DataIntegration.inputs.WorkspaceApplicationScheduleRegistryMetadataArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testWorkspaceApplicationSchedule = new WorkspaceApplicationSchedule("testWorkspaceApplicationSchedule", WorkspaceApplicationScheduleArgs.builder()        
                .applicationKey(workspaceApplicationScheduleApplicationKey)
                .identifier(workspaceApplicationScheduleIdentifier)
                .name(workspaceApplicationScheduleName)
                .workspaceId(testWorkspace.id())
                .description(workspaceApplicationScheduleDescription)
                .frequencyDetails(WorkspaceApplicationScheduleFrequencyDetailsArgs.builder()
                    .modelType(workspaceApplicationScheduleFrequencyDetailsModelType)
                    .customExpression(workspaceApplicationScheduleFrequencyDetailsCustomExpression)
                    .dayOfWeek(workspaceApplicationScheduleFrequencyDetailsDayOfWeek)
                    .days(workspaceApplicationScheduleFrequencyDetailsDays)
                    .frequency(workspaceApplicationScheduleFrequencyDetailsFrequency)
                    .interval(workspaceApplicationScheduleFrequencyDetailsInterval)
                    .time(WorkspaceApplicationScheduleFrequencyDetailsTimeArgs.builder()
                        .hour(workspaceApplicationScheduleFrequencyDetailsTimeHour)
                        .minute(workspaceApplicationScheduleFrequencyDetailsTimeMinute)
                        .second(workspaceApplicationScheduleFrequencyDetailsTimeSecond)
                        .build())
                    .weekOfMonth(workspaceApplicationScheduleFrequencyDetailsWeekOfMonth)
                    .build())
                .isDaylightAdjustmentEnabled(workspaceApplicationScheduleIsDaylightAdjustmentEnabled)
                .key(workspaceApplicationScheduleKey)
                .modelVersion(workspaceApplicationScheduleModelVersion)
                .objectStatus(workspaceApplicationScheduleObjectStatus)
                .objectVersion(workspaceApplicationScheduleObjectVersion)
                .registryMetadata(WorkspaceApplicationScheduleRegistryMetadataArgs.builder()
                    .aggregatorKey(workspaceApplicationScheduleRegistryMetadataAggregatorKey)
                    .isFavorite(workspaceApplicationScheduleRegistryMetadataIsFavorite)
                    .key(workspaceApplicationScheduleRegistryMetadataKey)
                    .labels(workspaceApplicationScheduleRegistryMetadataLabels)
                    .registryVersion(workspaceApplicationScheduleRegistryMetadataRegistryVersion)
                    .build())
                .timezone(workspaceApplicationScheduleTimezone)
                .build());
    
        }
    }
    
    resources:
      testWorkspaceApplicationSchedule:
        type: oci:DataIntegration:WorkspaceApplicationSchedule
        name: test_workspace_application_schedule
        properties:
          applicationKey: ${workspaceApplicationScheduleApplicationKey}
          identifier: ${workspaceApplicationScheduleIdentifier}
          name: ${workspaceApplicationScheduleName}
          workspaceId: ${testWorkspace.id}
          description: ${workspaceApplicationScheduleDescription}
          frequencyDetails:
            modelType: ${workspaceApplicationScheduleFrequencyDetailsModelType}
            customExpression: ${workspaceApplicationScheduleFrequencyDetailsCustomExpression}
            dayOfWeek: ${workspaceApplicationScheduleFrequencyDetailsDayOfWeek}
            days: ${workspaceApplicationScheduleFrequencyDetailsDays}
            frequency: ${workspaceApplicationScheduleFrequencyDetailsFrequency}
            interval: ${workspaceApplicationScheduleFrequencyDetailsInterval}
            time:
              hour: ${workspaceApplicationScheduleFrequencyDetailsTimeHour}
              minute: ${workspaceApplicationScheduleFrequencyDetailsTimeMinute}
              second: ${workspaceApplicationScheduleFrequencyDetailsTimeSecond}
            weekOfMonth: ${workspaceApplicationScheduleFrequencyDetailsWeekOfMonth}
          isDaylightAdjustmentEnabled: ${workspaceApplicationScheduleIsDaylightAdjustmentEnabled}
          key: ${workspaceApplicationScheduleKey}
          modelVersion: ${workspaceApplicationScheduleModelVersion}
          objectStatus: ${workspaceApplicationScheduleObjectStatus}
          objectVersion: ${workspaceApplicationScheduleObjectVersion}
          registryMetadata:
            aggregatorKey: ${workspaceApplicationScheduleRegistryMetadataAggregatorKey}
            isFavorite: ${workspaceApplicationScheduleRegistryMetadataIsFavorite}
            key: ${workspaceApplicationScheduleRegistryMetadataKey}
            labels: ${workspaceApplicationScheduleRegistryMetadataLabels}
            registryVersion: ${workspaceApplicationScheduleRegistryMetadataRegistryVersion}
          timezone: ${workspaceApplicationScheduleTimezone}
    

    Create WorkspaceApplicationSchedule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WorkspaceApplicationSchedule(name: string, args: WorkspaceApplicationScheduleArgs, opts?: CustomResourceOptions);
    @overload
    def WorkspaceApplicationSchedule(resource_name: str,
                                     args: WorkspaceApplicationScheduleArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkspaceApplicationSchedule(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     identifier: Optional[str] = None,
                                     workspace_id: Optional[str] = None,
                                     application_key: Optional[str] = None,
                                     model_version: Optional[str] = None,
                                     is_daylight_adjustment_enabled: Optional[bool] = None,
                                     key: Optional[str] = None,
                                     frequency_details: Optional[_dataintegration.WorkspaceApplicationScheduleFrequencyDetailsArgs] = None,
                                     name: Optional[str] = None,
                                     object_status: Optional[int] = None,
                                     object_version: Optional[int] = None,
                                     registry_metadata: Optional[_dataintegration.WorkspaceApplicationScheduleRegistryMetadataArgs] = None,
                                     timezone: Optional[str] = None,
                                     description: Optional[str] = None)
    func NewWorkspaceApplicationSchedule(ctx *Context, name string, args WorkspaceApplicationScheduleArgs, opts ...ResourceOption) (*WorkspaceApplicationSchedule, error)
    public WorkspaceApplicationSchedule(string name, WorkspaceApplicationScheduleArgs args, CustomResourceOptions? opts = null)
    public WorkspaceApplicationSchedule(String name, WorkspaceApplicationScheduleArgs args)
    public WorkspaceApplicationSchedule(String name, WorkspaceApplicationScheduleArgs args, CustomResourceOptions options)
    
    type: oci:DataIntegration:WorkspaceApplicationSchedule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WorkspaceApplicationScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WorkspaceApplicationScheduleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WorkspaceApplicationScheduleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkspaceApplicationScheduleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkspaceApplicationScheduleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var workspaceApplicationScheduleResource = new Oci.DataIntegration.WorkspaceApplicationSchedule("workspaceApplicationScheduleResource", new()
    {
        Identifier = "string",
        WorkspaceId = "string",
        ApplicationKey = "string",
        ModelVersion = "string",
        IsDaylightAdjustmentEnabled = false,
        Key = "string",
        FrequencyDetails = new Oci.DataIntegration.Inputs.WorkspaceApplicationScheduleFrequencyDetailsArgs
        {
            ModelType = "string",
            CustomExpression = "string",
            DayOfWeek = "string",
            Days = new[]
            {
                0,
            },
            Frequency = "string",
            Interval = 0,
            Time = new Oci.DataIntegration.Inputs.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs
            {
                Hour = 0,
                Minute = 0,
                Second = 0,
            },
            WeekOfMonth = "string",
        },
        Name = "string",
        ObjectStatus = 0,
        ObjectVersion = 0,
        RegistryMetadata = new Oci.DataIntegration.Inputs.WorkspaceApplicationScheduleRegistryMetadataArgs
        {
            AggregatorKey = "string",
            IsFavorite = false,
            Key = "string",
            Labels = new[]
            {
                "string",
            },
            RegistryVersion = 0,
        },
        Timezone = "string",
        Description = "string",
    });
    
    example, err := DataIntegration.NewWorkspaceApplicationSchedule(ctx, "workspaceApplicationScheduleResource", &DataIntegration.WorkspaceApplicationScheduleArgs{
    	Identifier:                  pulumi.String("string"),
    	WorkspaceId:                 pulumi.String("string"),
    	ApplicationKey:              pulumi.String("string"),
    	ModelVersion:                pulumi.String("string"),
    	IsDaylightAdjustmentEnabled: pulumi.Bool(false),
    	Key:                         pulumi.String("string"),
    	FrequencyDetails: &dataintegration.WorkspaceApplicationScheduleFrequencyDetailsArgs{
    		ModelType:        pulumi.String("string"),
    		CustomExpression: pulumi.String("string"),
    		DayOfWeek:        pulumi.String("string"),
    		Days: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		Frequency: pulumi.String("string"),
    		Interval:  pulumi.Int(0),
    		Time: &dataintegration.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs{
    			Hour:   pulumi.Int(0),
    			Minute: pulumi.Int(0),
    			Second: pulumi.Int(0),
    		},
    		WeekOfMonth: pulumi.String("string"),
    	},
    	Name:          pulumi.String("string"),
    	ObjectStatus:  pulumi.Int(0),
    	ObjectVersion: pulumi.Int(0),
    	RegistryMetadata: &dataintegration.WorkspaceApplicationScheduleRegistryMetadataArgs{
    		AggregatorKey: pulumi.String("string"),
    		IsFavorite:    pulumi.Bool(false),
    		Key:           pulumi.String("string"),
    		Labels: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		RegistryVersion: pulumi.Int(0),
    	},
    	Timezone:    pulumi.String("string"),
    	Description: pulumi.String("string"),
    })
    
    var workspaceApplicationScheduleResource = new WorkspaceApplicationSchedule("workspaceApplicationScheduleResource", WorkspaceApplicationScheduleArgs.builder()        
        .identifier("string")
        .workspaceId("string")
        .applicationKey("string")
        .modelVersion("string")
        .isDaylightAdjustmentEnabled(false)
        .key("string")
        .frequencyDetails(WorkspaceApplicationScheduleFrequencyDetailsArgs.builder()
            .modelType("string")
            .customExpression("string")
            .dayOfWeek("string")
            .days(0)
            .frequency("string")
            .interval(0)
            .time(WorkspaceApplicationScheduleFrequencyDetailsTimeArgs.builder()
                .hour(0)
                .minute(0)
                .second(0)
                .build())
            .weekOfMonth("string")
            .build())
        .name("string")
        .objectStatus(0)
        .objectVersion(0)
        .registryMetadata(WorkspaceApplicationScheduleRegistryMetadataArgs.builder()
            .aggregatorKey("string")
            .isFavorite(false)
            .key("string")
            .labels("string")
            .registryVersion(0)
            .build())
        .timezone("string")
        .description("string")
        .build());
    
    workspace_application_schedule_resource = oci.data_integration.WorkspaceApplicationSchedule("workspaceApplicationScheduleResource",
        identifier="string",
        workspace_id="string",
        application_key="string",
        model_version="string",
        is_daylight_adjustment_enabled=False,
        key="string",
        frequency_details=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsArgs(
            model_type="string",
            custom_expression="string",
            day_of_week="string",
            days=[0],
            frequency="string",
            interval=0,
            time=oci.data_integration.WorkspaceApplicationScheduleFrequencyDetailsTimeArgs(
                hour=0,
                minute=0,
                second=0,
            ),
            week_of_month="string",
        ),
        name="string",
        object_status=0,
        object_version=0,
        registry_metadata=oci.data_integration.WorkspaceApplicationScheduleRegistryMetadataArgs(
            aggregator_key="string",
            is_favorite=False,
            key="string",
            labels=["string"],
            registry_version=0,
        ),
        timezone="string",
        description="string")
    
    const workspaceApplicationScheduleResource = new oci.dataintegration.WorkspaceApplicationSchedule("workspaceApplicationScheduleResource", {
        identifier: "string",
        workspaceId: "string",
        applicationKey: "string",
        modelVersion: "string",
        isDaylightAdjustmentEnabled: false,
        key: "string",
        frequencyDetails: {
            modelType: "string",
            customExpression: "string",
            dayOfWeek: "string",
            days: [0],
            frequency: "string",
            interval: 0,
            time: {
                hour: 0,
                minute: 0,
                second: 0,
            },
            weekOfMonth: "string",
        },
        name: "string",
        objectStatus: 0,
        objectVersion: 0,
        registryMetadata: {
            aggregatorKey: "string",
            isFavorite: false,
            key: "string",
            labels: ["string"],
            registryVersion: 0,
        },
        timezone: "string",
        description: "string",
    });
    
    type: oci:DataIntegration:WorkspaceApplicationSchedule
    properties:
        applicationKey: string
        description: string
        frequencyDetails:
            customExpression: string
            dayOfWeek: string
            days:
                - 0
            frequency: string
            interval: 0
            modelType: string
            time:
                hour: 0
                minute: 0
                second: 0
            weekOfMonth: string
        identifier: string
        isDaylightAdjustmentEnabled: false
        key: string
        modelVersion: string
        name: string
        objectStatus: 0
        objectVersion: 0
        registryMetadata:
            aggregatorKey: string
            isFavorite: false
            key: string
            labels:
                - string
            registryVersion: 0
        timezone: string
        workspaceId: string
    

    WorkspaceApplicationSchedule Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The WorkspaceApplicationSchedule resource accepts the following input properties:

    ApplicationKey string
    The application key.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    WorkspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Description string
    (Updatable) Detailed description for the object.
    FrequencyDetails WorkspaceApplicationScheduleFrequencyDetails
    (Updatable) The model that holds the frequency details.
    IsDaylightAdjustmentEnabled bool
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    Key string
    (Updatable) The identifying key for the object.
    ModelVersion string
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    RegistryMetadata WorkspaceApplicationScheduleRegistryMetadata
    (Updatable) Information about the object and its parent.
    Timezone string
    (Updatable) The timezone for the schedule.
    ApplicationKey string
    The application key.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    WorkspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Description string
    (Updatable) Detailed description for the object.
    FrequencyDetails WorkspaceApplicationScheduleFrequencyDetailsArgs
    (Updatable) The model that holds the frequency details.
    IsDaylightAdjustmentEnabled bool
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    Key string
    (Updatable) The identifying key for the object.
    ModelVersion string
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    RegistryMetadata WorkspaceApplicationScheduleRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    Timezone string
    (Updatable) The timezone for the schedule.
    applicationKey String
    The application key.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspaceId String

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    description String
    (Updatable) Detailed description for the object.
    frequencyDetails WorkspaceApplicationScheduleFrequencyDetails
    (Updatable) The model that holds the frequency details.
    isDaylightAdjustmentEnabled Boolean
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key String
    (Updatable) The identifying key for the object.
    modelVersion String
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Integer
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Integer
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    registryMetadata WorkspaceApplicationScheduleRegistryMetadata
    (Updatable) Information about the object and its parent.
    timezone String
    (Updatable) The timezone for the schedule.
    applicationKey string
    The application key.
    identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    description string
    (Updatable) Detailed description for the object.
    frequencyDetails WorkspaceApplicationScheduleFrequencyDetails
    (Updatable) The model that holds the frequency details.
    isDaylightAdjustmentEnabled boolean
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key string
    (Updatable) The identifying key for the object.
    modelVersion string
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion number
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    registryMetadata WorkspaceApplicationScheduleRegistryMetadata
    (Updatable) Information about the object and its parent.
    timezone string
    (Updatable) The timezone for the schedule.
    application_key str
    The application key.
    identifier str
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspace_id str

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    description str
    (Updatable) Detailed description for the object.
    frequency_details dataintegration.WorkspaceApplicationScheduleFrequencyDetailsArgs
    (Updatable) The model that holds the frequency details.
    is_daylight_adjustment_enabled bool
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key str
    (Updatable) The identifying key for the object.
    model_version str
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    object_status int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    object_version int
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    registry_metadata dataintegration.WorkspaceApplicationScheduleRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    timezone str
    (Updatable) The timezone for the schedule.
    applicationKey String
    The application key.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    workspaceId String

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    description String
    (Updatable) Detailed description for the object.
    frequencyDetails Property Map
    (Updatable) The model that holds the frequency details.
    isDaylightAdjustmentEnabled Boolean
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key String
    (Updatable) The identifying key for the object.
    modelVersion String
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Number
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    registryMetadata Property Map
    (Updatable) Information about the object and its parent.
    timezone String
    (Updatable) The timezone for the schedule.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkspaceApplicationSchedule resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Metadatas List<WorkspaceApplicationScheduleMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    (Updatable) The type of the model
    ParentReves List<WorkspaceApplicationScheduleParentRef>
    A reference to the object's parent.
    Id string
    The provider-assigned unique ID for this managed resource.
    Metadatas []WorkspaceApplicationScheduleMetadata
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    (Updatable) The type of the model
    ParentReves []WorkspaceApplicationScheduleParentRef
    A reference to the object's parent.
    id String
    The provider-assigned unique ID for this managed resource.
    metadatas List<WorkspaceApplicationScheduleMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    (Updatable) The type of the model
    parentReves List<WorkspaceApplicationScheduleParentRef>
    A reference to the object's parent.
    id string
    The provider-assigned unique ID for this managed resource.
    metadatas WorkspaceApplicationScheduleMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    (Updatable) The type of the model
    parentReves WorkspaceApplicationScheduleParentRef[]
    A reference to the object's parent.
    id str
    The provider-assigned unique ID for this managed resource.
    metadatas Sequence[dataintegration.WorkspaceApplicationScheduleMetadata]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    (Updatable) The type of the model
    parent_reves Sequence[dataintegration.WorkspaceApplicationScheduleParentRef]
    A reference to the object's parent.
    id String
    The provider-assigned unique ID for this managed resource.
    metadatas List<Property Map>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    (Updatable) The type of the model
    parentReves List<Property Map>
    A reference to the object's parent.

    Look up Existing WorkspaceApplicationSchedule Resource

    Get an existing WorkspaceApplicationSchedule resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WorkspaceApplicationScheduleState, opts?: CustomResourceOptions): WorkspaceApplicationSchedule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_key: Optional[str] = None,
            description: Optional[str] = None,
            frequency_details: Optional[_dataintegration.WorkspaceApplicationScheduleFrequencyDetailsArgs] = None,
            identifier: Optional[str] = None,
            is_daylight_adjustment_enabled: Optional[bool] = None,
            key: Optional[str] = None,
            metadatas: Optional[Sequence[_dataintegration.WorkspaceApplicationScheduleMetadataArgs]] = None,
            model_type: Optional[str] = None,
            model_version: Optional[str] = None,
            name: Optional[str] = None,
            object_status: Optional[int] = None,
            object_version: Optional[int] = None,
            parent_reves: Optional[Sequence[_dataintegration.WorkspaceApplicationScheduleParentRefArgs]] = None,
            registry_metadata: Optional[_dataintegration.WorkspaceApplicationScheduleRegistryMetadataArgs] = None,
            timezone: Optional[str] = None,
            workspace_id: Optional[str] = None) -> WorkspaceApplicationSchedule
    func GetWorkspaceApplicationSchedule(ctx *Context, name string, id IDInput, state *WorkspaceApplicationScheduleState, opts ...ResourceOption) (*WorkspaceApplicationSchedule, error)
    public static WorkspaceApplicationSchedule Get(string name, Input<string> id, WorkspaceApplicationScheduleState? state, CustomResourceOptions? opts = null)
    public static WorkspaceApplicationSchedule get(String name, Output<String> id, WorkspaceApplicationScheduleState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ApplicationKey string
    The application key.
    Description string
    (Updatable) Detailed description for the object.
    FrequencyDetails WorkspaceApplicationScheduleFrequencyDetails
    (Updatable) The model that holds the frequency details.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    IsDaylightAdjustmentEnabled bool
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    Key string
    (Updatable) The identifying key for the object.
    Metadatas List<WorkspaceApplicationScheduleMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    (Updatable) The type of the model
    ModelVersion string
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    ParentReves List<WorkspaceApplicationScheduleParentRef>
    A reference to the object's parent.
    RegistryMetadata WorkspaceApplicationScheduleRegistryMetadata
    (Updatable) Information about the object and its parent.
    Timezone string
    (Updatable) The timezone for the schedule.
    WorkspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    ApplicationKey string
    The application key.
    Description string
    (Updatable) Detailed description for the object.
    FrequencyDetails WorkspaceApplicationScheduleFrequencyDetailsArgs
    (Updatable) The model that holds the frequency details.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    IsDaylightAdjustmentEnabled bool
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    Key string
    (Updatable) The identifying key for the object.
    Metadatas []WorkspaceApplicationScheduleMetadataArgs
    A summary type containing information about the object including its key, name and when/who created/updated it.
    ModelType string
    (Updatable) The type of the model
    ModelVersion string
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    ObjectStatus int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    ObjectVersion int
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    ParentReves []WorkspaceApplicationScheduleParentRefArgs
    A reference to the object's parent.
    RegistryMetadata WorkspaceApplicationScheduleRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    Timezone string
    (Updatable) The timezone for the schedule.
    WorkspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    applicationKey String
    The application key.
    description String
    (Updatable) Detailed description for the object.
    frequencyDetails WorkspaceApplicationScheduleFrequencyDetails
    (Updatable) The model that holds the frequency details.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    isDaylightAdjustmentEnabled Boolean
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key String
    (Updatable) The identifying key for the object.
    metadatas List<WorkspaceApplicationScheduleMetadata>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    (Updatable) The type of the model
    modelVersion String
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Integer
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Integer
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    parentReves List<WorkspaceApplicationScheduleParentRef>
    A reference to the object's parent.
    registryMetadata WorkspaceApplicationScheduleRegistryMetadata
    (Updatable) Information about the object and its parent.
    timezone String
    (Updatable) The timezone for the schedule.
    workspaceId String

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    applicationKey string
    The application key.
    description string
    (Updatable) Detailed description for the object.
    frequencyDetails WorkspaceApplicationScheduleFrequencyDetails
    (Updatable) The model that holds the frequency details.
    identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    isDaylightAdjustmentEnabled boolean
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key string
    (Updatable) The identifying key for the object.
    metadatas WorkspaceApplicationScheduleMetadata[]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType string
    (Updatable) The type of the model
    modelVersion string
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion number
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    parentReves WorkspaceApplicationScheduleParentRef[]
    A reference to the object's parent.
    registryMetadata WorkspaceApplicationScheduleRegistryMetadata
    (Updatable) Information about the object and its parent.
    timezone string
    (Updatable) The timezone for the schedule.
    workspaceId string

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    application_key str
    The application key.
    description str
    (Updatable) Detailed description for the object.
    frequency_details dataintegration.WorkspaceApplicationScheduleFrequencyDetailsArgs
    (Updatable) The model that holds the frequency details.
    identifier str
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    is_daylight_adjustment_enabled bool
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key str
    (Updatable) The identifying key for the object.
    metadatas Sequence[dataintegration.WorkspaceApplicationScheduleMetadataArgs]
    A summary type containing information about the object including its key, name and when/who created/updated it.
    model_type str
    (Updatable) The type of the model
    model_version str
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    object_status int
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    object_version int
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    parent_reves Sequence[dataintegration.WorkspaceApplicationScheduleParentRefArgs]
    A reference to the object's parent.
    registry_metadata dataintegration.WorkspaceApplicationScheduleRegistryMetadataArgs
    (Updatable) Information about the object and its parent.
    timezone str
    (Updatable) The timezone for the schedule.
    workspace_id str

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    applicationKey String
    The application key.
    description String
    (Updatable) Detailed description for the object.
    frequencyDetails Property Map
    (Updatable) The model that holds the frequency details.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    isDaylightAdjustmentEnabled Boolean
    (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
    key String
    (Updatable) The identifying key for the object.
    metadatas List<Property Map>
    A summary type containing information about the object including its key, name and when/who created/updated it.
    modelType String
    (Updatable) The type of the model
    modelVersion String
    (Updatable) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    objectStatus Number
    (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
    objectVersion Number
    (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
    parentReves List<Property Map>
    A reference to the object's parent.
    registryMetadata Property Map
    (Updatable) Information about the object and its parent.
    timezone String
    (Updatable) The timezone for the schedule.
    workspaceId String

    The workspace ID.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Supporting Types

    WorkspaceApplicationScheduleFrequencyDetails, WorkspaceApplicationScheduleFrequencyDetailsArgs

    ModelType string
    (Updatable) The type of the model
    CustomExpression string
    (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    DayOfWeek string
    (Updatable) This holds the day of the week on which the schedule should be triggered.
    Days List<int>
    (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    Frequency string
    (Updatable) the frequency of the schedule.
    Interval int
    (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    Time WorkspaceApplicationScheduleFrequencyDetailsTime
    (Updatable) A model to hold time in hour:minute:second format.
    WeekOfMonth string
    (Updatable) This holds the week of the month in which the schedule should be triggered.
    ModelType string
    (Updatable) The type of the model
    CustomExpression string
    (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    DayOfWeek string
    (Updatable) This holds the day of the week on which the schedule should be triggered.
    Days []int
    (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    Frequency string
    (Updatable) the frequency of the schedule.
    Interval int
    (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    Time WorkspaceApplicationScheduleFrequencyDetailsTime
    (Updatable) A model to hold time in hour:minute:second format.
    WeekOfMonth string
    (Updatable) This holds the week of the month in which the schedule should be triggered.
    modelType String
    (Updatable) The type of the model
    customExpression String
    (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    dayOfWeek String
    (Updatable) This holds the day of the week on which the schedule should be triggered.
    days List<Integer>
    (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency String
    (Updatable) the frequency of the schedule.
    interval Integer
    (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    time WorkspaceApplicationScheduleFrequencyDetailsTime
    (Updatable) A model to hold time in hour:minute:second format.
    weekOfMonth String
    (Updatable) This holds the week of the month in which the schedule should be triggered.
    modelType string
    (Updatable) The type of the model
    customExpression string
    (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    dayOfWeek string
    (Updatable) This holds the day of the week on which the schedule should be triggered.
    days number[]
    (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency string
    (Updatable) the frequency of the schedule.
    interval number
    (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    time WorkspaceApplicationScheduleFrequencyDetailsTime
    (Updatable) A model to hold time in hour:minute:second format.
    weekOfMonth string
    (Updatable) This holds the week of the month in which the schedule should be triggered.
    model_type str
    (Updatable) The type of the model
    custom_expression str
    (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    day_of_week str
    (Updatable) This holds the day of the week on which the schedule should be triggered.
    days Sequence[int]
    (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency str
    (Updatable) the frequency of the schedule.
    interval int
    (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    time dataintegration.WorkspaceApplicationScheduleFrequencyDetailsTime
    (Updatable) A model to hold time in hour:minute:second format.
    week_of_month str
    (Updatable) This holds the week of the month in which the schedule should be triggered.
    modelType String
    (Updatable) The type of the model
    customExpression String
    (Updatable) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
    dayOfWeek String
    (Updatable) This holds the day of the week on which the schedule should be triggered.
    days List<Number>
    (Updatable) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
    frequency String
    (Updatable) the frequency of the schedule.
    interval Number
    (Updatable) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
    time Property Map
    (Updatable) A model to hold time in hour:minute:second format.
    weekOfMonth String
    (Updatable) This holds the week of the month in which the schedule should be triggered.

    WorkspaceApplicationScheduleFrequencyDetailsTime, WorkspaceApplicationScheduleFrequencyDetailsTimeArgs

    Hour int
    (Updatable) The hour value.
    Minute int
    (Updatable) The minute value.
    Second int
    (Updatable) The second value.
    Hour int
    (Updatable) The hour value.
    Minute int
    (Updatable) The minute value.
    Second int
    (Updatable) The second value.
    hour Integer
    (Updatable) The hour value.
    minute Integer
    (Updatable) The minute value.
    second Integer
    (Updatable) The second value.
    hour number
    (Updatable) The hour value.
    minute number
    (Updatable) The minute value.
    second number
    (Updatable) The second value.
    hour int
    (Updatable) The hour value.
    minute int
    (Updatable) The minute value.
    second int
    (Updatable) The second value.
    hour Number
    (Updatable) The hour value.
    minute Number
    (Updatable) The minute value.
    second Number
    (Updatable) The second value.

    WorkspaceApplicationScheduleMetadata, WorkspaceApplicationScheduleMetadataArgs

    AggregatorKey string
    (Updatable) The owning object's key for this object.
    Aggregators List<WorkspaceApplicationScheduleMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics List<WorkspaceApplicationScheduleMetadataCountStatistic>
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields Dictionary<string, object>
    Information property fields.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Labels List<string>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    TimeCreated string
    The date and time that the object was created.
    TimeUpdated string
    The date and time that the object was updated.
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    AggregatorKey string
    (Updatable) The owning object's key for this object.
    Aggregators []WorkspaceApplicationScheduleMetadataAggregator
    A summary type containing information about the object's aggregator including its type, key, name and description.
    CountStatistics []WorkspaceApplicationScheduleMetadataCountStatistic
    A count statistics.
    CreatedBy string
    The user that created the object.
    CreatedByName string
    The user that created the object.
    IdentifierPath string
    The full path to identify this object.
    InfoFields map[string]interface{}
    Information property fields.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Labels []string
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    TimeCreated string
    The date and time that the object was created.
    TimeUpdated string
    The date and time that the object was updated.
    UpdatedBy string
    The user that updated the object.
    UpdatedByName string
    The user that updated the object.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    aggregators List<WorkspaceApplicationScheduleMetadataAggregator>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<WorkspaceApplicationScheduleMetadataCountStatistic>
    A count statistics.
    createdBy String
    The user that created the object.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<String,Object>
    Information property fields.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Integer
    (Updatable) The registry version.
    timeCreated String
    The date and time that the object was created.
    timeUpdated String
    The date and time that the object was updated.
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.
    aggregatorKey string
    (Updatable) The owning object's key for this object.
    aggregators WorkspaceApplicationScheduleMetadataAggregator[]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics WorkspaceApplicationScheduleMetadataCountStatistic[]
    A count statistics.
    createdBy string
    The user that created the object.
    createdByName string
    The user that created the object.
    identifierPath string
    The full path to identify this object.
    infoFields {[key: string]: any}
    Information property fields.
    isFavorite boolean
    (Updatable) Specifies whether this object is a favorite or not.
    labels string[]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion number
    (Updatable) The registry version.
    timeCreated string
    The date and time that the object was created.
    timeUpdated string
    The date and time that the object was updated.
    updatedBy string
    The user that updated the object.
    updatedByName string
    The user that updated the object.
    aggregator_key str
    (Updatable) The owning object's key for this object.
    aggregators Sequence[dataintegration.WorkspaceApplicationScheduleMetadataAggregator]
    A summary type containing information about the object's aggregator including its type, key, name and description.
    count_statistics Sequence[dataintegration.WorkspaceApplicationScheduleMetadataCountStatistic]
    A count statistics.
    created_by str
    The user that created the object.
    created_by_name str
    The user that created the object.
    identifier_path str
    The full path to identify this object.
    info_fields Mapping[str, Any]
    Information property fields.
    is_favorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    labels Sequence[str]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registry_version int
    (Updatable) The registry version.
    time_created str
    The date and time that the object was created.
    time_updated str
    The date and time that the object was updated.
    updated_by str
    The user that updated the object.
    updated_by_name str
    The user that updated the object.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    aggregators List<Property Map>
    A summary type containing information about the object's aggregator including its type, key, name and description.
    countStatistics List<Property Map>
    A count statistics.
    createdBy String
    The user that created the object.
    createdByName String
    The user that created the object.
    identifierPath String
    The full path to identify this object.
    infoFields Map<Any>
    Information property fields.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Number
    (Updatable) The registry version.
    timeCreated String
    The date and time that the object was created.
    timeUpdated String
    The date and time that the object was updated.
    updatedBy String
    The user that updated the object.
    updatedByName String
    The user that updated the object.

    WorkspaceApplicationScheduleMetadataAggregator, WorkspaceApplicationScheduleMetadataAggregatorArgs

    Description string
    (Updatable) Detailed description for the object.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    (Updatable) The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the aggregator.
    Description string
    (Updatable) Detailed description for the object.
    Identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    Key string
    (Updatable) The identifying key for the object.
    Name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    Type string
    The type of the aggregator.
    description String
    (Updatable) Detailed description for the object.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    (Updatable) The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the aggregator.
    description string
    (Updatable) Detailed description for the object.
    identifier string
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key string
    (Updatable) The identifying key for the object.
    name string
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type string
    The type of the aggregator.
    description str
    (Updatable) Detailed description for the object.
    identifier str
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key str
    (Updatable) The identifying key for the object.
    name str
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type str
    The type of the aggregator.
    description String
    (Updatable) Detailed description for the object.
    identifier String
    (Updatable) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
    key String
    (Updatable) The identifying key for the object.
    name String
    (Updatable) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
    type String
    The type of the aggregator.

    WorkspaceApplicationScheduleMetadataCountStatistic, WorkspaceApplicationScheduleMetadataCountStatisticArgs

    WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountList, WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs

    ObjectCount string
    The value for the count statistic object.
    ObjectType string
    The type of object for the count statistic object.
    ObjectCount string
    The value for the count statistic object.
    ObjectType string
    The type of object for the count statistic object.
    objectCount String
    The value for the count statistic object.
    objectType String
    The type of object for the count statistic object.
    objectCount string
    The value for the count statistic object.
    objectType string
    The type of object for the count statistic object.
    object_count str
    The value for the count statistic object.
    object_type str
    The type of object for the count statistic object.
    objectCount String
    The value for the count statistic object.
    objectType String
    The type of object for the count statistic object.

    WorkspaceApplicationScheduleParentRef, WorkspaceApplicationScheduleParentRefArgs

    Parent string
    Key of the parent object.
    RootDocId string
    Key of the root document object.
    Parent string
    Key of the parent object.
    RootDocId string
    Key of the root document object.
    parent String
    Key of the parent object.
    rootDocId String
    Key of the root document object.
    parent string
    Key of the parent object.
    rootDocId string
    Key of the root document object.
    parent str
    Key of the parent object.
    root_doc_id str
    Key of the root document object.
    parent String
    Key of the parent object.
    rootDocId String
    Key of the root document object.

    WorkspaceApplicationScheduleRegistryMetadata, WorkspaceApplicationScheduleRegistryMetadataArgs

    AggregatorKey string
    (Updatable) The owning object's key for this object.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Key string
    (Updatable) The identifying key for the object.
    Labels List<string>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    AggregatorKey string
    (Updatable) The owning object's key for this object.
    IsFavorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    Key string
    (Updatable) The identifying key for the object.
    Labels []string
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    RegistryVersion int
    (Updatable) The registry version.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    key String
    (Updatable) The identifying key for the object.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Integer
    (Updatable) The registry version.
    aggregatorKey string
    (Updatable) The owning object's key for this object.
    isFavorite boolean
    (Updatable) Specifies whether this object is a favorite or not.
    key string
    (Updatable) The identifying key for the object.
    labels string[]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion number
    (Updatable) The registry version.
    aggregator_key str
    (Updatable) The owning object's key for this object.
    is_favorite bool
    (Updatable) Specifies whether this object is a favorite or not.
    key str
    (Updatable) The identifying key for the object.
    labels Sequence[str]
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registry_version int
    (Updatable) The registry version.
    aggregatorKey String
    (Updatable) The owning object's key for this object.
    isFavorite Boolean
    (Updatable) Specifies whether this object is a favorite or not.
    key String
    (Updatable) The identifying key for the object.
    labels List<String>
    (Updatable) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
    registryVersion Number
    (Updatable) The registry version.

    Import

    WorkspaceApplicationSchedules can be imported using the id, e.g.

    $ pulumi import oci:DataIntegration/workspaceApplicationSchedule:WorkspaceApplicationSchedule test_workspace_application_schedule "workspaces/{workspaceId}/applications/{applicationKey}/schedules/{scheduleKey}"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.34.0 published on Friday, May 3, 2024 by Pulumi