azure-native.compute.GalleryApplicationVersion
Specifies information about the gallery Application Version that you want to create or update. API Version: 2020-09-30.
Example Usage
Create or update a simple gallery Application Version.
using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var galleryApplicationVersion = new AzureNative.Compute.GalleryApplicationVersion("galleryApplicationVersion", new()
{
GalleryApplicationName = "myGalleryApplicationName",
GalleryApplicationVersionName = "1.0.0",
GalleryName = "myGalleryName",
Location = "West US",
PublishingProfile = new AzureNative.Compute.Inputs.GalleryApplicationVersionPublishingProfileArgs
{
EndOfLifeDate = "2019-07-01T07:00:00Z",
ManageActions = new AzureNative.Compute.Inputs.UserArtifactManageArgs
{
Install = "powershell -command \"Expand-Archive -Path package.zip -DestinationPath C:\\package\"",
Remove = "del C:\\package ",
},
ReplicaCount = 1,
Source = new AzureNative.Compute.Inputs.UserArtifactSourceArgs
{
MediaLink = "https://mystorageaccount.blob.core.windows.net/mycontainer/package.zip?{sasKey}",
},
StorageAccountType = "Standard_LRS",
TargetRegions = new[]
{
new AzureNative.Compute.Inputs.TargetRegionArgs
{
Name = "West US",
RegionalReplicaCount = 1,
StorageAccountType = "Standard_LRS",
},
},
},
ResourceGroupName = "myResourceGroup",
});
});
package main
import (
compute "github.com/pulumi/pulumi-azure-native/sdk/go/azure/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewGalleryApplicationVersion(ctx, "galleryApplicationVersion", &compute.GalleryApplicationVersionArgs{
GalleryApplicationName: pulumi.String("myGalleryApplicationName"),
GalleryApplicationVersionName: pulumi.String("1.0.0"),
GalleryName: pulumi.String("myGalleryName"),
Location: pulumi.String("West US"),
PublishingProfile: compute.GalleryApplicationVersionPublishingProfileResponse{
EndOfLifeDate: pulumi.String("2019-07-01T07:00:00Z"),
ManageActions: &compute.UserArtifactManageArgs{
Install: pulumi.String("powershell -command \"Expand-Archive -Path package.zip -DestinationPath C:\\package\""),
Remove: pulumi.String("del C:\\package "),
},
ReplicaCount: pulumi.Int(1),
Source: &compute.UserArtifactSourceArgs{
MediaLink: pulumi.String("https://mystorageaccount.blob.core.windows.net/mycontainer/package.zip?{sasKey}"),
},
StorageAccountType: pulumi.String("Standard_LRS"),
TargetRegions: compute.TargetRegionArray{
&compute.TargetRegionArgs{
Name: pulumi.String("West US"),
RegionalReplicaCount: pulumi.Int(1),
StorageAccountType: pulumi.String("Standard_LRS"),
},
},
},
ResourceGroupName: pulumi.String("myResourceGroup"),
})
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.GalleryApplicationVersion;
import com.pulumi.azurenative.compute.GalleryApplicationVersionArgs;
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 galleryApplicationVersion = new GalleryApplicationVersion("galleryApplicationVersion", GalleryApplicationVersionArgs.builder()
.galleryApplicationName("myGalleryApplicationName")
.galleryApplicationVersionName("1.0.0")
.galleryName("myGalleryName")
.location("West US")
.publishingProfile(Map.ofEntries(
Map.entry("endOfLifeDate", "2019-07-01T07:00:00Z"),
Map.entry("manageActions", Map.ofEntries(
Map.entry("install", "powershell -command \"Expand-Archive -Path package.zip -DestinationPath C:\\package\""),
Map.entry("remove", "del C:\\package ")
)),
Map.entry("replicaCount", 1),
Map.entry("source", Map.of("mediaLink", "https://mystorageaccount.blob.core.windows.net/mycontainer/package.zip?{sasKey}")),
Map.entry("storageAccountType", "Standard_LRS"),
Map.entry("targetRegions", Map.ofEntries(
Map.entry("name", "West US"),
Map.entry("regionalReplicaCount", 1),
Map.entry("storageAccountType", "Standard_LRS")
))
))
.resourceGroupName("myResourceGroup")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
gallery_application_version = azure_native.compute.GalleryApplicationVersion("galleryApplicationVersion",
gallery_application_name="myGalleryApplicationName",
gallery_application_version_name="1.0.0",
gallery_name="myGalleryName",
location="West US",
publishing_profile=azure_native.compute.GalleryApplicationVersionPublishingProfileResponseArgs(
end_of_life_date="2019-07-01T07:00:00Z",
manage_actions=azure_native.compute.UserArtifactManageArgs(
install="powershell -command \"Expand-Archive -Path package.zip -DestinationPath C:\\package\"",
remove="del C:\\package ",
),
replica_count=1,
source=azure_native.compute.UserArtifactSourceArgs(
media_link="https://mystorageaccount.blob.core.windows.net/mycontainer/package.zip?{sasKey}",
),
storage_account_type="Standard_LRS",
target_regions=[azure_native.compute.TargetRegionArgs(
name="West US",
regional_replica_count=1,
storage_account_type="Standard_LRS",
)],
),
resource_group_name="myResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const galleryApplicationVersion = new azure_native.compute.GalleryApplicationVersion("galleryApplicationVersion", {
galleryApplicationName: "myGalleryApplicationName",
galleryApplicationVersionName: "1.0.0",
galleryName: "myGalleryName",
location: "West US",
publishingProfile: {
endOfLifeDate: "2019-07-01T07:00:00Z",
manageActions: {
install: "powershell -command \"Expand-Archive -Path package.zip -DestinationPath C:\\package\"",
remove: "del C:\\package ",
},
replicaCount: 1,
source: {
mediaLink: "https://mystorageaccount.blob.core.windows.net/mycontainer/package.zip?{sasKey}",
},
storageAccountType: "Standard_LRS",
targetRegions: [{
name: "West US",
regionalReplicaCount: 1,
storageAccountType: "Standard_LRS",
}],
},
resourceGroupName: "myResourceGroup",
});
resources:
galleryApplicationVersion:
type: azure-native:compute:GalleryApplicationVersion
properties:
galleryApplicationName: myGalleryApplicationName
galleryApplicationVersionName: 1.0.0
galleryName: myGalleryName
location: West US
publishingProfile:
endOfLifeDate: 2019-07-01T07:00:00Z
manageActions:
install: powershell -command "Expand-Archive -Path package.zip -DestinationPath C:\package"
remove: 'del C:\package '
replicaCount: 1
source:
mediaLink: https://mystorageaccount.blob.core.windows.net/mycontainer/package.zip?{sasKey}
storageAccountType: Standard_LRS
targetRegions:
- name: West US
regionalReplicaCount: 1
storageAccountType: Standard_LRS
resourceGroupName: myResourceGroup
Create GalleryApplicationVersion Resource
new GalleryApplicationVersion(name: string, args: GalleryApplicationVersionArgs, opts?: CustomResourceOptions);
@overload
def GalleryApplicationVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
gallery_application_name: Optional[str] = None,
gallery_application_version_name: Optional[str] = None,
gallery_name: Optional[str] = None,
location: Optional[str] = None,
publishing_profile: Optional[GalleryApplicationVersionPublishingProfileArgs] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def GalleryApplicationVersion(resource_name: str,
args: GalleryApplicationVersionArgs,
opts: Optional[ResourceOptions] = None)
func NewGalleryApplicationVersion(ctx *Context, name string, args GalleryApplicationVersionArgs, opts ...ResourceOption) (*GalleryApplicationVersion, error)
public GalleryApplicationVersion(string name, GalleryApplicationVersionArgs args, CustomResourceOptions? opts = null)
public GalleryApplicationVersion(String name, GalleryApplicationVersionArgs args)
public GalleryApplicationVersion(String name, GalleryApplicationVersionArgs args, CustomResourceOptions options)
type: azure-native:compute:GalleryApplicationVersion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GalleryApplicationVersionArgs
- 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 GalleryApplicationVersionArgs
- 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 GalleryApplicationVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GalleryApplicationVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GalleryApplicationVersionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
GalleryApplicationVersion Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The GalleryApplicationVersion resource accepts the following input properties:
- Gallery
Application stringName The name of the gallery Application Definition in which the Application Version is to be created.
- Gallery
Name string The name of the Shared Application Gallery in which the Application Definition resides.
- Publishing
Profile Pulumi.Azure Native. Compute. Inputs. Gallery Application Version Publishing Profile Args The publishing profile of a gallery image version.
- Resource
Group stringName The name of the resource group.
- Gallery
Application stringVersion Name The name of the gallery Application Version to be created. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..
- Location string
Resource location
- Dictionary<string, string>
Resource tags
- Gallery
Application stringName The name of the gallery Application Definition in which the Application Version is to be created.
- Gallery
Name string The name of the Shared Application Gallery in which the Application Definition resides.
- Publishing
Profile GalleryApplication Version Publishing Profile Args The publishing profile of a gallery image version.
- Resource
Group stringName The name of the resource group.
- Gallery
Application stringVersion Name The name of the gallery Application Version to be created. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..
- Location string
Resource location
- map[string]string
Resource tags
- gallery
Application StringName The name of the gallery Application Definition in which the Application Version is to be created.
- gallery
Name String The name of the Shared Application Gallery in which the Application Definition resides.
- publishing
Profile GalleryApplication Version Publishing Profile Args The publishing profile of a gallery image version.
- resource
Group StringName The name of the resource group.
- gallery
Application StringVersion Name The name of the gallery Application Version to be created. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..
- location String
Resource location
- Map<String,String>
Resource tags
- gallery
Application stringName The name of the gallery Application Definition in which the Application Version is to be created.
- gallery
Name string The name of the Shared Application Gallery in which the Application Definition resides.
- publishing
Profile GalleryApplication Version Publishing Profile Args The publishing profile of a gallery image version.
- resource
Group stringName The name of the resource group.
- gallery
Application stringVersion Name The name of the gallery Application Version to be created. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..
- location string
Resource location
- {[key: string]: string}
Resource tags
- gallery_
application_ strname The name of the gallery Application Definition in which the Application Version is to be created.
- gallery_
name str The name of the Shared Application Gallery in which the Application Definition resides.
- publishing_
profile GalleryApplication Version Publishing Profile Args The publishing profile of a gallery image version.
- resource_
group_ strname The name of the resource group.
- gallery_
application_ strversion_ name The name of the gallery Application Version to be created. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..
- location str
Resource location
- Mapping[str, str]
Resource tags
- gallery
Application StringName The name of the gallery Application Definition in which the Application Version is to be created.
- gallery
Name String The name of the Shared Application Gallery in which the Application Definition resides.
- publishing
Profile Property Map The publishing profile of a gallery image version.
- resource
Group StringName The name of the resource group.
- gallery
Application StringVersion Name The name of the gallery Application Version to be created. Needs to follow semantic version name pattern: The allowed characters are digit and period. Digits must be within the range of a 32-bit integer. Format: ..
- location String
Resource location
- Map<String>
Resource tags
Outputs
All input properties are implicitly available as output properties. Additionally, the GalleryApplicationVersion resource produces the following output properties:
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
Resource name
- Provisioning
State string The provisioning state, which only appears in the response.
- Replication
Status Pulumi.Azure Native. Compute. Outputs. Replication Status Response This is the replication status of the gallery image version.
- Type string
Resource type
- Id string
The provider-assigned unique ID for this managed resource.
- Name string
Resource name
- Provisioning
State string The provisioning state, which only appears in the response.
- Replication
Status ReplicationStatus Response This is the replication status of the gallery image version.
- Type string
Resource type
- id String
The provider-assigned unique ID for this managed resource.
- name String
Resource name
- provisioning
State String The provisioning state, which only appears in the response.
- replication
Status ReplicationStatus Response This is the replication status of the gallery image version.
- type String
Resource type
- id string
The provider-assigned unique ID for this managed resource.
- name string
Resource name
- provisioning
State string The provisioning state, which only appears in the response.
- replication
Status ReplicationStatus Response This is the replication status of the gallery image version.
- type string
Resource type
- id str
The provider-assigned unique ID for this managed resource.
- name str
Resource name
- provisioning_
state str The provisioning state, which only appears in the response.
- replication_
status ReplicationStatus Response This is the replication status of the gallery image version.
- type str
Resource type
- id String
The provider-assigned unique ID for this managed resource.
- name String
Resource name
- provisioning
State String The provisioning state, which only appears in the response.
- replication
Status Property Map This is the replication status of the gallery image version.
- type String
Resource type
Supporting Types
DataDiskImageEncryption
- Lun int
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- Lun int
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- lun Integer
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
- lun number
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- lun int
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk_
encryption_ strset_ id A relative URI containing the resource ID of the disk encryption set.
- lun Number
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
DataDiskImageEncryptionResponse
- Lun int
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- Lun int
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- lun Integer
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
- lun number
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- lun int
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk_
encryption_ strset_ id A relative URI containing the resource ID of the disk encryption set.
- lun Number
This property specifies the logical unit number of the data disk. This value is used to identify data disks within the Virtual Machine and therefore must be unique for each data disk attached to the Virtual Machine.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
EncryptionImages
- Data
Disk List<Pulumi.Images Azure Native. Compute. Inputs. Data Disk Image Encryption> A list of encryption specifications for data disk images.
- Os
Disk Pulumi.Image Azure Native. Compute. Inputs. OSDisk Image Encryption Contains encryption settings for an OS disk image.
- Data
Disk []DataImages Disk Image Encryption A list of encryption specifications for data disk images.
- Os
Disk OSDiskImage Image Encryption Contains encryption settings for an OS disk image.
- data
Disk List<DataImages Disk Image Encryption> A list of encryption specifications for data disk images.
- os
Disk OSDiskImage Image Encryption Contains encryption settings for an OS disk image.
- data
Disk DataImages Disk Image Encryption[] A list of encryption specifications for data disk images.
- os
Disk OSDiskImage Image Encryption Contains encryption settings for an OS disk image.
- data_
disk_ Sequence[Dataimages Disk Image Encryption] A list of encryption specifications for data disk images.
- os_
disk_ OSDiskimage Image Encryption Contains encryption settings for an OS disk image.
- data
Disk List<Property Map>Images A list of encryption specifications for data disk images.
- os
Disk Property MapImage Contains encryption settings for an OS disk image.
EncryptionImagesResponse
- Data
Disk List<Pulumi.Images Azure Native. Compute. Inputs. Data Disk Image Encryption Response> A list of encryption specifications for data disk images.
- Os
Disk Pulumi.Image Azure Native. Compute. Inputs. OSDisk Image Encryption Response Contains encryption settings for an OS disk image.
- Data
Disk []DataImages Disk Image Encryption Response A list of encryption specifications for data disk images.
- Os
Disk OSDiskImage Image Encryption Response Contains encryption settings for an OS disk image.
- data
Disk List<DataImages Disk Image Encryption Response> A list of encryption specifications for data disk images.
- os
Disk OSDiskImage Image Encryption Response Contains encryption settings for an OS disk image.
- data
Disk DataImages Disk Image Encryption Response[] A list of encryption specifications for data disk images.
- os
Disk OSDiskImage Image Encryption Response Contains encryption settings for an OS disk image.
- data_
disk_ Sequence[Dataimages Disk Image Encryption Response] A list of encryption specifications for data disk images.
- os_
disk_ OSDiskimage Image Encryption Response Contains encryption settings for an OS disk image.
- data
Disk List<Property Map>Images A list of encryption specifications for data disk images.
- os
Disk Property MapImage Contains encryption settings for an OS disk image.
GalleryApplicationVersionPublishingProfile
- Source
Pulumi.
Azure Native. Compute. Inputs. User Artifact Source The source image from which the Image Version is going to be created.
- Enable
Health boolCheck Optional. Whether or not this application reports health.
- End
Of stringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- Exclude
From boolLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- Manage
Actions Pulumi.Azure Native. Compute. Inputs. User Artifact Manage - Replica
Count int The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- Storage
Account string | Pulumi.Type Azure Native. Compute. Storage Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- Target
Regions List<Pulumi.Azure Native. Compute. Inputs. Target Region> The target regions where the Image Version is going to be replicated to. This property is updatable.
- Source
User
Artifact Source The source image from which the Image Version is going to be created.
- Enable
Health boolCheck Optional. Whether or not this application reports health.
- End
Of stringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- Exclude
From boolLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- Manage
Actions UserArtifact Manage - Replica
Count int The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- Storage
Account string | StorageType Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- Target
Regions []TargetRegion The target regions where the Image Version is going to be replicated to. This property is updatable.
- source
User
Artifact Source The source image from which the Image Version is going to be created.
- enable
Health BooleanCheck Optional. Whether or not this application reports health.
- end
Of StringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude
From BooleanLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage
Actions UserArtifact Manage - replica
Count Integer The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage
Account String | StorageType Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- target
Regions List<TargetRegion> The target regions where the Image Version is going to be replicated to. This property is updatable.
- source
User
Artifact Source The source image from which the Image Version is going to be created.
- enable
Health booleanCheck Optional. Whether or not this application reports health.
- end
Of stringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude
From booleanLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage
Actions UserArtifact Manage - replica
Count number The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage
Account string | StorageType Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- target
Regions TargetRegion[] The target regions where the Image Version is going to be replicated to. This property is updatable.
- source
User
Artifact Source The source image from which the Image Version is going to be created.
- enable_
health_ boolcheck Optional. Whether or not this application reports health.
- end_
of_ strlife_ date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude_
from_ boollatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage_
actions UserArtifact Manage - replica_
count int The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage_
account_ str | Storagetype Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- target_
regions Sequence[TargetRegion] The target regions where the Image Version is going to be replicated to. This property is updatable.
- source Property Map
The source image from which the Image Version is going to be created.
- enable
Health BooleanCheck Optional. Whether or not this application reports health.
- end
Of StringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude
From BooleanLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage
Actions Property Map - replica
Count Number The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage
Account String | "Standard_LRS" | "Standard_ZRS" | "Premium_LRS"Type Specifies the storage account type to be used to store the image. This property is not updatable.
- target
Regions List<Property Map> The target regions where the Image Version is going to be replicated to. This property is updatable.
GalleryApplicationVersionPublishingProfileResponse
- Published
Date string The timestamp for when the gallery image version is published.
- Source
Pulumi.
Azure Native. Compute. Inputs. User Artifact Source Response The source image from which the Image Version is going to be created.
- Enable
Health boolCheck Optional. Whether or not this application reports health.
- End
Of stringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- Exclude
From boolLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- Manage
Actions Pulumi.Azure Native. Compute. Inputs. User Artifact Manage Response - Replica
Count int The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- Storage
Account stringType Specifies the storage account type to be used to store the image. This property is not updatable.
- Target
Regions List<Pulumi.Azure Native. Compute. Inputs. Target Region Response> The target regions where the Image Version is going to be replicated to. This property is updatable.
- Published
Date string The timestamp for when the gallery image version is published.
- Source
User
Artifact Source Response The source image from which the Image Version is going to be created.
- Enable
Health boolCheck Optional. Whether or not this application reports health.
- End
Of stringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- Exclude
From boolLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- Manage
Actions UserArtifact Manage Response - Replica
Count int The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- Storage
Account stringType Specifies the storage account type to be used to store the image. This property is not updatable.
- Target
Regions []TargetRegion Response The target regions where the Image Version is going to be replicated to. This property is updatable.
- published
Date String The timestamp for when the gallery image version is published.
- source
User
Artifact Source Response The source image from which the Image Version is going to be created.
- enable
Health BooleanCheck Optional. Whether or not this application reports health.
- end
Of StringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude
From BooleanLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage
Actions UserArtifact Manage Response - replica
Count Integer The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage
Account StringType Specifies the storage account type to be used to store the image. This property is not updatable.
- target
Regions List<TargetRegion Response> The target regions where the Image Version is going to be replicated to. This property is updatable.
- published
Date string The timestamp for when the gallery image version is published.
- source
User
Artifact Source Response The source image from which the Image Version is going to be created.
- enable
Health booleanCheck Optional. Whether or not this application reports health.
- end
Of stringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude
From booleanLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage
Actions UserArtifact Manage Response - replica
Count number The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage
Account stringType Specifies the storage account type to be used to store the image. This property is not updatable.
- target
Regions TargetRegion Response[] The target regions where the Image Version is going to be replicated to. This property is updatable.
- published_
date str The timestamp for when the gallery image version is published.
- source
User
Artifact Source Response The source image from which the Image Version is going to be created.
- enable_
health_ boolcheck Optional. Whether or not this application reports health.
- end_
of_ strlife_ date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude_
from_ boollatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage_
actions UserArtifact Manage Response - replica_
count int The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage_
account_ strtype Specifies the storage account type to be used to store the image. This property is not updatable.
- target_
regions Sequence[TargetRegion Response] The target regions where the Image Version is going to be replicated to. This property is updatable.
- published
Date String The timestamp for when the gallery image version is published.
- source Property Map
The source image from which the Image Version is going to be created.
- enable
Health BooleanCheck Optional. Whether or not this application reports health.
- end
Of StringLife Date The end of life date of the gallery image version. This property can be used for decommissioning purposes. This property is updatable.
- exclude
From BooleanLatest If set to true, Virtual Machines deployed from the latest version of the Image Definition won't use this Image Version.
- manage
Actions Property Map - replica
Count Number The number of replicas of the Image Version to be created per region. This property would take effect for a region when regionalReplicaCount is not specified. This property is updatable.
- storage
Account StringType Specifies the storage account type to be used to store the image. This property is not updatable.
- target
Regions List<Property Map> The target regions where the Image Version is going to be replicated to. This property is updatable.
OSDiskImageEncryption
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
- disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- disk_
encryption_ strset_ id A relative URI containing the resource ID of the disk encryption set.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
OSDiskImageEncryptionResponse
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- Disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
- disk
Encryption stringSet Id A relative URI containing the resource ID of the disk encryption set.
- disk_
encryption_ strset_ id A relative URI containing the resource ID of the disk encryption set.
- disk
Encryption StringSet Id A relative URI containing the resource ID of the disk encryption set.
RegionalReplicationStatusResponse
ReplicationStatusResponse
- Aggregated
State string This is the aggregated replication status based on all the regional replication status flags.
- Summary
List<Pulumi.
Azure Native. Compute. Inputs. Regional Replication Status Response> This is a summary of replication status for each region.
- Aggregated
State string This is the aggregated replication status based on all the regional replication status flags.
- Summary
[]Regional
Replication Status Response This is a summary of replication status for each region.
- aggregated
State String This is the aggregated replication status based on all the regional replication status flags.
- summary
List<Regional
Replication Status Response> This is a summary of replication status for each region.
- aggregated
State string This is the aggregated replication status based on all the regional replication status flags.
- summary
Regional
Replication Status Response[] This is a summary of replication status for each region.
- aggregated_
state str This is the aggregated replication status based on all the regional replication status flags.
- summary
Sequence[Regional
Replication Status Response] This is a summary of replication status for each region.
- aggregated
State String This is the aggregated replication status based on all the regional replication status flags.
- summary List<Property Map>
This is a summary of replication status for each region.
StorageAccountType
- Standard_LRS
- Standard_LRS
- Standard_ZRS
- Standard_ZRS
- Premium_LRS
- Premium_LRS
- Storage
Account Type_Standard_LRS - Standard_LRS
- Storage
Account Type_Standard_ZRS - Standard_ZRS
- Storage
Account Type_Premium_LRS - Premium_LRS
- Standard_LRS
- Standard_LRS
- Standard_ZRS
- Standard_ZRS
- Premium_LRS
- Premium_LRS
- Standard_LRS
- Standard_LRS
- Standard_ZRS
- Standard_ZRS
- Premium_LRS
- Premium_LRS
- STANDARD_LRS
- Standard_LRS
- STANDARD_ZRS
- Standard_ZRS
- PREMIUM_LRS
- Premium_LRS
- "Standard_LRS"
- Standard_LRS
- "Standard_ZRS"
- Standard_ZRS
- "Premium_LRS"
- Premium_LRS
TargetRegion
- Name string
The name of the region.
- Encryption
Pulumi.
Azure Native. Compute. Inputs. Encryption Images Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- Regional
Replica intCount The number of replicas of the Image Version to be created per region. This property is updatable.
- Storage
Account string | Pulumi.Type Azure Native. Compute. Storage Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- Name string
The name of the region.
- Encryption
Encryption
Images Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- Regional
Replica intCount The number of replicas of the Image Version to be created per region. This property is updatable.
- Storage
Account string | StorageType Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- name String
The name of the region.
- encryption
Encryption
Images Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional
Replica IntegerCount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage
Account String | StorageType Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- name string
The name of the region.
- encryption
Encryption
Images Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional
Replica numberCount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage
Account string | StorageType Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- name str
The name of the region.
- encryption
Encryption
Images Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional_
replica_ intcount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage_
account_ str | Storagetype Account Type Specifies the storage account type to be used to store the image. This property is not updatable.
- name String
The name of the region.
- encryption Property Map
Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional
Replica NumberCount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage
Account String | "Standard_LRS" | "Standard_ZRS" | "Premium_LRS"Type Specifies the storage account type to be used to store the image. This property is not updatable.
TargetRegionResponse
- Name string
The name of the region.
- Encryption
Pulumi.
Azure Native. Compute. Inputs. Encryption Images Response Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- Regional
Replica intCount The number of replicas of the Image Version to be created per region. This property is updatable.
- Storage
Account stringType Specifies the storage account type to be used to store the image. This property is not updatable.
- Name string
The name of the region.
- Encryption
Encryption
Images Response Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- Regional
Replica intCount The number of replicas of the Image Version to be created per region. This property is updatable.
- Storage
Account stringType Specifies the storage account type to be used to store the image. This property is not updatable.
- name String
The name of the region.
- encryption
Encryption
Images Response Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional
Replica IntegerCount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage
Account StringType Specifies the storage account type to be used to store the image. This property is not updatable.
- name string
The name of the region.
- encryption
Encryption
Images Response Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional
Replica numberCount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage
Account stringType Specifies the storage account type to be used to store the image. This property is not updatable.
- name str
The name of the region.
- encryption
Encryption
Images Response Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional_
replica_ intcount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage_
account_ strtype Specifies the storage account type to be used to store the image. This property is not updatable.
- name String
The name of the region.
- encryption Property Map
Optional. Allows users to provide customer managed keys for encrypting the OS and data disks in the gallery artifact.
- regional
Replica NumberCount The number of replicas of the Image Version to be created per region. This property is updatable.
- storage
Account StringType Specifies the storage account type to be used to store the image. This property is not updatable.
UserArtifactManage
- Install string
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- Remove string
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- Update string
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- Install string
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- Remove string
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- Update string
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install String
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove String
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update String
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install string
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove string
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update string
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install str
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove str
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update str
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install String
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove String
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update String
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
UserArtifactManageResponse
- Install string
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- Remove string
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- Update string
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- Install string
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- Remove string
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- Update string
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install String
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove String
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update String
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install string
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove string
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update string
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install str
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove str
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update str
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
- install String
Required. The path and arguments to install the gallery application. This is limited to 4096 characters.
- remove String
Required. The path and arguments to remove the gallery application. This is limited to 4096 characters.
- update String
Optional. The path and arguments to update the gallery application. If not present, then update operation will invoke remove command on the previous version and install command on the current version of the gallery application. This is limited to 4096 characters.
UserArtifactSource
- Media
Link string Required. The mediaLink of the artifact, must be a readable storage page blob.
- Default
Configuration stringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- Media
Link string Required. The mediaLink of the artifact, must be a readable storage page blob.
- Default
Configuration stringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media
Link String Required. The mediaLink of the artifact, must be a readable storage page blob.
- default
Configuration StringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media
Link string Required. The mediaLink of the artifact, must be a readable storage page blob.
- default
Configuration stringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media_
link str Required. The mediaLink of the artifact, must be a readable storage page blob.
- default_
configuration_ strlink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media
Link String Required. The mediaLink of the artifact, must be a readable storage page blob.
- default
Configuration StringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
UserArtifactSourceResponse
- Media
Link string Required. The mediaLink of the artifact, must be a readable storage page blob.
- Default
Configuration stringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- Media
Link string Required. The mediaLink of the artifact, must be a readable storage page blob.
- Default
Configuration stringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media
Link String Required. The mediaLink of the artifact, must be a readable storage page blob.
- default
Configuration StringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media
Link string Required. The mediaLink of the artifact, must be a readable storage page blob.
- default
Configuration stringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media_
link str Required. The mediaLink of the artifact, must be a readable storage page blob.
- default_
configuration_ strlink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
- media
Link String Required. The mediaLink of the artifact, must be a readable storage page blob.
- default
Configuration StringLink Optional. The defaultConfigurationLink of the artifact, must be a readable storage page blob.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:GalleryApplicationVersion 1.0.0 /subscriptions/01523d7c-60da-455e-adef-521b547922c4/resourceGroups/galleryPsTestRg98/providers/Microsoft.Compute/galleries/galleryPsTestGallery6165/applications/galleryPsTestGalleryApplication7825/versions/1.0.0
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0