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.
Applies To: System Center 2012 - App Controller
Gets one or more App Controller cloud objects.
Parameter Set: __AllParameterSets
Get-SCACCloud [[-CloudSystem] <ACCloudSystem> ] [[-Id] <Guid> ] [-ACServer <ACServer> ] [ <CommonParameters>]
The Get-SCACCloud cmdlet gets one or more System Center 2012 - App Controller cloud objects.
Specifies an App Controller server object. To retrieve an App Controller server object, use the Get-SCACServer cmdlet.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Specifies a cloud system object. To retrieve a cloud system object, use the Get-SCACCloudSystem cmdlet.
Aliases |
none |
Required? |
false |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Specifies a GUID that represents the subscription ID for a cloud.
Aliases |
none |
Required? |
false |
Position? |
2 |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters
The input type is the type of the objects that you can pipe to the cmdlet.
- Microsoft.SystemCenter.CloudManager.PowerShell.ACCloudSystem, System.Guid
The output type is the type of the objects that the cmdlet emits.
- Microsoft.SystemCenter.CloudManager.PowerShell.ACCloud
Description
-----------
The first command gets the cloud system object named CloudSystem01 and stores the object in the $CloudSystem variable.
The second command gets the clouds for the cloud system stored in $CloudSystem (in this case, CloudSystem01).
PS C:\> $CloudSystem = Get-SCACCloudSystem -Name "CloudSystem01"
PS C:\> Get-SCACCloud -CloudSystem $CloudSystem
Description
-----------
This command gets the cloud object with the subscription id of bb4915e4-e4bf-499d-8126-b6e80c63daff.
PS C:\> Get-SCACCloud -Id "bb4915e4-e4bf-499d-8126-b6e80c63daff"