Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Get-SCCloudCapacity
Gets the cloud capacity for a private cloud.
Syntax
Parameter Set: Default
Get-SCCloudCapacity [[-Cloud] <Cloud> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]
Detailed Description
The Get-SCCloudCapacity cmdlet gets the cloud capacity for a private cloud in Virtual Machine Manager (VMM). Cloud capacity includes settings for the number of virtual machines, number of virtual CPUs, custom quota points, storage, and memory assigned to a private cloud.
Parameters
-Cloud<Cloud>
Specifies a private cloud object.
Aliases |
none |
Required? |
false |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
True (ByValue) |
Accept Wildcard Characters? |
false |
-VMMServer<ServerConnection>
Specifies a VMM server object.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
True (ByValue) |
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
Examples
Example Example 1: Get the cloud capacity for a specified private cloud.
The first command gets the private cloud object named Cloud01, and then stores the object in the $Cloud variable.
The second command gets the cloud capacity for the private cloud object stored in $Cloud, and displays information about the cloud capacity.
PS C:\> $Cloud = Get-SCCloud -Name "Cloud01"
PS C:\> Get-SCCloudCapacity -Cloud $Cloud