All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.devtest.kotlin.GlobalVMShutdownScheduleArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.devtest.kotlin

import com.pulumi.azure.devtest.GlobalVMShutdownScheduleArgs.builder
import com.pulumi.azure.devtest.kotlin.inputs.GlobalVMShutdownScheduleNotificationSettingsArgs
import com.pulumi.azure.devtest.kotlin.inputs.GlobalVMShutdownScheduleNotificationSettingsArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 * Manages automated shutdown schedules for Azure VMs that are not within an Azure DevTest Lab. While this is part of the DevTest Labs service in Azure,
 * this resource applies only to standard VMs, not DevTest Lab VMs. To manage automated shutdown schedules for DevTest Lab VMs, reference the
 * `azure.devtest.Schedule` resource
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as azure from "@pulumi/azure";
 * const example = new azure.core.ResourceGroup("example", {
 *     name: "sample-rg",
 *     location: "West Europe",
 * });
 * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
 *     name: "sample-vnet",
 *     addressSpaces: ["10.0.0.0/16"],
 *     location: example.location,
 *     resourceGroupName: example.name,
 * });
 * const exampleSubnet = new azure.network.Subnet("example", {
 *     name: "sample-subnet",
 *     resourceGroupName: example.name,
 *     virtualNetworkName: exampleVirtualNetwork.name,
 *     addressPrefixes: ["10.0.2.0/24"],
 * });
 * const exampleNetworkInterface = new azure.network.NetworkInterface("example", {
 *     name: "sample-nic",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     ipConfigurations: [{
 *         name: "testconfiguration1",
 *         subnetId: exampleSubnet.id,
 *         privateIpAddressAllocation: "Dynamic",
 *     }],
 * });
 * const exampleLinuxVirtualMachine = new azure.compute.LinuxVirtualMachine("example", {
 *     name: "SampleVM",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     networkInterfaceIds: [exampleNetworkInterface.id],
 *     size: "Standard_B2s",
 *     sourceImageReference: {
 *         publisher: "Canonical",
 *         offer: "0001-com-ubuntu-server-jammy",
 *         sku: "22_04-lts",
 *         version: "latest",
 *     },
 *     osDisk: {
 *         name: "myosdisk-example",
 *         caching: "ReadWrite",
 *         storageAccountType: "Standard_LRS",
 *     },
 *     adminUsername: "testadmin",
 *     adminPassword: "Password1234!",
 *     disablePasswordAuthentication: false,
 * });
 * const exampleGlobalVMShutdownSchedule = new azure.devtest.GlobalVMShutdownSchedule("example", {
 *     virtualMachineId: exampleLinuxVirtualMachine.id,
 *     location: example.location,
 *     enabled: true,
 *     dailyRecurrenceTime: "1100",
 *     timezone: "Pacific Standard Time",
 *     notificationSettings: {
 *         enabled: true,
 *         timeInMinutes: 60,
 *         webhookUrl: "https://sample-webhook-url.example.com",
 *     },
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * example = azure.core.ResourceGroup("example",
 *     name="sample-rg",
 *     location="West Europe")
 * example_virtual_network = azure.network.VirtualNetwork("example",
 *     name="sample-vnet",
 *     address_spaces=["10.0.0.0/16"],
 *     location=example.location,
 *     resource_group_name=example.name)
 * example_subnet = azure.network.Subnet("example",
 *     name="sample-subnet",
 *     resource_group_name=example.name,
 *     virtual_network_name=example_virtual_network.name,
 *     address_prefixes=["10.0.2.0/24"])
 * example_network_interface = azure.network.NetworkInterface("example",
 *     name="sample-nic",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     ip_configurations=[azure.network.NetworkInterfaceIpConfigurationArgs(
 *         name="testconfiguration1",
 *         subnet_id=example_subnet.id,
 *         private_ip_address_allocation="Dynamic",
 *     )])
 * example_linux_virtual_machine = azure.compute.LinuxVirtualMachine("example",
 *     name="SampleVM",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     network_interface_ids=[example_network_interface.id],
 *     size="Standard_B2s",
 *     source_image_reference=azure.compute.LinuxVirtualMachineSourceImageReferenceArgs(
 *         publisher="Canonical",
 *         offer="0001-com-ubuntu-server-jammy",
 *         sku="22_04-lts",
 *         version="latest",
 *     ),
 *     os_disk=azure.compute.LinuxVirtualMachineOsDiskArgs(
 *         name="myosdisk-example",
 *         caching="ReadWrite",
 *         storage_account_type="Standard_LRS",
 *     ),
 *     admin_username="testadmin",
 *     admin_password="Password1234!",
 *     disable_password_authentication=False)
 * example_global_vm_shutdown_schedule = azure.devtest.GlobalVMShutdownSchedule("example",
 *     virtual_machine_id=example_linux_virtual_machine.id,
 *     location=example.location,
 *     enabled=True,
 *     daily_recurrence_time="1100",
 *     timezone="Pacific Standard Time",
 *     notification_settings=azure.devtest.GlobalVMShutdownScheduleNotificationSettingsArgs(
 *         enabled=True,
 *         time_in_minutes=60,
 *         webhook_url="https://sample-webhook-url.example.com",
 *     ))
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Azure = Pulumi.Azure;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Azure.Core.ResourceGroup("example", new()
 *     {
 *         Name = "sample-rg",
 *         Location = "West Europe",
 *     });
 *     var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
 *     {
 *         Name = "sample-vnet",
 *         AddressSpaces = new[]
 *         {
 *             "10.0.0.0/16",
 *         },
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *     });
 *     var exampleSubnet = new Azure.Network.Subnet("example", new()
 *     {
 *         Name = "sample-subnet",
 *         ResourceGroupName = example.Name,
 *         VirtualNetworkName = exampleVirtualNetwork.Name,
 *         AddressPrefixes = new[]
 *         {
 *             "10.0.2.0/24",
 *         },
 *     });
 *     var exampleNetworkInterface = new Azure.Network.NetworkInterface("example", new()
 *     {
 *         Name = "sample-nic",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         IpConfigurations = new[]
 *         {
 *             new Azure.Network.Inputs.NetworkInterfaceIpConfigurationArgs
 *             {
 *                 Name = "testconfiguration1",
 *                 SubnetId = exampleSubnet.Id,
 *                 PrivateIpAddressAllocation = "Dynamic",
 *             },
 *         },
 *     });
 *     var exampleLinuxVirtualMachine = new Azure.Compute.LinuxVirtualMachine("example", new()
 *     {
 *         Name = "SampleVM",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         NetworkInterfaceIds = new[]
 *         {
 *             exampleNetworkInterface.Id,
 *         },
 *         Size = "Standard_B2s",
 *         SourceImageReference = new Azure.Compute.Inputs.LinuxVirtualMachineSourceImageReferenceArgs
 *         {
 *             Publisher = "Canonical",
 *             Offer = "0001-com-ubuntu-server-jammy",
 *             Sku = "22_04-lts",
 *             Version = "latest",
 *         },
 *         OsDisk = new Azure.Compute.Inputs.LinuxVirtualMachineOsDiskArgs
 *         {
 *             Name = "myosdisk-example",
 *             Caching = "ReadWrite",
 *             StorageAccountType = "Standard_LRS",
 *         },
 *         AdminUsername = "testadmin",
 *         AdminPassword = "Password1234!",
 *         DisablePasswordAuthentication = false,
 *     });
 *     var exampleGlobalVMShutdownSchedule = new Azure.DevTest.GlobalVMShutdownSchedule("example", new()
 *     {
 *         VirtualMachineId = exampleLinuxVirtualMachine.Id,
 *         Location = example.Location,
 *         Enabled = true,
 *         DailyRecurrenceTime = "1100",
 *         Timezone = "Pacific Standard Time",
 *         NotificationSettings = new Azure.DevTest.Inputs.GlobalVMShutdownScheduleNotificationSettingsArgs
 *         {
 *             Enabled = true,
 *             TimeInMinutes = 60,
 *             WebhookUrl = "https://sample-webhook-url.example.com",
 *         },
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/compute"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/devtest"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
 * 			Name:     pulumi.String("sample-rg"),
 * 			Location: pulumi.String("West Europe"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
 * 			Name: pulumi.String("sample-vnet"),
 * 			AddressSpaces: pulumi.StringArray{
 * 				pulumi.String("10.0.0.0/16"),
 * 			},
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
 * 			Name:               pulumi.String("sample-subnet"),
 * 			ResourceGroupName:  example.Name,
 * 			VirtualNetworkName: exampleVirtualNetwork.Name,
 * 			AddressPrefixes: pulumi.StringArray{
 * 				pulumi.String("10.0.2.0/24"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleNetworkInterface, err := network.NewNetworkInterface(ctx, "example", &network.NetworkInterfaceArgs{
 * 			Name:              pulumi.String("sample-nic"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			IpConfigurations: network.NetworkInterfaceIpConfigurationArray{
 * 				&network.NetworkInterfaceIpConfigurationArgs{
 * 					Name:                       pulumi.String("testconfiguration1"),
 * 					SubnetId:                   exampleSubnet.ID(),
 * 					PrivateIpAddressAllocation: pulumi.String("Dynamic"),
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleLinuxVirtualMachine, err := compute.NewLinuxVirtualMachine(ctx, "example", &compute.LinuxVirtualMachineArgs{
 * 			Name:              pulumi.String("SampleVM"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			NetworkInterfaceIds: pulumi.StringArray{
 * 				exampleNetworkInterface.ID(),
 * 			},
 * 			Size: pulumi.String("Standard_B2s"),
 * 			SourceImageReference: &compute.LinuxVirtualMachineSourceImageReferenceArgs{
 * 				Publisher: pulumi.String("Canonical"),
 * 				Offer:     pulumi.String("0001-com-ubuntu-server-jammy"),
 * 				Sku:       pulumi.String("22_04-lts"),
 * 				Version:   pulumi.String("latest"),
 * 			},
 * 			OsDisk: &compute.LinuxVirtualMachineOsDiskArgs{
 * 				Name:               pulumi.String("myosdisk-example"),
 * 				Caching:            pulumi.String("ReadWrite"),
 * 				StorageAccountType: pulumi.String("Standard_LRS"),
 * 			},
 * 			AdminUsername:                 pulumi.String("testadmin"),
 * 			AdminPassword:                 pulumi.String("Password1234!"),
 * 			DisablePasswordAuthentication: pulumi.Bool(false),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = devtest.NewGlobalVMShutdownSchedule(ctx, "example", &devtest.GlobalVMShutdownScheduleArgs{
 * 			VirtualMachineId:    exampleLinuxVirtualMachine.ID(),
 * 			Location:            example.Location,
 * 			Enabled:             pulumi.Bool(true),
 * 			DailyRecurrenceTime: pulumi.String("1100"),
 * 			Timezone:            pulumi.String("Pacific Standard Time"),
 * 			NotificationSettings: &devtest.GlobalVMShutdownScheduleNotificationSettingsArgs{
 * 				Enabled:       pulumi.Bool(true),
 * 				TimeInMinutes: pulumi.Int(60),
 * 				WebhookUrl:    pulumi.String("https://sample-webhook-url.example.com"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * package generated_program;
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.network.VirtualNetwork;
 * import com.pulumi.azure.network.VirtualNetworkArgs;
 * import com.pulumi.azure.network.Subnet;
 * import com.pulumi.azure.network.SubnetArgs;
 * import com.pulumi.azure.network.NetworkInterface;
 * import com.pulumi.azure.network.NetworkInterfaceArgs;
 * import com.pulumi.azure.network.inputs.NetworkInterfaceIpConfigurationArgs;
 * import com.pulumi.azure.compute.LinuxVirtualMachine;
 * import com.pulumi.azure.compute.LinuxVirtualMachineArgs;
 * import com.pulumi.azure.compute.inputs.LinuxVirtualMachineSourceImageReferenceArgs;
 * import com.pulumi.azure.compute.inputs.LinuxVirtualMachineOsDiskArgs;
 * import com.pulumi.azure.devtest.GlobalVMShutdownSchedule;
 * import com.pulumi.azure.devtest.GlobalVMShutdownScheduleArgs;
 * import com.pulumi.azure.devtest.inputs.GlobalVMShutdownScheduleNotificationSettingsArgs;
 * 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("sample-rg")
 *             .location("West Europe")
 *             .build());
 *         var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
 *             .name("sample-vnet")
 *             .addressSpaces("10.0.0.0/16")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .build());
 *         var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
 *             .name("sample-subnet")
 *             .resourceGroupName(example.name())
 *             .virtualNetworkName(exampleVirtualNetwork.name())
 *             .addressPrefixes("10.0.2.0/24")
 *             .build());
 *         var exampleNetworkInterface = new NetworkInterface("exampleNetworkInterface", NetworkInterfaceArgs.builder()
 *             .name("sample-nic")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .ipConfigurations(NetworkInterfaceIpConfigurationArgs.builder()
 *                 .name("testconfiguration1")
 *                 .subnetId(exampleSubnet.id())
 *                 .privateIpAddressAllocation("Dynamic")
 *                 .build())
 *             .build());
 *         var exampleLinuxVirtualMachine = new LinuxVirtualMachine("exampleLinuxVirtualMachine", LinuxVirtualMachineArgs.builder()
 *             .name("SampleVM")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .networkInterfaceIds(exampleNetworkInterface.id())
 *             .size("Standard_B2s")
 *             .sourceImageReference(LinuxVirtualMachineSourceImageReferenceArgs.builder()
 *                 .publisher("Canonical")
 *                 .offer("0001-com-ubuntu-server-jammy")
 *                 .sku("22_04-lts")
 *                 .version("latest")
 *                 .build())
 *             .osDisk(LinuxVirtualMachineOsDiskArgs.builder()
 *                 .name("myosdisk-example")
 *                 .caching("ReadWrite")
 *                 .storageAccountType("Standard_LRS")
 *                 .build())
 *             .adminUsername("testadmin")
 *             .adminPassword("Password1234!")
 *             .disablePasswordAuthentication(false)
 *             .build());
 *         var exampleGlobalVMShutdownSchedule = new GlobalVMShutdownSchedule("exampleGlobalVMShutdownSchedule", GlobalVMShutdownScheduleArgs.builder()
 *             .virtualMachineId(exampleLinuxVirtualMachine.id())
 *             .location(example.location())
 *             .enabled(true)
 *             .dailyRecurrenceTime("1100")
 *             .timezone("Pacific Standard Time")
 *             .notificationSettings(GlobalVMShutdownScheduleNotificationSettingsArgs.builder()
 *                 .enabled(true)
 *                 .timeInMinutes("60")
 *                 .webhookUrl("https://sample-webhook-url.example.com")
 *                 .build())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: sample-rg
 *       location: West Europe
 *   exampleVirtualNetwork:
 *     type: azure:network:VirtualNetwork
 *     name: example
 *     properties:
 *       name: sample-vnet
 *       addressSpaces:
 *         - 10.0.0.0/16
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *   exampleSubnet:
 *     type: azure:network:Subnet
 *     name: example
 *     properties:
 *       name: sample-subnet
 *       resourceGroupName: ${example.name}
 *       virtualNetworkName: ${exampleVirtualNetwork.name}
 *       addressPrefixes:
 *         - 10.0.2.0/24
 *   exampleNetworkInterface:
 *     type: azure:network:NetworkInterface
 *     name: example
 *     properties:
 *       name: sample-nic
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       ipConfigurations:
 *         - name: testconfiguration1
 *           subnetId: ${exampleSubnet.id}
 *           privateIpAddressAllocation: Dynamic
 *   exampleLinuxVirtualMachine:
 *     type: azure:compute:LinuxVirtualMachine
 *     name: example
 *     properties:
 *       name: SampleVM
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       networkInterfaceIds:
 *         - ${exampleNetworkInterface.id}
 *       size: Standard_B2s
 *       sourceImageReference:
 *         publisher: Canonical
 *         offer: 0001-com-ubuntu-server-jammy
 *         sku: 22_04-lts
 *         version: latest
 *       osDisk:
 *         name: myosdisk-example
 *         caching: ReadWrite
 *         storageAccountType: Standard_LRS
 *       adminUsername: testadmin
 *       adminPassword: Password1234!
 *       disablePasswordAuthentication: false
 *   exampleGlobalVMShutdownSchedule:
 *     type: azure:devtest:GlobalVMShutdownSchedule
 *     name: example
 *     properties:
 *       virtualMachineId: ${exampleLinuxVirtualMachine.id}
 *       location: ${example.location}
 *       enabled: true
 *       dailyRecurrenceTime: '1100'
 *       timezone: Pacific Standard Time
 *       notificationSettings:
 *         enabled: true
 *         timeInMinutes: '60'
 *         webhookUrl: https://sample-webhook-url.example.com
 * ```
 * 
 * ## Import
 * An existing Dev Test Global Shutdown Schedule can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:devtest/globalVMShutdownSchedule:GlobalVMShutdownSchedule example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-rg/providers/Microsoft.DevTestLab/schedules/shutdown-computevm-SampleVM
 * ```
 * The name of the resource within the `resource id` will always follow the format `shutdown-computevm-` where `` is replaced by the name of the target Virtual Machine
 * @property dailyRecurrenceTime The time each day when the schedule takes effect. Must match the format HHmm where HH is 00-23 and mm is 00-59 (e.g. 0930, 2300, etc.)
 * @property enabled Whether to enable the schedule. Possible values are `true` and `false`. Defaults to `true`.
 * @property location The location where the schedule is created. Changing this forces a new resource to be created.
 * @property notificationSettings The notification setting of a schedule. A `notification_settings` block as defined below.
 * @property tags A mapping of tags to assign to the resource.
 * @property timezone The time zone ID (e.g. Pacific Standard time). Refer to this guide for a [full list of accepted time zone names](https://jackstromberg.com/2017/01/list-of-time-zones-consumed-by-azure/).
 * @property virtualMachineId The resource ID of the target ARM-based Virtual Machine. Changing this forces a new resource to be created.
 */
public data class GlobalVMShutdownScheduleArgs(
    public val dailyRecurrenceTime: Output? = null,
    public val enabled: Output? = null,
    public val location: Output? = null,
    public val notificationSettings: Output? = null,
    public val tags: Output>? = null,
    public val timezone: Output? = null,
    public val virtualMachineId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.devtest.GlobalVMShutdownScheduleArgs =
        com.pulumi.azure.devtest.GlobalVMShutdownScheduleArgs.builder()
            .dailyRecurrenceTime(dailyRecurrenceTime?.applyValue({ args0 -> args0 }))
            .enabled(enabled?.applyValue({ args0 -> args0 }))
            .location(location?.applyValue({ args0 -> args0 }))
            .notificationSettings(
                notificationSettings?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            )
            .tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.key.to(args0.value) }).toMap() }))
            .timezone(timezone?.applyValue({ args0 -> args0 }))
            .virtualMachineId(virtualMachineId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [GlobalVMShutdownScheduleArgs].
 */
@PulumiTagMarker
public class GlobalVMShutdownScheduleArgsBuilder internal constructor() {
    private var dailyRecurrenceTime: Output? = null

    private var enabled: Output? = null

    private var location: Output? = null

    private var notificationSettings: Output? = null

    private var tags: Output>? = null

    private var timezone: Output? = null

    private var virtualMachineId: Output? = null

    /**
     * @param value The time each day when the schedule takes effect. Must match the format HHmm where HH is 00-23 and mm is 00-59 (e.g. 0930, 2300, etc.)
     */
    @JvmName("amjfbiabbvidlurh")
    public suspend fun dailyRecurrenceTime(`value`: Output) {
        this.dailyRecurrenceTime = value
    }

    /**
     * @param value Whether to enable the schedule. Possible values are `true` and `false`. Defaults to `true`.
     */
    @JvmName("nqfseneyjjkwiaky")
    public suspend fun enabled(`value`: Output) {
        this.enabled = value
    }

    /**
     * @param value The location where the schedule is created. Changing this forces a new resource to be created.
     */
    @JvmName("mlmmalijattshuss")
    public suspend fun location(`value`: Output) {
        this.location = value
    }

    /**
     * @param value The notification setting of a schedule. A `notification_settings` block as defined below.
     */
    @JvmName("biliqnythhgkprvc")
    public suspend
    fun notificationSettings(`value`: Output) {
        this.notificationSettings = value
    }

    /**
     * @param value A mapping of tags to assign to the resource.
     */
    @JvmName("bvtabymsvlcelxks")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    /**
     * @param value The time zone ID (e.g. Pacific Standard time). Refer to this guide for a [full list of accepted time zone names](https://jackstromberg.com/2017/01/list-of-time-zones-consumed-by-azure/).
     */
    @JvmName("okfrmsgjinnccjco")
    public suspend fun timezone(`value`: Output) {
        this.timezone = value
    }

    /**
     * @param value The resource ID of the target ARM-based Virtual Machine. Changing this forces a new resource to be created.
     */
    @JvmName("mlaletstoiynijgh")
    public suspend fun virtualMachineId(`value`: Output) {
        this.virtualMachineId = value
    }

    /**
     * @param value The time each day when the schedule takes effect. Must match the format HHmm where HH is 00-23 and mm is 00-59 (e.g. 0930, 2300, etc.)
     */
    @JvmName("titpcgcfqdmrrmjy")
    public suspend fun dailyRecurrenceTime(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dailyRecurrenceTime = mapped
    }

    /**
     * @param value Whether to enable the schedule. Possible values are `true` and `false`. Defaults to `true`.
     */
    @JvmName("dgvggriuaqvdcbbl")
    public suspend fun enabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.enabled = mapped
    }

    /**
     * @param value The location where the schedule is created. Changing this forces a new resource to be created.
     */
    @JvmName("vqbfcouspimrkxkt")
    public suspend fun location(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.location = mapped
    }

    /**
     * @param value The notification setting of a schedule. A `notification_settings` block as defined below.
     */
    @JvmName("pvarihfcyqwbkjqi")
    public suspend
    fun notificationSettings(`value`: GlobalVMShutdownScheduleNotificationSettingsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.notificationSettings = mapped
    }

    /**
     * @param argument The notification setting of a schedule. A `notification_settings` block as defined below.
     */
    @JvmName("oprrgayubxlgaghc")
    public suspend
    fun notificationSettings(argument: suspend GlobalVMShutdownScheduleNotificationSettingsArgsBuilder.() -> Unit) {
        val toBeMapped = GlobalVMShutdownScheduleNotificationSettingsArgsBuilder().applySuspend {
            argument()
        }.build()
        val mapped = of(toBeMapped)
        this.notificationSettings = mapped
    }

    /**
     * @param value A mapping of tags to assign to the resource.
     */
    @JvmName("iwpxxrijukrgytbu")
    public suspend fun tags(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param values A mapping of tags to assign to the resource.
     */
    @JvmName("ojyrmrkvqhwssqyh")
    public fun tags(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value The time zone ID (e.g. Pacific Standard time). Refer to this guide for a [full list of accepted time zone names](https://jackstromberg.com/2017/01/list-of-time-zones-consumed-by-azure/).
     */
    @JvmName("vbpcsycsugywncod")
    public suspend fun timezone(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.timezone = mapped
    }

    /**
     * @param value The resource ID of the target ARM-based Virtual Machine. Changing this forces a new resource to be created.
     */
    @JvmName("oyxpavcmlrhiixmo")
    public suspend fun virtualMachineId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.virtualMachineId = mapped
    }

    internal fun build(): GlobalVMShutdownScheduleArgs = GlobalVMShutdownScheduleArgs(
        dailyRecurrenceTime = dailyRecurrenceTime,
        enabled = enabled,
        location = location,
        notificationSettings = notificationSettings,
        tags = tags,
        timezone = timezone,
        virtualMachineId = virtualMachineId,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy