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 R2 App Controller
Updates the properties of a cloud system.
Parameter Set: Default
Set-SCACCloudSystem [-CloudSystem] <ACCloudSystem> [[-Name] <String> ] [[-Description] <String> ] [[-CertificateFilePath] <String> ] [-CertificatePassword <SecureString> ] [-PassThru] [ <CommonParameters>]
The Set-SCACCloudSystem cmdlet updates the properties of a cloud system.
Specifies a file path to the certificate.
Aliases |
none |
Required? |
false |
Position? |
4 |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Specifies a certificate password as a secure string. This parameter is for use with Service Provider Foundation.
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? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Provides a description for the cloud system.
Aliases |
none |
Required? |
false |
Position? |
3 |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Specifies a name for the cloud system.
Aliases |
none |
Required? |
false |
Position? |
2 |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
Returns a cloud system object. By default, this cmdlet does not generate output.
Aliases |
none |
Required? |
false |
Position? |
named |
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.
The output type is the type of the objects that the cmdlet emits.
The first command gets the cloud system object named CloudSystem01 and stores the object in the $CloudSystem variable.
The second command updates the name of the cloud system stored in $CloudSystem and adds a description.
PS C:\> $CloudSystem = Get-SCACCloudSystem -Name "CloudSystem01"
PS C:\> Set-SCACCloudSystem -CloudSystem $CloudSystem -Name "CloudSystemTest01" –Description "This is a test cloud system."