import * as pulumi from "@pulumi/pulumi";
/**
 * Provides a Simple Application Server Disk resource.
 *
 * For information about Simple Application Server Disk and how to use it, see [What is Disk](https://next.api.alibabacloud.com/document/SWAS-OPEN/2020-06-01/CreateDisk).
 *
 * > **NOTE:** Available since v1.273.0.
 *
 * ## Example Usage
 *
 * Basic Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as alicloud from "@pulumi/alicloud";
 *
 * const config = new pulumi.Config();
 * const name = config.get("name") || "terraform-example";
 * const defaultV70JQf = new alicloud.simpleapplicationserver.Instance("defaultV70JQf", {
 *     instanceName: "examplewujie",
 *     status: "Running",
 *     planId: "swas.s1.c2m2s50b3",
 *     imageId: "21e9617bd4754f77a090d2fbc94916a4",
 *     period: 1,
 *     dataDiskSize: 0,
 *     password: "@3612568Wj",
 *     paymentType: "Subscription",
 *     autoRenew: true,
 *     autoRenewPeriod: 1,
 * });
 * const _default = new alicloud.simpleapplicationserver.Disk("default", {
 *     diskSize: 20,
 *     instanceId: defaultV70JQf.id,
 *     remark: "example",
 * });
 * ```
 *
 * ### Deleting `alicloud.simpleapplicationserver.Disk` or removing it from your configuration
 *
 * Terraform cannot destroy resource `alicloud.simpleapplicationserver.Disk`. Terraform will remove this resource from the state file, however resources may remain.
 *
 * 📚 Need more examples? VIEW MORE EXAMPLES
 *
 * ## Import
 *
 * Simple Application Server Disk can be imported using the id, e.g.
 *
 * ```sh
 * $ pulumi import alicloud:simpleapplicationserver/disk:Disk example <disk_id>
 * ```
 */
export declare class Disk extends pulumi.CustomResource {
    /**
     * Get an existing Disk 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?: DiskState, opts?: pulumi.CustomResourceOptions): Disk;
    /**
     * Returns true if the given object is an instance of Disk.  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 Disk;
    /**
     * The creation time of the resource.
     */
    readonly createTime: pulumi.Output<string>;
    /**
     * The name of the resource.
     */
    readonly diskName: pulumi.Output<string>;
    /**
     * disk size
     */
    readonly diskSize: pulumi.Output<number>;
    /**
     * instance id
     */
    readonly instanceId: pulumi.Output<string>;
    /**
     * The region ID of the resource.
     */
    readonly regionId: pulumi.Output<string>;
    /**
     * Note information.
     */
    readonly remark: pulumi.Output<string | undefined>;
    /**
     * Create a Disk 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: DiskArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering Disk resources.
 */
export interface DiskState {
    /**
     * The creation time of the resource.
     */
    createTime?: pulumi.Input<string | undefined>;
    /**
     * The name of the resource.
     */
    diskName?: pulumi.Input<string | undefined>;
    /**
     * disk size
     */
    diskSize?: pulumi.Input<number | undefined>;
    /**
     * instance id
     */
    instanceId?: pulumi.Input<string | undefined>;
    /**
     * The region ID of the resource.
     */
    regionId?: pulumi.Input<string | undefined>;
    /**
     * Note information.
     */
    remark?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a Disk resource.
 */
export interface DiskArgs {
    /**
     * disk size
     */
    diskSize: pulumi.Input<number>;
    /**
     * instance id
     */
    instanceId: pulumi.Input<string>;
    /**
     * Note information.
     */
    remark?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=disk.d.ts.map