azure-native.compute.DedicatedHostGroup
Explore with Pulumi AI
Specifies information about the dedicated host group that the dedicated hosts should be assigned to. Currently, a dedicated host can only be added to a dedicated host group at creation time. An existing dedicated host cannot be added to another dedicated host group. Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2020-12-01.
Other available API versions: 2023-07-01, 2023-09-01, 2024-03-01, 2024-07-01.
Example Usage
Create or update a dedicated host group with Ultra SSD support.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var dedicatedHostGroup = new AzureNative.Compute.DedicatedHostGroup("dedicatedHostGroup", new()
    {
        AdditionalCapabilities = new AzureNative.Compute.Inputs.DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs
        {
            UltraSSDEnabled = true,
        },
        HostGroupName = "myDedicatedHostGroup",
        Location = "westus",
        PlatformFaultDomainCount = 3,
        ResourceGroupName = "myResourceGroup",
        SupportAutomaticPlacement = true,
        Tags = 
        {
            { "department", "finance" },
        },
        Zones = new[]
        {
            "1",
        },
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewDedicatedHostGroup(ctx, "dedicatedHostGroup", &compute.DedicatedHostGroupArgs{
			AdditionalCapabilities: &compute.DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs{
				UltraSSDEnabled: pulumi.Bool(true),
			},
			HostGroupName:             pulumi.String("myDedicatedHostGroup"),
			Location:                  pulumi.String("westus"),
			PlatformFaultDomainCount:  pulumi.Int(3),
			ResourceGroupName:         pulumi.String("myResourceGroup"),
			SupportAutomaticPlacement: pulumi.Bool(true),
			Tags: pulumi.StringMap{
				"department": pulumi.String("finance"),
			},
			Zones: pulumi.StringArray{
				pulumi.String("1"),
			},
		})
		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.DedicatedHostGroup;
import com.pulumi.azurenative.compute.DedicatedHostGroupArgs;
import com.pulumi.azurenative.compute.inputs.DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs;
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 dedicatedHostGroup = new DedicatedHostGroup("dedicatedHostGroup", DedicatedHostGroupArgs.builder()
            .additionalCapabilities(DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs.builder()
                .ultraSSDEnabled(true)
                .build())
            .hostGroupName("myDedicatedHostGroup")
            .location("westus")
            .platformFaultDomainCount(3)
            .resourceGroupName("myResourceGroup")
            .supportAutomaticPlacement(true)
            .tags(Map.of("department", "finance"))
            .zones("1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dedicatedHostGroup = new azure_native.compute.DedicatedHostGroup("dedicatedHostGroup", {
    additionalCapabilities: {
        ultraSSDEnabled: true,
    },
    hostGroupName: "myDedicatedHostGroup",
    location: "westus",
    platformFaultDomainCount: 3,
    resourceGroupName: "myResourceGroup",
    supportAutomaticPlacement: true,
    tags: {
        department: "finance",
    },
    zones: ["1"],
});
import pulumi
import pulumi_azure_native as azure_native
dedicated_host_group = azure_native.compute.DedicatedHostGroup("dedicatedHostGroup",
    additional_capabilities={
        "ultra_ssd_enabled": True,
    },
    host_group_name="myDedicatedHostGroup",
    location="westus",
    platform_fault_domain_count=3,
    resource_group_name="myResourceGroup",
    support_automatic_placement=True,
    tags={
        "department": "finance",
    },
    zones=["1"])
resources:
  dedicatedHostGroup:
    type: azure-native:compute:DedicatedHostGroup
    properties:
      additionalCapabilities:
        ultraSSDEnabled: true
      hostGroupName: myDedicatedHostGroup
      location: westus
      platformFaultDomainCount: 3
      resourceGroupName: myResourceGroup
      supportAutomaticPlacement: true
      tags:
        department: finance
      zones:
        - '1'
Create or update a dedicated host group.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var dedicatedHostGroup = new AzureNative.Compute.DedicatedHostGroup("dedicatedHostGroup", new()
    {
        HostGroupName = "myDedicatedHostGroup",
        Location = "westus",
        PlatformFaultDomainCount = 3,
        ResourceGroupName = "myResourceGroup",
        SupportAutomaticPlacement = true,
        Tags = 
        {
            { "department", "finance" },
        },
        Zones = new[]
        {
            "1",
        },
    });
});
package main
import (
	compute "github.com/pulumi/pulumi-azure-native-sdk/compute/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := compute.NewDedicatedHostGroup(ctx, "dedicatedHostGroup", &compute.DedicatedHostGroupArgs{
			HostGroupName:             pulumi.String("myDedicatedHostGroup"),
			Location:                  pulumi.String("westus"),
			PlatformFaultDomainCount:  pulumi.Int(3),
			ResourceGroupName:         pulumi.String("myResourceGroup"),
			SupportAutomaticPlacement: pulumi.Bool(true),
			Tags: pulumi.StringMap{
				"department": pulumi.String("finance"),
			},
			Zones: pulumi.StringArray{
				pulumi.String("1"),
			},
		})
		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.DedicatedHostGroup;
