azure-native.compute.GalleryImage

Specifies information about the gallery image definition that you want to create or update. API Version: 2020-09-30.

Example Usage

using System.Collections.Generic;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var galleryImage = new AzureNative.Compute.GalleryImage("galleryImage", new()
    {
        GalleryImageName = "myGalleryImageName",
        GalleryName = "myGalleryName",
        HyperVGeneration = "V1",
        Identifier = new AzureNative.Compute.Inputs.GalleryImageIdentifierArgs
        {
            Offer = "myOfferName",
            Publisher = "myPublisherName",
            Sku = "mySkuName",
        },
        Location = "West US",
        OsState = AzureNative.Compute.OperatingSystemStateTypes.Generalized,
        OsType = AzureNative.Compute.OperatingSystemTypes.Windows,
        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.NewGalleryImage(ctx, "galleryImage", &compute.GalleryImageArgs{
			GalleryImageName: pulumi.String("myGalleryImageName"),
			GalleryName:      pulumi.String("myGalleryName"),
			HyperVGeneration: pulumi.String("V1"),
			Identifier: &compute.GalleryImageIdentifierArgs{
				Offer:     pulumi.String("myOfferName"),
				Publisher: pulumi.String("myPublisherName"),
				Sku:       pulumi.String("mySkuName"),
			},
			Location:          pulumi.String("West US"),
			OsState:           compute.OperatingSystemStateTypesGeneralized,
			OsType:            compute.OperatingSystemTypesWindows,
			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.GalleryImage;
import com.pulumi.azurenative.compute.GalleryImageArgs;
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 galleryImage = new GalleryImage("galleryImage", GalleryImageArgs.builder()        
            .galleryImageName("myGalleryImageName")
            .galleryName("myGalleryName")
            .hyperVGeneration("V1")
            .identifier(Map.ofEntries(
                Map.entry("offer", "myOfferName"),
                Map.entry("publisher", "myPublisherName"),
                Map.entry("sku", "mySkuName")
            ))
            .location("West US")
            .osState("Generalized")
            .osType("Windows")
            .resourceGroupName("myResourceGroup")
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

gallery_image = azure_native.compute.GalleryImage("galleryImage",
    gallery_image_name="myGalleryImageName",
    gallery_name="myGalleryName",
    hyper_v_generation="V1",
    identifier=azure_native.compute.GalleryImageIdentifierArgs(
        offer="myOfferName",
        publisher="myPublisherName",
        sku="mySkuName",
    ),
    location="West US",
    os_state=azure_native.compute.OperatingSystemStateTypes.GENERALIZED,
    os_type=azure_native.compute.OperatingSystemTypes.WINDOWS,
    resource_group_name="myResourceGroup")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const galleryImage = new azure_native.compute.GalleryImage("galleryImage", {
    galleryImageName: "myGalleryImageName",
    galleryName: "myGalleryName",
    hyperVGeneration: "V1",
    identifier: {
        offer: "myOfferName",
        publisher: "myPublisherName",
        sku: "mySkuName",
    },
    location: "West US",
    osState: azure_native.compute.OperatingSystemStateTypes.Generalized,
    osType: azure_native.compute.OperatingSystemTypes.Windows,
    resourceGroupName: "myResourceGroup",
});
resources:
  galleryImage:
    type: azure-native:compute:GalleryImage
    properties:
      galleryImageName: myGalleryImageName
      galleryName: myGalleryName
      hyperVGeneration: V1
      identifier:
        offer: myOfferName
        publisher: myPublisherName
        sku: mySkuName
      location: West US
      osState: Generalized
      osType: Windows
      resourceGroupName: myResourceGroup

Create GalleryImage Resource

new GalleryImage(name: string, args: GalleryImageArgs, opts?: CustomResourceOptions);
@overload
def GalleryImage(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 description: Optional[str] = None,
                 disallowed: Optional[DisallowedArgs] = None,
                 end_of_life_date: Optional[str] = None,
                 eula: Optional[str] = None,
                 features: Optional[Sequence[GalleryImageFeatureArgs]] = None,
                 gallery_image_name: Optional[str] = None,
                 gallery_name: Optional[str] = None,
                 hyper_v_generation: Optional[Union[str, HyperVGeneration]] = None,
                 identifier: Optional[GalleryImageIdentifierArgs] = None,
                 location: Optional[str] = None,
                 os_state: Optional[OperatingSystemStateTypes] = None,
                 os_type: Optional[OperatingSystemTypes] = None,
                 privacy_statement_uri: Optional[str] = None,
                 purchase_plan: Optional[ImagePurchasePlanArgs] = None,
                 recommended: Optional[RecommendedMachineConfigurationArgs] = None,
                 release_note_uri: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None)
@overload
def GalleryImage(resource_name: str,
                 args: GalleryImageArgs,
                 opts: Optional[ResourceOptions] = None)
func NewGalleryImage(ctx *Context, name string, args GalleryImageArgs, opts ...ResourceOption) (*GalleryImage, error)
public GalleryImage(string name, GalleryImageArgs args, CustomResourceOptions? opts = null)
public GalleryImage(String name, GalleryImageArgs args)
public GalleryImage(String name, GalleryImageArgs args, CustomResourceOptions options)
type: azure-native:compute:GalleryImage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args GalleryImageArgs
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 GalleryImageArgs
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 GalleryImageArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args GalleryImageArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args GalleryImageArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

GalleryImage 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 GalleryImage resource accepts the following input properties:

GalleryName string

The name of the Shared Image Gallery in which the Image Definition is to be created.

Identifier Pulumi.AzureNative.Compute.Inputs.GalleryImageIdentifierArgs

This is the gallery image definition identifier.

OsState Pulumi.AzureNative.Compute.OperatingSystemStateTypes

This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'.

OsType Pulumi.AzureNative.Compute.OperatingSystemTypes

This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: Windows Linux

ResourceGroupName string

The name of the resource group.

Description string

The description of this gallery image definition resource. This property is updatable.

Disallowed Pulumi.AzureNative.Compute.Inputs.DisallowedArgs

Describes the disallowed disk types.

EndOfLifeDate string

The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable.

Eula string

The Eula agreement for the gallery image definition.

Features List<Pulumi.AzureNative.Compute.Inputs.GalleryImageFeatureArgs>

A list of gallery image features.

GalleryImageName string

The name of the gallery image definition to be created or updated. The allowed characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 characters.

HyperVGeneration string | Pulumi.AzureNative.Compute.HyperVGeneration

The hypervisor generation of the Virtual Machine. Applicable to OS disks only.

Location string

Resource location

PrivacyStatementUri string

The privacy statement uri.

PurchasePlan Pulumi.AzureNative.Compute.Inputs.ImagePurchasePlanArgs

Describes the gallery image definition purchase plan. This is used by marketplace images.

Recommended Pulumi.AzureNative.Compute.Inputs.RecommendedMachineConfigurationArgs

The properties describe the recommended machine configuration for this Image Definition. These properties are updatable.

ReleaseNoteUri string

The release note uri.

Tags Dictionary<string, string>

Resource tags

GalleryName string

The name of the Shared Image Gallery in which the Image Definition is to be created.

Identifier GalleryImageIdentifierArgs

This is the gallery image definition identifier.

OsState OperatingSystemStateTypes

This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'.

OsType OperatingSystemTypes

This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: Windows Linux

ResourceGroupName string

The name of the resource group.

Description string

The description of this gallery image definition resource. This property is updatable.

Disallowed DisallowedArgs

Describes the disallowed disk types.

EndOfLifeDate string

The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable.

Eula string

The Eula agreement for the gallery image definition.

Features []GalleryImageFeatureArgs

A list of gallery image features.

GalleryImageName string

The name of the gallery image definition to be created or updated. The allowed characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 characters.

HyperVGeneration string | HyperVGeneration

The hypervisor generation of the Virtual Machine. Applicable to OS disks only.

Location string

Resource location

PrivacyStatementUri string

The privacy statement uri.

PurchasePlan ImagePurchasePlanArgs

Describes the gallery image definition purchase plan. This is used by marketplace images.

Recommended RecommendedMachineConfigurationArgs

The properties describe the recommended machine configuration for this Image Definition. These properties are updatable.

ReleaseNoteUri string

The release note uri.

Tags map[string]string

Resource tags

galleryName String

The name of the Shared Image Gallery in which the Image Definition is to be created.

identifier GalleryImageIdentifierArgs

This is the gallery image definition identifier.

osState OperatingSystemStateTypes

This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'.

osType OperatingSystemTypes

This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: Windows Linux

resourceGroupName String

The name of the resource group.

description String

The description of this gallery image definition resource. This property is updatable.

disallowed DisallowedArgs

Describes the disallowed disk types.

endOfLifeDate String

The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable.

eula String

The Eula agreement for the gallery image definition.

features List<GalleryImageFeatureArgs>

A list of gallery image features.

galleryImageName String

The name of the gallery image definition to be created or updated. The allowed characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 characters.

hyperVGeneration String | HyperVGeneration

The hypervisor generation of the Virtual Machine. Applicable to OS disks only.

location String

Resource location

privacyStatementUri String

The privacy statement uri.

purchasePlan ImagePurchasePlanArgs

Describes the gallery image definition purchase plan. This is used by marketplace images.

recommended RecommendedMachineConfigurationArgs

The properties describe the recommended machine configuration for this Image Definition. These properties are updatable.

releaseNoteUri String

The release note uri.

tags Map<String,String>

Resource tags

galleryName string

The name of the Shared Image Gallery in which the Image Definition is to be created.

identifier GalleryImageIdentifierArgs

This is the gallery image definition identifier.

osState OperatingSystemStateTypes

This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'.

osType OperatingSystemTypes

This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: Windows Linux

resourceGroupName string

The name of the resource group.

description string

The description of this gallery image definition resource. This property is updatable.

disallowed DisallowedArgs

Describes the disallowed disk types.

endOfLifeDate string

The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable.

eula string

The Eula agreement for the gallery image definition.

features GalleryImageFeatureArgs[]

A list of gallery image features.

galleryImageName string

The name of the gallery image definition to be created or updated. The allowed characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 characters.

hyperVGeneration string | HyperVGeneration

The hypervisor generation of the Virtual Machine. Applicable to OS disks only.

location string

Resource location

privacyStatementUri string

The privacy statement uri.

purchasePlan ImagePurchasePlanArgs

Describes the gallery image definition purchase plan. This is used by marketplace images.

recommended RecommendedMachineConfigurationArgs

The properties describe the recommended machine configuration for this Image Definition. These properties are updatable.

releaseNoteUri string

The release note uri.

tags {[key: string]: string}

Resource tags

gallery_name str

The name of the Shared Image Gallery in which the Image Definition is to be created.

identifier GalleryImageIdentifierArgs

This is the gallery image definition identifier.

os_state OperatingSystemStateTypes

This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'.

os_type OperatingSystemTypes

This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: Windows Linux

resource_group_name str

The name of the resource group.

description str

The description of this gallery image definition resource. This property is updatable.

disallowed DisallowedArgs

Describes the disallowed disk types.

end_of_life_date str

The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable.

eula str

The Eula agreement for the gallery image definition.

features Sequence[GalleryImageFeatureArgs]

A list of gallery image features.

gallery_image_name str

The name of the gallery image definition to be created or updated. The allowed characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 characters.

hyper_v_generation str | HyperVGeneration

The hypervisor generation of the Virtual Machine. Applicable to OS disks only.

location str

Resource location

privacy_statement_uri str

The privacy statement uri.

purchase_plan ImagePurchasePlanArgs

Describes the gallery image definition purchase plan. This is used by marketplace images.

recommended RecommendedMachineConfigurationArgs

The properties describe the recommended machine configuration for this Image Definition. These properties are updatable.

release_note_uri str

The release note uri.

tags Mapping[str, str]

Resource tags

galleryName String

The name of the Shared Image Gallery in which the Image Definition is to be created.

identifier Property Map

This is the gallery image definition identifier.

osState "Generalized" | "Specialized"

This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'.

osType "Windows" | "Linux"

This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image. Possible values are: Windows Linux

resourceGroupName String

The name of the resource group.

description String

The description of this gallery image definition resource. This property is updatable.

disallowed Property Map

Describes the disallowed disk types.

endOfLifeDate String

The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable.

eula String

The Eula agreement for the gallery image definition.

features List<Property Map>

A list of gallery image features.

galleryImageName String

The name of the gallery image definition to be created or updated. The allowed characters are alphabets and numbers with dots, dashes, and periods allowed in the middle. The maximum length is 80 characters.

hyperVGeneration String | "V1" | "V2"

The hypervisor generation of the Virtual Machine. Applicable to OS disks only.

location String

Resource location

privacyStatementUri String

The privacy statement uri.

purchasePlan Property Map

Describes the gallery image definition purchase plan. This is used by marketplace images.

recommended Property Map

The properties describe the recommended machine configuration for this Image Definition. These properties are updatable.

releaseNoteUri String

The release note uri.

tags Map<String>

Resource tags

Outputs

All input properties are implicitly available as output properties. Additionally, the GalleryImage resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Name string

Resource name

ProvisioningState string

The provisioning state, which only appears in the response.

Type string

Resource type

Id string

The provider-assigned unique ID for this managed resource.

Name string

Resource name

ProvisioningState string

The provisioning state, which only appears in the response.

Type string

Resource type

id String

The provider-assigned unique ID for this managed resource.

name String

Resource name

provisioningState String

The provisioning state, which only appears in the response.

type String

Resource type

id string

The provider-assigned unique ID for this managed resource.

name string

Resource name

provisioningState string

The provisioning state, which only appears in the response.

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.

type str

Resource type

id String

The provider-assigned unique ID for this managed resource.

name String

Resource name

provisioningState String

The provisioning state, which only appears in the response.

type String

Resource type

Supporting Types

Disallowed

DiskTypes List<string>

A list of disk types.

DiskTypes []string

A list of disk types.

diskTypes List<String>

A list of disk types.

diskTypes string[]

A list of disk types.

disk_types Sequence[str]

A list of disk types.

diskTypes List<String>

A list of disk types.

DisallowedResponse

DiskTypes List<string>

A list of disk types.

DiskTypes []string

A list of disk types.

diskTypes List<String>

A list of disk types.

diskTypes string[]

A list of disk types.

disk_types Sequence[str]

A list of disk types.

diskTypes List<String>

A list of disk types.

GalleryImageFeature

Name string

The name of the gallery image feature.

Value string

The value of the gallery image feature.

Name string

The name of the gallery image feature.

Value string

The value of the gallery image feature.

name String

The name of the gallery image feature.

value String

The value of the gallery image feature.

name string

The name of the gallery image feature.

value string

The value of the gallery image feature.

name str

The name of the gallery image feature.

value str

The value of the gallery image feature.

name String

The name of the gallery image feature.

value String

The value of the gallery image feature.

GalleryImageFeatureResponse

Name string

The name of the gallery image feature.

Value string

The value of the gallery image feature.

Name string

The name of the gallery image feature.

Value string

The value of the gallery image feature.

name String

The name of the gallery image feature.

value String

The value of the gallery image feature.

name string

The name of the gallery image feature.

value string

The value of the gallery image feature.

name str

The name of the gallery image feature.

value str

The value of the gallery image feature.

name String

The name of the gallery image feature.

value String

The value of the gallery image feature.

GalleryImageIdentifier

Offer string

The name of the gallery image definition offer.

Publisher string

The name of the gallery image definition publisher.

Sku string

The name of the gallery image definition SKU.

Offer string

The name of the gallery image definition offer.

Publisher string

The name of the gallery image definition publisher.

Sku string

The name of the gallery image definition SKU.

offer String

The name of the gallery image definition offer.

publisher String

The name of the gallery image definition publisher.

sku String

The name of the gallery image definition SKU.

offer string

The name of the gallery image definition offer.

publisher string

The name of the gallery image definition publisher.

sku string

The name of the gallery image definition SKU.

offer str

The name of the gallery image definition offer.

publisher str

The name of the gallery image definition publisher.

sku str

The name of the gallery image definition SKU.

offer String

The name of the gallery image definition offer.

publisher String

The name of the gallery image definition publisher.

sku String

The name of the gallery image definition SKU.

GalleryImageIdentifierResponse

Offer string

The name of the gallery image definition offer.

Publisher string

The name of the gallery image definition publisher.

Sku string

The name of the gallery image definition SKU.

Offer string

The name of the gallery image definition offer.

Publisher string

The name of the gallery image definition publisher.

Sku string

The name of the gallery image definition SKU.

offer String

The name of the gallery image definition offer.

publisher String

The name of the gallery image definition publisher.

sku String

The name of the gallery image definition SKU.

offer string

The name of the gallery image definition offer.

publisher string

The name of the gallery image definition publisher.

sku string

The name of the gallery image definition SKU.

offer str

The name of the gallery image definition offer.

publisher str

The name of the gallery image definition publisher.

sku str

The name of the gallery image definition SKU.

offer String

The name of the gallery image definition offer.

publisher String

The name of the gallery image definition publisher.

sku String

The name of the gallery image definition SKU.

HyperVGeneration

V1
V1
V2
V2
HyperVGenerationV1
V1
HyperVGenerationV2
V2
V1
V1
V2
V2
V1
V1
V2
V2
V1
V1
V2
V2
"V1"
V1
"V2"
V2

ImagePurchasePlan

Name string

The plan ID.

Product string

The product ID.

Publisher string

The publisher ID.

Name string

The plan ID.

Product string

The product ID.

Publisher string

The publisher ID.

name String

The plan ID.

product String

The product ID.

publisher String

The publisher ID.

name string

The plan ID.

product string

The product ID.

publisher string

The publisher ID.

name str

The plan ID.

product str

The product ID.

publisher str

The publisher ID.

name String

The plan ID.

product String

The product ID.

publisher String

The publisher ID.

ImagePurchasePlanResponse

Name string

The plan ID.

Product string

The product ID.

Publisher string

The publisher ID.

Name string

The plan ID.

Product string

The product ID.

Publisher string

The publisher ID.

name String

The plan ID.

product String

The product ID.

publisher String

The publisher ID.

name string

The plan ID.

product string

The product ID.

publisher string

The publisher ID.

name str

The plan ID.

product str

The product ID.

publisher str

The publisher ID.

name String

The plan ID.

product String

The product ID.

publisher String

The publisher ID.

OperatingSystemStateTypes

Generalized
Generalized

Generalized image. Needs to be provisioned during deployment time.

Specialized
Specialized

Specialized image. Contains already provisioned OS Disk.

OperatingSystemStateTypesGeneralized
Generalized

Generalized image. Needs to be provisioned during deployment time.

OperatingSystemStateTypesSpecialized
Specialized

Specialized image. Contains already provisioned OS Disk.

Generalized
Generalized

Generalized image. Needs to be provisioned during deployment time.

Specialized
Specialized

Specialized image. Contains already provisioned OS Disk.

Generalized
Generalized

Generalized image. Needs to be provisioned during deployment time.

Specialized
Specialized

Specialized image. Contains already provisioned OS Disk.

GENERALIZED
Generalized

Generalized image. Needs to be provisioned during deployment time.

SPECIALIZED
Specialized

Specialized image. Contains already provisioned OS Disk.

"Generalized"
Generalized

Generalized image. Needs to be provisioned during deployment time.

"Specialized"
Specialized

Specialized image. Contains already provisioned OS Disk.

OperatingSystemTypes

Windows
Windows
Linux
Linux
OperatingSystemTypesWindows
Windows
OperatingSystemTypesLinux
Linux
Windows
Windows
Linux
Linux
Windows
Windows
Linux
Linux
WINDOWS
Windows
LINUX
Linux
"Windows"
Windows
"Linux"
Linux

RecommendedMachineConfiguration

Memory ResourceRange

Describes the resource range.

VCPUs ResourceRange

Describes the resource range.

memory ResourceRange

Describes the resource range.

vCPUs ResourceRange

Describes the resource range.

memory ResourceRange

Describes the resource range.

vCPUs ResourceRange

Describes the resource range.

memory ResourceRange

Describes the resource range.

v_cpus ResourceRange

Describes the resource range.

memory Property Map

Describes the resource range.

vCPUs Property Map

Describes the resource range.

RecommendedMachineConfigurationResponse

Memory ResourceRangeResponse

Describes the resource range.

VCPUs ResourceRangeResponse

Describes the resource range.

memory ResourceRangeResponse

Describes the resource range.

vCPUs ResourceRangeResponse

Describes the resource range.

memory ResourceRangeResponse

Describes the resource range.

vCPUs ResourceRangeResponse

Describes the resource range.

memory ResourceRangeResponse

Describes the resource range.

v_cpus ResourceRangeResponse

Describes the resource range.

memory Property Map

Describes the resource range.

vCPUs Property Map

Describes the resource range.

ResourceRange

Max int

The maximum number of the resource.

Min int

The minimum number of the resource.

Max int

The maximum number of the resource.

Min int

The minimum number of the resource.

max Integer

The maximum number of the resource.

min Integer

The minimum number of the resource.

max number

The maximum number of the resource.

min number

The minimum number of the resource.

max int

The maximum number of the resource.

min int

The minimum number of the resource.

max Number

The maximum number of the resource.

min Number

The minimum number of the resource.

ResourceRangeResponse

Max int

The maximum number of the resource.

Min int

The minimum number of the resource.

Max int

The maximum number of the resource.

Min int

The minimum number of the resource.

max Integer

The maximum number of the resource.

min Integer

The minimum number of the resource.

max number

The maximum number of the resource.

min number

The minimum number of the resource.

max int

The maximum number of the resource.

min int

The minimum number of the resource.

max Number

The maximum number of the resource.

min Number

The minimum number of the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:compute:GalleryImage myGalleryImageName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName} 

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0