Class ServiceFabricSchedule
- java.lang.Object
-
- com.pulumi.resources.Resource
-
- com.pulumi.resources.CustomResource
-
- com.pulumi.azurenative.devtestlab.ServiceFabricSchedule
-
public class ServiceFabricSchedule extends com.pulumi.resources.CustomResource
A schedule. Azure REST API version: 2018-09-15. Prior API version in Azure Native 1.x: 2018-09-15. ## Example Usage ### ServiceFabricSchedules_CreateOrUpdate ```java package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; import com.pulumi.azurenative.devtestlab.ServiceFabricSchedule; import com.pulumi.azurenative.devtestlab.ServiceFabricScheduleArgs; 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 serviceFabricSchedule = new ServiceFabricSchedule("serviceFabricSchedule", ServiceFabricScheduleArgs.builder() .dailyRecurrence(Map.of("time", "19:00")) .hourlyRecurrence(Map.of("minute", 0)) .labName("{labName}") .location("{location}") .name("{scheduleName}") .notificationSettings(Map.ofEntries( Map.entry("emailRecipient", "{email}"), Map.entry("notificationLocale", "EN"), Map.entry("status", "{Enabled|Disabled}"), Map.entry("timeInMinutes", 15), Map.entry("webhookUrl", "{webhoolUrl}") )) .resourceGroupName("resourceGroupName") .serviceFabricName("{serviceFrabicName}") .status("{Enabled|Disabled}") .tags(Map.of("tagName1", "tagValue1")) .targetResourceId("/subscriptions/{subscriptionId}/resourceGroups/resourceGroupName/providers/Microsoft.DevTestLab/labs/{labName}/users/{uniqueIdentifier}/servicefabrics/{serviceFrabicName}") .taskType("{Unknown|LabVmsShutdownTask|LabVmsStartupTask|LabVmReclamationTask|ComputeVmShutdownTask}") .timeZoneId("Pacific Standard Time") .userName("@me") .weeklyRecurrence(Map.ofEntries( Map.entry("time", "19:00"), Map.entry("weekdays", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday") )) .build()); } } ``` ## Import An existing resource can be imported using its type token, name, and identifier, e.g. ```sh $ pulumi import azure-native:devtestlab:ServiceFabricSchedule {scheduleName} /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{serviceFabricName}/schedules/{name} ```
-
-
Constructor Summary
Constructors Constructor Description ServiceFabricSchedule(java.lang.String name)
ServiceFabricSchedule(java.lang.String name, ServiceFabricScheduleArgs args)
ServiceFabricSchedule(java.lang.String name, ServiceFabricScheduleArgs args, com.pulumi.resources.CustomResourceOptions options)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description com.pulumi.core.Output<java.lang.String>
createdDate()
com.pulumi.core.Output<java.util.Optional<DayDetailsResponse>>
dailyRecurrence()
static ServiceFabricSchedule
get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.com.pulumi.core.Output<java.util.Optional<HourDetailsResponse>>
hourlyRecurrence()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
location()
com.pulumi.core.Output<java.lang.String>
name()
com.pulumi.core.Output<java.util.Optional<NotificationSettingsResponse>>
notificationSettings()
com.pulumi.core.Output<java.lang.String>
provisioningState()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
status()
com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>>
tags()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
targetResourceId()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
taskType()
com.pulumi.core.Output<java.util.Optional<java.lang.String>>
timeZoneId()
com.pulumi.core.Output<java.lang.String>
type()
com.pulumi.core.Output<java.lang.String>
uniqueIdentifier()
com.pulumi.core.Output<java.util.Optional<WeekDetailsResponse>>
weeklyRecurrence()
-
-
-
Constructor Detail
-
ServiceFabricSchedule
public ServiceFabricSchedule(java.lang.String name)
- Parameters:
name
- The _unique_ name of the resulting resource.
-
ServiceFabricSchedule
public ServiceFabricSchedule(java.lang.String name, ServiceFabricScheduleArgs args)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.
-
ServiceFabricSchedule
public ServiceFabricSchedule(java.lang.String name, ServiceFabricScheduleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options)
- Parameters:
name
- The _unique_ name of the resulting resource.args
- The arguments to use to populate this resource's properties.options
- A bag of options that control this resource's behavior.
-
-
Method Detail
-
createdDate
public com.pulumi.core.Output<java.lang.String> createdDate()
- Returns:
- The creation date of the schedule.
-
dailyRecurrence
public com.pulumi.core.Output<java.util.Optional<DayDetailsResponse>> dailyRecurrence()
- Returns:
- If the schedule will occur once each day of the week, specify the daily recurrence.
-
hourlyRecurrence
public com.pulumi.core.Output<java.util.Optional<HourDetailsResponse>> hourlyRecurrence()
- Returns:
- If the schedule will occur multiple times a day, specify the hourly recurrence.
-
location
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> location()
- Returns:
- The location of the resource.
-
name
public com.pulumi.core.Output<java.lang.String> name()
- Returns:
- The name of the resource.
-
notificationSettings
public com.pulumi.core.Output<java.util.Optional<NotificationSettingsResponse>> notificationSettings()
- Returns:
- Notification settings.
-
provisioningState
public com.pulumi.core.Output<java.lang.String> provisioningState()
- Returns:
- The provisioning status of the resource.
-
status
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> status()
- Returns:
- The status of the schedule (i.e. Enabled, Disabled)
-
tags
public com.pulumi.core.Output<java.util.Optional<java.util.Map<java.lang.String,java.lang.String>>> tags()
- Returns:
- The tags of the resource.
-
targetResourceId
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> targetResourceId()
- Returns:
- The resource ID to which the schedule belongs
-
taskType
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> taskType()
- Returns:
- The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
-
timeZoneId
public com.pulumi.core.Output<java.util.Optional<java.lang.String>> timeZoneId()
- Returns:
- 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)
-
type
public com.pulumi.core.Output<java.lang.String> type()
- Returns:
- The type of the resource.
-
uniqueIdentifier
public com.pulumi.core.Output<java.lang.String> uniqueIdentifier()
- Returns:
- The unique immutable identifier of a resource (Guid).
-
weeklyRecurrence
public com.pulumi.core.Output<java.util.Optional<WeekDetailsResponse>> weeklyRecurrence()
- Returns:
- If the schedule will occur only some days of the week, specify the weekly recurrence.
-
get
public static ServiceFabricSchedule get(java.lang.String name, com.pulumi.core.Output<java.lang.String> id, @Nullable com.pulumi.resources.CustomResourceOptions options)
Get an existing Host resource's state with the given name, ID, and optional extra properties used to qualify the lookup.- Parameters:
name
- The _unique_ name of the resulting resource.id
- The _unique_ provider ID of the resource to lookup.options
- Optional settings to control the behavior of the CustomResource.
-
-