azure-native.azurestackhci.MarketplaceGalleryImage
Explore with Pulumi AI
The marketplace gallery image resource definition. Azure REST API version: 2022-12-15-preview.
Other available API versions: 2023-07-01-preview, 2023-09-01-preview, 2024-01-01, 2024-02-01-preview.
Example Usage
PutMarketplaceGalleryImage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var marketplaceGalleryImage = new AzureNative.AzureStackHCI.MarketplaceGalleryImage("marketplaceGalleryImage", new()
{
CloudInitDataSource = AzureNative.AzureStackHCI.CloudInitDataSource.Azure,
ContainerName = "Default_Container",
ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
},
HyperVGeneration = AzureNative.AzureStackHCI.HyperVGeneration.V1,
Identifier = new AzureNative.AzureStackHCI.Inputs.GalleryImageIdentifierArgs
{
Offer = "myOfferName",
Publisher = "myPublisherName",
Sku = "mySkuName",
},
Location = "West US2",
MarketplaceGalleryImageName = "test-marketplace-gallery-image",
OsType = AzureNative.AzureStackHCI.OperatingSystemTypes.Windows,
ResourceGroupName = "test-rg",
Version = new AzureNative.AzureStackHCI.Inputs.GalleryImageVersionArgs
{
Name = "1.0.0",
},
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewMarketplaceGalleryImage(ctx, "marketplaceGalleryImage", &azurestackhci.MarketplaceGalleryImageArgs{
CloudInitDataSource: pulumi.String(azurestackhci.CloudInitDataSourceAzure),
ContainerName: pulumi.String("Default_Container"),
ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
},
HyperVGeneration: pulumi.String(azurestackhci.HyperVGenerationV1),
Identifier: &azurestackhci.GalleryImageIdentifierArgs{
Offer: pulumi.String("myOfferName"),
Publisher: pulumi.String("myPublisherName"),
Sku: pulumi.String("mySkuName"),
},
Location: pulumi.String("West US2"),
MarketplaceGalleryImageName: pulumi.String("test-marketplace-gallery-image"),
OsType: azurestackhci.OperatingSystemTypesWindows,
ResourceGroupName: pulumi.String("test-rg"),
Version: &azurestackhci.GalleryImageVersionArgs{
Name: pulumi.String("1.0.0"),
},
})
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.azurestackhci.MarketplaceGalleryImage;
import com.pulumi.azurenative.azurestackhci.MarketplaceGalleryImageArgs;
import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.GalleryImageIdentifierArgs;
import com.pulumi.azurenative.azurestackhci.inputs.GalleryImageVersionArgs;
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 marketplaceGalleryImage = new MarketplaceGalleryImage("marketplaceGalleryImage", MarketplaceGalleryImageArgs.builder()
.cloudInitDataSource("Azure")
.containerName("Default_Container")
.extendedLocation(ExtendedLocationArgs.builder()
.name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
.type("CustomLocation")
.build())
.hyperVGeneration("V1")
.identifier(GalleryImageIdentifierArgs.builder()
.offer("myOfferName")
.publisher("myPublisherName")
.sku("mySkuName")
.build())
.location("West US2")
.marketplaceGalleryImageName("test-marketplace-gallery-image")
.osType("Windows")
.resourceGroupName("test-rg")
.version(GalleryImageVersionArgs.builder()
.name("1.0.0")
.build())
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
marketplace_gallery_image = azure_native.azurestackhci.MarketplaceGalleryImage("marketplaceGalleryImage",
cloud_init_data_source=azure_native.azurestackhci.CloudInitDataSource.AZURE,
container_name="Default_Container",
extended_location=azure_native.azurestackhci.ExtendedLocationArgs(
name="/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
type=azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
),
hyper_v_generation=azure_native.azurestackhci.HyperVGeneration.V1,
identifier=azure_native.azurestackhci.GalleryImageIdentifierArgs(
offer="myOfferName",
publisher="myPublisherName",
sku="mySkuName",
),
location="West US2",
marketplace_gallery_image_name="test-marketplace-gallery-image",
os_type=azure_native.azurestackhci.OperatingSystemTypes.WINDOWS,
resource_group_name="test-rg",
version=azure_native.azurestackhci.GalleryImageVersionArgs(
name="1.0.0",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const marketplaceGalleryImage = new azure_native.azurestackhci.MarketplaceGalleryImage("marketplaceGalleryImage", {
cloudInitDataSource: azure_native.azurestackhci.CloudInitDataSource.Azure,
containerName: "Default_Container",
extendedLocation: {
name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
},
hyperVGeneration: azure_native.azurestackhci.HyperVGeneration.V1,
identifier: {
offer: "myOfferName",
publisher: "myPublisherName",
sku: "mySkuName",
},
location: "West US2",
marketplaceGalleryImageName: "test-marketplace-gallery-image",
osType: azure_native.azurestackhci.OperatingSystemTypes.Windows,
resourceGroupName: "test-rg",
version: {
name: "1.0.0",
},
});
resources:
marketplaceGalleryImage:
type: azure-native:azurestackhci:MarketplaceGalleryImage
properties:
cloudInitDataSource: Azure
containerName: Default_Container
extendedLocation:
name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
type: CustomLocation
hyperVGeneration: V1
identifier:
offer: myOfferName
publisher: myPublisherName
sku: mySkuName
location: West US2
marketplaceGalleryImageName: test-marketplace-gallery-image
osType: Windows
resourceGroupName: test-rg
version:
name: 1.0.0
Create MarketplaceGalleryImage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MarketplaceGalleryImage(name: string, args: MarketplaceGalleryImageArgs, opts?: CustomResourceOptions);
@overload
def MarketplaceGalleryImage(resource_name: str,
args: MarketplaceGalleryImageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MarketplaceGalleryImage(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
cloud_init_data_source: Optional[Union[str, CloudInitDataSource]] = None,
container_name: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
hyper_v_generation: Optional[Union[str, HyperVGeneration]] = None,
identifier: Optional[GalleryImageIdentifierArgs] = None,
location: Optional[str] = None,
marketplace_gallery_image_name: Optional[str] = None,
os_type: Optional[OperatingSystemTypes] = None,
tags: Optional[Mapping[str, str]] = None,
version: Optional[GalleryImageVersionArgs] = None)
func NewMarketplaceGalleryImage(ctx *Context, name string, args MarketplaceGalleryImageArgs, opts ...ResourceOption) (*MarketplaceGalleryImage, error)
public MarketplaceGalleryImage(string name, MarketplaceGalleryImageArgs args, CustomResourceOptions? opts = null)
public MarketplaceGalleryImage(String name, MarketplaceGalleryImageArgs args)
public MarketplaceGalleryImage(String name, MarketplaceGalleryImageArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:MarketplaceGalleryImage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args MarketplaceGalleryImageArgs
- 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 MarketplaceGalleryImageArgs
- 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 MarketplaceGalleryImageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MarketplaceGalleryImageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MarketplaceGalleryImageArgs
- 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 marketplaceGalleryImageResource = new AzureNative.AzureStackHCI.MarketplaceGalleryImage("marketplaceGalleryImageResource", new()
{
ResourceGroupName = "string",
CloudInitDataSource = "string",
ContainerName = "string",
ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
{
Name = "string",
Type = "string",
},
HyperVGeneration = "string",
Identifier = new AzureNative.AzureStackHCI.Inputs.GalleryImageIdentifierArgs
{
Offer = "string",
Publisher = "string",
Sku = "string",
},
Location = "string",
MarketplaceGalleryImageName = "string",
OsType = AzureNative.AzureStackHCI.OperatingSystemTypes.Linux,
Tags =
{
{ "string", "string" },
},
Version = new AzureNative.AzureStackHCI.Inputs.GalleryImageVersionArgs
{
Name = "string",
},
});
example, err := azurestackhci.NewMarketplaceGalleryImage(ctx, "marketplaceGalleryImageResource", &azurestackhci.MarketplaceGalleryImageArgs{
ResourceGroupName: pulumi.String("string"),
CloudInitDataSource: pulumi.String("string"),
ContainerName: pulumi.String("string"),
ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
HyperVGeneration: pulumi.String("string"),
Identifier: &azurestackhci.GalleryImageIdentifierArgs{
Offer: pulumi.String("string"),
Publisher: pulumi.String("string"),
Sku: pulumi.String("string"),
},
Location: pulumi.String("string"),
MarketplaceGalleryImageName: pulumi.String("string"),
OsType: azurestackhci.OperatingSystemTypesLinux,
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Version: &azurestackhci.GalleryImageVersionArgs{
Name: pulumi.String("string"),
},
})
var marketplaceGalleryImageResource = new MarketplaceGalleryImage("marketplaceGalleryImageResource", MarketplaceGalleryImageArgs.builder()
.resourceGroupName("string")
.cloudInitDataSource("string")
.containerName("string")
.extendedLocation(ExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.hyperVGeneration("string")
.identifier(GalleryImageIdentifierArgs.builder()
.offer("string")
.publisher("string")
.sku("string")
.build())
.location("string")
.marketplaceGalleryImageName("string")
.osType("Linux")
.tags(Map.of("string", "string"))
.version(GalleryImageVersionArgs.builder()
.name("string")
.build())
.build());
marketplace_gallery_image_resource = azure_native.azurestackhci.MarketplaceGalleryImage("marketplaceGalleryImageResource",
resource_group_name="string",
cloud_init_data_source="string",
container_name="string",
extended_location=azure_native.azurestackhci.ExtendedLocationArgs(
name="string",
type="string",
),
hyper_v_generation="string",
identifier=azure_native.azurestackhci.GalleryImageIdentifierArgs(
offer="string",
publisher="string",
sku="string",
),
location="string",
marketplace_gallery_image_name="string",
os_type=azure_native.azurestackhci.OperatingSystemTypes.LINUX,
tags={
"string": "string",
},
version=azure_native.azurestackhci.GalleryImageVersionArgs(
name="string",
))
const marketplaceGalleryImageResource = new azure_native.azurestackhci.MarketplaceGalleryImage("marketplaceGalleryImageResource", {
resourceGroupName: "string",
cloudInitDataSource: "string",
containerName: "string",
extendedLocation: {
name: "string",
type: "string",
},
hyperVGeneration: "string",
identifier: {
offer: "string",
publisher: "string",
sku: "string",
},
location: "string",
marketplaceGalleryImageName: "string",
osType: azure_native.azurestackhci.OperatingSystemTypes.Linux,
tags: {
string: "string",
},
version: {
name: "string",
},
});
type: azure-native:azurestackhci:MarketplaceGalleryImage
properties:
cloudInitDataSource: string
containerName: string
extendedLocation:
name: string
type: string
hyperVGeneration: string
identifier:
offer: string
publisher: string
sku: string
location: string
marketplaceGalleryImageName: string
osType: Linux
resourceGroupName: string
tags:
string: string
version:
name: string
MarketplaceGalleryImage 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 MarketplaceGalleryImage resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cloud
Init string | Pulumi.Data Source Azure Native. Azure Stack HCI. Cloud Init Data Source - Datasource for the gallery image when provisioning with cloud-init [NoCloud, Azure]
- Container
Name string - Container Name for storage container
- Extended
Location Pulumi.Azure Native. Azure Stack HCI. Inputs. Extended Location - The extendedLocation of the resource.
- Hyper
VGeneration string | Pulumi.Azure Native. Azure Stack HCI. Hyper VGeneration - The hypervisor generation of the Virtual Machine [V1, V2]
- Identifier
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Gallery Image Identifier - This is the gallery image definition identifier.
- Location string
- The geo-location where the resource lives
- Marketplace
Gallery stringImage Name - Name of the marketplace gallery image
- Os
Type Pulumi.Azure Native. Azure Stack HCI. Operating System Types - Operating system type that the gallery image uses [Windows, Linux]
- Dictionary<string, string>
- Resource tags.
- Version
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Gallery Image Version - Specifies information about the gallery image version that you want to create or update.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Cloud
Init string | CloudData Source Init Data Source - Datasource for the gallery image when provisioning with cloud-init [NoCloud, Azure]
- Container
Name string - Container Name for storage container
- Extended
Location ExtendedLocation Args - The extendedLocation of the resource.
- Hyper
VGeneration string | HyperVGeneration - The hypervisor generation of the Virtual Machine [V1, V2]
- Identifier
Gallery
Image Identifier Args - This is the gallery image definition identifier.
- Location string
- The geo-location where the resource lives
- Marketplace
Gallery stringImage Name - Name of the marketplace gallery image
- Os
Type OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- map[string]string
- Resource tags.
- Version
Gallery
Image Version Args - Specifies information about the gallery image version that you want to create or update.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cloud
Init String | CloudData Source Init Data Source - Datasource for the gallery image when provisioning with cloud-init [NoCloud, Azure]
- container
Name String - Container Name for storage container
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- hyper
VGeneration String | HyperVGeneration - The hypervisor generation of the Virtual Machine [V1, V2]
- identifier
Gallery
Image Identifier - This is the gallery image definition identifier.
- location String
- The geo-location where the resource lives
- marketplace
Gallery StringImage Name - Name of the marketplace gallery image
- os
Type OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- Map<String,String>
- Resource tags.
- version
Gallery
Image Version - Specifies information about the gallery image version that you want to create or update.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- cloud
Init string | CloudData Source Init Data Source - Datasource for the gallery image when provisioning with cloud-init [NoCloud, Azure]
- container
Name string - Container Name for storage container
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- hyper
VGeneration string | HyperVGeneration - The hypervisor generation of the Virtual Machine [V1, V2]
- identifier
Gallery
Image Identifier - This is the gallery image definition identifier.
- location string
- The geo-location where the resource lives
- marketplace
Gallery stringImage Name - Name of the marketplace gallery image
- os
Type OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- {[key: string]: string}
- Resource tags.
- version
Gallery
Image Version - Specifies information about the gallery image version that you want to create or update.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- cloud_
init_ str | Clouddata_ source Init Data Source - Datasource for the gallery image when provisioning with cloud-init [NoCloud, Azure]
- container_
name str - Container Name for storage container
- extended_
location ExtendedLocation Args - The extendedLocation of the resource.
- hyper_
v_ str | Hypergeneration VGeneration - The hypervisor generation of the Virtual Machine [V1, V2]
- identifier
Gallery
Image Identifier Args - This is the gallery image definition identifier.
- location str
- The geo-location where the resource lives
- marketplace_
gallery_ strimage_ name - Name of the marketplace gallery image
- os_
type OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- Mapping[str, str]
- Resource tags.
- version
Gallery
Image Version Args - Specifies information about the gallery image version that you want to create or update.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- cloud
Init String | "NoData Source Cloud" | "Azure" - Datasource for the gallery image when provisioning with cloud-init [NoCloud, Azure]
- container
Name String - Container Name for storage container
- extended
Location Property Map - The extendedLocation of the resource.
- hyper
VGeneration String | "V1" | "V2" - The hypervisor generation of the Virtual Machine [V1, V2]
- identifier Property Map
- This is the gallery image definition identifier.
- location String
- The geo-location where the resource lives
- marketplace
Gallery StringImage Name - Name of the marketplace gallery image
- os
Type "Linux" | "Windows" - Operating system type that the gallery image uses [Windows, Linux]
- Map<String>
- Resource tags.
- version Property Map
- Specifies information about the gallery image version that you want to create or update.
Outputs
All input properties are implicitly available as output properties. Additionally, the MarketplaceGalleryImage resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the marketplace gallery image.
- Status
Pulumi.
Azure Native. Azure Stack HCI. Outputs. Marketplace Gallery Image Status Response - The observed state of marketplace gallery images
- System
Data Pulumi.Azure Native. Azure Stack HCI. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the marketplace gallery image.
- Status
Marketplace
Gallery Image Status Response - The observed state of marketplace gallery images
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the marketplace gallery image.
- status
Marketplace
Gallery Image Status Response - The observed state of marketplace gallery images
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of the marketplace gallery image.
- status
Marketplace
Gallery Image Status Response - The observed state of marketplace gallery images
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Provisioning state of the marketplace gallery image.
- status
Marketplace
Gallery Image Status Response - The observed state of marketplace gallery images
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the marketplace gallery image.
- status Property Map
- The observed state of marketplace gallery images
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
CloudInitDataSource, CloudInitDataSourceArgs
- No
Cloud - NoCloud
- Azure
- Azure
- Cloud
Init Data Source No Cloud - NoCloud
- Cloud
Init Data Source Azure - Azure
- No
Cloud - NoCloud
- Azure
- Azure
- No
Cloud - NoCloud
- Azure
- Azure
- NO_CLOUD
- NoCloud
- AZURE
- Azure
- "No
Cloud" - NoCloud
- "Azure"
- Azure
ExtendedLocation, ExtendedLocationArgs
- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. Azure Stack HCI. Extended Location Types - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationTypes, ExtendedLocationTypesArgs
- Custom
Location - CustomLocation
- Extended
Location Types Custom Location - CustomLocation
- Custom
Location - CustomLocation
- Custom
Location - CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "Custom
Location" - CustomLocation
GalleryImageIdentifier, GalleryImageIdentifierArgs
GalleryImageIdentifierResponse, GalleryImageIdentifierResponseArgs
GalleryImageVersion, GalleryImageVersionArgs
- Name string
- This is the version of the gallery image.
- Name string
- This is the version of the gallery image.
- name String
- This is the version of the gallery image.
- name string
- This is the version of the gallery image.
- name str
- This is the version of the gallery image.
- name String
- This is the version of the gallery image.
GalleryImageVersionResponse, GalleryImageVersionResponseArgs
- Storage
Profile Pulumi.Azure Native. Azure Stack HCI. Inputs. Gallery Image Version Storage Profile Response - This is the storage profile of a Gallery Image Version.
- Name string
- This is the version of the gallery image.
- Storage
Profile GalleryImage Version Storage Profile Response - This is the storage profile of a Gallery Image Version.
- Name string
- This is the version of the gallery image.
- storage
Profile GalleryImage Version Storage Profile Response - This is the storage profile of a Gallery Image Version.
- name String
- This is the version of the gallery image.
- storage
Profile GalleryImage Version Storage Profile Response - This is the storage profile of a Gallery Image Version.
- name string
- This is the version of the gallery image.
- storage_
profile GalleryImage Version Storage Profile Response - This is the storage profile of a Gallery Image Version.
- name str
- This is the version of the gallery image.
- storage
Profile Property Map - This is the storage profile of a Gallery Image Version.
- name String
- This is the version of the gallery image.
GalleryImageVersionStorageProfileResponse, GalleryImageVersionStorageProfileResponseArgs
- Os
Disk Pulumi.Image Azure Native. Azure Stack HCI. Inputs. Gallery OSDisk Image Response - This is the OS disk image.
- Os
Disk GalleryImage OSDisk Image Response - This is the OS disk image.
- os
Disk GalleryImage OSDisk Image Response - This is the OS disk image.
- os
Disk GalleryImage OSDisk Image Response - This is the OS disk image.
- os_
disk_ Galleryimage OSDisk Image Response - This is the OS disk image.
- os
Disk Property MapImage - This is the OS disk image.
GalleryOSDiskImageResponse, GalleryOSDiskImageResponseArgs
- Size
In doubleMB - This property indicates the size of the VHD to be created.
- Size
In float64MB - This property indicates the size of the VHD to be created.
- size
In DoubleMB - This property indicates the size of the VHD to be created.
- size
In numberMB - This property indicates the size of the VHD to be created.
- size_
in_ floatmb - This property indicates the size of the VHD to be created.
- size
In NumberMB - This property indicates the size of the VHD to be created.
HyperVGeneration, HyperVGenerationArgs
- V1
- V1
- V2
- V2
- Hyper
VGeneration V1 - V1
- Hyper
VGeneration V2 - V2
- V1
- V1
- V2
- V2
- V1
- V1
- V2
- V2
- V1
- V1
- V2
- V2
- "V1"
- V1
- "V2"
- V2
MarketplaceGalleryImageStatusResponse, MarketplaceGalleryImageStatusResponseArgs
- Download
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Marketplace Gallery Image Status Response Download Status - The download status of the gallery image
- Error
Code string - MarketplaceGalleryImage provisioning error code
- Error
Message string - Descriptive error message
- Progress
Percentage double - The progress of the operation in percentage
- Provisioning
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Marketplace Gallery Image Status Response Provisioning Status
- Download
Status MarketplaceGallery Image Status Response Download Status - The download status of the gallery image
- Error
Code string - MarketplaceGalleryImage provisioning error code
- Error
Message string - Descriptive error message
- Progress
Percentage float64 - The progress of the operation in percentage
- Provisioning
Status MarketplaceGallery Image Status Response Provisioning Status
- download
Status MarketplaceGallery Image Status Response Download Status - The download status of the gallery image
- error
Code String - MarketplaceGalleryImage provisioning error code
- error
Message String - Descriptive error message
- progress
Percentage Double - The progress of the operation in percentage
- provisioning
Status MarketplaceGallery Image Status Response Provisioning Status
- download
Status MarketplaceGallery Image Status Response Download Status - The download status of the gallery image
- error
Code string - MarketplaceGalleryImage provisioning error code
- error
Message string - Descriptive error message
- progress
Percentage number - The progress of the operation in percentage
- provisioning
Status MarketplaceGallery Image Status Response Provisioning Status
- download_
status MarketplaceGallery Image Status Response Download Status - The download status of the gallery image
- error_
code str - MarketplaceGalleryImage provisioning error code
- error_
message str - Descriptive error message
- progress_
percentage float - The progress of the operation in percentage
- provisioning_
status MarketplaceGallery Image Status Response Provisioning Status
- download
Status Property Map - The download status of the gallery image
- error
Code String - MarketplaceGalleryImage provisioning error code
- error
Message String - Descriptive error message
- progress
Percentage Number - The progress of the operation in percentage
- provisioning
Status Property Map
MarketplaceGalleryImageStatusResponseDownloadStatus, MarketplaceGalleryImageStatusResponseDownloadStatusArgs
- Download
Size doubleIn MB - The downloaded sized of the image in MB
- Download
Size float64In MB - The downloaded sized of the image in MB
- download
Size DoubleIn MB - The downloaded sized of the image in MB
- download
Size numberIn MB - The downloaded sized of the image in MB
- download_
size_ floatin_ mb - The downloaded sized of the image in MB
- download
Size NumberIn MB - The downloaded sized of the image in MB
MarketplaceGalleryImageStatusResponseProvisioningStatus, MarketplaceGalleryImageStatusResponseProvisioningStatusArgs
- Operation
Id string - The ID of the operation performed on the gallery image
- Status string
- The status of the operation performed on the gallery image [Succeeded, Failed, InProgress]
- Operation
Id string - The ID of the operation performed on the gallery image
- Status string
- The status of the operation performed on the gallery image [Succeeded, Failed, InProgress]
- operation
Id String - The ID of the operation performed on the gallery image
- status String
- The status of the operation performed on the gallery image [Succeeded, Failed, InProgress]
- operation
Id string - The ID of the operation performed on the gallery image
- status string
- The status of the operation performed on the gallery image [Succeeded, Failed, InProgress]
- operation_
id str - The ID of the operation performed on the gallery image
- status str
- The status of the operation performed on the gallery image [Succeeded, Failed, InProgress]
- operation
Id String - The ID of the operation performed on the gallery image
- status String
- The status of the operation performed on the gallery image [Succeeded, Failed, InProgress]
OperatingSystemTypes, OperatingSystemTypesArgs
- Linux
- Linux
- Windows
- Windows
- Operating
System Types Linux - Linux
- Operating
System Types Windows - Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- LINUX
- Linux
- WINDOWS
- Windows
- "Linux"
- Linux
- "Windows"
- Windows
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurestackhci:MarketplaceGalleryImage test-marketplace-gallery-image /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/marketplaceGalleryImages/{marketplaceGalleryImageName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0