import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * Creates a VMware vRealize Automation block device snapshot resource. * * ## Example Usage * ### S * * The following example shows how to create a block device snapshot resource. * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const snapshot1 = new vra.blockdevice.Snapshot("snapshot1", { * blockDeviceId: _var.block_device_id, * description: "terraform fcd snapshot", * }); * ``` */ export declare class Snapshot extends pulumi.CustomResource { /** * Get an existing Snapshot 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?: SnapshotState, opts?: pulumi.CustomResourceOptions): Snapshot; /** * Returns true if the given object is an instance of Snapshot. 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 Snapshot; /** * ID of block device. */ readonly blockDeviceId: pulumi.Output; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ readonly createdAt: pulumi.Output; /** * Human-friendly description. */ readonly description: pulumi.Output; /** * Indicates whether snapshot on block device is current. */ readonly isCurrent: pulumi.Output; /** * HATEOAS of entity */ readonly links: pulumi.Output; /** * Human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; /** * ID of organization that entity belongs to. */ readonly orgId: pulumi.Output; /** * Email of entity owner. */ readonly owner: pulumi.Output; readonly updatedAt: pulumi.Output; /** * Create a Snapshot 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: SnapshotArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Snapshot resources. */ export interface SnapshotState { /** * ID of block device. */ blockDeviceId?: pulumi.Input; /** * Date when entity was created. Date and time format is ISO 8601 and UTC. */ createdAt?: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; /** * Indicates whether snapshot on block device is current. */ isCurrent?: pulumi.Input; /** * HATEOAS of entity */ links?: pulumi.Input[]>; /** * Human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * ID of organization that entity belongs to. */ orgId?: pulumi.Input; /** * Email of entity owner. */ owner?: pulumi.Input; updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a Snapshot resource. */ export interface SnapshotArgs { /** * ID of block device. */ blockDeviceId: pulumi.Input; /** * Human-friendly description. */ description?: pulumi.Input; }