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 an image profile resource. * * **Image profile:** * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as vra from "@pulumiverse/vra"; * * const _this = new vra.image.Profile("this", { * description: "test image profile", * regionId: data.vra_region["this"].id, * imageMappings: [ * { * name: "centos", * imageId: data.vra_image.centos.id, * constraints: [ * { * mandatory: true, * expression: "!env:Test", * }, * { * mandatory: false, * expression: "foo:bar", * }, * ], * }, * { * name: "photon", * imageId: data.vra_image.photon.id, * cloudConfig: "runcmd echo 'Hello'", * }, * ], * }); * ``` * * An image profile resource supports the following arguments: */ export declare class Profile extends pulumi.CustomResource { /** * Get an existing Profile 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?: ProfileState, opts?: pulumi.CustomResourceOptions): Profile; /** * Returns true if the given object is an instance of Profile. 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 Profile; /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ readonly createdAt: pulumi.Output; /** * A human-friendly description. */ readonly description: pulumi.Output; /** * The external regionId of the resource. */ readonly externalRegionId: pulumi.Output; /** * Image mapping defined for the corresponding region. */ readonly imageMappings: pulumi.Output; /** * A human-friendly name used as an identifier in APIs that support this option. */ readonly name: pulumi.Output; /** * Email of the user that owns the entity. */ readonly owner: pulumi.Output; /** * The id of the region for which this profile is defined as in vRealize Automation(vRA). */ readonly regionId: pulumi.Output; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ readonly updatedAt: pulumi.Output; /** * Create a Profile 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: ProfileArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Profile resources. */ export interface ProfileState { /** * Date when the entity was created. The date is in ISO 6801 and UTC. */ createdAt?: pulumi.Input; /** * A human-friendly description. */ description?: pulumi.Input; /** * The external regionId of the resource. */ externalRegionId?: pulumi.Input; /** * Image mapping defined for the corresponding region. */ imageMappings?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * Email of the user that owns the entity. */ owner?: pulumi.Input; /** * The id of the region for which this profile is defined as in vRealize Automation(vRA). */ regionId?: pulumi.Input; /** * Date when the entity was last updated. The date is ISO 8601 and UTC. */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a Profile resource. */ export interface ProfileArgs { /** * A human-friendly description. */ description?: pulumi.Input; /** * Image mapping defined for the corresponding region. */ imageMappings?: pulumi.Input[]>; /** * A human-friendly name used as an identifier in APIs that support this option. */ name?: pulumi.Input; /** * The id of the region for which this profile is defined as in vRealize Automation(vRA). */ regionId: pulumi.Input; }