import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::Lightsail::Disk */ 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, 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; /** * An array of objects representing the add-ons to enable for the new instance. */ readonly addOns: pulumi.Output; /** * Name of the attached Lightsail Instance */ readonly attachedTo: pulumi.Output; /** * Attachment State of the Lightsail disk */ readonly attachmentState: pulumi.Output; /** * The Availability Zone in which to create your instance. Use the following format: us-east-2a (case sensitive). Be sure to add the include Availability Zones parameter to your request. */ readonly availabilityZone: pulumi.Output; /** * The Amazon Resource Name (ARN) of the disk. */ readonly diskArn: pulumi.Output; /** * The names to use for your new Lightsail disk. */ readonly diskName: pulumi.Output; /** * Iops of the Lightsail disk */ readonly iops: pulumi.Output; /** * Check is Disk is attached state */ readonly isAttached: pulumi.Output; /** * The AWS Region and Availability Zone where the disk is located. */ readonly location: pulumi.Output; /** * Path of the attached Disk */ readonly path: pulumi.Output; /** * Resource type of Lightsail instance. */ readonly resourceType: pulumi.Output; /** * Size of the Lightsail disk */ readonly sizeInGb: pulumi.Output; /** * State of the Lightsail disk */ readonly state: pulumi.Output; /** * Support code to help identify any issues */ readonly supportCode: pulumi.Output; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output; /** * 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); } /** * The set of arguments for constructing a Disk resource. */ export interface DiskArgs { /** * An array of objects representing the add-ons to enable for the new instance. */ addOns?: pulumi.Input[]>; /** * The Availability Zone in which to create your instance. Use the following format: us-east-2a (case sensitive). Be sure to add the include Availability Zones parameter to your request. */ availabilityZone?: pulumi.Input; /** * The names to use for your new Lightsail disk. */ diskName?: pulumi.Input; /** * The AWS Region and Availability Zone where the disk is located. */ location?: pulumi.Input; /** * Size of the Lightsail disk */ sizeInGb: pulumi.Input; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input[]>; }