Set-SCACCloudSystem

Set-SCACCloudSystem

Updates the properties of a cloud system.

Syntax

Parameter Set: Default
Set-SCACCloudSystem [-CloudSystem] <ACCloudSystem> [-CertificateFilePath <String> ] [-Description <String> ] [-Name <String> ] [ <CommonParameters>]

Detailed Description

The Set-SCACCloudSystem cmdlet updates the properties of a cloud system.

Parameters

-CertificateFilePath<String>

Specifies a file path to the certificate.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-CloudSystem<ACCloudSystem>

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

-Description<String>

Specifies a description for the cloud system.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Name<String>

Specifies a name for the cloud system.

Aliases

none

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, -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 1 --------------------------

Description

-----------

The first command gets the cloud system object named CloudSystem01.Contoso.com 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.Contoso.com"
PS C:\> Set-SCACCloudSystem -CloudSystem $CloudSystem -Name "Test Cloud System" –Description "This is a test cloud system."