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. * * **Storage profile aws data source by its id:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const this = vra.storageprofile.getAws({ * id: vra_storage_profile_aws["this"].id, * }); * ``` * * **Vra storage profile data source filter by external region id:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumi/vra"; * * const thisAws = pulumi.output(vra.storageprofile.getAws({ * filter: "externalRegionId eq 'foobar'", * })); * ``` * * A storage profile aws data source supports the following arguments: */ export declare function getAws(args?: GetAwsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAws. */ export interface GetAwsArgs { /** * Filter query string that is supported by vRA multi-cloud IaaS API. Example: regionId eq '' and cloudAccountId eq ''. */ filter?: string; /** * The id of the image profile instance. */ id?: string; /** * A set of tag keys and optional values that were set on this Network Profile. * example:[ { "key" : "ownedBy", "value": "Rainpole" } ] */ tags?: inputs.storageprofile.GetAwsTag[]; } /** * A collection of values returned by getAws. */ export interface GetAwsResult { readonly cloudAccountId: string; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: string; /** * Indicates if this storage profile is a default profile. */ readonly defaultItem: boolean; readonly description: string; readonly deviceType: string; /** * The id of the region as seen in the cloud provider for which this profile is defined. */ readonly externalRegionId: string; readonly filter?: string; readonly id: string; readonly iops: string; /** * HATEOAS of the entity */ readonly links: outputs.storageprofile.GetAwsLink[]; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: string; readonly orgId: string; /** * Email of the user that owns the entity. */ readonly owner: string; readonly supportsEncryption: boolean; readonly tags: outputs.storageprofile.GetAwsTag[]; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: string; readonly volumeType: string; } export declare function getAwsOutput(args?: GetAwsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getAws. */ export interface GetAwsOutputArgs { /** * Filter query string that is supported by vRA multi-cloud IaaS API. Example: regionId eq '' and cloudAccountId eq ''. */ filter?: pulumi.Input; /** * The id of the image profile instance. */ id?: 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[]>; }