azure-native.compute.GalleryApplication
Explore with Pulumi AI
Specifies information about the gallery Application Definition that you want to create or update.
Uses Azure REST API version 2024-03-03. In version 2.x of the Azure Native provider, it used API version 2022-03-03.
Other available API versions: 2022-03-03, 2022-08-03, 2023-07-03. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native compute [ApiVersion]
. See the version guide for details.
Example Usage
Create or update a simple gallery Application.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var galleryApplication = new AzureNative.Compute.GalleryApplication("galleryApplication", new()
{
CustomActions = new[]
{
new AzureNative.Compute.Inputs.GalleryApplicationCustomActionArgs
{
Description = "This is the custom action description.",
Name = "myCustomAction",
Parameters = new[]
{
new AzureNative.Compute.Inputs.GalleryApplicationCustomActionParameterArgs
{
DefaultValue = "default value of parameter.",
Description = "This is the description of the parameter",
Name = "myCustomActionParameter",
Required = false,
Type = AzureNative.Compute.GalleryApplicationCustomActionParameterType.String,
},
},
Script = "myCustomActionScript",
},
},
Description = "This is the gallery application description.",
Eula = "This is the gallery application EULA.",
GalleryApplicationName = "myGalleryApplicationName",
GalleryName = "myGalleryName",
Location = "West US",
PrivacyStatementUri = "myPrivacyStatementUri}",
ReleaseNoteUri = "myReleaseNoteUri",
ResourceGroupName = "myResourceGroup",
SupportedOSType = AzureNative.Compute.OperatingSystemTypes.Windows,
});
});
package main
import (
compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewGalleryApplication(ctx, "galleryApplication", &compute.GalleryApplicationArgs{
CustomActions: compute.GalleryApplicationCustomActionArray{
&compute.GalleryApplicationCustomActionArgs{
Description: pulumi.String("This is the custom action description."),
Name: pulumi.String("myCustomAction"),
Parameters: compute.GalleryApplicationCustomActionParameterArray{
&compute.GalleryApplicationCustomActionParameterArgs{
DefaultValue: pulumi.String("default value of parameter."),
Description: pulumi.String("This is the description of the parameter"),
Name: pulumi.String("myCustomActionParameter"),
Required: pulumi.Bool(false),
Type: compute.GalleryApplicationCustomActionParameterTypeString,
},
},
Script: pulumi.String("myCustomActionScript"),
},
},
Description: pulumi.String("This is the gallery application description."),
Eula: pulumi.String("This is the gallery application EULA."),
GalleryApplicationName: pulumi.String("myGalleryApplicationName"),
GalleryName: pulumi.String("myGalleryName"),
Location: pulumi.String("West US"),
PrivacyStatementUri: pulumi.String("myPrivacyStatementUri}"),
ReleaseNoteUri: pulumi.String("myReleaseNoteUri"),
ResourceGroupName: pulumi.String("myResourceGroup"),
SupportedOSType: compute.OperatingSystemTypesWindows,
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.compute.GalleryApplication;
import com.pulumi.azurenative.compute.GalleryApplicationArgs;
import com.pulumi.azurenative.compute.inputs.GalleryApplicationCustomActionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var galleryApplication = new GalleryApplication("galleryApplication", GalleryApplicationArgs.builder()
.customActions(GalleryApplicationCustomActionArgs.builder()
.description("This is the custom action description.")
.name("myCustomAction")
.parameters(GalleryApplicationCustomActionParameterArgs.builder()
.defaultValue("default value of parameter.")
.description("This is the description of the parameter")
.name("myCustomActionParameter")
.required(false)
.type("String")
.build())
.script("myCustomActionScript")
.build())
.description("This is the gallery application description.")
.eula("This is the gallery application EULA.")
.galleryApplicationName("myGalleryApplicationName")
.galleryName("myGalleryName")
.location("West US")
.privacyStatementUri("myPrivacyStatementUri}")
.releaseNoteUri("myReleaseNoteUri")
.resourceGroupName("myResourceGroup")
.supportedOSType("Windows")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const galleryApplication = new azure_native.compute.GalleryApplication("galleryApplication", {
customActions: [{
description: "This is the custom action description.",
name: "myCustomAction",
parameters: [{
defaultValue: "default value of parameter.",
description: "This is the description of the parameter",
name: "myCustomActionParameter",
required: false,
type: azure_native.compute.GalleryApplicationCustomActionParameterType.String,
}],
script: "myCustomActionScript",
}],
description: "This is the gallery application description.",
eula: "This is the gallery application EULA.",
galleryApplicationName: "myGalleryApplicationName",
galleryName: "myGalleryName",
location: "West US",
privacyStatementUri: "myPrivacyStatementUri}",
releaseNoteUri: "myReleaseNoteUri",
resourceGroupName: "myResourceGroup",
supportedOSType: azure_native.compute.OperatingSystemTypes.Windows,
});
import pulumi
import pulumi_azure_native as azure_native
gallery_application = azure_native.compute.GalleryApplication("galleryApplication",
custom_actions=[{
"description": "This is the custom action description.",
"name": "myCustomAction",
"parameters": [{
"default_value": "default value of parameter.",
"description": "This is the description of the parameter",
"name": "myCustomActionParameter",
"required": False,
"type": azure_native.compute.GalleryApplicationCustomActionParameterType.STRING,
}],
"script": "myCustomActionScript",
}],
description="This is the gallery application description.",
eula="This is the gallery application EULA.",
gallery_application_name="myGalleryApplicationName",
gallery_name="myGalleryName",
location="West US",
privacy_statement_uri="myPrivacyStatementUri}",
release_note_uri="myReleaseNoteUri",
resource_group_name="myResourceGroup",
supported_os_type=azure_native.compute.OperatingSystemTypes.WINDOWS)
resources:
galleryApplication:
type: azure-native:compute:GalleryApplication
properties:
customActions:
- description: This is the custom action description.
name: myCustomAction
parameters:
- defaultValue: default value of parameter.
description: This is the description of the parameter
name: myCustomActionParameter
required: false
type: String
script: myCustomActionScript
description: This is the gallery application description.
eula: This is the gallery application EULA.
galleryApplicationName: myGalleryApplicationName
galleryName: myGalleryName
location: West US
privacyStatementUri: myPrivacyStatementUri}
releaseNoteUri: myReleaseNoteUri
resourceGroupName: myResourceGroup
supportedOSType: Windows
Create GalleryApplication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GalleryApplication(name: string, args: GalleryApplicationArgs, opts?: CustomResourceOptions);
@overload
def GalleryApplication(resource_name: str,
args: GalleryApplicationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GalleryApplication(resource_name: str,
opts: Optional[ResourceOptions] = None,
gallery_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
supported_os_type: Optional[OperatingSystemTypes] = None,
custom_actions: Optional[Sequence[GalleryApplicationCustomActionArgs]] = None,
description: Optional[str] = None,
end_of_life_date: Optional[str] = None,
eula: Optional[str] = None,
gallery_application_name: Optional[str] = None,
location: Optional[str] = None,
privacy_statement_uri: Optional[str] = None,
release_note_uri: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewGalleryApplication(ctx *Context, name string, args GalleryApplicationArgs, opts ...ResourceOption) (*GalleryApplication, error)
public GalleryApplication(string name, GalleryApplicationArgs args, CustomResourceOptions? opts = null)
public GalleryApplication(String name, GalleryApplicationArgs args)
public GalleryApplication(String name, GalleryApplicationArgs args, CustomResourceOptions options)
type: azure-native:compute:GalleryApplication
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GalleryApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GalleryApplicationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GalleryApplicationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GalleryApplicationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GalleryApplicationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var galleryApplicationResource = new AzureNative.Compute.GalleryApplication("galleryApplicationResource", new()
{
GalleryName = "string",
ResourceGroupName = "string",
SupportedOSType = AzureNative.Compute.OperatingSystemTypes.Windows,
CustomActions = new[]
{
new AzureNative.Compute.Inputs.GalleryApplicationCustomActionArgs
{
Name = "string",
Script = "string",
Description = "string",
Parameters = new[]
{
new AzureNative.Compute.Inputs.GalleryApplicationCustomActionParameterArgs
{
Name = "string",
DefaultValue = "string",
Description = "string",
Required = false,
Type = AzureNative.Compute.GalleryApplicationCustomActionParameterType.String,
},
},
},
},
Description = "string",
EndOfLifeDate = "string",
Eula = "string",
GalleryApplicationName = "string",
Location = "string",
PrivacyStatementUri = "string",
ReleaseNoteUri = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := compute.NewGalleryApplication(ctx, "galleryApplicationResource", &compute.GalleryApplicationArgs{
GalleryName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
SupportedOSType: compute.OperatingSystemTypesWindows,
CustomActions: compute.GalleryApplicationCustomActionArray{
&compute.GalleryApplicationCustomActionArgs{
Name: pulumi.String("string"),
Script: pulumi.String("string"),
Description: pulumi.String("string"),
Parameters: compute.GalleryApplicationCustomActionParameterArray{
&compute.GalleryApplicationCustomActionParameterArgs{
Name: pulumi.String("string"),
DefaultValue: pulumi.String("string"),
Description: pulumi.String("string"),
Required: pulumi.Bool(false),
Type: compute.GalleryApplicationCustomActionParameterTypeString,
},
},
},
},
Description: pulumi.String("string"),
EndOfLifeDate: pulumi.String("string"),
Eula: pulumi.String("string"),
GalleryApplicationName: pulumi.String("string"),
Location: pulumi.String("string"),
PrivacyStatementUri: pulumi.String("string"),
ReleaseNoteUri: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var galleryApplicationResource = new GalleryApplication("galleryApplicationResource", GalleryApplicationArgs.builder()
.galleryName("string")
.resourceGroupName("string")
.supportedOSType("Windows")
.customActions(GalleryApplicationCustomActionArgs.builder()
.name("string")
.script("string")
.description("string")
.parameters(GalleryApplicationCustomActionParameterArgs.builder()
.name("string")
.defaultValue("string")
.description("string")
.required(false)
.type("String")
.build())
.build())
.description("string")
.endOfLifeDate("string")
.eula("string")
.galleryApplicationName("string")
.location("string")
.privacyStatementUri("string")
.releaseNoteUri("string")
.tags(Map.of("string", "string"))
.build());
gallery_application_resource = azure_native.compute.GalleryApplication("galleryApplicationResource",
gallery_name="string",
resource_group_name="string",
supported_os_type=azure_native.compute.OperatingSystemTypes.WINDOWS,
custom_actions=[{
"name": "string",
"script": "string",
"description": "string",
"parameters": [{
"name": "string",
"default_value": "string",
"description": "string",
"required": False,
"type": azure_native.compute.GalleryApplicationCustomActionParameterType.STRING,
}],
}],
description="string",
end_of_life_date="string",
eula="string",
gallery_application_name="string",
location="string",
privacy_statement_uri="string",
release_note_uri="string",
tags={
"string": "string",
})
const galleryApplicationResource = new azure_native.compute.GalleryApplication("galleryApplicationResource", {
galleryName: "string",
resourceGroupName: "string",
supportedOSType: azure_native.compute.OperatingSystemTypes.Windows,
customActions: [{
name: "string",
script: "string",
description: "string",
parameters: [{
name: "string",
defaultValue: "string",
description: "string",
required: false,
type: azure_native.compute.GalleryApplicationCustomActionParameterType.String,
}],
}],
description: "string",
endOfLifeDate: "string",
eula: "string",
galleryApplicationName: "string",
location: "string",
privacyStatementUri: "string",
releaseNoteUri: "string",
tags: {
string: "string",
},
});
type: azure-native:compute:GalleryApplication
properties:
customActions:
- description: string
name: string
parameters:
- defaultValue: string
description: string
name: string
required: false
type: String
script: string
description: string
endOfLifeDate: string
eula: string
galleryApplicationName: string
galleryName: string
location: string
privacyStatementUri: string
releaseNoteUri: string
resourceGroupName: string
supportedOSType: Windows
tags:
string: string
GalleryApplication Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The GalleryApplication resource accepts the following input properties:
- Gallery
Name string - The name of the Shared Image Gallery.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Supported
OSType Pulumi.Azure Native. Compute. Operating System Types - This property allows you to specify the supported type of the OS that application is built for. Possible values are: Windows, Linux.
- Custom
Actions List<Pulumi.Azure Native. Compute. Inputs. Gallery Application Custom Action> - A list of custom actions that can be performed with all of the Gallery Application Versions within this Gallery Application.
- Description string
- The description of this gallery Application Definition resource. This property is updatable.
- End
Of stringLife Date - The end of life date of the gallery Application Definition. This property can be used for decommissioning purposes. This property is updatable.
- Eula string
- The Eula agreement for the gallery Application Definition.
- Gallery
Application stringName - The name of the gallery Application Definition to be retrieved.
- Location string
- The geo-location where the resource lives
- Privacy
Statement stringUri - The privacy statement uri.
- Release
Note stringUri - The release note uri.
- Dictionary<string, string>
- Resource tags.
- Gallery
Name string - The name of the Shared Image Gallery.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Supported
OSType OperatingSystem Types - This property allows you to specify the supported type of the OS that application is built for. Possible values are: Windows, Linux.
- Custom
Actions []GalleryApplication Custom Action Args - A list of custom actions that can be performed with all of the Gallery Application Versions within this Gallery Application.
- Description string
- The description of this gallery Application Definition resource. This property is updatable.
- End
Of stringLife Date - The end of life date of the gallery Application Definition. This property can be used for decommissioning purposes. This property is updatable.
- Eula string
- The Eula agreement for the gallery Application Definition.
- Gallery
Application stringName - The name of the gallery Application Definition to be retrieved.
- Location string
- The geo-location where the resource lives
- Privacy
Statement stringUri - The privacy statement uri.
- Release
Note stringUri - The release note uri.
- map[string]string
- Resource tags.
- gallery
Name String - The name of the Shared Image Gallery.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- supported
OSType OperatingSystem Types - This property allows you to specify the supported type of the OS that application is built for. Possible values are: Windows, Linux.
- custom
Actions List<GalleryApplication Custom Action> - A list of custom actions that can be performed with all of the Gallery Application Versions within this Gallery Application.
- description String
- The description of this gallery Application Definition resource. This property is updatable.
- end
Of StringLife Date - The end of life date of the gallery Application Definition. This property can be used for decommissioning purposes. This property is updatable.
- eula String
- The Eula agreement for the gallery Application Definition.
- gallery
Application StringName - The name of the gallery Application Definition to be retrieved.
- location String
- The geo-location where the resource lives
- privacy
Statement StringUri - The privacy statement uri.
- release
Note StringUri - The release note uri.
- Map<String,String>
- Resource tags.
- gallery
Name string - The name of the Shared Image Gallery.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- supported
OSType OperatingSystem Types - This property allows you to specify the supported type of the OS that application is built for. Possible values are: Windows, Linux.
- custom
Actions GalleryApplication Custom Action[] - A list of custom actions that can be performed with all of the Gallery Application Versions within this Gallery Application.
- description string
- The description of this gallery Application Definition resource. This property is updatable.
- end
Of stringLife Date - The end of life date of the gallery Application Definition. This property can be used for decommissioning purposes. This property is updatable.
- eula string
- The Eula agreement for the gallery Application Definition.
- gallery
Application stringName - The name of the gallery Application Definition to be retrieved.
- location string
- The geo-location where the resource lives
- privacy
Statement stringUri - The privacy statement uri.
- release
Note stringUri - The release note uri.
- {[key: string]: string}
- Resource tags.
- gallery_
name str - The name of the Shared Image Gallery.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- supported_
os_ Operatingtype System Types - This property allows you to specify the supported type of the OS that application is built for. Possible values are: Windows, Linux.
- custom_
actions Sequence[GalleryApplication Custom Action Args] - A list of custom actions that can be performed with all of the Gallery Application Versions within this Gallery Application.
- description str
- The description of this gallery Application Definition resource. This property is updatable.
- end_
of_ strlife_ date - The end of life date of the gallery Application Definition. This property can be used for decommissioning purposes. This property is updatable.
- eula str
- The Eula agreement for the gallery Application Definition.
- gallery_
application_ strname - The name of the gallery Application Definition to be retrieved.
- location str
- The geo-location where the resource lives
- privacy_
statement_ struri - The privacy statement uri.
- release_
note_ struri - The release note uri.
- Mapping[str, str]
- Resource tags.
- gallery
Name String - The name of the Shared Image Gallery.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- supported
OSType "Windows" | "Linux" - This property allows you to specify the supported type of the OS that application is built for. Possible values are: Windows, Linux.
- custom
Actions List<Property Map> - A list of custom actions that can be performed with all of the Gallery Application Versions within this Gallery Application.
- description String
- The description of this gallery Application Definition resource. This property is updatable.
- end
Of StringLife Date - The end of life date of the gallery Application Definition. This property can be used for decommissioning purposes. This property is updatable.
- eula String
- The Eula agreement for the gallery Application Definition.
- gallery
Application StringName - The name of the gallery Application Definition to be retrieved.
- location String
- The geo-location where the resource lives
- privacy
Statement StringUri - The privacy statement uri.
- release
Note StringUri - The release note uri.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the GalleryApplication resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Compute. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
GalleryApplicationCustomAction, GalleryApplicationCustomActionArgs
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Script string
- The script to run when executing this custom action.
- Description string
- Description to help the users understand what this custom action does.
- Parameters
List<Pulumi.
Azure Native. Compute. Inputs. Gallery Application Custom Action Parameter> - The parameters that this custom action uses
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Script string
- The script to run when executing this custom action.
- Description string
- Description to help the users understand what this custom action does.
- Parameters
[]Gallery
Application Custom Action Parameter - The parameters that this custom action uses
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- script String
- The script to run when executing this custom action.
- description String
- Description to help the users understand what this custom action does.
- parameters
List<Gallery
Application Custom Action Parameter> - The parameters that this custom action uses
- name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- script string
- The script to run when executing this custom action.
- description string
- Description to help the users understand what this custom action does.
- parameters
Gallery
Application Custom Action Parameter[] - The parameters that this custom action uses
- name str
- The name of the custom action. Must be unique within the Gallery Application Version.
- script str
- The script to run when executing this custom action.
- description str
- Description to help the users understand what this custom action does.
- parameters
Sequence[Gallery
Application Custom Action Parameter] - The parameters that this custom action uses
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- script String
- The script to run when executing this custom action.
- description String
- Description to help the users understand what this custom action does.
- parameters List<Property Map>
- The parameters that this custom action uses
GalleryApplicationCustomActionParameter, GalleryApplicationCustomActionParameterArgs
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Default
Value string - The default value of the parameter. Only applies to string types
- Description string
- A description to help users understand what this parameter means
- Required bool
- Indicates whether this parameter must be passed when running the custom action.
- Type
Pulumi.
Azure Native. Compute. Gallery Application Custom Action Parameter Type - Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Default
Value string - The default value of the parameter. Only applies to string types
- Description string
- A description to help users understand what this parameter means
- Required bool
- Indicates whether this parameter must be passed when running the custom action.
- Type
Gallery
Application Custom Action Parameter Type - Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- default
Value String - The default value of the parameter. Only applies to string types
- description String
- A description to help users understand what this parameter means
- required Boolean
- Indicates whether this parameter must be passed when running the custom action.
- type
Gallery
Application Custom Action Parameter Type - Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- default
Value string - The default value of the parameter. Only applies to string types
- description string
- A description to help users understand what this parameter means
- required boolean
- Indicates whether this parameter must be passed when running the custom action.
- type
Gallery
Application Custom Action Parameter Type - Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name str
- The name of the custom action. Must be unique within the Gallery Application Version.
- default_
value str - The default value of the parameter. Only applies to string types
- description str
- A description to help users understand what this parameter means
- required bool
- Indicates whether this parameter must be passed when running the custom action.
- type
Gallery
Application Custom Action Parameter Type - Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- default
Value String - The default value of the parameter. Only applies to string types
- description String
- A description to help users understand what this parameter means
- required Boolean
- Indicates whether this parameter must be passed when running the custom action.
- type
"String" | "Configuration
Data Blob" | "Log Output Blob" - Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
GalleryApplicationCustomActionParameterResponse, GalleryApplicationCustomActionParameterResponseArgs
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Default
Value string - The default value of the parameter. Only applies to string types
- Description string
- A description to help users understand what this parameter means
- Required bool
- Indicates whether this parameter must be passed when running the custom action.
- Type string
- Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Default
Value string - The default value of the parameter. Only applies to string types
- Description string
- A description to help users understand what this parameter means
- Required bool
- Indicates whether this parameter must be passed when running the custom action.
- Type string
- Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- default
Value String - The default value of the parameter. Only applies to string types
- description String
- A description to help users understand what this parameter means
- required Boolean
- Indicates whether this parameter must be passed when running the custom action.
- type String
- Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- default
Value string - The default value of the parameter. Only applies to string types
- description string
- A description to help users understand what this parameter means
- required boolean
- Indicates whether this parameter must be passed when running the custom action.
- type string
- Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name str
- The name of the custom action. Must be unique within the Gallery Application Version.
- default_
value str - The default value of the parameter. Only applies to string types
- description str
- A description to help users understand what this parameter means
- required bool
- Indicates whether this parameter must be passed when running the custom action.
- type str
- Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- default
Value String - The default value of the parameter. Only applies to string types
- description String
- A description to help users understand what this parameter means
- required Boolean
- Indicates whether this parameter must be passed when running the custom action.
- type String
- Specifies the type of the custom action parameter. Possible values are: String, ConfigurationDataBlob or LogOutputBlob
GalleryApplicationCustomActionParameterType, GalleryApplicationCustomActionParameterTypeArgs
- String
- String
- Configuration
Data Blob - ConfigurationDataBlob
- Log
Output Blob - LogOutputBlob
- Gallery
Application Custom Action Parameter Type String - String
- Gallery
Application Custom Action Parameter Type Configuration Data Blob - ConfigurationDataBlob
- Gallery
Application Custom Action Parameter Type Log Output Blob - LogOutputBlob
- String
- String
- Configuration
Data Blob - ConfigurationDataBlob
- Log
Output Blob - LogOutputBlob
- String
- String
- Configuration
Data Blob - ConfigurationDataBlob
- Log
Output Blob - LogOutputBlob
- STRING
- String
- CONFIGURATION_DATA_BLOB
- ConfigurationDataBlob
- LOG_OUTPUT_BLOB
- LogOutputBlob
- "String"
- String
- "Configuration
Data Blob" - ConfigurationDataBlob
- "Log
Output Blob" - LogOutputBlob
GalleryApplicationCustomActionResponse, GalleryApplicationCustomActionResponseArgs
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Script string
- The script to run when executing this custom action.
- Description string
- Description to help the users understand what this custom action does.
- Parameters
List<Pulumi.
Azure Native. Compute. Inputs. Gallery Application Custom Action Parameter Response> - The parameters that this custom action uses
- Name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- Script string
- The script to run when executing this custom action.
- Description string
- Description to help the users understand what this custom action does.
- Parameters
[]Gallery
Application Custom Action Parameter Response - The parameters that this custom action uses
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- script String
- The script to run when executing this custom action.
- description String
- Description to help the users understand what this custom action does.
- parameters
List<Gallery
Application Custom Action Parameter Response> - The parameters that this custom action uses
- name string
- The name of the custom action. Must be unique within the Gallery Application Version.
- script string
- The script to run when executing this custom action.
- description string
- Description to help the users understand what this custom action does.
- parameters
Gallery
Application Custom Action Parameter Response[] - The parameters that this custom action uses
- name str
- The name of the custom action. Must be unique within the Gallery Application Version.
- script str
- The script to run when executing this custom action.
- description str
- Description to help the users understand what this custom action does.
- parameters
Sequence[Gallery
Application Custom Action Parameter Response] - The parameters that this custom action uses
- name String
- The name of the custom action. Must be unique within the Gallery Application Version.
- script String
- The script to run when executing this custom action.
- description String
- Description to help the users understand what this custom action does.
- parameters List<Property Map>
- The parameters that this custom action uses
OperatingSystemTypes, OperatingSystemTypesArgs
- Windows
- Windows
- Linux
- Linux
- Operating
System Types Windows - Windows
- Operating
System Types Linux - Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- WINDOWS
- Windows
- LINUX
- Linux
- "Windows"
- Windows
- "Linux"
- Linux
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:GalleryApplication myGalleryApplicationName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/applications/{galleryApplicationName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0