azure-native.labservices.Schedule
Explore with Pulumi AI
Schedule for automatically turning virtual machines in a lab on and off at specified times. API Version: 2021-10-01-preview.
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-14",
            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"
	"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-14"),
				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 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(Map.ofEntries(
                Map.entry("expirationDate", "2020-08-14"),
                Map.entry("frequency", "Daily"),
                Map.entry("interval", 2)
            ))
            .resourceGroupName("testrg123")
            .scheduleName("schedule1")
            .startAt("2020-05-26T12:00:00Z")
            .stopAt("2020-05-26T18:00:00Z")
            .timeZoneId("America/Los_Angeles")
            .build());
    }
}
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-14",
        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",
});
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=azure_native.labservices.RecurrencePatternArgs(
        expiration_date="2020-08-14",
        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")
resources:
  schedule:
    type: azure-native:labservices:Schedule
    properties:
      labName: testlab
      notes: Schedule 1 for students
      recurrencePattern:
        expirationDate: 2020-08-14
        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 = 
    {
        { "expirationDate", "string" },
        { "frequency", "Daily" },
        { "interval", 0 },
        { "weekDays", new[]
        {
            "Sunday",
        } },
    },
    ScheduleName = "string",
    StartAt = "string",
});
example, err := labservices.NewSchedule(ctx, "examplescheduleResourceResourceFromLabservices", &labservices.ScheduleArgs{
	LabName:           "string",
	ResourceGroupName: "string",
	StopAt:            "string",
	TimeZoneId:        "string",
	Notes:             "string",
	RecurrencePattern: map[string]interface{}{
		"expirationDate": "string",
		"frequency":      "Daily",
		"interval":       0,
		"weekDays": []string{
			"Sunday",
		},
	},
	ScheduleName: "string",
	StartAt:      "string",
})
var examplescheduleResourceResourceFromLabservices = new Schedule("examplescheduleResourceResourceFromLabservices", ScheduleArgs.builder()
    .labName("string")
    .resourceGroupName("string")
    .stopAt("string")
    .timeZoneId("string")
    .notes("string")
    .recurrencePattern(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .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: Daily,
        interval: 0,
        weekDays: [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: "Daily",
        interval: 0,
        weekDays: ["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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Schedule resource accepts the following input properties:
- LabName string
- The name of the lab that uniquely identifies it within containing lab account. Used in resource URIs.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- StopAt string
- When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- TimeZone stringId 
- The IANA timezone id for the schedule.
- Notes string
- Notes for this schedule.
- RecurrencePattern Pulumi.Azure Native. Lab Services. Inputs. Recurrence Pattern 
- The recurrence pattern of the scheduled actions.
- ScheduleName string
- The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- StartAt string
- When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- LabName string
- The name of the lab that uniquely identifies it within containing lab account. Used in resource URIs.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- StopAt string
- When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- TimeZone stringId 
- The IANA timezone id for the schedule.
- Notes string
- Notes for this schedule.
- RecurrencePattern RecurrencePattern Args 
- The recurrence pattern of the scheduled actions.
- ScheduleName string
- The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- StartAt string
- When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- labName String
- The name of the lab that uniquely identifies it within containing lab account. Used in resource URIs.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- stopAt String
- When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- timeZone StringId 
- The IANA timezone id for the schedule.
- notes String
- Notes for this schedule.
- recurrencePattern RecurrencePattern 
- The recurrence pattern of the scheduled actions.
- scheduleName String
- The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- startAt String
- When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead.
- labName string
- The name of the lab that uniquely identifies it within containing lab account. Used in resource URIs.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- stopAt string
- When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- timeZone stringId 
- The IANA timezone id for the schedule.
- notes string
- Notes for this schedule.
- recurrencePattern RecurrencePattern 
- The recurrence pattern of the scheduled actions.
- scheduleName string
- The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- startAt 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 account. 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.
- labName String
- The name of the lab that uniquely identifies it within containing lab account. Used in resource URIs.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- stopAt String
- When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead.
- timeZone StringId 
- The IANA timezone id for the schedule.
- notes String
- Notes for this schedule.
- recurrencePattern Property Map
- The recurrence pattern of the scheduled actions.
- scheduleName String
- The name of the schedule that uniquely identifies it within containing lab. Used in resource URIs.
- startAt 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
- ProvisioningState string
- Current provisioning state of the schedule.
- SystemData 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
- ProvisioningState string
- Current provisioning state of the schedule.
- SystemData 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
- provisioningState String
- Current provisioning state of the schedule.
- systemData 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
- provisioningState string
- Current provisioning state of the schedule.
- systemData 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
- provisioningState String
- Current provisioning state of the schedule.
- systemData 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.
- RecurrenceFrequency Daily 
- DailySchedule will run every days.
- RecurrenceFrequency 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    
- ExpirationDate 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.
- WeekDays List<Pulumi.Azure Native. Lab Services. Week Day> 
- The week days the schedule runs. Used for when the Frequency is set to Weekly.
- ExpirationDate string
- When the recurrence will expire. This date is inclusive.
- Frequency
RecurrenceFrequency 
- 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.
- WeekDays []WeekDay 
- The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expirationDate String
- When the recurrence will expire. This date is inclusive.
- frequency
RecurrenceFrequency 
- 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.
- weekDays List<WeekDay> 
- The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expirationDate string
- When the recurrence will expire. This date is inclusive.
- frequency
RecurrenceFrequency 
- 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.
- weekDays 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
RecurrenceFrequency 
- 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.
- expirationDate 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.
- weekDays 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      
- ExpirationDate 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.
- WeekDays List<string>
- The week days the schedule runs. Used for when the Frequency is set to Weekly.
- ExpirationDate 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.
- WeekDays []string
- The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expirationDate 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.
- weekDays List<String>
- The week days the schedule runs. Used for when the Frequency is set to Weekly.
- expirationDate 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.
- weekDays 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.
- expirationDate 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.
- weekDays List<String>
- The week days the schedule runs. Used for when the Frequency is set to Weekly.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified 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
- WeekDay Sunday 
- SundaySchedule will run on Sunday
- WeekDay Monday 
- MondaySchedule will run on Monday
- WeekDay Tuesday 
- TuesdaySchedule will run on Tuesday
- WeekDay Wednesday 
- WednesdaySchedule will run on Wednesday
- WeekDay Thursday 
- ThursdaySchedule will run on Thursday
- WeekDay Friday 
- FridaySchedule will run on Friday
- WeekDay 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/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testrg123/providers/Microsoft.LabServices/labs/testlab/schedules/schedule1 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0