com.pulumi.azurenative.devtestlab.VirtualMachineSchedule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.devtestlab;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.devtestlab.VirtualMachineScheduleArgs;
import com.pulumi.azurenative.devtestlab.outputs.DayDetailsResponse;
import com.pulumi.azurenative.devtestlab.outputs.HourDetailsResponse;
import com.pulumi.azurenative.devtestlab.outputs.NotificationSettingsResponse;
import com.pulumi.azurenative.devtestlab.outputs.WeekDetailsResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* A schedule.
* Azure REST API version: 2018-09-15. Prior API version in Azure Native 1.x: 2018-09-15.
*
* Other available API versions: 2016-05-15.
*
* ## Example Usage
* ### VirtualMachineSchedules_CreateOrUpdate
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.devtestlab.VirtualMachineSchedule;
* import com.pulumi.azurenative.devtestlab.VirtualMachineScheduleArgs;
* import com.pulumi.azurenative.devtestlab.inputs.DayDetailsArgs;
* import com.pulumi.azurenative.devtestlab.inputs.HourDetailsArgs;
* import com.pulumi.azurenative.devtestlab.inputs.NotificationSettingsArgs;
* 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 virtualMachineSchedule = new VirtualMachineSchedule("virtualMachineSchedule", VirtualMachineScheduleArgs.builder()
* .dailyRecurrence(DayDetailsArgs.builder()
* .time("1900")
* .build())
* .hourlyRecurrence(HourDetailsArgs.builder()
* .minute(30)
* .build())
* .labName("{labName}")
* .location("{location}")
* .name("LabVmsShutdown")
* .notificationSettings(NotificationSettingsArgs.builder()
* .emailRecipient("{email}")
* .notificationLocale("EN")
* .status("Enabled")
* .timeInMinutes(30)
* .webhookUrl("{webhookUrl}")
* .build())
* .resourceGroupName("resourceGroupName")
* .status("Enabled")
* .tags(Map.of("tagName1", "tagValue1"))
* .targetResourceId("/subscriptions/{subscriptionId}/resourcegroups/resourceGroupName/providers/microsoft.devtestlab/labs/{labName}/virtualMachines/{vmName}")
* .taskType("LabVmsShutdownTask")
* .timeZoneId("Pacific Standard Time")
* .virtualMachineName("{vmName}")
* .weeklyRecurrence(WeekDetailsArgs.builder()
* .time("1700")
* .weekdays(
* "Friday",
* "Saturday",
* "Sunday")
* .build())
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:devtestlab:VirtualMachineSchedule LabVmsShutdown /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{virtualMachineName}/schedules/{name}
* ```
*
*/
@ResourceType(type="azure-native:devtestlab:VirtualMachineSchedule")
public class VirtualMachineSchedule extends com.pulumi.resources.CustomResource {
/**
* The creation date of the schedule.
*
*/
@Export(name="createdDate", refs={String.class}, tree="[0]")
private Output createdDate;
/**
* @return The creation date of the schedule.
*
*/
public Output createdDate() {
return this.createdDate;
}
/**
* If the schedule will occur once each day of the week, specify the daily recurrence.
*
*/
@Export(name="dailyRecurrence", refs={DayDetailsResponse.class}, tree="[0]")
private Output* @Nullable */ DayDetailsResponse> dailyRecurrence;
/**
* @return If the schedule will occur once each day of the week, specify the daily recurrence.
*
*/
public Output> dailyRecurrence() {
return Codegen.optional(this.dailyRecurrence);
}
/**
* If the schedule will occur multiple times a day, specify the hourly recurrence.
*
*/
@Export(name="hourlyRecurrence", refs={HourDetailsResponse.class}, tree="[0]")
private Output* @Nullable */ HourDetailsResponse> hourlyRecurrence;
/**
* @return If the schedule will occur multiple times a day, specify the hourly recurrence.
*
*/
public Output> hourlyRecurrence() {
return Codegen.optional(this.hourlyRecurrence);
}
/**
* The location of the resource.
*
*/
@Export(name="location", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> location;
/**
* @return The location of the resource.
*
*/
public Output> location() {
return Codegen.optional(this.location);
}
/**
* The name of the resource.
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name of the resource.
*
*/
public Output name() {
return this.name;
}
/**
* Notification settings.
*
*/
@Export(name="notificationSettings", refs={NotificationSettingsResponse.class}, tree="[0]")
private Output* @Nullable */ NotificationSettingsResponse> notificationSettings;
/**
* @return Notification settings.
*
*/
public Output> notificationSettings() {
return Codegen.optional(this.notificationSettings);
}
/**
* The provisioning status of the resource.
*
*/
@Export(name="provisioningState", refs={String.class}, tree="[0]")
private Output provisioningState;
/**
* @return The provisioning status of the resource.
*
*/
public Output provisioningState() {
return this.provisioningState;
}
/**
* The status of the schedule (i.e. Enabled, Disabled)
*
*/
@Export(name="status", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> status;
/**
* @return The status of the schedule (i.e. Enabled, Disabled)
*
*/
public Output> status() {
return Codegen.optional(this.status);
}
/**
* The tags of the resource.
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return The tags of the resource.
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* The resource ID to which the schedule belongs
*
*/
@Export(name="targetResourceId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> targetResourceId;
/**
* @return The resource ID to which the schedule belongs
*
*/
public Output> targetResourceId() {
return Codegen.optional(this.targetResourceId);
}
/**
* The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
*
*/
@Export(name="taskType", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> taskType;
/**
* @return The task type of the schedule (e.g. LabVmsShutdownTask, LabVmAutoStart).
*
*/
public Output> taskType() {
return Codegen.optional(this.taskType);
}
/**
* 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)
*
*/
@Export(name="timeZoneId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> timeZoneId;
/**
* @return 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)
*
*/
public Output> timeZoneId() {
return Codegen.optional(this.timeZoneId);
}
/**
* The type of the resource.
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return The type of the resource.
*
*/
public Output type() {
return this.type;
}
/**
* The unique immutable identifier of a resource (Guid).
*
*/
@Export(name="uniqueIdentifier", refs={String.class}, tree="[0]")
private Output uniqueIdentifier;
/**
* @return The unique immutable identifier of a resource (Guid).
*
*/
public Output uniqueIdentifier() {
return this.uniqueIdentifier;
}
/**
* If the schedule will occur only some days of the week, specify the weekly recurrence.
*
*/
@Export(name="weeklyRecurrence", refs={WeekDetailsResponse.class}, tree="[0]")
private Output* @Nullable */ WeekDetailsResponse> weeklyRecurrence;
/**
* @return If the schedule will occur only some days of the week, specify the weekly recurrence.
*
*/
public Output> weeklyRecurrence() {
return Codegen.optional(this.weeklyRecurrence);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public VirtualMachineSchedule(java.lang.String name) {
this(name, VirtualMachineScheduleArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public VirtualMachineSchedule(java.lang.String name, VirtualMachineScheduleArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public VirtualMachineSchedule(java.lang.String name, VirtualMachineScheduleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:devtestlab:VirtualMachineSchedule", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private VirtualMachineSchedule(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:devtestlab:VirtualMachineSchedule", name, null, makeResourceOptions(options, id), false);
}
private static VirtualMachineScheduleArgs makeArgs(VirtualMachineScheduleArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? VirtualMachineScheduleArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:devtestlab/v20160515:VirtualMachineSchedule").build()),
Output.of(Alias.builder().type("azure-native:devtestlab/v20180915:VirtualMachineSchedule").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static VirtualMachineSchedule get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new VirtualMachineSchedule(name, id, options);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy