import * as pulumi from "@pulumi/pulumi"; /** * Manages a Gallery Application. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-rg", * location: "West Europe", * }); * const exampleSharedImageGallery = new azure.compute.SharedImageGallery("example", { * name: "examplegallery", * resourceGroupName: example.name, * location: example.location, * }); * const exampleGalleryApplication = new azure.compute.GalleryApplication("example", { * name: "example-app", * galleryId: exampleSharedImageGallery.id, * location: example.location, * supportedOsType: "Linux", * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Compute` - 2022-03-03 * * ## Import * * Gallery Applications can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:compute/galleryApplication:GalleryApplication example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Compute/galleries/gallery1/applications/galleryApplication1 * ``` */ export declare class GalleryApplication extends pulumi.CustomResource { /** * Get an existing GalleryApplication 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?: GalleryApplicationState, opts?: pulumi.CustomResourceOptions): GalleryApplication; /** * Returns true if the given object is an instance of GalleryApplication. 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 GalleryApplication; /** * A description of the Gallery Application. */ readonly description: pulumi.Output; /** * The end of life date in RFC3339 format of the Gallery Application. */ readonly endOfLifeDate: pulumi.Output; /** * The End User Licence Agreement of the Gallery Application. */ readonly eula: pulumi.Output; /** * The ID of the Shared Image Gallery. Changing this forces a new resource to be created. */ readonly galleryId: pulumi.Output; /** * The Azure Region where the Gallery Application exists. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The name of the Gallery Application. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The URI containing the Privacy Statement associated with the Gallery Application. */ readonly privacyStatementUri: pulumi.Output; /** * The URI containing the Release Notes associated with the Gallery Application. */ readonly releaseNoteUri: pulumi.Output; /** * The type of the Operating System supported for the Gallery Application. Possible values are `Linux` and `Windows`. Changing this forces a new resource to be created. */ readonly supportedOsType: pulumi.Output; /** * A mapping of tags to assign to the Gallery Application. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Create a GalleryApplication 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: GalleryApplicationArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering GalleryApplication resources. */ export interface GalleryApplicationState { /** * A description of the Gallery Application. */ description?: pulumi.Input; /** * The end of life date in RFC3339 format of the Gallery Application. */ endOfLifeDate?: pulumi.Input; /** * The End User Licence Agreement of the Gallery Application. */ eula?: pulumi.Input; /** * The ID of the Shared Image Gallery. Changing this forces a new resource to be created. */ galleryId?: pulumi.Input; /** * The Azure Region where the Gallery Application exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name of the Gallery Application. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The URI containing the Privacy Statement associated with the Gallery Application. */ privacyStatementUri?: pulumi.Input; /** * The URI containing the Release Notes associated with the Gallery Application. */ releaseNoteUri?: pulumi.Input; /** * The type of the Operating System supported for the Gallery Application. Possible values are `Linux` and `Windows`. Changing this forces a new resource to be created. */ supportedOsType?: pulumi.Input; /** * A mapping of tags to assign to the Gallery Application. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; } /** * The set of arguments for constructing a GalleryApplication resource. */ export interface GalleryApplicationArgs { /** * A description of the Gallery Application. */ description?: pulumi.Input; /** * The end of life date in RFC3339 format of the Gallery Application. */ endOfLifeDate?: pulumi.Input; /** * The End User Licence Agreement of the Gallery Application. */ eula?: pulumi.Input; /** * The ID of the Shared Image Gallery. Changing this forces a new resource to be created. */ galleryId: pulumi.Input; /** * The Azure Region where the Gallery Application exists. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name of the Gallery Application. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The URI containing the Privacy Statement associated with the Gallery Application. */ privacyStatementUri?: pulumi.Input; /** * The URI containing the Release Notes associated with the Gallery Application. */ releaseNoteUri?: pulumi.Input; /** * The type of the Operating System supported for the Gallery Application. Possible values are `Linux` and `Windows`. Changing this forces a new resource to be created. */ supportedOsType: pulumi.Input; /** * A mapping of tags to assign to the Gallery Application. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; }