import com.pulumi.azurenative.compute.DedicatedHostGroupArgs;
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 dedicatedHostGroup = new DedicatedHostGroup("dedicatedHostGroup", DedicatedHostGroupArgs.builder()
            .hostGroupName("myDedicatedHostGroup")
            .location("westus")
            .platformFaultDomainCount(3)
            .resourceGroupName("myResourceGroup")
            .supportAutomaticPlacement(true)
            .tags(Map.of("department", "finance"))
            .zones("1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const dedicatedHostGroup = new azure_native.compute.DedicatedHostGroup("dedicatedHostGroup", {
    hostGroupName: "myDedicatedHostGroup",
    location: "westus",
    platformFaultDomainCount: 3,
    resourceGroupName: "myResourceGroup",
    supportAutomaticPlacement: true,
    tags: {
        department: "finance",
    },
    zones: ["1"],
});
import pulumi
import pulumi_azure_native as azure_native
dedicated_host_group = azure_native.compute.DedicatedHostGroup("dedicatedHostGroup",
    host_group_name="myDedicatedHostGroup",
    location="westus",
    platform_fault_domain_count=3,
    resource_group_name="myResourceGroup",
    support_automatic_placement=True,
    tags={
        "department": "finance",
    },
    zones=["1"])
resources:
  dedicatedHostGroup:
    type: azure-native:compute:DedicatedHostGroup
    properties:
      hostGroupName: myDedicatedHostGroup
      location: westus
      platformFaultDomainCount: 3
      resourceGroupName: myResourceGroup
      supportAutomaticPlacement: true
      tags:
        department: finance
      zones:
        - '1'
