published on Friday, Mar 20, 2026 by Pulumi
published on Friday, Mar 20, 2026 by Pulumi
A schedule.
Uses Azure REST API version 2018-09-15. In version 2.x of the Azure Native provider, it used API version 2018-09-15.
Example Usage
GlobalSchedules_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var globalSchedule = new AzureNative.DevTestLab.GlobalSchedule("globalSchedule", new()
{
Name = "labvmautostart",
ResourceGroupName = "resourceGroupName",
Status = AzureNative.DevTestLab.EnableStatus.Enabled,
TaskType = "LabVmsStartupTask",
TimeZoneId = "Hawaiian Standard Time",
WeeklyRecurrence = new AzureNative.DevTestLab.Inputs.WeekDetailsArgs
{
Time = "0700",
Weekdays = new[]
{
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
},
},
});
});
package main
import (
devtestlab "github.com/pulumi/pulumi-azure-native-sdk/devtestlab/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := devtestlab.NewGlobalSchedule(ctx, "globalSchedule", &devtestlab.GlobalScheduleArgs{
Name: pulumi.String("labvmautostart"),
ResourceGroupName: pulumi.String("resourceGroupName"),
Status: pulumi.String(devtestlab.EnableStatusEnabled),
TaskType: pulumi.String("LabVmsStartupTask"),
TimeZoneId: pulumi.String("Hawaiian Standard Time"),
WeeklyRecurrence: &devtestlab.WeekDetailsArgs{
Time: pulumi.String("0700"),
Weekdays: pulumi.StringArray{
pulumi.String("Monday"),
pulumi.String("Tuesday"),
pulumi.String("Wednesday"),
pulumi.String("Thursday"),
pulumi.String("Friday"),
pulumi.String("Saturday"),
},
},
})
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.devtestlab.GlobalSchedule;
import com.pulumi.azurenative.devtestlab.GlobalScheduleArgs;
import com.pulumi.azurenative.devtestlab.inputs.WeekDetailsArgs;
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 globalSchedule = new GlobalSchedule("globalSchedule", GlobalScheduleArgs.builder()
.name("labvmautostart")
.resourceGroupName("resourceGroupName")
.status("Enabled")
.taskType("LabVmsStartupTask")
.timeZoneId("Hawaiian Standard Time")
.weeklyRecurrence(WeekDetailsArgs.builder()
.time("0700")
.weekdays(
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday")
.build())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const globalSchedule = new azure_native.devtestlab.GlobalSchedule("globalSchedule", {
name: "labvmautostart",
resourceGroupName: "resourceGroupName",
status: azure_native.devtestlab.EnableStatus.Enabled,
taskType: "LabVmsStartupTask",
timeZoneId: "Hawaiian Standard Time",
weeklyRecurrence: {
time: "0700",
weekdays: [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
],
},
});
import pulumi
import pulumi_azure_native as azure_native
global_schedule = azure_native.devtestlab.GlobalSchedule("globalSchedule",
name="labvmautostart",
resource_group_name="resourceGroupName",
status=azure_native.devtestlab.EnableStatus.ENABLED,
task_type="LabVmsStartupTask",
time_zone_id="Hawaiian Standard Time",
weekly_recurrence={
"time": "0700",
"weekdays": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
],
})
resources:
globalSchedule:
type: azure-native:devtestlab:GlobalSchedule
properties:
name: labvmautostart
resourceGroupName: resourceGroupName
status: Enabled
taskType: LabVmsStartupTask
timeZoneId: Hawaiian Standard Time
weeklyRecurrence:
time: '0700'
weekdays:
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
Create GlobalSchedule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GlobalSchedule(name: string, args: GlobalScheduleArgs, opts?: CustomResourceOptions);@overload
def GlobalSchedule(resource_name: str,
args: GlobalScheduleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GlobalSchedule(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
daily_recurrence: Optional[DayDetailsArgs] = None,
hourly_recurrence: Optional[HourDetailsArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
notification_settings: Optional[NotificationSettingsArgs] = None,
status: Optional[Union[str, EnableStatus]] = None,
tags: Optional[Mapping[str, str]] = None,
target_resource_id: Optional[str] = None,
task_type: Optional[str] = None,
time_zone_id: Optional[str] = None,
weekly_recurrence: Optional[WeekDetailsArgs] = None)func NewGlobalSchedule(ctx *Context, name string, args GlobalScheduleArgs, opts ...ResourceOption) (*GlobalSchedule, error)public GlobalSchedule(string name, GlobalScheduleArgs args, CustomResourceOptions? opts = null)
public GlobalSchedule(String name, GlobalScheduleArgs args)
public GlobalSchedule(String name, GlobalScheduleArgs args, CustomResourceOptions options)
type: azure-native:devtestlab:GlobalSchedule
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 GlobalScheduleArgs
- 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 GlobalScheduleArgs
- 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 GlobalScheduleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GlobalScheduleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GlobalScheduleArgs
- 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 globalScheduleResource = new AzureNative.DevTestLab.GlobalSchedule("globalScheduleResource", new()
{
ResourceGroupName = "string",
DailyRecurrence = new AzureNative.DevTestLab.Inputs.DayDetailsArgs
{
Time = "string",
},
HourlyRecurrence = new AzureNative.DevTestLab.Inputs.HourDetailsArgs
{
Minute = 0,
},
Location = "string",
Name = "string",
NotificationSettings = new AzureNative.DevTestLab.Inputs.NotificationSettingsArgs
{
EmailRecipient = "string",
NotificationLocale = "string",
Status = "string",
TimeInMinutes = 0,
WebhookUrl = "string",
},
Status = "string",
Tags =
{
{ "string", "string" },
},
TargetResourceId = "string",
TaskType = "string",
TimeZoneId = "string",
WeeklyRecurrence = new AzureNative.DevTestLab.Inputs.WeekDetailsArgs
{
Time = "string",
Weekdays = new[]
{
"string",
},
},
});
example, err := devtestlab.NewGlobalSchedule(ctx, "globalScheduleResource", &devtestlab.GlobalScheduleArgs{
ResourceGroupName: pulumi.String("string"),
DailyRecurrence: &devtestlab.DayDetailsArgs{
Time: pulumi.String("string"),
},
HourlyRecurrence: &devtestlab.HourDetailsArgs{
Minute: pulumi.Int(0),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
NotificationSettings: &devtestlab.NotificationSettingsArgs{
EmailRecipient: pulumi.String("string"),
NotificationLocale: pulumi.String("string"),
Status: pulumi.String("string"),
TimeInMinutes: pulumi.Int(0),
WebhookUrl: pulumi.String("string"),
},
Status: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TargetResourceId: pulumi.String("string"),
TaskType: pulumi.String("string"),
TimeZoneId: pulumi.String("string"),
WeeklyRecurrence: &devtestlab.WeekDetailsArgs{
Time: pulumi.String("string"),
Weekdays: pulumi.StringArray{
pulumi.String("string"),
},
},
})
var globalScheduleResource = new GlobalSchedule("globalScheduleResource", GlobalScheduleArgs.builder()
.resourceGroupName("string")
.dailyRecurrence(DayDetailsArgs.builder()
.time("string")
.build())
.hourlyRecurrence(HourDetailsArgs.builder()
.minute(0)
.build())
.location("string")
.name("string")
.notificationSettings(NotificationSettingsArgs.builder()
.emailRecipient("string")
.notificationLocale("string")
.status("string")
.timeInMinutes(0)
.webhookUrl("string")
.build())
.status("string")
.tags(Map.of("string", "string"))
.targetResourceId("string")
.taskType("string")
.timeZoneId("string")
.weeklyRecurrence(WeekDetailsArgs.builder()
.time("string")
.weekdays("string")
.build())
.build());
global_schedule_resource = azure_native.devtestlab.GlobalSchedule("globalScheduleResource",
resource_group_name="string",
daily_recurrence={
"time": "string",
},
hourly_recurrence={
"minute": 0,
},
location="string",
name="string",
notification_settings={
"email_recipient": "string",
"notification_locale": "string",
"status": "string",
"time_in_minutes": 0,
"webhook_url": "string",
},
status="string",
tags={
"string": "string",
},
target_resource_id="string",
task_type="string",
time_zone_id="string",
weekly_recurrence={
"time": "string",
"weekdays": ["string"],
})
const globalScheduleResource = new azure_native.devtestlab.GlobalSchedule("globalScheduleResource", {
resourceGroupName: "string",
dailyRecurrence: {
time: "string",
},
hourlyRecurrence: {
minute: 0,
},
location: "string",
name: "string",
notificationSettings: {
emailRecipient: "string",
notificationLocale: "string",
status: "string",
timeInMinutes: 0,
webhookUrl: "string",
},
status: "string",
tags: {
string: "string",
},
targetResourceId: "string",
taskType: "string",
timeZoneId: "string",
weeklyRecurrence: {
time: "string",
weekdays: ["string"],
},
});
type: azure-native:devtestlab:GlobalSchedule
properties:
dailyRecurrence:
time: string
hourlyRecurrence:
minute: 0
location: string
name: string
notificationSettings:
emailRecipient: string
notificationLocale: string
status: string
timeInMinutes: 0
webhookUrl: string
resourceGroupName: string
status: string
tags:
string: string
targetResourceId: string
taskType: string
timeZoneId: string
weeklyRecurrence:
time: string
weekdays:
- string
GlobalSchedule 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 GlobalSchedule resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Daily
Recurrence Pulumi.Azure Native. Dev Test Lab. Inputs. Day Details - If the schedule will occur once each day of the week, specify the daily recurrence.
- Hourly
Recurrence Pulumi.Azure Native. Dev Test Lab. Inputs. Hour Details - If the schedule will occur multiple times a day, specify the hourly recurrence.
- Location string
- The geo-location where the resource lives
- Name string
- The name of the Schedule
- Notification
Settings Pulumi.Azure Native. Dev Test Lab. Inputs. Notification Settings - Notification settings.
- Status
string | Pulumi.
Azure Native. Dev Test Lab. Enable Status - The status of the schedule (i.e. Enabled, Disabled)
- Dictionary<string, string>
- Resource tags.
- Target
Resource stringId - The resource ID to which the schedule belongs
- Task
Type string - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- Time
Zone stringId - The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in
IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md) - Weekly
Recurrence Pulumi.Azure Native. Dev Test Lab. Inputs. Week Details - If the schedule will occur only some days of the week, specify the weekly recurrence.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Daily
Recurrence DayDetails Args - If the schedule will occur once each day of the week, specify the daily recurrence.
- Hourly
Recurrence HourDetails Args - If the schedule will occur multiple times a day, specify the hourly recurrence.
- Location string
- The geo-location where the resource lives
- Name string
- The name of the Schedule
- Notification
Settings NotificationSettings Args - Notification settings.
- Status
string | Enable
Status - The status of the schedule (i.e. Enabled, Disabled)
- map[string]string
- Resource tags.
- Target
Resource stringId - The resource ID to which the schedule belongs
- Task
Type string - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- Time
Zone stringId - The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in
IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md) - Weekly
Recurrence WeekDetails Args - If the schedule will occur only some days of the week, specify the weekly recurrence.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- daily
Recurrence DayDetails - If the schedule will occur once each day of the week, specify the daily recurrence.
- hourly
Recurrence HourDetails - If the schedule will occur multiple times a day, specify the hourly recurrence.
- location String
- The geo-location where the resource lives
- name String
- The name of the Schedule
- notification
Settings NotificationSettings - Notification settings.
- status
String | Enable
Status - The status of the schedule (i.e. Enabled, Disabled)
- Map<String,String>
- Resource tags.
- target
Resource StringId - The resource ID to which the schedule belongs
- task
Type String - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time
Zone StringId - The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in
IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md) - weekly
Recurrence WeekDetails - If the schedule will occur only some days of the week, specify the weekly recurrence.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- daily
Recurrence DayDetails - If the schedule will occur once each day of the week, specify the daily recurrence.
- hourly
Recurrence HourDetails - If the schedule will occur multiple times a day, specify the hourly recurrence.
- location string
- The geo-location where the resource lives
- name string
- The name of the Schedule
- notification
Settings NotificationSettings - Notification settings.
- status
string | Enable
Status - The status of the schedule (i.e. Enabled, Disabled)
- {[key: string]: string}
- Resource tags.
- target
Resource stringId - The resource ID to which the schedule belongs
- task
Type string - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time
Zone stringId - The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in
IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md) - weekly
Recurrence WeekDetails - If the schedule will occur only some days of the week, specify the weekly recurrence.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- daily_
recurrence DayDetails Args - If the schedule will occur once each day of the week, specify the daily recurrence.
- hourly_
recurrence HourDetails Args - If the schedule will occur multiple times a day, specify the hourly recurrence.
- location str
- The geo-location where the resource lives
- name str
- The name of the Schedule
- notification_
settings NotificationSettings Args - Notification settings.
- status
str | Enable
Status - The status of the schedule (i.e. Enabled, Disabled)
- Mapping[str, str]
- Resource tags.
- target_
resource_ strid - The resource ID to which the schedule belongs
- task_
type str - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time_
zone_ strid - The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in
IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md) - weekly_
recurrence WeekDetails Args - If the schedule will occur only some days of the week, specify the weekly recurrence.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- daily
Recurrence Property Map - If the schedule will occur once each day of the week, specify the daily recurrence.
- hourly
Recurrence Property Map - If the schedule will occur multiple times a day, specify the hourly recurrence.
- location String
- The geo-location where the resource lives
- name String
- The name of the Schedule
- notification
Settings Property Map - Notification settings.
- status String | "Enabled" | "Disabled"
- The status of the schedule (i.e. Enabled, Disabled)
- Map<String>
- Resource tags.
- target
Resource StringId - The resource ID to which the schedule belongs
- task
Type String - The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
- time
Zone StringId - The time zone ID (e.g. China Standard Time, Greenland Standard Time, Pacific Standard time, etc.). The possible values for this property can be found in
IReadOnlyCollection<string> TimeZoneConverter.TZConvert.KnownWindowsTimeZoneIds(https://github.com/mattjohnsonpint/TimeZoneConverter/blob/main/README.md) - weekly
Recurrence Property Map - If the schedule will occur only some days of the week, specify the weekly recurrence.
Outputs
All input properties are implicitly available as output properties. Additionally, the GlobalSchedule resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
Date string - The creation date of the schedule.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
State string - The provisioning status of the resource.
- System
Data Pulumi.Azure Native. Dev Test Lab. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Unique
Identifier string - The unique immutable identifier of a resource (Guid).
- Azure
Api stringVersion - The Azure API version of the resource.
- Created
Date string - The creation date of the schedule.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
State string - The provisioning status of the resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Unique
Identifier string - The unique immutable identifier of a resource (Guid).
- azure
Api StringVersion - The Azure API version of the resource.
- created
Date String - The creation date of the schedule.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - The provisioning status of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- unique
Identifier String - The unique immutable identifier of a resource (Guid).
- azure
Api stringVersion - The Azure API version of the resource.
- created
Date string - The creation date of the schedule.
- id string
- The provider-assigned unique ID for this managed resource.
- provisioning
State string - The provisioning status of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- unique
Identifier string - The unique immutable identifier of a resource (Guid).
- azure_
api_ strversion - The Azure API version of the resource.
- created_
date str - The creation date of the schedule.
- id str
- The provider-assigned unique ID for this managed resource.
- provisioning_
state str - The provisioning status of the resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- unique_
identifier str - The unique immutable identifier of a resource (Guid).
- azure
Api StringVersion - The Azure API version of the resource.
- created
Date String - The creation date of the schedule.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
State String - The provisioning status of the resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- unique
Identifier String - The unique immutable identifier of a resource (Guid).
Supporting Types
DayDetails, DayDetailsArgs
Properties of a daily schedule.- Time string
- The time of day the schedule will occur.
- Time string
- The time of day the schedule will occur.
- time String
- The time of day the schedule will occur.
- time string
- The time of day the schedule will occur.
- time str
- The time of day the schedule will occur.
- time String
- The time of day the schedule will occur.
DayDetailsResponse, DayDetailsResponseArgs
Properties of a daily schedule.- Time string
- The time of day the schedule will occur.
- Time string
- The time of day the schedule will occur.
- time String
- The time of day the schedule will occur.
- time string
- The time of day the schedule will occur.
- time str
- The time of day the schedule will occur.
- time String
- The time of day the schedule will occur.
EnableStatus, EnableStatusArgs
- Enabled
Enabled- Disabled
Disabled
- Enable
Status Enabled Enabled- Enable
Status Disabled Disabled
- Enabled
Enabled- Disabled
Disabled
- Enabled
Enabled- Disabled
Disabled
- ENABLED
Enabled- DISABLED
Disabled
- "Enabled"
Enabled- "Disabled"
Disabled
HourDetails, HourDetailsArgs
Properties of an hourly schedule.- Minute int
- Minutes of the hour the schedule will run.
- Minute int
- Minutes of the hour the schedule will run.
- minute Integer
- Minutes of the hour the schedule will run.
- minute number
- Minutes of the hour the schedule will run.
- minute int
- Minutes of the hour the schedule will run.
- minute Number
- Minutes of the hour the schedule will run.
HourDetailsResponse, HourDetailsResponseArgs
Properties of an hourly schedule.- Minute int
- Minutes of the hour the schedule will run.
- Minute int
- Minutes of the hour the schedule will run.
- minute Integer
- Minutes of the hour the schedule will run.
- minute number
- Minutes of the hour the schedule will run.
- minute int
- Minutes of the hour the schedule will run.
- minute Number
- Minutes of the hour the schedule will run.
NotificationSettings, NotificationSettingsArgs
Notification settings for a schedule.- Email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- Notification
Locale string - The locale to use when sending a notification (fallback for unsupported languages is EN).
- Status
string | Pulumi.
Azure Native. Dev Test Lab. Enable Status - If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- Time
In intMinutes - Time in minutes before event at which notification will be sent.
- Webhook
Url string - The webhook URL to which the notification will be sent.
- Email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- Notification
Locale string - The locale to use when sending a notification (fallback for unsupported languages is EN).
- Status
string | Enable
Status - If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- Time
In intMinutes - Time in minutes before event at which notification will be sent.
- Webhook
Url string - The webhook URL to which the notification will be sent.
- email
Recipient String - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale String - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status
String | Enable
Status - If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time
In IntegerMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url String - The webhook URL to which the notification will be sent.
- email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale string - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status
string | Enable
Status - If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time
In numberMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url string - The webhook URL to which the notification will be sent.
- email_
recipient str - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification_
locale str - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status
str | Enable
Status - If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time_
in_ intminutes - Time in minutes before event at which notification will be sent.
- webhook_
url str - The webhook URL to which the notification will be sent.
- email
Recipient String - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale String - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status String | "Enabled" | "Disabled"
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time
In NumberMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url String - The webhook URL to which the notification will be sent.
NotificationSettingsResponse, NotificationSettingsResponseArgs
Notification settings for a schedule.- Email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- Notification
Locale string - The locale to use when sending a notification (fallback for unsupported languages is EN).
- Status string
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- Time
In intMinutes - Time in minutes before event at which notification will be sent.
- Webhook
Url string - The webhook URL to which the notification will be sent.
- Email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- Notification
Locale string - The locale to use when sending a notification (fallback for unsupported languages is EN).
- Status string
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- Time
In intMinutes - Time in minutes before event at which notification will be sent.
- Webhook
Url string - The webhook URL to which the notification will be sent.
- email
Recipient String - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale String - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status String
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time
In IntegerMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url String - The webhook URL to which the notification will be sent.
- email
Recipient string - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale string - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status string
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time
In numberMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url string - The webhook URL to which the notification will be sent.
- email_
recipient str - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification_
locale str - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status str
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time_
in_ intminutes - Time in minutes before event at which notification will be sent.
- webhook_
url str - The webhook URL to which the notification will be sent.
- email
Recipient String - The email recipient to send notifications to (can be a list of semi-colon separated email addresses).
- notification
Locale String - The locale to use when sending a notification (fallback for unsupported languages is EN).
- status String
- If notifications are enabled for this schedule (i.e. Enabled, Disabled).
- time
In NumberMinutes - Time in minutes before event at which notification will be sent.
- webhook
Url String - The webhook URL to which the notification will be sent.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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.
WeekDetails, WeekDetailsArgs
Properties of a weekly schedule.WeekDetailsResponse, WeekDetailsResponseArgs
Properties of a weekly schedule.Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:devtestlab:GlobalSchedule LabVmAutoStart /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules/{name}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Friday, Mar 20, 2026 by Pulumi
