import * as pulumi from "@pulumi/pulumi"; /** * A Disk Placement Group resource. For more information, see * [the official documentation](https://cloud.yandex.com/docs/compute/concepts/disk#nr-disks). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as yandex from "@pulumi/yandex"; * * const group1 = new yandex.ComputeDiskPlacementGroup("group1", { * description: "my description", * folderId: "abc*********123", * }); * ``` */ export declare class ComputeDiskPlacementGroup extends pulumi.CustomResource { /** * Get an existing ComputeDiskPlacementGroup 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?: ComputeDiskPlacementGroupState, opts?: pulumi.CustomResourceOptions): ComputeDiskPlacementGroup; /** * Returns true if the given object is an instance of ComputeDiskPlacementGroup. 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 ComputeDiskPlacementGroup; readonly createdAt: pulumi.Output; /** * A description of the Disk Placement Group. */ readonly description: pulumi.Output; /** * Folder that the resource belongs to. If value is omitted, the default provider folder is used. */ readonly folderId: pulumi.Output; /** * A set of key/value label pairs to assign to the Disk Placement Group. */ readonly labels: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The name of the Disk Placement Group. */ readonly name: pulumi.Output; /** * Status of the Disk Placement Group. */ readonly status: pulumi.Output; /** * ID of the zone where the Disk Placement Group resides. */ readonly zone: pulumi.Output; /** * Create a ComputeDiskPlacementGroup 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?: ComputeDiskPlacementGroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ComputeDiskPlacementGroup resources. */ export interface ComputeDiskPlacementGroupState { createdAt?: pulumi.Input; /** * A description of the Disk Placement Group. */ description?: pulumi.Input; /** * Folder that the resource belongs to. If value is omitted, the default provider folder is used. */ folderId?: pulumi.Input; /** * A set of key/value label pairs to assign to the Disk Placement Group. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The name of the Disk Placement Group. */ name?: pulumi.Input; /** * Status of the Disk Placement Group. */ status?: pulumi.Input; /** * ID of the zone where the Disk Placement Group resides. */ zone?: pulumi.Input; } /** * The set of arguments for constructing a ComputeDiskPlacementGroup resource. */ export interface ComputeDiskPlacementGroupArgs { /** * A description of the Disk Placement Group. */ description?: pulumi.Input; /** * Folder that the resource belongs to. If value is omitted, the default provider folder is used. */ folderId?: pulumi.Input; /** * A set of key/value label pairs to assign to the Disk Placement Group. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The name of the Disk Placement Group. */ name?: pulumi.Input; /** * ID of the zone where the Disk Placement Group resides. */ zone?: pulumi.Input; }