azure-native.azurestackhci.GalleryImage
Explore with Pulumi AI
The gallery images resource definition.
Uses Azure REST API version 2025-02-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-12-15-preview.
Other available API versions: 2022-12-15-preview, 2023-07-01-preview, 2023-09-01-preview, 2024-01-01, 2024-02-01-preview, 2024-05-01-preview, 2024-07-15-preview, 2024-08-01-preview, 2024-10-01-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native azurestackhci [ApiVersion]
. See the version guide for details.
Create GalleryImage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GalleryImage(name: string, args: GalleryImageArgs, opts?: CustomResourceOptions);
@overload
def GalleryImage(resource_name: str,
args: GalleryImageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GalleryImage(resource_name: str,
opts: Optional[ResourceOptions] = None,
os_type: Optional[Union[str, OperatingSystemTypes]] = None,
resource_group_name: Optional[str] = None,
gallery_image_name: Optional[str] = None,
cloud_init_data_source: Optional[Union[str, CloudInitDataSource]] = None,
hyper_v_generation: Optional[Union[str, HyperVGeneration]] = None,
identifier: Optional[GalleryImageIdentifierArgs] = None,
image_path: Optional[str] = None,
location: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
container_id: Optional[str] = None,
source_virtual_machine_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
version: Optional[GalleryImageVersionArgs] = None,
vm_image_repository_credentials: Optional[VmImageRepositoryCredentialsArgs] = 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:azurestackhci:GalleryImage
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. GalleryImageArgs - 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. 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
This property is required. string - The unique name of the resource.
- args
This property is required. GalleryImageArgs - 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. GalleryImageArgs - 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. GalleryImageArgs - 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 galleryImageResource = new AzureNative.AzureStackHCI.GalleryImage("galleryImageResource", new()
{
OsType = "string",
ResourceGroupName = "string",
GalleryImageName = "string",
CloudInitDataSource = "string",
HyperVGeneration = "string",
Identifier = new AzureNative.AzureStackHCI.Inputs.GalleryImageIdentifierArgs
{
Offer = "string",
Publisher = "string",
Sku = "string",
},
ImagePath = "string",
Location = "string",
ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
{
Name = "string",
Type = "string",
},
ContainerId = "string",
SourceVirtualMachineId = "string",
Tags =
{
{ "string", "string" },
},
Version = new AzureNative.AzureStackHCI.Inputs.GalleryImageVersionArgs
{
Name = "string",
},
VmImageRepositoryCredentials = new AzureNative.AzureStackHCI.Inputs.VmImageRepositoryCredentialsArgs
{
Password = "string",
Username = "string",
},
});
example, err := azurestackhci.NewGalleryImage(ctx, "galleryImageResource", &azurestackhci.GalleryImageArgs{
OsType: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
GalleryImageName: pulumi.String("string"),
CloudInitDataSource: pulumi.String("string"),
HyperVGeneration: pulumi.String("string"),
Identifier: &azurestackhci.GalleryImageIdentifierArgs{
Offer: pulumi.String("string"),
Publisher: pulumi.String("string"),
Sku: pulumi.String("string"),
},
ImagePath: pulumi.String("string"),
Location: pulumi.String("string"),
ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
ContainerId: pulumi.String("string"),
SourceVirtualMachineId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
Version: &azurestackhci.GalleryImageVersionArgs{
Name: pulumi.String("string"),
},
VmImageRepositoryCredentials: &azurestackhci.VmImageRepositoryCredentialsArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
})
var galleryImageResource = new GalleryImage("galleryImageResource", GalleryImageArgs.builder()
.osType("string")
.resourceGroupName("string")
.galleryImageName("string")
.cloudInitDataSource("string")
.hyperVGeneration("string")
.identifier(GalleryImageIdentifierArgs.builder()
.offer("string")
.publisher("string")
.sku("string")
.build())
.imagePath("string")
.location("string")
.extendedLocation(ExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.containerId("string")
.sourceVirtualMachineId("string")
.tags(Map.of("string", "string"))
.version(GalleryImageVersionArgs.builder()
.name("string")
.build())
.vmImageRepositoryCredentials(VmImageRepositoryCredentialsArgs.builder()
.password("string")
.username("string")
.build())
.build());
gallery_image_resource = azure_native.azurestackhci.GalleryImage("galleryImageResource",
os_type="string",
resource_group_name="string",
gallery_image_name="string",
cloud_init_data_source="string",
hyper_v_generation="string",
identifier={
"offer": "string",
"publisher": "string",
"sku": "string",
},
image_path="string",
location="string",
extended_location={
"name": "string",
"type": "string",
},
container_id="string",
source_virtual_machine_id="string",
tags={
"string": "string",
},
version={
"name": "string",
},
vm_image_repository_credentials={
"password": "string",
"username": "string",
})
const galleryImageResource = new azure_native.azurestackhci.GalleryImage("galleryImageResource", {
osType: "string",
resourceGroupName: "string",
galleryImageName: "string",
cloudInitDataSource: "string",
hyperVGeneration: "string",
identifier: {
offer: "string",
publisher: "string",
sku: "string",
},
imagePath: "string",
location: "string",
extendedLocation: {
name: "string",
type: "string",
},
containerId: "string",
sourceVirtualMachineId: "string",
tags: {
string: "string",
},
version: {
name: "string",
},
vmImageRepositoryCredentials: {
password: "string",
username: "string",
},
});
type: azure-native:azurestackhci:GalleryImage
properties:
cloudInitDataSource: string
containerId: string
extendedLocation:
name: string
type: string
galleryImageName: string
hyperVGeneration: string
identifier:
offer: string
publisher: string
sku: string
imagePath: string
location: string
osType: string
resourceGroupName: string
sourceVirtualMachineId: string
tags:
string: string
version:
name: string
vmImageRepositoryCredentials:
password: string
username: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The GalleryImage resource accepts the following input properties:
- Os
Type This property is required. string | Pulumi.Azure Native. Azure Stack HCI. Operating System Types - Operating system type that the gallery image uses [Windows, Linux]
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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
Id string - Storage ContainerID of the storage container to be used for gallery image
- Extended
Location Pulumi.Azure Native. Azure Stack HCI. Inputs. Extended Location - The extendedLocation of the resource.
- Gallery
Image Name Changes to this property will trigger replacement.
- Name of the gallery image
- 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.
- Image
Path string - location of the image the gallery image should be created from
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Source
Virtual stringMachine Id - Resource ID of the source virtual machine from whose OS disk the gallery image is created.
- 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.
- Vm
Image Pulumi.Repository Credentials Azure Native. Azure Stack HCI. Inputs. Vm Image Repository Credentials - The credentials used to login to the image repository that has access to the specified image
- Os
Type This property is required. string | OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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
Id string - Storage ContainerID of the storage container to be used for gallery image
- Extended
Location ExtendedLocation Args - The extendedLocation of the resource.
- Gallery
Image Name Changes to this property will trigger replacement.
- Name of the gallery image
- 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.
- Image
Path string - location of the image the gallery image should be created from
- Location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- Source
Virtual stringMachine Id - Resource ID of the source virtual machine from whose OS disk the gallery image is created.
- map[string]string
- Resource tags.
- Version
Gallery
Image Version Args - Specifies information about the gallery image version that you want to create or update.
- Vm
Image VmRepository Credentials Image Repository Credentials Args - The credentials used to login to the image repository that has access to the specified image
- os
Type This property is required. String | OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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
Id String - Storage ContainerID of the storage container to be used for gallery image
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- gallery
Image Name Changes to this property will trigger replacement.
- Name of the gallery image
- hyper
VGeneration String | HyperVGeneration - The hypervisor generation of the Virtual Machine [V1, V2]
- identifier
Gallery
Image Identifier - This is the gallery image definition identifier.
- image
Path String - location of the image the gallery image should be created from
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- source
Virtual StringMachine Id - Resource ID of the source virtual machine from whose OS disk the gallery image is created.
- Map<String,String>
- Resource tags.
- version
Gallery
Image Version - Specifies information about the gallery image version that you want to create or update.
- vm
Image VmRepository Credentials Image Repository Credentials - The credentials used to login to the image repository that has access to the specified image
- os
Type This property is required. string | OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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
Id string - Storage ContainerID of the storage container to be used for gallery image
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- gallery
Image Name Changes to this property will trigger replacement.
- Name of the gallery image
- hyper
VGeneration string | HyperVGeneration - The hypervisor generation of the Virtual Machine [V1, V2]
- identifier
Gallery
Image Identifier - This is the gallery image definition identifier.
- image
Path string - location of the image the gallery image should be created from
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- source
Virtual stringMachine Id - Resource ID of the source virtual machine from whose OS disk the gallery image is created.
- {[key: string]: string}
- Resource tags.
- version
Gallery
Image Version - Specifies information about the gallery image version that you want to create or update.
- vm
Image VmRepository Credentials Image Repository Credentials - The credentials used to login to the image repository that has access to the specified image
- os_
type This property is required. str | OperatingSystem Types - Operating system type that the gallery image uses [Windows, Linux]
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- 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_
id str - Storage ContainerID of the storage container to be used for gallery image
- extended_
location ExtendedLocation Args - The extendedLocation of the resource.
- gallery_
image_ name Changes to this property will trigger replacement.
- Name of the gallery image
- 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.
- image_
path str - location of the image the gallery image should be created from
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- source_
virtual_ strmachine_ id - Resource ID of the source virtual machine from whose OS disk the gallery image is created.
- Mapping[str, str]
- Resource tags.
- version
Gallery
Image Version Args - Specifies information about the gallery image version that you want to create or update.
- vm_
image_ Vmrepository_ credentials Image Repository Credentials Args - The credentials used to login to the image repository that has access to the specified image
- os
Type This property is required. String | "Windows" | "Linux" - Operating system type that the gallery image uses [Windows, Linux]
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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
Id String - Storage ContainerID of the storage container to be used for gallery image
- extended
Location Property Map - The extendedLocation of the resource.
- gallery
Image Name Changes to this property will trigger replacement.
- Name of the gallery image
- hyper
VGeneration String | "V1" | "V2" - The hypervisor generation of the Virtual Machine [V1, V2]
- identifier Property Map
- This is the gallery image definition identifier.
- image
Path String - location of the image the gallery image should be created from
- location
Changes to this property will trigger replacement.
- The geo-location where the resource lives
- source
Virtual StringMachine Id - Resource ID of the source virtual machine from whose OS disk the gallery image is created.
- Map<String>
- Resource tags.
- version Property Map
- Specifies information about the gallery image version that you want to create or update.
- vm
Image Property MapRepository Credentials - The credentials used to login to the image repository that has access to the specified image
Outputs
All input properties are implicitly available as output properties. Additionally, the GalleryImage resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the gallery image.
- Status
Pulumi.
Azure Native. Azure Stack HCI. Outputs. Gallery Image Status Response - The observed state of 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - Provisioning state of the gallery image.
- Status
Gallery
Image Status Response - The observed state of 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the gallery image.
- status
Gallery
Image Status Response - The observed state of 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"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - Provisioning state of the gallery image.
- status
Gallery
Image Status Response - The observed state of 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"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_
state str - Provisioning state of the gallery image.
- status
Gallery
Image Status Response - The observed state of 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - Provisioning state of the gallery image.
- status Property Map
- The observed state of 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 - NoCloudNoCloud is used as the datasource
- Azure
- AzureAzure is used as the datasource
- Cloud
Init Data Source No Cloud - NoCloudNoCloud is used as the datasource
- Cloud
Init Data Source Azure - AzureAzure is used as the datasource
- No
Cloud - NoCloudNoCloud is used as the datasource
- Azure
- AzureAzure is used as the datasource
- No
Cloud - NoCloudNoCloud is used as the datasource
- Azure
- AzureAzure is used as the datasource
- NO_CLOUD
- NoCloudNoCloud is used as the datasource
- AZURE
- AzureAzure is used as the datasource
- "No
Cloud" - NoCloudNoCloud is used as the datasource
- "Azure"
- AzureAzure is used as the datasource
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
GalleryImageStatusDownloadStatusResponse, GalleryImageStatusDownloadStatusResponseArgs
- 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
GalleryImageStatusProvisioningStatusResponse, GalleryImageStatusProvisioningStatusResponseArgs
- Status
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. str - 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
This property is required. 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
GalleryImageStatusResponse, GalleryImageStatusResponseArgs
- Download
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Gallery Image Status Download Status Response - The download status of the gallery image
- Error
Code string - GalleryImage 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. Gallery Image Status Provisioning Status Response - provisioning status of the gallery image
- Download
Status GalleryImage Status Download Status Response - The download status of the gallery image
- Error
Code string - GalleryImage provisioning error code
- Error
Message string - Descriptive error message
- Progress
Percentage float64 - The progress of the operation in percentage
- Provisioning
Status GalleryImage Status Provisioning Status Response - provisioning status of the gallery image
- download
Status GalleryImage Status Download Status Response - The download status of the gallery image
- error
Code String - GalleryImage provisioning error code
- error
Message String - Descriptive error message
- progress
Percentage Double - The progress of the operation in percentage
- provisioning
Status GalleryImage Status Provisioning Status Response - provisioning status of the gallery image
- download
Status GalleryImage Status Download Status Response - The download status of the gallery image
- error
Code string - GalleryImage provisioning error code
- error
Message string - Descriptive error message
- progress
Percentage number - The progress of the operation in percentage
- provisioning
Status GalleryImage Status Provisioning Status Response - provisioning status of the gallery image
- download_
status GalleryImage Status Download Status Response - The download status of the gallery image
- error_
code str - GalleryImage provisioning error code
- error_
message str - Descriptive error message
- progress_
percentage float - The progress of the operation in percentage
- provisioning_
status GalleryImage Status Provisioning Status Response - provisioning status of the gallery image
- download
Status Property Map - The download status of the gallery image
- error
Code String - GalleryImage provisioning error code
- error
Message String - Descriptive error message
- progress
Percentage Number - The progress of the operation in percentage
- provisioning
Status Property Map - provisioning status of the gallery image
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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 MB This property is required. double - This property indicates the size of the VHD to be created.
- Size
In MB This property is required. float64 - This property indicates the size of the VHD to be created.
- size
In MB This property is required. Double - This property indicates the size of the VHD to be created.
- size
In MB This property is required. number - This property indicates the size of the VHD to be created.
- size_
in_ mb This property is required. float - This property indicates the size of the VHD to be created.
- size
In MB This property is required. Number - This property indicates the size of the VHD to be created.
HyperVGeneration, HyperVGenerationArgs
- V1
- V1Generation 1 (V1) hypervisor
- V2
- V2Generation 2 (V2) hypervisor
- Hyper
VGeneration V1 - V1Generation 1 (V1) hypervisor
- Hyper
VGeneration V2 - V2Generation 2 (V2) hypervisor
- V1
- V1Generation 1 (V1) hypervisor
- V2
- V2Generation 2 (V2) hypervisor
- V1
- V1Generation 1 (V1) hypervisor
- V2
- V2Generation 2 (V2) hypervisor
- V1
- V1Generation 1 (V1) hypervisor
- V2
- V2Generation 2 (V2) hypervisor
- "V1"
- V1Generation 1 (V1) hypervisor
- "V2"
- V2Generation 2 (V2) hypervisor
OperatingSystemTypes, OperatingSystemTypesArgs
- Windows
- WindowsWindows operating system
- Linux
- LinuxLinux operating system
- Operating
System Types Windows - WindowsWindows operating system
- Operating
System Types Linux - LinuxLinux operating system
- Windows
- WindowsWindows operating system
- Linux
- LinuxLinux operating system
- Windows
- WindowsWindows operating system
- Linux
- LinuxLinux operating system
- WINDOWS
- WindowsWindows operating system
- LINUX
- LinuxLinux operating system
- "Windows"
- WindowsWindows operating system
- "Linux"
- LinuxLinux operating system
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.
VmImageRepositoryCredentials, VmImageRepositoryCredentialsArgs
VmImageRepositoryCredentialsResponse, VmImageRepositoryCredentialsResponseArgs
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:azurestackhci:GalleryImage test-gallery-image /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/galleryImages/{galleryImageName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0