< Back

Get-AzureRoleSize

Wed Jan 30, 2019 5:44 pm

NAME Get-AzureRoleSize



SYNOPSIS

Gets the role size information for the current subscription.





SYNTAX

Get-AzureRoleSize [[-InstanceSize] <String>] [-Profile <AzureSMProfile>] [-InformationAction <ActionPreference>] [-InformationVariable <String>]

[<CommonParameters>]





DESCRIPTION

The Get-AzureRoleSize cmdlet gets the role size information for the current subscription.





PARAMETERS

-InstanceSize <String>

Specifies the role size name, for example: ExtraSmall, Small, Large, ExtraLarge, A5, A6, A7.



Required? false

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Profile <AzureSMProfile>

Specifies the Azure profile from which this cmdlet reads. If you do not specify a profile, this cmdlet reads from the local default profile.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-InformationAction <ActionPreference>





Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-InformationVariable <String>





Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS



NOTES









-------------------------- Example 1: Get role size information --------------------------



PS C:\\> Get-AzureRoleSize



InstanceSize : A6

RoleSizeLabel :

Cores : 4

MemoryInMb : 28672

SupportedByWebWorkerRoles : True

SupportedByVirtualMachines : True

OperationDescription : Get-AzureRoleSize

OperationId : c5ed7b3a-03b3-548d-876b-6688c5b29cce

OperationStatus : Succeeded



InstanceSize : A7

RoleSizeLabel :

Cores : 8

MemoryInMb : 57344

SupportedByWebWorkerRoles : True

SupportedByVirtualMachines : True

OperationDescription : Get-AzureRoleSize

OperationId : c5ed7b3a-03b3-548d-876b-6688c5b29cce

OperationStatus : Succeeded



This command gets role size information for the current subscription.

-------------------------- Example 2: Get role size information and specify the role size name --------------------------



PS C:\\> Get-AzureRoleSize -InstanceSize A7



InstanceSize : A7

RoleSizeLabel :

Cores : 8

MemoryInMb : 57344

SupportedByWebWorkerRoles : True

SupportedByVirtualMachines : True

OperationDescription : Get-AzureRoleSize

OperationId : c5ed7b3a-03b3-548d-876b-6688c5b29cce

OperationStatus : Succeeded



This command gets role size information for the specified role size.

-------------------------- Example 3: Get role size information for all virtual machines in all of the Azure services --------------------------



PS C:\\>Get-AzureService | Get-AzureVM | Get-AzureRoleSize



This command gets role size information for all virtual machines in all of the Azure services.



RELATED LINKS

Get-AzureRole

Get-AzureService

Get-AzureVM