import * as pulumi from "@pulumi/pulumi"; export declare class ServerDiskBackupSchedule extends pulumi.CustomResource { /** * Get an existing ServerDiskBackupSchedule 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?: ServerDiskBackupScheduleState, opts?: pulumi.CustomResourceOptions): ServerDiskBackupSchedule; /** * Returns true if the given object is an instance of ServerDiskBackupSchedule. 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 ServerDiskBackupSchedule; /** * Maximum stored copy count */ readonly copyCount: pulumi.Output; /** * Creation date for first backup */ readonly creationStartAt: pulumi.Output; /** * Day of the week when auto backup should be created. Allowed only for week interval, counting starts from 1 (Monday) */ readonly dayOfWeek: pulumi.Output; /** * Enable auto backups */ readonly enabled: pulumi.Output; /** * Interval between auto backups */ readonly interval: pulumi.Output; readonly serverDiskBackupScheduleId: pulumi.Output; /** * Disk ID for which backup should be configured */ readonly sourceServerDiskId: pulumi.Output; /** * Server ID for which disk auto backups should be configured */ readonly sourceServerId: pulumi.Output; /** * Create a ServerDiskBackupSchedule 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: ServerDiskBackupScheduleArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ServerDiskBackupSchedule resources. */ export interface ServerDiskBackupScheduleState { /** * Maximum stored copy count */ copyCount?: pulumi.Input; /** * Creation date for first backup */ creationStartAt?: pulumi.Input; /** * Day of the week when auto backup should be created. Allowed only for week interval, counting starts from 1 (Monday) */ dayOfWeek?: pulumi.Input; /** * Enable auto backups */ enabled?: pulumi.Input; /** * Interval between auto backups */ interval?: pulumi.Input; serverDiskBackupScheduleId?: pulumi.Input; /** * Disk ID for which backup should be configured */ sourceServerDiskId?: pulumi.Input; /** * Server ID for which disk auto backups should be configured */ sourceServerId?: pulumi.Input; } /** * The set of arguments for constructing a ServerDiskBackupSchedule resource. */ export interface ServerDiskBackupScheduleArgs { /** * Maximum stored copy count */ copyCount: pulumi.Input; /** * Creation date for first backup */ creationStartAt: pulumi.Input; /** * Day of the week when auto backup should be created. Allowed only for week interval, counting starts from 1 (Monday) */ dayOfWeek?: pulumi.Input; /** * Enable auto backups */ enabled?: pulumi.Input; /** * Interval between auto backups */ interval: pulumi.Input; serverDiskBackupScheduleId?: pulumi.Input; /** * Disk ID for which backup should be configured */ sourceServerDiskId: pulumi.Input; /** * Server ID for which disk auto backups should be configured */ sourceServerId: pulumi.Input; }