Get-AzHostGroup
Get or list hosts.
Syntax
Get-AzHostGroup
[[-ResourceGroupName] <String>]
[[-Name] <String>]
[-InstanceView]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Get-AzHostGroup
[-ResourceId] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
This cmdlet will get a host group. This cmdlet also lists all host groups in a resource group if a host group name is not given. This cmdlet also lists all host groups in a subscription if neither host group name nor resource group name is given.
Examples
Example 1
Get-AzHostGroup -ResourceGroupName $resourceGroupName -HostGroupName $hostGroupName
ResourceGroupName : myrg01
PlatformFaultDomainCount : 2
Hosts : {/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myrg01/providers/Microsoft.Compute/hostGroups/myhostgroup01/hosts/myhost01}
Zones : {1}
Id : /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myrg01/providers/Microsoft.Compute/hostGroups/myhostgroup01
Name : myhostgroup01
Location : eastus
Tags : {[key1, val1]}
This command returns a host group.
Example 2
Get-AzHostGroup -ResourceGroupName $resourceGroupName
ResourceGroupName Name Location Tags FDCount
----------------- ---- -------- ---- -------
myrg01 myhostgroup01 eastus {[key1, val1]} 1
myrg01 myhostgroup02 eastus {[key1, val1]} 2
This command returns all host groups in the given resource group.
Example 3
Get-AzHostGroup
ResourceGroupName Name Location Tags FDCount
----------------- ---- -------- ---- -------
myrg01 myhostgroup01 eastus {[key1, val1]} 1
myrg01 myhostgroup02 eastus {[key1, val1]} 2
myrg02 myhostgroup03 eastus {[key1, val1]} 2
This command returns all host groups in the subscription.
Parameters
-DefaultProfile
The credentials, account, tenant, and subscription used for communication with Azure.
Type: | IAzureContextContainer |
Aliases: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-InstanceView
Expand the returned object to also list the host's instance views.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Name
The name of the host group.
Type: | String |
Aliases: | HostGroupName |
Position: | 1 |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ResourceGroupName
The name of the resource group.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ResourceId
The ID of the resource.
Type: | String |
Position: | 0 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Inputs
Outputs
Azure PowerShell