import * as pulumi from "@pulumi/pulumi"; /** * Manages a Virtual Machine Automanage Configuration Profile Assignment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-rg", * location: "westus", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "examplevnet", * 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: "exampleni", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "internal", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleLinuxVirtualMachine = new azure.compute.LinuxVirtualMachine("example", { * name: "examplevm", * resourceGroupName: example.name, * location: example.location, * size: "Standard_F2", * adminUsername: "adminuser", * adminPassword: "P@$$w0rd1234!", * disablePasswordAuthentication: false, * networkInterfaceIds: [exampleNetworkInterface.id], * 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.automanage.Configuration("example", { * name: "exampleconfig", * resourceGroupName: example.name, * location: example.location, * }); * const exampleAutomanageConfigurationAssignment = new azure.compute.AutomanageConfigurationAssignment("example", { * virtualMachineId: exampleLinuxVirtualMachine.id, * configurationId: exampleConfiguration.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Compute` - 2022-05-04 * * ## Import * * Virtual Machine Automanage Configuration Profile Assignment can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:compute/automanageConfigurationAssignment:AutomanageConfigurationAssignment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Compute/virtualMachines/vm1/providers/Microsoft.AutoManage/configurationProfileAssignments/default * ``` */ export declare class AutomanageConfigurationAssignment extends pulumi.CustomResource { /** * Get an existing AutomanageConfigurationAssignment 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?: AutomanageConfigurationAssignmentState, opts?: pulumi.CustomResourceOptions): AutomanageConfigurationAssignment; /** * Returns true if the given object is an instance of AutomanageConfigurationAssignment. 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 AutomanageConfigurationAssignment; /** * The ARM resource ID of the Automanage Configuration to assign to the Virtual Machine. Changing this forces a new resource to be created. */ readonly configurationId: pulumi.Output; /** * The ARM resource ID of the Virtual Machine to assign the Automanage Configuration to. Changing this forces a new resource to be created. */ readonly virtualMachineId: pulumi.Output; /** * Create a AutomanageConfigurationAssignment 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: AutomanageConfigurationAssignmentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering AutomanageConfigurationAssignment resources. */ export interface AutomanageConfigurationAssignmentState { /** * The ARM resource ID of the Automanage Configuration to assign to the Virtual Machine. Changing this forces a new resource to be created. */ configurationId?: pulumi.Input; /** * The ARM resource ID of the Virtual Machine to assign the Automanage Configuration to. Changing this forces a new resource to be created. */ virtualMachineId?: pulumi.Input; } /** * The set of arguments for constructing a AutomanageConfigurationAssignment resource. */ export interface AutomanageConfigurationAssignmentArgs { /** * The ARM resource ID of the Automanage Configuration to assign to the Virtual Machine. Changing this forces a new resource to be created. */ configurationId: pulumi.Input; /** * The ARM resource ID of the Virtual Machine to assign the Automanage Configuration to. Changing this forces a new resource to be created. */ virtualMachineId: pulumi.Input; }