Create DedicatedHostGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DedicatedHostGroup(name: string, args: DedicatedHostGroupArgs, opts?: CustomResourceOptions);@overload
def DedicatedHostGroup(resource_name: str,
                       args: DedicatedHostGroupArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def DedicatedHostGroup(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       platform_fault_domain_count: Optional[int] = None,
                       resource_group_name: Optional[str] = None,
                       additional_capabilities: Optional[DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs] = None,
                       host_group_name: Optional[str] = None,
                       location: Optional[str] = None,
                       support_automatic_placement: Optional[bool] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       zones: Optional[Sequence[str]] = None)func NewDedicatedHostGroup(ctx *Context, name string, args DedicatedHostGroupArgs, opts ...ResourceOption) (*DedicatedHostGroup, error)public DedicatedHostGroup(string name, DedicatedHostGroupArgs args, CustomResourceOptions? opts = null)
public DedicatedHostGroup(String name, DedicatedHostGroupArgs args)
public DedicatedHostGroup(String name, DedicatedHostGroupArgs args, CustomResourceOptions options)
type: azure-native:compute:DedicatedHostGroup
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 DedicatedHostGroupArgs
- 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 DedicatedHostGroupArgs
- 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 DedicatedHostGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DedicatedHostGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DedicatedHostGroupArgs
- 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 dedicatedHostGroupResource = new AzureNative.Compute.DedicatedHostGroup("dedicatedHostGroupResource", new()
{
    PlatformFaultDomainCount = 0,
    ResourceGroupName = "string",
    AdditionalCapabilities = new AzureNative.Compute.Inputs.DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs
    {
        UltraSSDEnabled = false,
    },
    HostGroupName = "string",
    Location = "string",
    SupportAutomaticPlacement = false,
    Tags = 
    {
        { "string", "string" },
    },
    Zones = new[]
    {
        "string",
    },
});
example, err := compute.NewDedicatedHostGroup(ctx, "dedicatedHostGroupResource", &compute.DedicatedHostGroupArgs{
	PlatformFaultDomainCount: pulumi.Int(0),
	ResourceGroupName:        pulumi.String("string"),
	AdditionalCapabilities: &compute.DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs{
		UltraSSDEnabled: pulumi.Bool(false),
	},
	HostGroupName:             pulumi.String("string"),
	Location:                  pulumi.String("string"),
	SupportAutomaticPlacement: pulumi.Bool(false),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var dedicatedHostGroupResource = new DedicatedHostGroup("dedicatedHostGroupResource", DedicatedHostGroupArgs.builder()
    .platformFaultDomainCount(0)
    .resourceGroupName("string")
    .additionalCapabilities(DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs.builder()
        .ultraSSDEnabled(false)
        .build())
    .hostGroupName("string")
    .location("string")
    .supportAutomaticPlacement(false)
    .tags(Map.of("string", "string"))
    .zones("string")
    .build());
dedicated_host_group_resource = azure_native.compute.DedicatedHostGroup("dedicatedHostGroupResource",
    platform_fault_domain_count=0,
    resource_group_name="string",
    additional_capabilities={
        "ultra_ssd_enabled": False,
    },
    host_group_name="string",
    location="string",
    support_automatic_placement=False,
    tags={
        "string": "string",
    },
    zones=["string"])
const dedicatedHostGroupResource = new azure_native.compute.DedicatedHostGroup("dedicatedHostGroupResource", {
    platformFaultDomainCount: 0,
    resourceGroupName: "string",
    additionalCapabilities: {
        ultraSSDEnabled: false,
    },
    hostGroupName: "string",
    location: "string",
    supportAutomaticPlacement: false,
    tags: {
        string: "string",
    },
    zones: ["string"],
});
type: azure-native:compute:DedicatedHostGroup
properties:
    additionalCapabilities:
        ultraSSDEnabled: false
    hostGroupName: string
    location: string
    platformFaultDomainCount: 0
    resourceGroupName: string
    supportAutomaticPlacement: false
    tags:
        string: string
    zones:
        - string
DedicatedHostGroup 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 DedicatedHostGroup resource accepts the following input properties:
- PlatformFault intDomain Count 
- Number of fault domains that the host group can span.
- ResourceGroup stringName 
- The name of the resource group.
- AdditionalCapabilities Pulumi.Azure Native. Compute. Inputs. Dedicated Host Group Properties Additional Capabilities 
- Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
- HostGroup stringName 
- The name of the dedicated host group.
- Location string
- Resource location
- SupportAutomatic boolPlacement 
- Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
- Dictionary<string, string>
- Resource tags
- Zones List<string>
- Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
- PlatformFault intDomain Count 
- Number of fault domains that the host group can span.
- ResourceGroup stringName 
- The name of the resource group.
- AdditionalCapabilities DedicatedHost Group Properties Additional Capabilities Args 
- Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
- HostGroup stringName 
- The name of the dedicated host group.
- Location string
- Resource location
- SupportAutomatic boolPlacement 
- Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
- map[string]string
- Resource tags
- Zones []string
- Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
- platformFault IntegerDomain Count 
- Number of fault domains that the host group can span.
- resourceGroup StringName 
- The name of the resource group.
- additionalCapabilities DedicatedHost Group Properties Additional Capabilities 
- Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
- hostGroup StringName 
- The name of the dedicated host group.
- location String
- Resource location
- supportAutomatic BooleanPlacement 
- Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
- Map<String,String>
- Resource tags
- zones List<String>
- Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
- platformFault numberDomain Count 
- Number of fault domains that the host group can span.
- resourceGroup stringName 
- The name of the resource group.
- additionalCapabilities DedicatedHost Group Properties Additional Capabilities 
- Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
- hostGroup stringName 
- The name of the dedicated host group.
- location string
- Resource location
- supportAutomatic booleanPlacement 
- Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
- {[key: string]: string}
- Resource tags
- zones string[]
- Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
- platform_fault_ intdomain_ count 
- Number of fault domains that the host group can span.
- resource_group_ strname 
- The name of the resource group.
- additional_capabilities DedicatedHost Group Properties Additional Capabilities Args 
- Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
- host_group_ strname 
- The name of the dedicated host group.
- location str
- Resource location
- support_automatic_ boolplacement 
- Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
- Mapping[str, str]
- Resource tags
- zones Sequence[str]
- Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
- platformFault NumberDomain Count 
- Number of fault domains that the host group can span.
- resourceGroup StringName 
- The name of the resource group.
- additionalCapabilities Property Map
- Enables or disables a capability on the dedicated host group. Minimum api-version: 2022-03-01.
- hostGroup StringName 
- The name of the dedicated host group.
- location String
- Resource location
- supportAutomatic BooleanPlacement 
- Specifies whether virtual machines or virtual machine scale sets can be placed automatically on the dedicated host group. Automatic placement means resources are allocated on dedicated hosts, that are chosen by Azure, under the dedicated host group. The value is defaulted to 'false' when not provided. Minimum api-version: 2020-06-01.
- Map<String>
- Resource tags
- zones List<String>
- Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone.
Outputs
All input properties are implicitly available as output properties. Additionally, the DedicatedHostGroup resource produces the following output properties:
- Hosts
List<Pulumi.Azure Native. Compute. Outputs. Sub Resource Read Only Response> 
- A list of references to all dedicated hosts in the dedicated host group.
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceView Pulumi.Azure Native. Compute. Outputs. Dedicated Host Group Instance View Response 
- The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
- Name string
- Resource name
- Type string
- Resource type
- Hosts
[]SubResource Read Only Response 
- A list of references to all dedicated hosts in the dedicated host group.
- Id string
- The provider-assigned unique ID for this managed resource.
- InstanceView DedicatedHost Group Instance View Response 
- The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
- Name string
- Resource name
- Type string
- Resource type
- hosts
List<SubResource Read Only Response> 
- A list of references to all dedicated hosts in the dedicated host group.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceView DedicatedHost Group Instance View Response 
- The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
- name String
- Resource name
- type String
- Resource type
- hosts
SubResource Read Only Response[] 
- A list of references to all dedicated hosts in the dedicated host group.
- id string
- The provider-assigned unique ID for this managed resource.
- instanceView DedicatedHost Group Instance View Response 
- The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
- name string
- Resource name
- type string
- Resource type
- hosts
Sequence[SubResource Read Only Response] 
- A list of references to all dedicated hosts in the dedicated host group.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_view DedicatedHost Group Instance View Response 
- The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
- name str
- Resource name
- type str
- Resource type
- hosts List<Property Map>
- A list of references to all dedicated hosts in the dedicated host group.
- id String
- The provider-assigned unique ID for this managed resource.
- instanceView Property Map
- The dedicated host group instance view, which has the list of instance view of the dedicated hosts under the dedicated host group.
- name String
- Resource name
- type String
- Resource type
Supporting Types
DedicatedHostAllocatableVMResponse, DedicatedHostAllocatableVMResponseArgs        
DedicatedHostAvailableCapacityResponse, DedicatedHostAvailableCapacityResponseArgs          
- AllocatableVMs List<Pulumi.Azure Native. Compute. Inputs. Dedicated Host Allocatable VMResponse> 
- The unutilized capacity of the dedicated host represented in terms of each VM size that is allowed to be deployed to the dedicated host.
- AllocatableVMs []DedicatedHost Allocatable VMResponse 
- The unutilized capacity of the dedicated host represented in terms of each VM size that is allowed to be deployed to the dedicated host.
- allocatableVMs List<DedicatedHost Allocatable VMResponse> 
- The unutilized capacity of the dedicated host represented in terms of each VM size that is allowed to be deployed to the dedicated host.
- allocatableVMs DedicatedHost Allocatable VMResponse[] 
- The unutilized capacity of the dedicated host represented in terms of each VM size that is allowed to be deployed to the dedicated host.
- allocatable_vms Sequence[DedicatedHost Allocatable VMResponse] 
- The unutilized capacity of the dedicated host represented in terms of each VM size that is allowed to be deployed to the dedicated host.
- allocatableVMs List<Property Map>
- The unutilized capacity of the dedicated host represented in terms of each VM size that is allowed to be deployed to the dedicated host.
DedicatedHostGroupInstanceViewResponse, DedicatedHostGroupInstanceViewResponseArgs            
- Hosts
List<Pulumi.Azure Native. Compute. Inputs. Dedicated Host Instance View With Name Response> 
- List of instance view of the dedicated hosts under the dedicated host group.
- Hosts
[]DedicatedHost Instance View With Name Response 
- List of instance view of the dedicated hosts under the dedicated host group.
- hosts
List<DedicatedHost Instance View With Name Response> 
- List of instance view of the dedicated hosts under the dedicated host group.
- hosts
DedicatedHost Instance View With Name Response[] 
- List of instance view of the dedicated hosts under the dedicated host group.
- hosts
Sequence[DedicatedHost Instance View With Name Response] 
- List of instance view of the dedicated hosts under the dedicated host group.
- hosts List<Property Map>
- List of instance view of the dedicated hosts under the dedicated host group.
DedicatedHostGroupPropertiesAdditionalCapabilities, DedicatedHostGroupPropertiesAdditionalCapabilitiesArgs            
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultraSSDEnabled boolean
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultra_ssd_ boolenabled 
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
DedicatedHostGroupPropertiesResponseAdditionalCapabilities, DedicatedHostGroupPropertiesResponseAdditionalCapabilitiesArgs              
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- UltraSSDEnabled bool
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultraSSDEnabled boolean
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultra_ssd_ boolenabled 
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
- ultraSSDEnabled Boolean
- The flag that enables or disables a capability to have UltraSSD Enabled Virtual Machines on Dedicated Hosts of the Dedicated Host Group. For the Virtual Machines to be UltraSSD Enabled, UltraSSDEnabled flag for the resource needs to be set true as well. The value is defaulted to 'false' when not provided. Please refer to https://docs.microsoft.com/en-us/azure/virtual-machines/disks-enable-ultra-ssd for more details on Ultra SSD feature. Note: The ultraSSDEnabled setting can only be enabled for Host Groups that are created as zonal. Minimum api-version: 2022-03-01.
DedicatedHostInstanceViewWithNameResponse, DedicatedHostInstanceViewWithNameResponseArgs              
- AssetId string
- Specifies the unique id of the dedicated physical machine on which the dedicated host resides.
- Name string
- The name of the dedicated host.
- AvailableCapacity Pulumi.Azure Native. Compute. Inputs. Dedicated Host Available Capacity Response 
- Unutilized capacity of the dedicated host.
- Statuses
List<Pulumi.Azure Native. Compute. Inputs. Instance View Status Response> 
- The resource status information.
- AssetId string
- Specifies the unique id of the dedicated physical machine on which the dedicated host resides.
- Name string
- The name of the dedicated host.
- AvailableCapacity DedicatedHost Available Capacity Response 
- Unutilized capacity of the dedicated host.
- Statuses
[]InstanceView Status Response 
- The resource status information.
- assetId String
- Specifies the unique id of the dedicated physical machine on which the dedicated host resides.
- name String
- The name of the dedicated host.
- availableCapacity DedicatedHost Available Capacity Response 
- Unutilized capacity of the dedicated host.
- statuses
List<InstanceView Status Response> 
- The resource status information.
- assetId string
- Specifies the unique id of the dedicated physical machine on which the dedicated host resides.
- name string
- The name of the dedicated host.
- availableCapacity DedicatedHost Available Capacity Response 
- Unutilized capacity of the dedicated host.
- statuses
InstanceView Status Response[] 
- The resource status information.
- asset_id str
- Specifies the unique id of the dedicated physical machine on which the dedicated host resides.
- name str
- The name of the dedicated host.
- available_capacity DedicatedHost Available Capacity Response 
- Unutilized capacity of the dedicated host.
- statuses
Sequence[InstanceView Status Response] 
- The resource status information.
- assetId String
- Specifies the unique id of the dedicated physical machine on which the dedicated host resides.
- name String
- The name of the dedicated host.
- availableCapacity Property Map
- Unutilized capacity of the dedicated host.
- statuses List<Property Map>
- The resource status information.
InstanceViewStatusResponse, InstanceViewStatusResponseArgs        
- Code string
- The status code.
- DisplayStatus string
- The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- Code string
- The status code.
- DisplayStatus string
- The short localizable label for the status.
- Level string
- The level code.
- Message string
- The detailed status message, including for alerts and error messages.
- Time string
- The time of the status.
- code String
- The status code.
- displayStatus String
- The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
- code string
- The status code.
- displayStatus string
- The short localizable label for the status.
- level string
- The level code.
- message string
- The detailed status message, including for alerts and error messages.
- time string
- The time of the status.
- code str
- The status code.
- display_status str
- The short localizable label for the status.
- level str
- The level code.
- message str
- The detailed status message, including for alerts and error messages.
- time str
- The time of the status.
- code String
- The status code.
- displayStatus String
- The short localizable label for the status.
- level String
- The level code.
- message String
- The detailed status message, including for alerts and error messages.
- time String
- The time of the status.
SubResourceReadOnlyResponse, SubResourceReadOnlyResponseArgs          
- Id string
- Resource Id
- Id string
- Resource Id
- id String
- Resource Id
- id string
- Resource Id
- id str
- Resource Id
- id String
- Resource Id
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:compute:DedicatedHostGroup myDedicatedHostGroup /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/hostGroups/{hostGroupName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0