import * as pulumi from "@pulumi/pulumi"; /** * Manages a maintenance assignment to virtual machine. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * import * as std from "@pulumi/std"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-network", * addressSpaces: ["10.0.0.0/16"], * location: example.location, * resourceGroupName: example.name, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "internal", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["10.0.2.0/24"], * }); * const exampleNetworkInterface = new azure.network.NetworkInterface("example", { * name: "example-nic", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "internal", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleLinuxVirtualMachine = new azure.compute.LinuxVirtualMachine("example", { * name: "example-machine", * resourceGroupName: example.name, * location: example.location, * size: "Standard_F2", * adminUsername: "adminuser", * networkInterfaceIds: [exampleNetworkInterface.id], * adminSshKeys: [{ * username: "adminuser", * publicKey: std.file({ * input: "~/.ssh/id_rsa.pub", * }).then(invoke => invoke.result), * }], * osDisk: { * caching: "ReadWrite", * storageAccountType: "Standard_LRS", * }, * sourceImageReference: { * publisher: "Canonical", * offer: "0001-com-ubuntu-server-jammy", * sku: "22_04-lts", * version: "latest", * }, * }); * const exampleConfiguration = new azure.maintenance.Configuration("example", { * name: "example-mc", * resourceGroupName: example.name, * location: example.location, * scope: "All", * }); * const exampleAssignmentVirtualMachine = new azure.maintenance.AssignmentVirtualMachine("example", { * location: example.location, * maintenanceConfigurationId: exampleConfiguration.id, * virtualMachineId: exampleLinuxVirtualMachine.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Maintenance` - 2023-04-01 * * ## Import * * Maintenance Assignment can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:maintenance/assignmentVirtualMachine:AssignmentVirtualMachine example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.Maintenance/configurationAssignments/assign1 * ``` */ export declare class AssignmentVirtualMachine extends pulumi.CustomResource { /** * Get an existing AssignmentVirtualMachine 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: AssignmentVirtualMachineState, opts?: pulumi.CustomResourceOptions): AssignmentVirtualMachine; /** * Returns true if the given object is an instance of AssignmentVirtualMachine. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AssignmentVirtualMachine; /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created. */ readonly maintenanceConfigurationId: pulumi.Output; /** * Specifies the Virtual Machine ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created. */ readonly virtualMachineId: pulumi.Output; /** * Create a AssignmentVirtualMachine resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: AssignmentVirtualMachineArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AssignmentVirtualMachine resources. */ export interface AssignmentVirtualMachineState { /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created. */ maintenanceConfigurationId?: pulumi.Input; /** * Specifies the Virtual Machine ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created. */ virtualMachineId?: pulumi.Input; } /** * The set of arguments for constructing a AssignmentVirtualMachine resource. */ export interface AssignmentVirtualMachineArgs { /** * Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created. */ maintenanceConfigurationId: pulumi.Input; /** * Specifies the Virtual Machine ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created. */ virtualMachineId: pulumi.Input; }