Citrix Daas SDK

Set-AppLibIsolationGroup

Updates an isolation group in the library

Syntax

Set-AppLibIsolationGroup
   [-IsolationGroupUid] <Int32>
   [-Name <String>]
   [-Description <String>]
   [-Version <String>]
   [-LoggingId <Guid>]
   [<CitrixCommonParameters>]
   [<CommonParameters>]
<!--NeedCopy-->

Description

The isolation group will be updated with the new properties

Examples

EXAMPLE 1

Updates only the name for the specified isolation group.

Set-AppLibIsolationGroup -IsolationGroupUid 58 -Name "MyIsolationGroup"
<!--NeedCopy-->

EXAMPLE 2

Updates only the description for the specified isolation group.

Set-AppLibIsolationGroup -IsolationGroupUid 58 -Description "Some description here"
<!--NeedCopy-->

EXAMPLE 3

Updates only the version for the specified isolation group.

Set-AppLibIsolationGroup -IsolationGroupUid 58 -Version "1.0.0.1"
<!--NeedCopy-->

EXAMPLE 4

Updates the name, description and version for the specified isolation group.

Set-AppLibIsolationGroup -IsolationGroupUid 58 -Name "MyIsolationGroup" -Description "Some description here" -Version "1.0.0.1"
<!--NeedCopy-->

Parameters

-IsolationGroupUid

The AppLibrary’s internal unique identifier of the Isolation Group.

Type: Int32
Position: 2
Default value: None
Required: True
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Name

The name of the isolation group.

Type: String
Position: Named
Default value: None
Required: False
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: True

-Description

The description of the isolation group.

Type: String
Position: Named
Default value: None
Required: False
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: True

-Version

The version of the isolation group.

Type: String
Position: Named
Default value: None
Required: False
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: True

-LoggingId

Specifies the identifier of the high-level operation this cmdlet call forms a part of. Citrix Studio and Director typically create high-level operations. PowerShell scripts can also wrap a series of cmdlet calls in a high-level operation by way of the Start-LogHighLevelOperation and Stop-LogHighLevelOperation cmdlets.

Type: Guid
Position: Named
Default value: None
Required: False
Accept pipeline input: False
Accept wildcard characters: False

CitrixCommonParameters

This cmdlet supports the common Citrix parameters: -AdminAddress, -AdminClientIP, -BearerToken, -TraceParent, -TraceState and -VirtualSiteId. For more information, see about_CitrixCommonParameters.

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

None

You can’t pipe objects to this cmdlet.

Outputs

None

By default, this cmdlet returns no output.

Notes

At least one of the name, description and version parameters must be supplied.

Set-AppLibIsolationGroup