import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../types"; /** * ## Example Usage * ### S * This is an example of how to create a storage profile aws resource. * * **Vra storage profile aws:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * // AWS storage profile using vra_storage_profile_aws resource and EBS disk type. * const thisAws = new vra.storageprofile.Aws("thisAws", { * description: "AWS Storage Profile with instance store device type.", * regionId: data.vra_region["this"].id, * defaultItem: false, * supportsEncryption: false, * deviceType: "ebs", * volumeType: "io1", * iops: "1000", * tags: [{ * key: "foo", * value: "bar", * }], * }); * // AWS storage profile using vra_storage_profile_aws resource and instance store disk type. * const thisStorageprofile_awsAws = new vra.storageprofile.Aws("thisStorageprofile/awsAws", { * description: "AWS Storage Profile with instance store device type.", * regionId: data.vra_region["this"].id, * defaultItem: false, * deviceType: "instance-store", * tags: [{ * key: "foo", * value: "bar", * }], * }); * ``` * * A storage profile aws resource supports the following arguments: */ export declare class Aws extends pulumi.CustomResource { /** * Get an existing Aws 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?: AwsState, opts?: pulumi.CustomResourceOptions): Aws; /** * Returns true if the given object is an instance of Aws. 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 Aws; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: pulumi.Output; /** * Indicates if this storage profile is a default profile. */ readonly defaultItem: pulumi.Output; /** * A human-friendly description. */ readonly description: pulumi.Output; /** * Indicates the type of storage device. */ readonly deviceType: pulumi.Output; /** * The id of the region as seen in the cloud provider for which this profile is defined. */ readonly externalRegionId: pulumi.Output; /** * Indicates maximum I/O operations per second in range(1-20,000). */ readonly iops: pulumi.Output; /** * HATEOAS of the entity */ readonly links: pulumi.Output; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; /** * The id of the organization this entity belongs to. */ readonly organizationId: pulumi.Output; /** * Email of the user that owns the entity. */ readonly owner: pulumi.Output; /** * A link to the region that is associated with the storage profile. */ readonly regionId: pulumi.Output; /** * Indicates whether this storage profile supports encryption or not. */ readonly supportsEncryption: pulumi.Output; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ readonly tags: pulumi.Output; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Indicates the type of volume associated with type of storage. */ readonly volumeType: pulumi.Output; /** * Create a Aws 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: AwsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Aws resources. */ export interface AwsState { /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ createdAt?: pulumi.Input; /** * Indicates if this storage profile is a default profile. */ defaultItem?: pulumi.Input; /** * A human-friendly description. */ description?: pulumi.Input; /** * Indicates the type of storage device. */ deviceType?: pulumi.Input; /** * The id of the region as seen in the cloud provider for which this profile is defined. */ externalRegionId?: pulumi.Input; /** * Indicates maximum I/O operations per second in range(1-20,000). */ iops?: pulumi.Input; /** * HATEOAS of the entity */ links?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * The id of the organization this entity belongs to. */ organizationId?: pulumi.Input; /** * Email of the user that owns the entity. */ owner?: pulumi.Input; /** * A link to the region that is associated with the storage profile. */ regionId?: pulumi.Input; /** * Indicates whether this storage profile supports encryption or not. */ supportsEncryption?: pulumi.Input; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ tags?: pulumi.Input[]>; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; /** * Indicates the type of volume associated with type of storage. */ volumeType?: pulumi.Input; } /** * The set of arguments for constructing a Aws resource. */ export interface AwsArgs { /** * Indicates if this storage profile is a default profile. */ defaultItem: pulumi.Input; /** * A human-friendly description. */ description?: pulumi.Input; /** * Indicates the type of storage device. */ deviceType?: pulumi.Input; /** * Indicates maximum I/O operations per second in range(1-20,000). */ iops?: pulumi.Input; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * A link to the region that is associated with the storage profile. */ regionId: pulumi.Input; /** * Indicates whether this storage profile supports encryption or not. */ supportsEncryption?: pulumi.Input; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ tags?: pulumi.Input[]>; /** * Indicates the type of volume associated with type of storage. */ volumeType?: pulumi.Input; }