azure-native.labservices.Schedule
Explore with Pulumi AI
Schedule for automatically turning virtual machines in a lab on and off at specified times. Azure REST API version: 2022-08-01. Prior API version in Azure Native 1.x: 2021-10-01-preview.
Other available API versions: 2023-06-07.
Example Usage
putSchedule
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var schedule = new AzureNative.LabServices.Schedule("schedule", new()
{
LabName = "testlab",
Notes = "Schedule 1 for students",
RecurrencePattern = new AzureNative.LabServices.Inputs.RecurrencePatternArgs
{
ExpirationDate = "2020-08-14T23:59:59Z",
Frequency = AzureNative.LabServices.RecurrenceFrequency.Daily,
Interval = 2,
},
ResourceGroupName = "testrg123",
ScheduleName = "schedule1",
StartAt = "2020-05-26T12:00:00Z",
StopAt = "2020-05-26T18:00:00Z",
TimeZoneId = "America/Los_Angeles",
});
});
package main
import (
labservices "github.com/pulumi/pulumi-azure-native-sdk/labservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := labservices.NewSchedule(ctx, "schedule", &labservices.ScheduleArgs{
LabName: pulumi.String("testlab"),
Notes: pulumi.String("Schedule 1 for students"),
RecurrencePattern: &labservices.RecurrencePatternArgs{
ExpirationDate: pulumi.String("2020-08-14T23:59:59Z"),
Frequency: labservices.RecurrenceFrequencyDaily,
Interval: pulumi.Int(2),
},
ResourceGroupName: pulumi.String("testrg123"),
ScheduleName: pulumi.String("schedule1"),
StartAt: pulumi.String("2020-05-26T12:00:00Z"),
StopAt: pulumi.String("2020-05-26T18:00:00Z"),
TimeZoneId: pulumi.String("America/Los_Angeles"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.labservices.Schedule;
import com.pulumi.azurenative.labservices.ScheduleArgs;
import com.pulumi.azurenative.labservices.inputs.RecurrencePatternArgs;
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 schedule = new Schedule("schedule", ScheduleArgs.builder()
.labName("testlab")
.notes("Schedule 1 for students")
.recurrencePattern(RecurrencePatternArgs.builder()
.expirationDate("2020-08-14T23:59:59Z")
.frequency("Daily")
.interval(2)
.build())
.resourceGroupName("testrg123")
.scheduleName("schedule1")
.startAt("2020-05-26T12:00:00Z")
.stopAt("2020-05-26T18:00:00Z")
.timeZoneId("America/Los_Angeles")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
schedule = azure_native.labservices.Schedule("schedule",
lab_name="testlab",
notes="Schedule 1 for students",
recurrence_pattern={
"expiration_date": "2020-08-14T23:59:59Z",
"frequency": azure_native.labservices.RecurrenceFrequency.DAILY,
"interval": 2,
},
resource_group_name="testrg123",
schedule_name="schedule1",
start_at="2020-05-26T12:00:00Z",
stop_at="2020-05-26T18:00:00Z",
time_zone_id="America/Los_Angeles")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const schedule = new azure_native.labservices.Schedule("schedule", {
labName: "testlab",
notes: "Schedule 1 for students",
recurrencePattern: {
expirationDate: "2020-08-14T23:59:59Z",
frequency: azure_native.labservices.RecurrenceFrequency.Daily,
interval: 2,
},
resourceGroupName: "testrg123",
scheduleName: "schedule1",
startAt: "2020-05-26T12:00:00Z",
stopAt: "2020-05-26T18:00:00Z",
timeZoneId: "America/Los_Angeles",
});
resources:
schedule:
type: azure-native:labservices:Schedule
properties:
labName: testlab
notes: Schedule 1 for students
recurrencePattern:
expirationDate: 2020-08-14T23:59:59Z
frequency: Daily
interval: 2
resourceGroupName: testrg123
scheduleName: schedule1
startAt: 2020-05-26T12:00:00Z
stopAt: 2020-05-26T18:00:00Z
timeZoneId: America/Los_Angeles
Create Schedule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Schedule(name: string, args: ScheduleArgs, opts?: CustomResourceOptions);
@overload
def Schedule(resource_name: str,
args: ScheduleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Schedule(resource_name: str,
opts: Optional[ResourceOptions] = None,
lab_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
stop_at: Optional[str] = None,
time_zone_id: Optional[str] = None,
notes: Optional[str] = None,
recurrence_pattern: Optional[RecurrencePatternArgs] = None,
schedule_name: Optional[str] = None,
start_at: Optional[str] = None)
func NewSchedule(ctx *Context, name string, args ScheduleArgs, opts ...ResourceOption) (*Schedule, error)
public Schedule(string name, ScheduleArgs args, CustomResourceOptions? opts = null)
public Schedule(String name, ScheduleArgs args)
public Schedule(String name, ScheduleArgs args, CustomResourceOptions options)
type: azure-native:labservices:Schedule
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 ScheduleArgs
- 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 ScheduleArgs
- 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 ScheduleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ScheduleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ScheduleArgs
- 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 examplescheduleResourceResourceFromLabservices = new AzureNative.LabServices.Schedule("examplescheduleResourceResourceFromLabservices", new()
{
LabName = "string",
ResourceGroupName = "string",
StopAt = "string",
TimeZoneId = "string",
Notes = "string",
RecurrencePattern = new AzureNative.LabServices.Inputs.RecurrencePatternArgs
{
ExpirationDate = "string",
Frequency = AzureNative.LabServices.RecurrenceFrequency.Daily,
Interval = 0,
WeekDays = new[]
{
AzureNative.LabServices.WeekDay.Sunday,
},
},
ScheduleName = "string",
StartAt = "string",
});
example, err := labservices.NewSchedule(ctx, "examplescheduleResourceResourceFromLabservices", &labservices.ScheduleArgs{
LabName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
StopAt: pulumi.String("string"),
TimeZoneId: pulumi.String("string"),
Notes: pulumi.String("string"),
RecurrencePattern: &labservices.RecurrencePatternArgs{
ExpirationDate: pulumi.String("string"),
Frequency: labservices.RecurrenceFrequencyDaily,
Interval: pulumi.Int(0),
WeekDays: labservices.WeekDayArray{
labservices.WeekDaySunday,
},
},
ScheduleName: pulumi.String("string"),
StartAt: pulumi.String("string"),
})
var examplescheduleResourceResourceFromLabservices = new Schedule("examplescheduleResourceResourceFromLabservices", ScheduleArgs.builder()
.labName("string")
.resourceGroupName("string")
.stopAt("string")
.timeZoneId("string")
.notes("string")
.recurrencePattern(RecurrencePatternArgs.builder()
.expirationDate("string")
.frequency("Daily")
.interval(0)
.weekDays("Sunday")
.build())
.scheduleName("string")
.startAt("string")
.build());
exampleschedule_resource_resource_from_labservices = azure_native.labservices.Schedule("examplescheduleResourceResourceFromLabservices",
lab_name="string",
resource_group_name="string",
stop_at="string",
time_zone_id="string",
notes="string",
recurrence_pattern={
"expirationDate": "string",
"frequency": azure_native.labservices.RecurrenceFrequency.DAILY,
"interval": 0,
"weekDays": [azure_native.labservices.WeekDay.SUNDAY],
},
schedule_name="string",
start_at="string")
const examplescheduleResourceResourceFromLabservices = new azure_native.labservices.Schedule("examplescheduleResourceResourceFromLabservices", {
labName: "string",
resourceGroupName: "string",
stopAt: "string",
timeZoneId: "string",
notes: "string",
recurrencePattern: {
expirationDate: "string",
frequency: azure_native.labservices.RecurrenceFrequency.Daily,
interval: 0,
weekDays: [azure_native.labservices.WeekDay.Sunday],
},
scheduleName: "string",
startAt: "string",
});
type: azure-native:labservices:Schedule
properties:
labName: string
notes: string
recurrencePattern:
expirationDate: string
frequency: Daily
interval: 0
weekDays:
- Sunday
resourceGroupName: string
scheduleName: string
startAt: string
stopAt: string
timeZoneId: string
Schedule 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 Schedule resource accepts the following input properties:
- Lab
Name string - The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Stop
At string - When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- Time
Zone stringId - The IANA timezone id for the schedule.
- Notes string
- Notes for this schedule.
- Recurrence
Pattern Pulumi.Azure Native. Lab Services. Inputs. Recurrence Pattern - The recurrence pattern of the scheduled actions.
- Schedule
Name string - The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- Start
At string - When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- Lab
Name string - The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Stop
At string - When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- Time
Zone stringId - The IANA timezone id for the schedule.
- Notes string
- Notes for this schedule.
- Recurrence
Pattern RecurrencePattern Args - The recurrence pattern of the scheduled actions.
- Schedule
Name string - The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- Start
At string - When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- lab
Name String - The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- stop
At String - When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- time
Zone StringId - The IANA timezone id for the schedule.
- notes String
- Notes for this schedule.
- recurrence
Pattern RecurrencePattern - The recurrence pattern of the scheduled actions.
- schedule
Name String - The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- start
At String - When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- lab
Name string - The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- stop
At string - When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- time
Zone stringId - The IANA timezone id for the schedule.
- notes string
- Notes for this schedule.
- recurrence
Pattern RecurrencePattern - The recurrence pattern of the scheduled actions.
- schedule
Name string - The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- start
At string - When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- lab_
name str - The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- stop_
at str - When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- time_
zone_ strid - The IANA timezone id for the schedule.
- notes str
- Notes for this schedule.
- recurrence_
pattern RecurrencePattern Args - The recurrence pattern of the scheduled actions.
- schedule_
name str - The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- start_
at str - When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- lab
Name String - The name of the lab that uniquely identifies it within containing lab plan. Used in resource URIs.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- stop
At String - When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- time
Zone StringId - The IANA timezone id for the schedule.
- notes String
- Notes for this schedule.
- recurrence
Pattern Property Map - The recurrence pattern of the scheduled actions.
- schedule
Name String - The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- start
At String - When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
Outputs
All input properties are implicitly available as output properties. Additionally, the Schedule resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Current provisioning state of the schedule.
- System
Data Pulumi.Azure Native. Lab Services. Outputs. System Data Response - Metadata pertaining to creation and last modification of the schedule.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Current provisioning state of the schedule.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the schedule.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Current provisioning state of the schedule.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the schedule.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Current provisioning state of the schedule.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the schedule.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Current provisioning state of the schedule.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the schedule.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Current provisioning state of the schedule.
- system
Data Property Map - Metadata pertaining to creation and last modification of the schedule.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
RecurrenceFrequency, RecurrenceFrequencyArgs
- Daily
- DailySchedule will run every days.
- Weekly
- WeeklySchedule will run every week on days specified in weekDays.
- Recurrence
Frequency Daily - DailySchedule will run every days.
- Recurrence
Frequency Weekly - WeeklySchedule will run every week on days specified in weekDays.
- Daily
- DailySchedule will run every days.
- Weekly
- WeeklySchedule will run every week on days specified in weekDays.
- Daily
- DailySchedule will run every days.
- Weekly
- WeeklySchedule will run every week on days specified in weekDays.
- DAILY
- DailySchedule will run every days.
- WEEKLY
- WeeklySchedule will run every week on days specified in weekDays.
- "Daily"
- DailySchedule will run every days.
- "Weekly"
- WeeklySchedule will run every week on days specified in weekDays.
RecurrencePattern, RecurrencePatternArgs
- Expiration
Date string - When the recurrence will expire. This date is inclusive.
- Frequency
Pulumi.
Azure Native. Lab Services. Recurrence Frequency - The frequency of the recurrence.
- Interval int
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- Week
Days List<Pulumi.Azure Native. Lab Services. Week Day> - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- Expiration
Date string - When the recurrence will expire. This date is inclusive.
- Frequency
Recurrence
Frequency - The frequency of the recurrence.
- Interval int
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- Week
Days []WeekDay - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration
Date String - When the recurrence will expire. This date is inclusive.
- frequency
Recurrence
Frequency - The frequency of the recurrence.
- interval Integer
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week
Days List<WeekDay> - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration
Date string - When the recurrence will expire. This date is inclusive.
- frequency
Recurrence
Frequency - The frequency of the recurrence.
- interval number
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week
Days WeekDay[] - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration_
date str - When the recurrence will expire. This date is inclusive.
- frequency
Recurrence
Frequency - The frequency of the recurrence.
- interval int
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week_
days Sequence[WeekDay] - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration
Date String - When the recurrence will expire. This date is inclusive.
- frequency "Daily" | "Weekly"
- The frequency of the recurrence.
- interval Number
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week
Days List<"Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday"> - The week days the schedule runs. Used for when the Frequency is set to Weekly.
RecurrencePatternResponse, RecurrencePatternResponseArgs
- Expiration
Date string - When the recurrence will expire. This date is inclusive.
- Frequency string
- The frequency of the recurrence.
- Interval int
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- Week
Days List<string> - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- Expiration
Date string - When the recurrence will expire. This date is inclusive.
- Frequency string
- The frequency of the recurrence.
- Interval int
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- Week
Days []string - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration
Date String - When the recurrence will expire. This date is inclusive.
- frequency String
- The frequency of the recurrence.
- interval Integer
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week
Days List<String> - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration
Date string - When the recurrence will expire. This date is inclusive.
- frequency string
- The frequency of the recurrence.
- interval number
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week
Days string[] - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration_
date str - When the recurrence will expire. This date is inclusive.
- frequency str
- The frequency of the recurrence.
- interval int
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week_
days Sequence[str] - The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expiration
Date String - When the recurrence will expire. This date is inclusive.
- frequency String
- The frequency of the recurrence.
- interval Number
- The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used.
- week
Days List<String> - The week days the schedule runs. Used for when the Frequency is set to Weekly.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
WeekDay, WeekDayArgs
- Sunday
- SundaySchedule will run on Sunday
- Monday
- MondaySchedule will run on Monday
- Tuesday
- TuesdaySchedule will run on Tuesday
- Wednesday
- WednesdaySchedule will run on Wednesday
- Thursday
- ThursdaySchedule will run on Thursday
- Friday
- FridaySchedule will run on Friday
- Saturday
- SaturdaySchedule will run on Saturday
- Week
Day Sunday - SundaySchedule will run on Sunday
- Week
Day Monday - MondaySchedule will run on Monday
- Week
Day Tuesday - TuesdaySchedule will run on Tuesday
- Week
Day Wednesday - WednesdaySchedule will run on Wednesday
- Week
Day Thursday - ThursdaySchedule will run on Thursday
- Week
Day Friday - FridaySchedule will run on Friday
- Week
Day Saturday - SaturdaySchedule will run on Saturday
- Sunday
- SundaySchedule will run on Sunday
- Monday
- MondaySchedule will run on Monday
- Tuesday
- TuesdaySchedule will run on Tuesday
- Wednesday
- WednesdaySchedule will run on Wednesday
- Thursday
- ThursdaySchedule will run on Thursday
- Friday
- FridaySchedule will run on Friday
- Saturday
- SaturdaySchedule will run on Saturday
- Sunday
- SundaySchedule will run on Sunday
- Monday
- MondaySchedule will run on Monday
- Tuesday
- TuesdaySchedule will run on Tuesday
- Wednesday
- WednesdaySchedule will run on Wednesday
- Thursday
- ThursdaySchedule will run on Thursday
- Friday
- FridaySchedule will run on Friday
- Saturday
- SaturdaySchedule will run on Saturday
- SUNDAY
- SundaySchedule will run on Sunday
- MONDAY
- MondaySchedule will run on Monday
- TUESDAY
- TuesdaySchedule will run on Tuesday
- WEDNESDAY
- WednesdaySchedule will run on Wednesday
- THURSDAY
- ThursdaySchedule will run on Thursday
- FRIDAY
- FridaySchedule will run on Friday
- SATURDAY
- SaturdaySchedule will run on Saturday
- "Sunday"
- SundaySchedule will run on Sunday
- "Monday"
- MondaySchedule will run on Monday
- "Tuesday"
- TuesdaySchedule will run on Tuesday
- "Wednesday"
- WednesdaySchedule will run on Wednesday
- "Thursday"
- ThursdaySchedule will run on Thursday
- "Friday"
- FridaySchedule will run on Friday
- "Saturday"
- SaturdaySchedule will run on Saturday
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:labservices:Schedule schedule1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labs/{labName}/schedules/{scheduleName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0