import * as pulumi from "@pulumi/pulumi"; /** * Manages an Azure Server Vulnerability Assessment (Qualys) to a VM. * * > **Note:** Azure Defender has to be enabled on the subscription in order for this resource to work. * See this [documentation](https://docs.microsoft.com/azure/security-center/security-center-get-started) to get started. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", { * name: "example-vnet", * resourceGroupName: example.name, * addressSpaces: ["192.168.1.0/24"], * location: example.location, * }); * const exampleSubnet = new azure.network.Subnet("example", { * name: "example-subnet", * resourceGroupName: example.name, * virtualNetworkName: exampleVirtualNetwork.name, * addressPrefixes: ["192.168.1.0/24"], * }); * const exampleNetworkInterface = new azure.network.NetworkInterface("example", { * name: "example-nic", * location: example.location, * resourceGroupName: example.name, * ipConfigurations: [{ * name: "vm-example", * subnetId: exampleSubnet.id, * privateIpAddressAllocation: "Dynamic", * }], * }); * const exampleLinuxVirtualMachine = new azure.compute.LinuxVirtualMachine("example", { * name: "example-vm", * location: example.location, * resourceGroupName: example.name, * size: "Standard_B1s", * adminUsername: "testadmin", * adminPassword: "Password1234!", * disablePasswordAuthentication: false, * sourceImageReference: { * publisher: "Canonical", * offer: "0001-com-ubuntu-server-jammy", * sku: "22_04-lts", * version: "latest", * }, * osDisk: { * caching: "ReadWrite", * storageAccountType: "Standard_LRS", * }, * networkInterfaceIds: [exampleNetworkInterface.id], * }); * const exampleServerVulnerabilityAssessmentVirtualMachine = new azure.securitycenter.ServerVulnerabilityAssessmentVirtualMachine("example", {virtualMachineId: exampleLinuxVirtualMachine.id}); * ``` * * ## Import * * Server Vulnerability Assessments can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:securitycenter/serverVulnerabilityAssessmentVirtualMachine:ServerVulnerabilityAssessmentVirtualMachine example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group-name/providers/Microsoft.Compute/virtualMachines/vm-name/providers/Microsoft.Security/serverVulnerabilityAssessments/Default * ``` */ export declare class ServerVulnerabilityAssessmentVirtualMachine extends pulumi.CustomResource { /** * Get an existing ServerVulnerabilityAssessmentVirtualMachine 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?: ServerVulnerabilityAssessmentVirtualMachineState, opts?: pulumi.CustomResourceOptions): ServerVulnerabilityAssessmentVirtualMachine; /** * Returns true if the given object is an instance of ServerVulnerabilityAssessmentVirtualMachine. 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 ServerVulnerabilityAssessmentVirtualMachine; /** * The ID of the virtual machine to be monitored by vulnerability assessment. Changing this forces a new resource to be created. */ readonly virtualMachineId: pulumi.Output; /** * Create a ServerVulnerabilityAssessmentVirtualMachine 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: ServerVulnerabilityAssessmentVirtualMachineArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServerVulnerabilityAssessmentVirtualMachine resources. */ export interface ServerVulnerabilityAssessmentVirtualMachineState { /** * The ID of the virtual machine to be monitored by vulnerability assessment. Changing this forces a new resource to be created. */ virtualMachineId?: pulumi.Input; } /** * The set of arguments for constructing a ServerVulnerabilityAssessmentVirtualMachine resource. */ export interface ServerVulnerabilityAssessmentVirtualMachineArgs { /** * The ID of the virtual machine to be monitored by vulnerability assessment. Changing this forces a new resource to be created. */ virtualMachineId: pulumi.Input; }