import * as pulumi from "@pulumi/pulumi"; /** * Manages the Server Vulnerability Assesments Setting for Azure Security Center. * * > **Note:** This resource requires the `Owner` permission on the Subscription. * * > **Note:** Deletion of this resource disables the setting. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.securitycenter.ServerVulnerabilityAssessmentsSetting("example", {vulnerabilityAssessmentProvider: "MdeTvm"}); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Security` - 2023-05-01 * * ## Import * * The setting can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:securitycenter/serverVulnerabilityAssessmentsSetting:ServerVulnerabilityAssessmentsSetting example /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Security/serverVulnerabilityAssessmentsSettings/AzureServersSetting * ``` */ export declare class ServerVulnerabilityAssessmentsSetting extends pulumi.CustomResource { /** * Get an existing ServerVulnerabilityAssessmentsSetting 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?: ServerVulnerabilityAssessmentsSettingState, opts?: pulumi.CustomResourceOptions): ServerVulnerabilityAssessmentsSetting; /** * Returns true if the given object is an instance of ServerVulnerabilityAssessmentsSetting. 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 ServerVulnerabilityAssessmentsSetting; /** * The vulnerability assesment provider to use. The only possible values is `MdeTvm`. */ readonly vulnerabilityAssessmentProvider: pulumi.Output; /** * Create a ServerVulnerabilityAssessmentsSetting 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: ServerVulnerabilityAssessmentsSettingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServerVulnerabilityAssessmentsSetting resources. */ export interface ServerVulnerabilityAssessmentsSettingState { /** * The vulnerability assesment provider to use. The only possible values is `MdeTvm`. */ vulnerabilityAssessmentProvider?: pulumi.Input; } /** * The set of arguments for constructing a ServerVulnerabilityAssessmentsSetting resource. */ export interface ServerVulnerabilityAssessmentsSettingArgs { /** * The vulnerability assesment provider to use. The only possible values is `MdeTvm`. */ vulnerabilityAssessmentProvider: pulumi.Input; }