oci.DataIntegration.WorkspaceApplicationSchedule
Explore with Pulumi AI
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.
Constructor 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:
- Application
Key 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.
- Workspace
Id 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.
- Frequency
Details WorkspaceApplication Schedule Frequency Details - (Updatable) The model that holds the frequency details.
- Is
Daylight boolAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- Key string
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- Model
Version 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.
- 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 WorkspaceApplication Schedule Registry Metadata - (Updatable) Information about the object and its parent.
- Timezone string
- (Updatable) The timezone for the schedule.
- Application
Key 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.
- Workspace
Id 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.
- Frequency
Details WorkspaceApplication Schedule Frequency Details Args - (Updatable) The model that holds the frequency details.
- Is
Daylight boolAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- Key string
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- Model
Version 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.
- 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 WorkspaceApplication Schedule Registry Metadata Args - (Updatable) Information about the object and its parent.
- Timezone string
- (Updatable) The timezone for the schedule.
- application
Key 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.
- workspace
Id 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.
- frequency
Details WorkspaceApplication Schedule Frequency Details - (Updatable) The model that holds the frequency details.
- is
Daylight BooleanAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key String
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- model
Version 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.
- object
Status Integer - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Integer - (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
- registry
Metadata WorkspaceApplication Schedule Registry Metadata - (Updatable) Information about the object and its parent.
- timezone String
- (Updatable) The timezone for the schedule.
- application
Key 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.
- workspace
Id 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.
- frequency
Details WorkspaceApplication Schedule Frequency Details - (Updatable) The model that holds the frequency details.
- is
Daylight booleanAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key string
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- model
Version 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.
- object
Status number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version number - (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
- registry
Metadata WorkspaceApplication Schedule Registry Metadata - (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.Workspace Application Schedule Frequency Details Args - (Updatable) The model that holds the frequency details.
- is_
daylight_ booladjustment_ enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key str
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- 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.Workspace Application Schedule Registry Metadata Args - (Updatable) Information about the object and its parent.
- timezone str
- (Updatable) The timezone for the schedule.
- application
Key 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.
- workspace
Id 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.
- frequency
Details Property Map - (Updatable) The model that holds the frequency details.
- is
Daylight BooleanAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key String
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- model
Version 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.
- object
Status Number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Number - (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
- registry
Metadata 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<Workspace
Application Schedule Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Parent
Reves List<WorkspaceApplication Schedule Parent Ref> - A reference to the object's parent.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metadatas
[]Workspace
Application Schedule Metadata - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Parent
Reves []WorkspaceApplication Schedule Parent Ref - A reference to the object's parent.
- id String
- The provider-assigned unique ID for this managed resource.
- metadatas
List<Workspace
Application Schedule Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The type of the object.
- parent
Reves List<WorkspaceApplication Schedule Parent Ref> - A reference to the object's parent.
- id string
- The provider-assigned unique ID for this managed resource.
- metadatas
Workspace
Application Schedule Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - The type of the object.
- parent
Reves WorkspaceApplication Schedule Parent Ref[] - A reference to the object's parent.
- id str
- The provider-assigned unique ID for this managed resource.
- metadatas
Sequence[dataintegration.
Workspace Application Schedule Metadata] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model_
type str - The type of the object.
- parent_
reves Sequence[dataintegration.Workspace Application Schedule Parent Ref] - 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.
- model
Type String - The type of the object.
- parent
Reves 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.
- Application
Key string - The application key.
- Description string
- (Updatable) Detailed description for the object.
- Frequency
Details WorkspaceApplication Schedule Frequency Details - (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.
- Is
Daylight boolAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- Key string
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- Metadatas
List<Workspace
Application Schedule Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Model
Version 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.
- 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 List<WorkspaceApplication Schedule Parent Ref> - A reference to the object's parent.
- Registry
Metadata WorkspaceApplication Schedule Registry Metadata - (Updatable) Information about the object and its parent.
- Timezone string
- (Updatable) The timezone for the schedule.
- Workspace
Id 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 string - The application key.
- Description string
- (Updatable) Detailed description for the object.
- Frequency
Details WorkspaceApplication Schedule Frequency Details Args - (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.
- Is
Daylight boolAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- Key string
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- Metadatas
[]Workspace
Application Schedule Metadata Args - A summary type containing information about the object including its key, name and when/who created/updated it.
- Model
Type string - The type of the object.
- Model
Version 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.
- 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 []WorkspaceApplication Schedule Parent Ref Args - A reference to the object's parent.
- Registry
Metadata WorkspaceApplication Schedule Registry Metadata Args - (Updatable) Information about the object and its parent.
- Timezone string
- (Updatable) The timezone for the schedule.
- Workspace
Id 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 String - The application key.
- description String
- (Updatable) Detailed description for the object.
- frequency
Details WorkspaceApplication Schedule Frequency Details - (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.
- is
Daylight BooleanAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key String
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- metadatas
List<Workspace
Application Schedule Metadata> - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The type of the object.
- model
Version 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.
- object
Status Integer - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Integer - (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
- parent
Reves List<WorkspaceApplication Schedule Parent Ref> - A reference to the object's parent.
- registry
Metadata WorkspaceApplication Schedule Registry Metadata - (Updatable) Information about the object and its parent.
- timezone String
- (Updatable) The timezone for the schedule.
- workspace
Id 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 string - The application key.
- description string
- (Updatable) Detailed description for the object.
- frequency
Details WorkspaceApplication Schedule Frequency Details - (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.
- is
Daylight booleanAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key string
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- metadatas
Workspace
Application Schedule Metadata[] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type string - The type of the object.
- model
Version 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.
- object
Status number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version number - (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
- parent
Reves WorkspaceApplication Schedule Parent Ref[] - A reference to the object's parent.
- registry
Metadata WorkspaceApplication Schedule Registry Metadata - (Updatable) Information about the object and its parent.
- timezone string
- (Updatable) The timezone for the schedule.
- workspace
Id 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.Workspace Application Schedule Frequency Details Args - (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_ booladjustment_ enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key str
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- metadatas
Sequence[dataintegration.
Workspace Application Schedule Metadata Args] - A summary type containing information about the object including its key, name and when/who created/updated it.
- model_
type str - The type of 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.
- parent_
reves Sequence[dataintegration.Workspace Application Schedule Parent Ref Args] - A reference to the object's parent.
- registry_
metadata dataintegration.Workspace Application Schedule Registry Metadata Args - (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
- application
Key String - The application key.
- description String
- (Updatable) Detailed description for the object.
- frequency
Details 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.
- is
Daylight BooleanAdjustment Enabled - (Updatable) A flag to indicate whether daylight adjustment should be considered or not.
- key String
- (Updatable) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- metadatas List<Property Map>
- A summary type containing information about the object including its key, name and when/who created/updated it.
- model
Type String - The type of the object.
- model
Version 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.
- object
Status Number - (Updatable) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
- object
Version Number - (Updatable) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
- parent
Reves List<Property Map> - A reference to the object's parent.
- registry
Metadata Property Map - (Updatable) Information about the object and its parent.
- timezone String
- (Updatable) The timezone for the schedule.
- workspace
Id 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
- Model
Type string - (Updatable) The type of the model
- Custom
Expression 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.)
- Day
Of stringWeek - (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
Workspace
Application Schedule Frequency Details Time - (Updatable) A model to hold time in hour:minute:second format.
- Week
Of stringMonth - (Updatable) This holds the week of the month in which the schedule should be triggered.
- Model
Type string - (Updatable) The type of the model
- Custom
Expression 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.)
- Day
Of stringWeek - (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
Workspace
Application Schedule Frequency Details Time - (Updatable) A model to hold time in hour:minute:second format.
- Week
Of stringMonth - (Updatable) This holds the week of the month in which the schedule should be triggered.
- model
Type String - (Updatable) The type of the model
- custom
Expression 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.)
- day
Of StringWeek - (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
Workspace
Application Schedule Frequency Details Time - (Updatable) A model to hold time in hour:minute:second format.
- week
Of StringMonth - (Updatable) This holds the week of the month in which the schedule should be triggered.
- model
Type string - (Updatable) The type of the model
- custom
Expression 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.)
- day
Of stringWeek - (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
Workspace
Application Schedule Frequency Details Time - (Updatable) A model to hold time in hour:minute:second format.
- week
Of stringMonth - (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_ strweek - (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.
Workspace Application Schedule Frequency Details Time - (Updatable) A model to hold time in hour:minute:second format.
- week_
of_ strmonth - (Updatable) This holds the week of the month in which the schedule should be triggered.
- model
Type String - (Updatable) The type of the model
- custom
Expression 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.)
- day
Of StringWeek - (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.
- week
Of StringMonth - (Updatable) This holds the week of the month in which the schedule should be triggered.
WorkspaceApplicationScheduleFrequencyDetailsTime, WorkspaceApplicationScheduleFrequencyDetailsTimeArgs
WorkspaceApplicationScheduleMetadata, WorkspaceApplicationScheduleMetadataArgs
- Aggregator
Key string - The owning object key for this object.
- Aggregators
List<Workspace
Application Schedule Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics List<WorkspaceApplication Schedule Metadata Count Statistic> - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields Dictionary<string, object> - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels List<string>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- Aggregator
Key string - The owning object key for this object.
- Aggregators
[]Workspace
Application Schedule Metadata Aggregator - A summary type containing information about the object's aggregator including its type, key, name and description.
- Count
Statistics []WorkspaceApplication Schedule Metadata Count Statistic - A count statistics.
- Created
By string - The user that created the object.
- Created
By stringName - The user that created the object.
- Identifier
Path string - The full path to identify this object.
- Info
Fields map[string]interface{} - Information property fields.
- Is
Favorite bool - Specifies whether this object is a favorite or not.
- Labels []string
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- Registry
Version int - The registry version of the object.
- Time
Created string - The date and time that the object was created.
- Time
Updated string - The date and time that the object was updated.
- Updated
By string - The user that updated the object.
- Updated
By stringName - The user that updated the object.
- aggregator
Key String - The owning object key for this object.
- aggregators
List<Workspace
Application Schedule Metadata Aggregator> - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics List<WorkspaceApplication Schedule Metadata Count Statistic> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<String,Object> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Integer - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - The user that updated the object.
- aggregator
Key string - The owning object key for this object.
- aggregators
Workspace
Application Schedule Metadata Aggregator[] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count
Statistics WorkspaceApplication Schedule Metadata Count Statistic[] - A count statistics.
- created
By string - The user that created the object.
- created
By stringName - The user that created the object.
- identifier
Path string - The full path to identify this object.
- info
Fields {[key: string]: any} - Information property fields.
- is
Favorite boolean - Specifies whether this object is a favorite or not.
- labels string[]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version number - The registry version of the object.
- time
Created string - The date and time that the object was created.
- time
Updated string - The date and time that the object was updated.
- updated
By string - The user that updated the object.
- updated
By stringName - The user that updated the object.
- aggregator_
key str - The owning object key for this object.
- aggregators
Sequence[dataintegration.
Workspace Application Schedule Metadata Aggregator] - A summary type containing information about the object's aggregator including its type, key, name and description.
- count_
statistics Sequence[dataintegration.Workspace Application Schedule Metadata Count Statistic] - A count statistics.
- created_
by str - The user that created the object.
- created_
by_ strname - 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 - Specifies whether this object is a favorite or not.
- labels Sequence[str]
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry_
version int - The registry version of the object.
- 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_ strname - The user that updated the object.
- aggregator
Key String - The owning object 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.
- count
Statistics List<Property Map> - A count statistics.
- created
By String - The user that created the object.
- created
By StringName - The user that created the object.
- identifier
Path String - The full path to identify this object.
- info
Fields Map<Any> - Information property fields.
- is
Favorite Boolean - Specifies whether this object is a favorite or not.
- labels List<String>
- Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
- registry
Version Number - The registry version of the object.
- time
Created String - The date and time that the object was created.
- time
Updated String - The date and time that the object was updated.
- updated
By String - The user that updated the object.
- updated
By StringName - 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) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- 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) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- 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) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- 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) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- 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) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- 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) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
- 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
- Object
Type List<WorkspaceCount Lists Application Schedule Metadata Count Statistic Object Type Count List> - The array of statistics.
- Object
Type []WorkspaceCount Lists Application Schedule Metadata Count Statistic Object Type Count List - The array of statistics.
- object
Type List<WorkspaceCount Lists Application Schedule Metadata Count Statistic Object Type Count List> - The array of statistics.
- object
Type WorkspaceCount Lists Application Schedule Metadata Count Statistic Object Type Count List[] - The array of statistics.
- object
Type List<Property Map>Count Lists - The array of statistics.
WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountList, WorkspaceApplicationScheduleMetadataCountStatisticObjectTypeCountListArgs
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- Object
Count string - The value for the count statistic object.
- Object
Type string - The type of object for the count statistic object.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
- object
Count string - The value for the count statistic object.
- object
Type 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.
- object
Count String - The value for the count statistic object.
- object
Type String - The type of object for the count statistic object.
WorkspaceApplicationScheduleParentRef, WorkspaceApplicationScheduleParentRefArgs
- parent str
- Key of the parent object.
- root_
doc_ strid - Key of the root document object.
WorkspaceApplicationScheduleRegistryMetadata, WorkspaceApplicationScheduleRegistryMetadataArgs
- Aggregator
Key string - (Updatable) The owning object's key for this object.
- Is
Favorite 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.
- Registry
Version int - (Updatable) The registry version.
- Aggregator
Key string - (Updatable) The owning object's key for this object.
- Is
Favorite 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.
- Registry
Version int - (Updatable) The registry version.
- aggregator
Key String - (Updatable) The owning object's key for this object.
- is
Favorite 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.
- registry
Version Integer - (Updatable) The registry version.
- aggregator
Key string - (Updatable) The owning object's key for this object.
- is
Favorite 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.
- registry
Version 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.
- aggregator
Key String - (Updatable) The owning object's key for this object.
- is
Favorite 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.
- registry
Version 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.