import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
export declare class UpdateWindows extends pulumi.CustomResource {
    /**
     * Get an existing UpdateWindows 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<pulumi.ID>, state?: UpdateWindowsState, opts?: pulumi.CustomResourceOptions): UpdateWindows;
    /**
     * Returns true if the given object is an instance of UpdateWindows.  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 UpdateWindows;
    /**
     * no documentation available
     */
    readonly dailyRecurrence: pulumi.Output<outputs.UpdateWindowsDailyRecurrence | undefined>;
    /**
     * This setting is enabled (`true`) or disabled (`false`)
     */
    readonly enabled: pulumi.Output<boolean>;
    /**
     * no documentation available
     */
    readonly monthlyRecurrence: pulumi.Output<outputs.UpdateWindowsMonthlyRecurrence | undefined>;
    /**
     * Name
     */
    readonly name: pulumi.Output<string>;
    /**
     * no documentation available
     */
    readonly onceRecurrence: pulumi.Output<outputs.UpdateWindowsOnceRecurrence | undefined>;
    /**
     * Possible Values: `MONTHLY`, `ONCE`, `DAILY`, `WEEKLY`
     */
    readonly recurrence: pulumi.Output<string>;
    /**
     * no documentation available
     */
    readonly weeklyRecurrence: pulumi.Output<outputs.UpdateWindowsWeeklyRecurrence | undefined>;
    /**
     * Create a UpdateWindows 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: UpdateWindowsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering UpdateWindows resources.
 */
export interface UpdateWindowsState {
    /**
     * no documentation available
     */
    dailyRecurrence?: pulumi.Input<inputs.UpdateWindowsDailyRecurrence>;
    /**
     * This setting is enabled (`true`) or disabled (`false`)
     */
    enabled?: pulumi.Input<boolean>;
    /**
     * no documentation available
     */
    monthlyRecurrence?: pulumi.Input<inputs.UpdateWindowsMonthlyRecurrence>;
    /**
     * Name
     */
    name?: pulumi.Input<string>;
    /**
     * no documentation available
     */
    onceRecurrence?: pulumi.Input<inputs.UpdateWindowsOnceRecurrence>;
    /**
     * Possible Values: `MONTHLY`, `ONCE`, `DAILY`, `WEEKLY`
     */
    recurrence?: pulumi.Input<string>;
    /**
     * no documentation available
     */
    weeklyRecurrence?: pulumi.Input<inputs.UpdateWindowsWeeklyRecurrence>;
}
/**
 * The set of arguments for constructing a UpdateWindows resource.
 */
export interface UpdateWindowsArgs {
    /**
     * no documentation available
     */
    dailyRecurrence?: pulumi.Input<inputs.UpdateWindowsDailyRecurrence>;
    /**
     * This setting is enabled (`true`) or disabled (`false`)
     */
    enabled: pulumi.Input<boolean>;
    /**
     * no documentation available
     */
    monthlyRecurrence?: pulumi.Input<inputs.UpdateWindowsMonthlyRecurrence>;
    /**
     * Name
     */
    name?: pulumi.Input<string>;
    /**
     * no documentation available
     */
    onceRecurrence?: pulumi.Input<inputs.UpdateWindowsOnceRecurrence>;
    /**
     * Possible Values: `MONTHLY`, `ONCE`, `DAILY`, `WEEKLY`
     */
    recurrence: pulumi.Input<string>;
    /**
     * no documentation available
     */
    weeklyRecurrence?: pulumi.Input<inputs.UpdateWindowsWeeklyRecurrence>;
}
