We recommend using Azure Native.
azure.compute.SharedImage
Explore with Pulumi AI
Manages a Shared Image within a Shared Image Gallery.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleSharedImageGallery = new azure.compute.SharedImageGallery("example", {
name: "example_image_gallery",
resourceGroupName: example.name,
location: example.location,
description: "Shared images and things.",
tags: {
Hello: "There",
World: "Example",
},
});
const exampleSharedImage = new azure.compute.SharedImage("example", {
name: "my-image",
galleryName: exampleSharedImageGallery.name,
resourceGroupName: example.name,
location: example.location,
osType: "Linux",
identifier: {
publisher: "PublisherName",
offer: "OfferName",
sku: "ExampleSku",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_shared_image_gallery = azure.compute.SharedImageGallery("example",
name="example_image_gallery",
resource_group_name=example.name,
location=example.location,
description="Shared images and things.",
tags={
"Hello": "There",
"World": "Example",
})
example_shared_image = azure.compute.SharedImage("example",
name="my-image",
gallery_name=example_shared_image_gallery.name,
resource_group_name=example.name,
location=example.location,
os_type="Linux",
identifier={
"publisher": "PublisherName",
"offer": "OfferName",
"sku": "ExampleSku",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/compute"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleSharedImageGallery, err := compute.NewSharedImageGallery(ctx, "example", &compute.SharedImageGalleryArgs{
Name: pulumi.String("example_image_gallery"),
ResourceGroupName: example.Name,
Location: example.Location,
Description: pulumi.String("Shared images and things."),
Tags: pulumi.StringMap{
"Hello": pulumi.String("There"),
"World": pulumi.String("Example"),
},
})
if err != nil {
return err
}
_, err = compute.NewSharedImage(ctx, "example", &compute.SharedImageArgs{
Name: pulumi.String("my-image"),
GalleryName: exampleSharedImageGallery.Name,
ResourceGroupName: example.Name,
Location: example.Location,
OsType: pulumi.String("Linux"),
Identifier: &compute.SharedImageIdentifierArgs{
Publisher: pulumi.String("PublisherName"),
Offer: pulumi.String("OfferName"),
Sku: pulumi.String("ExampleSku"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleSharedImageGallery = new Azure.Compute.SharedImageGallery("example", new()
{
Name = "example_image_gallery",
ResourceGroupName = example.Name,
Location = example.Location,
Description = "Shared images and things.",
Tags =
{
{ "Hello", "There" },
{ "World", "Example" },
},
});
var exampleSharedImage = new Azure.Compute.SharedImage("example", new()
{
Name = "my-image",
GalleryName = exampleSharedImageGallery.Name,
ResourceGroupName = example.Name,
Location = example.Location,
OsType = "Linux",
Identifier = new Azure.Compute.Inputs.SharedImageIdentifierArgs
{
Publisher = "PublisherName",
Offer = "OfferName",
Sku = "ExampleSku",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.compute.SharedImageGallery;
import com.pulumi.azure.compute.SharedImageGalleryArgs;
import com.pulumi.azure.compute.SharedImage;
import com.pulumi.azure.compute.SharedImageArgs;
import com.pulumi.azure.compute.inputs.SharedImageIdentifierArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleSharedImageGallery = new SharedImageGallery("exampleSharedImageGallery", SharedImageGalleryArgs.builder()
.name("example_image_gallery")
.resourceGroupName(example.name())
.location(example.location())
.description("Shared images and things.")
.tags(Map.ofEntries(
Map.entry("Hello", "There"),
Map.entry("World", "Example")
))
.build());
var exampleSharedImage = new SharedImage("exampleSharedImage", SharedImageArgs.builder()
.name("my-image")
.galleryName(exampleSharedImageGallery.name())
.resourceGroupName(example.name())
.location(example.location())
.osType("Linux")
.identifier(SharedImageIdentifierArgs.builder()
.publisher("PublisherName")
.offer("OfferName")
.sku("ExampleSku")
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleSharedImageGallery:
type: azure:compute:SharedImageGallery
name: example
properties:
name: example_image_gallery
resourceGroupName: ${example.name}
location: ${example.location}
description: Shared images and things.
tags:
Hello: There
World: Example
exampleSharedImage:
type: azure:compute:SharedImage
name: example
properties:
name: my-image
galleryName: ${exampleSharedImageGallery.name}
resourceGroupName: ${example.name}
location: ${example.location}
osType: Linux
identifier:
publisher: PublisherName
offer: OfferName
sku: ExampleSku
Create SharedImage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SharedImage(name: string, args: SharedImageArgs, opts?: CustomResourceOptions);
@overload
def SharedImage(resource_name: str,
args: SharedImageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SharedImage(resource_name: str,
opts: Optional[ResourceOptions] = None,
gallery_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
os_type: Optional[str] = None,
identifier: Optional[SharedImageIdentifierArgs] = None,
max_recommended_memory_in_gb: Optional[int] = None,
max_recommended_vcpu_count: Optional[int] = None,
disk_types_not_alloweds: Optional[Sequence[str]] = None,
end_of_life_date: Optional[str] = None,
eula: Optional[str] = None,
description: Optional[str] = None,
hibernation_enabled: Optional[bool] = None,
hyper_v_generation: Optional[str] = None,
confidential_vm_supported: Optional[bool] = None,
location: Optional[str] = None,
accelerated_network_support_enabled: Optional[bool] = None,
disk_controller_type_nvme_enabled: Optional[bool] = None,
min_recommended_memory_in_gb: Optional[int] = None,
min_recommended_vcpu_count: Optional[int] = None,
name: Optional[str] = None,
confidential_vm_enabled: Optional[bool] = None,
privacy_statement_uri: Optional[str] = None,
purchase_plan: Optional[SharedImagePurchasePlanArgs] = None,
release_note_uri: Optional[str] = None,
architecture: Optional[str] = None,
specialized: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
trusted_launch_enabled: Optional[bool] = None,
trusted_launch_supported: Optional[bool] = None)
func NewSharedImage(ctx *Context, name string, args SharedImageArgs, opts ...ResourceOption) (*SharedImage, error)
public SharedImage(string name, SharedImageArgs args, CustomResourceOptions? opts = null)
public SharedImage(String name, SharedImageArgs args)
public SharedImage(String name, SharedImageArgs args, CustomResourceOptions options)
type: azure:compute:SharedImage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SharedImageArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. SharedImageArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SharedImageArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SharedImageArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. SharedImageArgs - 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 sharedImageResource = new Azure.Compute.SharedImage("sharedImageResource", new()
{
GalleryName = "string",
ResourceGroupName = "string",
OsType = "string",
Identifier = new Azure.Compute.Inputs.SharedImageIdentifierArgs
{
Offer = "string",
Publisher = "string",
Sku = "string",
},
MaxRecommendedMemoryInGb = 0,
MaxRecommendedVcpuCount = 0,
DiskTypesNotAlloweds = new[]
{
"string",
},
EndOfLifeDate = "string",
Eula = "string",
Description = "string",
HibernationEnabled = false,
HyperVGeneration = "string",
ConfidentialVmSupported = false,
Location = "string",
AcceleratedNetworkSupportEnabled = false,
DiskControllerTypeNvmeEnabled = false,
MinRecommendedMemoryInGb = 0,
MinRecommendedVcpuCount = 0,
Name = "string",
ConfidentialVmEnabled = false,
PrivacyStatementUri = "string",
PurchasePlan = new Azure.Compute.Inputs.SharedImagePurchasePlanArgs
{
Name = "string",
Product = "string",
Publisher = "string",
},
ReleaseNoteUri = "string",
Architecture = "string",
Specialized = false,
Tags =
{
{ "string", "string" },
},
TrustedLaunchEnabled = false,
TrustedLaunchSupported = false,
});
example, err := compute.NewSharedImage(ctx, "sharedImageResource", &compute.SharedImageArgs{
GalleryName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
OsType: pulumi.String("string"),
Identifier: &compute.SharedImageIdentifierArgs{
Offer: pulumi.String("string"),
Publisher: pulumi.String("string"),
Sku: pulumi.String("string"),
},
MaxRecommendedMemoryInGb: pulumi.Int(0),
MaxRecommendedVcpuCount: pulumi.Int(0),
DiskTypesNotAlloweds: pulumi.StringArray{
pulumi.String("string"),
},
EndOfLifeDate: pulumi.String("string"),
Eula: pulumi.String("string"),
Description: pulumi.String("string"),
HibernationEnabled: pulumi.Bool(false),
HyperVGeneration: pulumi.String("string"),
ConfidentialVmSupported: pulumi.Bool(false),
Location: pulumi.String("string"),
AcceleratedNetworkSupportEnabled: pulumi.Bool(false),
DiskControllerTypeNvmeEnabled: pulumi.Bool(false),
MinRecommendedMemoryInGb: pulumi.Int(0),
MinRecommendedVcpuCount: pulumi.Int(0),
Name: pulumi.String("string"),
ConfidentialVmEnabled: pulumi.Bool(false),
PrivacyStatementUri: pulumi.String("string"),
PurchasePlan: &compute.SharedImagePurchasePlanArgs{
Name: pulumi.String("string"),
Product: pulumi.String("string"),
Publisher: pulumi.String("string"),
},
ReleaseNoteUri: pulumi.String("string"),
Architecture: pulumi.String("string"),
Specialized: pulumi.Bool(false),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TrustedLaunchEnabled: pulumi.Bool(false),
TrustedLaunchSupported: pulumi.Bool(false),
})
var sharedImageResource = new SharedImage("sharedImageResource", SharedImageArgs.builder()
.galleryName("string")
.resourceGroupName("string")
.osType("string")
.identifier(SharedImageIdentifierArgs.builder()
.offer("string")
.publisher("string")
.sku("string")
.build())
.maxRecommendedMemoryInGb(0)
.maxRecommendedVcpuCount(0)
.diskTypesNotAlloweds("string")
.endOfLifeDate("string")
.eula("string")
.description("string")
.hibernationEnabled(false)
.hyperVGeneration("string")
.confidentialVmSupported(false)
.location("string")
.acceleratedNetworkSupportEnabled(false)
.diskControllerTypeNvmeEnabled(false)
.minRecommendedMemoryInGb(0)
.minRecommendedVcpuCount(0)
.name("string")
.confidentialVmEnabled(false)
.privacyStatementUri("string")
.purchasePlan(SharedImagePurchasePlanArgs.builder()
.name("string")
.product("string")
.publisher("string")
.build())
.releaseNoteUri("string")
.architecture("string")
.specialized(false)
.tags(Map.of("string", "string"))
.trustedLaunchEnabled(false)
.trustedLaunchSupported(false)
.build());
shared_image_resource = azure.compute.SharedImage("sharedImageResource",
gallery_name="string",
resource_group_name="string",
os_type="string",
identifier={
"offer": "string",
"publisher": "string",
"sku": "string",
},
max_recommended_memory_in_gb=0,
max_recommended_vcpu_count=0,
disk_types_not_alloweds=["string"],
end_of_life_date="string",
eula="string",
description="string",
hibernation_enabled=False,
hyper_v_generation="string",
confidential_vm_supported=False,
location="string",
accelerated_network_support_enabled=False,
disk_controller_type_nvme_enabled=False,
min_recommended_memory_in_gb=0,
min_recommended_vcpu_count=0,
name="string",
confidential_vm_enabled=False,
privacy_statement_uri="string",
purchase_plan={
"name": "string",
"product": "string",
"publisher": "string",
},
release_note_uri="string",
architecture="string",
specialized=False,
tags={
"string": "string",
},
trusted_launch_enabled=False,
trusted_launch_supported=False)
const sharedImageResource = new azure.compute.SharedImage("sharedImageResource", {
galleryName: "string",
resourceGroupName: "string",
osType: "string",
identifier: {
offer: "string",
publisher: "string",
sku: "string",
},
maxRecommendedMemoryInGb: 0,
maxRecommendedVcpuCount: 0,
diskTypesNotAlloweds: ["string"],
endOfLifeDate: "string",
eula: "string",
description: "string",
hibernationEnabled: false,
hyperVGeneration: "string",
confidentialVmSupported: false,
location: "string",
acceleratedNetworkSupportEnabled: false,
diskControllerTypeNvmeEnabled: false,
minRecommendedMemoryInGb: 0,
minRecommendedVcpuCount: 0,
name: "string",
confidentialVmEnabled: false,
privacyStatementUri: "string",
purchasePlan: {
name: "string",
product: "string",
publisher: "string",
},
releaseNoteUri: "string",
architecture: "string",
specialized: false,
tags: {
string: "string",
},
trustedLaunchEnabled: false,
trustedLaunchSupported: false,
});
type: azure:compute:SharedImage
properties:
acceleratedNetworkSupportEnabled: false
architecture: string
confidentialVmEnabled: false
confidentialVmSupported: false
description: string
diskControllerTypeNvmeEnabled: false
diskTypesNotAlloweds:
- string
endOfLifeDate: string
eula: string
galleryName: string
hibernationEnabled: false
hyperVGeneration: string
identifier:
offer: string
publisher: string
sku: string
location: string
maxRecommendedMemoryInGb: 0
maxRecommendedVcpuCount: 0
minRecommendedMemoryInGb: 0
minRecommendedVcpuCount: 0
name: string
osType: string
privacyStatementUri: string
purchasePlan:
name: string
product: string
publisher: string
releaseNoteUri: string
resourceGroupName: string
specialized: false
tags:
string: string
trustedLaunchEnabled: false
trustedLaunchSupported: false
SharedImage 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 SharedImage resource accepts the following input properties:
- Gallery
Name This property is required. Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- Identifier
This property is required. SharedImage Identifier - An
identifier
block as defined below. - Os
Type This property is required. Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- Architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - Confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- Confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- Description string
- A description of this Shared Image.
- Disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- Disk
Types List<string>Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - End
Of stringLife Date - The end of life date in RFC3339 format of the Image.
- Eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- Hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- Hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - Location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Max
Recommended intMemory In Gb - Maximum memory in GB recommended for the Image.
- Max
Recommended intVcpu Count - Maximum count of vCPUs recommended for the Image.
- Min
Recommended intMemory In Gb - Minimum memory in GB recommended for the Image.
- Min
Recommended intVcpu Count - Minimum count of vCPUs recommended for the Image.
- Name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- Privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- Purchase
Plan SharedImage Purchase Plan - A
purchase_plan
block as defined below. - Release
Note stringUri - The URI containing the Release Notes associated with this Shared Image.
- Specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Dictionary<string, string>
- A mapping of tags to assign to the Shared Image.
- Trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- Trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- Gallery
Name This property is required. Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- Identifier
This property is required. SharedImage Identifier Args - An
identifier
block as defined below. - Os
Type This property is required. Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- Architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - Confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- Confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- Description string
- A description of this Shared Image.
- Disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- Disk
Types []stringNot Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - End
Of stringLife Date - The end of life date in RFC3339 format of the Image.
- Eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- Hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- Hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - Location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Max
Recommended intMemory In Gb - Maximum memory in GB recommended for the Image.
- Max
Recommended intVcpu Count - Maximum count of vCPUs recommended for the Image.
- Min
Recommended intMemory In Gb - Minimum memory in GB recommended for the Image.
- Min
Recommended intVcpu Count - Minimum count of vCPUs recommended for the Image.
- Name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- Privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- Purchase
Plan SharedImage Purchase Plan Args - A
purchase_plan
block as defined below. - Release
Note stringUri - The URI containing the Release Notes associated with this Shared Image.
- Specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- map[string]string
- A mapping of tags to assign to the Shared Image.
- Trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- Trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- gallery
Name This property is required. Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- identifier
This property is required. SharedImage Identifier - An
identifier
block as defined below. - os
Type This property is required. Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description String
- A description of this Shared Image.
- disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk
Types List<String>Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end
Of StringLife Date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max
Recommended IntegerMemory In Gb - Maximum memory in GB recommended for the Image.
- max
Recommended IntegerVcpu Count - Maximum count of vCPUs recommended for the Image.
- min
Recommended IntegerMemory In Gb - Minimum memory in GB recommended for the Image.
- min
Recommended IntegerVcpu Count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase
Plan SharedImage Purchase Plan - A
purchase_plan
block as defined below. - release
Note StringUri - The URI containing the Release Notes associated with this Shared Image.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Map<String,String>
- A mapping of tags to assign to the Shared Image.
- trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- gallery
Name This property is required. Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- identifier
This property is required. SharedImage Identifier - An
identifier
block as defined below. - os
Type This property is required. Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description string
- A description of this Shared Image.
- disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk
Types string[]Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end
Of stringLife Date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max
Recommended numberMemory In Gb - Maximum memory in GB recommended for the Image.
- max
Recommended numberVcpu Count - Maximum count of vCPUs recommended for the Image.
- min
Recommended numberMemory In Gb - Minimum memory in GB recommended for the Image.
- min
Recommended numberVcpu Count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase
Plan SharedImage Purchase Plan - A
purchase_plan
block as defined below. - release
Note stringUri - The URI containing the Release Notes associated with this Shared Image.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- {[key: string]: string}
- A mapping of tags to assign to the Shared Image.
- trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- gallery_
name This property is required. Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- identifier
This property is required. SharedImage Identifier Args - An
identifier
block as defined below. - os_
type This property is required. Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- accelerated_
network_ support_ enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential_
vm_ enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential_
vm_ supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description str
- A description of this Shared Image.
- disk_
controller_ type_ nvme_ enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk_
types_ Sequence[str]not_ alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end_
of_ strlife_ date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- hibernation_
enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper_
v_ generation Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max_
recommended_ intmemory_ in_ gb - Maximum memory in GB recommended for the Image.
- max_
recommended_ intvcpu_ count - Maximum count of vCPUs recommended for the Image.
- min_
recommended_ intmemory_ in_ gb - Minimum memory in GB recommended for the Image.
- min_
recommended_ intvcpu_ count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- privacy_
statement_ uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase_
plan SharedImage Purchase Plan Args - A
purchase_plan
block as defined below. - release_
note_ struri - The URI containing the Release Notes associated with this Shared Image.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Mapping[str, str]
- A mapping of tags to assign to the Shared Image.
- trusted_
launch_ enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted_
launch_ supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- gallery
Name This property is required. Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- identifier
This property is required. Property Map - An
identifier
block as defined below. - os
Type This property is required. Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - resource
Group Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description String
- A description of this Shared Image.
- disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk
Types List<String>Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end
Of StringLife Date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max
Recommended NumberMemory In Gb - Maximum memory in GB recommended for the Image.
- max
Recommended NumberVcpu Count - Maximum count of vCPUs recommended for the Image.
- min
Recommended NumberMemory In Gb - Minimum memory in GB recommended for the Image.
- min
Recommended NumberVcpu Count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase
Plan Property Map - A
purchase_plan
block as defined below. - release
Note StringUri - The URI containing the Release Notes associated with this Shared Image.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Map<String>
- A mapping of tags to assign to the Shared Image.
- trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the SharedImage resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SharedImage Resource
Get an existing SharedImage resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SharedImageState, opts?: CustomResourceOptions): SharedImage
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accelerated_network_support_enabled: Optional[bool] = None,
architecture: Optional[str] = None,
confidential_vm_enabled: Optional[bool] = None,
confidential_vm_supported: Optional[bool] = None,
description: Optional[str] = None,
disk_controller_type_nvme_enabled: Optional[bool] = None,
disk_types_not_alloweds: Optional[Sequence[str]] = None,
end_of_life_date: Optional[str] = None,
eula: Optional[str] = None,
gallery_name: Optional[str] = None,
hibernation_enabled: Optional[bool] = None,
hyper_v_generation: Optional[str] = None,
identifier: Optional[SharedImageIdentifierArgs] = None,
location: Optional[str] = None,
max_recommended_memory_in_gb: Optional[int] = None,
max_recommended_vcpu_count: Optional[int] = None,
min_recommended_memory_in_gb: Optional[int] = None,
min_recommended_vcpu_count: Optional[int] = None,
name: Optional[str] = None,
os_type: Optional[str] = None,
privacy_statement_uri: Optional[str] = None,
purchase_plan: Optional[SharedImagePurchasePlanArgs] = None,
release_note_uri: Optional[str] = None,
resource_group_name: Optional[str] = None,
specialized: Optional[bool] = None,
tags: Optional[Mapping[str, str]] = None,
trusted_launch_enabled: Optional[bool] = None,
trusted_launch_supported: Optional[bool] = None) -> SharedImage
func GetSharedImage(ctx *Context, name string, id IDInput, state *SharedImageState, opts ...ResourceOption) (*SharedImage, error)
public static SharedImage Get(string name, Input<string> id, SharedImageState? state, CustomResourceOptions? opts = null)
public static SharedImage get(String name, Output<String> id, SharedImageState state, CustomResourceOptions options)
resources: _: type: azure:compute:SharedImage get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- Architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - Confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- Confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- Description string
- A description of this Shared Image.
- Disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- Disk
Types List<string>Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - End
Of stringLife Date - The end of life date in RFC3339 format of the Image.
- Eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- Gallery
Name Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- Hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- Hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - Identifier
Shared
Image Identifier - An
identifier
block as defined below. - Location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Max
Recommended intMemory In Gb - Maximum memory in GB recommended for the Image.
- Max
Recommended intVcpu Count - Maximum count of vCPUs recommended for the Image.
- Min
Recommended intMemory In Gb - Minimum memory in GB recommended for the Image.
- Min
Recommended intVcpu Count - Minimum count of vCPUs recommended for the Image.
- Name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- Os
Type Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - Privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- Purchase
Plan SharedImage Purchase Plan - A
purchase_plan
block as defined below. - Release
Note stringUri - The URI containing the Release Notes associated with this Shared Image.
- Resource
Group Name Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Dictionary<string, string>
- A mapping of tags to assign to the Shared Image.
- Trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- Trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- Accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- Architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - Confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- Confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- Description string
- A description of this Shared Image.
- Disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- Disk
Types []stringNot Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - End
Of stringLife Date - The end of life date in RFC3339 format of the Image.
- Eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- Gallery
Name Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- Hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- Hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - Identifier
Shared
Image Identifier Args - An
identifier
block as defined below. - Location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Max
Recommended intMemory In Gb - Maximum memory in GB recommended for the Image.
- Max
Recommended intVcpu Count - Maximum count of vCPUs recommended for the Image.
- Min
Recommended intMemory In Gb - Minimum memory in GB recommended for the Image.
- Min
Recommended intVcpu Count - Minimum count of vCPUs recommended for the Image.
- Name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- Os
Type Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - Privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- Purchase
Plan SharedImage Purchase Plan Args - A
purchase_plan
block as defined below. - Release
Note stringUri - The URI containing the Release Notes associated with this Shared Image.
- Resource
Group Name Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- Specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- map[string]string
- A mapping of tags to assign to the Shared Image.
- Trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- Trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description String
- A description of this Shared Image.
- disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk
Types List<String>Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end
Of StringLife Date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- gallery
Name Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - identifier
Shared
Image Identifier - An
identifier
block as defined below. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max
Recommended IntegerMemory In Gb - Maximum memory in GB recommended for the Image.
- max
Recommended IntegerVcpu Count - Maximum count of vCPUs recommended for the Image.
- min
Recommended IntegerMemory In Gb - Minimum memory in GB recommended for the Image.
- min
Recommended IntegerVcpu Count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- os
Type Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase
Plan SharedImage Purchase Plan - A
purchase_plan
block as defined below. - release
Note StringUri - The URI containing the Release Notes associated with this Shared Image.
- resource
Group Name Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Map<String,String>
- A mapping of tags to assign to the Shared Image.
- trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description string
- A description of this Shared Image.
- disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk
Types string[]Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end
Of stringLife Date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- gallery
Name Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - identifier
Shared
Image Identifier - An
identifier
block as defined below. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max
Recommended numberMemory In Gb - Maximum memory in GB recommended for the Image.
- max
Recommended numberVcpu Count - Maximum count of vCPUs recommended for the Image.
- min
Recommended numberMemory In Gb - Minimum memory in GB recommended for the Image.
- min
Recommended numberVcpu Count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- os
Type Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase
Plan SharedImage Purchase Plan - A
purchase_plan
block as defined below. - release
Note stringUri - The URI containing the Release Notes associated with this Shared Image.
- resource
Group Name Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- {[key: string]: string}
- A mapping of tags to assign to the Shared Image.
- trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- accelerated_
network_ support_ enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential_
vm_ enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential_
vm_ supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description str
- A description of this Shared Image.
- disk_
controller_ type_ nvme_ enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk_
types_ Sequence[str]not_ alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end_
of_ strlife_ date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- gallery_
name Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- hibernation_
enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper_
v_ generation Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - identifier
Shared
Image Identifier Args - An
identifier
block as defined below. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max_
recommended_ intmemory_ in_ gb - Maximum memory in GB recommended for the Image.
- max_
recommended_ intvcpu_ count - Maximum count of vCPUs recommended for the Image.
- min_
recommended_ intmemory_ in_ gb - Minimum memory in GB recommended for the Image.
- min_
recommended_ intvcpu_ count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- os_
type Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - privacy_
statement_ uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase_
plan SharedImage Purchase Plan Args - A
purchase_plan
block as defined below. - release_
note_ struri - The URI containing the Release Notes associated with this Shared Image.
- resource_
group_ name Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Mapping[str, str]
- A mapping of tags to assign to the Shared Image.
- trusted_
launch_ enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted_
launch_ supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
- accelerated
Network Support Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports Accelerated Network. Changing this forces a new resource to be created.
- architecture
Changes to this property will trigger replacement.
- CPU architecture supported by an OS. Possible values are
x64
andArm64
. Defaults tox64
. Changing this forces a new resource to be created. - confidential
Vm Enabled Changes to this property will trigger replacement.
Specifies if Confidential Virtual Machines enabled. It will enable all the features of trusted, with higher confidentiality features for isolate machines or encrypted data. Available for Gen2 machines. Changing this forces a new resource to be created.
Note:: Only one of
trusted_launch_supported
,trusted_launch_enabled
,confidential_vm_supported
andconfidential_vm_enabled
can be specified.- confidential
Vm Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Confidential virtual machines and Gen2 virtual machines with standard security from a compatible Gen2 OS disk VHD or Gen2 Managed image. Changing this forces a new resource to be created.
- description String
- A description of this Shared Image.
- disk
Controller Type Nvme Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports NVMe disks. Changing this forces a new resource to be created.
- disk
Types List<String>Not Alloweds - One or more Disk Types not allowed for the Image. Possible values include
Standard_LRS
andPremium_LRS
. - end
Of StringLife Date - The end of life date in RFC3339 format of the Image.
- eula
Changes to this property will trigger replacement.
- The End User Licence Agreement for the Shared Image. Changing this forces a new resource to be created.
- gallery
Name Changes to this property will trigger replacement.
- Specifies the name of the Shared Image Gallery in which this Shared Image should exist. Changing this forces a new resource to be created.
- hibernation
Enabled Changes to this property will trigger replacement.
- Specifies if the Shared Image supports hibernation. Changing this forces a new resource to be created.
- hyper
VGeneration Changes to this property will trigger replacement.
- The generation of HyperV that the Virtual Machine used to create the Shared Image is based on. Possible values are
V1
andV2
. Defaults toV1
. Changing this forces a new resource to be created. - identifier Property Map
- An
identifier
block as defined below. - location
Changes to this property will trigger replacement.
- Specifies the supported Azure location where the Shared Image Gallery exists. Changing this forces a new resource to be created.
- max
Recommended NumberMemory In Gb - Maximum memory in GB recommended for the Image.
- max
Recommended NumberVcpu Count - Maximum count of vCPUs recommended for the Image.
- min
Recommended NumberMemory In Gb - Minimum memory in GB recommended for the Image.
- min
Recommended NumberVcpu Count - Minimum count of vCPUs recommended for the Image.
- name
Changes to this property will trigger replacement.
- Specifies the name of the Shared Image. Changing this forces a new resource to be created.
- os
Type Changes to this property will trigger replacement.
- The type of Operating System present in this Shared Image. Possible values are
Linux
andWindows
. Changing this forces a new resource to be created. - privacy
Statement Uri Changes to this property will trigger replacement.
- The URI containing the Privacy Statement associated with this Shared Image. Changing this forces a new resource to be created.
- purchase
Plan Property Map - A
purchase_plan
block as defined below. - release
Note StringUri - The URI containing the Release Notes associated with this Shared Image.
- resource
Group Name Changes to this property will trigger replacement.
- The name of the resource group in which the Shared Image Gallery exists. Changing this forces a new resource to be created.
- specialized
Changes to this property will trigger replacement.
Specifies that the Operating System used inside this Image has not been Generalized (for example,
sysprep
on Windows has not been run). Changing this forces a new resource to be created.!> Note: It's recommended to Generalize images where possible - Specialized Images reuse the same UUID internally within each Virtual Machine, which can have unintended side-effects.
- Map<String>
- A mapping of tags to assign to the Shared Image.
- trusted
Launch Enabled Changes to this property will trigger replacement.
- Specifies if Trusted Launch has to be enabled for the Virtual Machine created from the Shared Image. Changing this forces a new resource to be created.
- trusted
Launch Supported Changes to this property will trigger replacement.
- Specifies if supports creation of both Trusted Launch virtual machines and Gen2 virtual machines with standard security created from the Shared Image. Changing this forces a new resource to be created.
Supporting Types
SharedImageIdentifier, SharedImageIdentifierArgs
- Offer
This property is required. Changes to this property will trigger replacement.
- The Offer Name for this Shared Image. Changing this forces a new resource to be created.
- Publisher
This property is required. Changes to this property will trigger replacement.
- The Publisher Name for this Gallery Image. Changing this forces a new resource to be created.
- Sku
This property is required. Changes to this property will trigger replacement.
- The Name of the SKU for this Gallery Image. Changing this forces a new resource to be created.
- Offer
This property is required. Changes to this property will trigger replacement.
- The Offer Name for this Shared Image. Changing this forces a new resource to be created.
- Publisher
This property is required. Changes to this property will trigger replacement.
- The Publisher Name for this Gallery Image. Changing this forces a new resource to be created.
- Sku
This property is required. Changes to this property will trigger replacement.
- The Name of the SKU for this Gallery Image. Changing this forces a new resource to be created.
- offer
This property is required. Changes to this property will trigger replacement.
- The Offer Name for this Shared Image. Changing this forces a new resource to be created.
- publisher
This property is required. Changes to this property will trigger replacement.
- The Publisher Name for this Gallery Image. Changing this forces a new resource to be created.
- sku
This property is required. Changes to this property will trigger replacement.
- The Name of the SKU for this Gallery Image. Changing this forces a new resource to be created.
- offer
This property is required. Changes to this property will trigger replacement.
- The Offer Name for this Shared Image. Changing this forces a new resource to be created.
- publisher
This property is required. Changes to this property will trigger replacement.
- The Publisher Name for this Gallery Image. Changing this forces a new resource to be created.
- sku
This property is required. Changes to this property will trigger replacement.
- The Name of the SKU for this Gallery Image. Changing this forces a new resource to be created.
- offer
This property is required. Changes to this property will trigger replacement.
- The Offer Name for this Shared Image. Changing this forces a new resource to be created.
- publisher
This property is required. Changes to this property will trigger replacement.
- The Publisher Name for this Gallery Image. Changing this forces a new resource to be created.
- sku
This property is required. Changes to this property will trigger replacement.
- The Name of the SKU for this Gallery Image. Changing this forces a new resource to be created.
- offer
This property is required. Changes to this property will trigger replacement.
- The Offer Name for this Shared Image. Changing this forces a new resource to be created.
- publisher
This property is required. Changes to this property will trigger replacement.
- The Publisher Name for this Gallery Image. Changing this forces a new resource to be created.
- sku
This property is required. Changes to this property will trigger replacement.
- The Name of the SKU for this Gallery Image. Changing this forces a new resource to be created.
SharedImagePurchasePlan, SharedImagePurchasePlanArgs
- Name
This property is required. Changes to this property will trigger replacement.
- The Purchase Plan Name for this Shared Image. Changing this forces a new resource to be created.
- Product
Changes to this property will trigger replacement.
- The Purchase Plan Product for this Gallery Image. Changing this forces a new resource to be created.
- Publisher
Changes to this property will trigger replacement.
- The Purchase Plan Publisher for this Gallery Image. Changing this forces a new resource to be created.
- Name
This property is required. Changes to this property will trigger replacement.
- The Purchase Plan Name for this Shared Image. Changing this forces a new resource to be created.
- Product
Changes to this property will trigger replacement.
- The Purchase Plan Product for this Gallery Image. Changing this forces a new resource to be created.
- Publisher
Changes to this property will trigger replacement.
- The Purchase Plan Publisher for this Gallery Image. Changing this forces a new resource to be created.
- name
This property is required. Changes to this property will trigger replacement.
- The Purchase Plan Name for this Shared Image. Changing this forces a new resource to be created.
- product
Changes to this property will trigger replacement.
- The Purchase Plan Product for this Gallery Image. Changing this forces a new resource to be created.
- publisher
Changes to this property will trigger replacement.
- The Purchase Plan Publisher for this Gallery Image. Changing this forces a new resource to be created.
- name
This property is required. Changes to this property will trigger replacement.
- The Purchase Plan Name for this Shared Image. Changing this forces a new resource to be created.
- product
Changes to this property will trigger replacement.
- The Purchase Plan Product for this Gallery Image. Changing this forces a new resource to be created.
- publisher
Changes to this property will trigger replacement.
- The Purchase Plan Publisher for this Gallery Image. Changing this forces a new resource to be created.
- name
This property is required. Changes to this property will trigger replacement.
- The Purchase Plan Name for this Shared Image. Changing this forces a new resource to be created.
- product
Changes to this property will trigger replacement.
- The Purchase Plan Product for this Gallery Image. Changing this forces a new resource to be created.
- publisher
Changes to this property will trigger replacement.
- The Purchase Plan Publisher for this Gallery Image. Changing this forces a new resource to be created.
- name
This property is required. Changes to this property will trigger replacement.
- The Purchase Plan Name for this Shared Image. Changing this forces a new resource to be created.
- product
Changes to this property will trigger replacement.
- The Purchase Plan Product for this Gallery Image. Changing this forces a new resource to be created.
- publisher
Changes to this property will trigger replacement.
- The Purchase Plan Publisher for this Gallery Image. Changing this forces a new resource to be created.
Import
Shared Images can be imported using the resource id
, e.g.
$ pulumi import azure:compute/sharedImage:SharedImage image1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Compute/galleries/gallery1/images/image1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.