Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #10753 - Fix output types and add example #10758

Merged
merged 1 commit into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 41 additions & 13 deletions reference/5.1/Microsoft.PowerShell.Utility/Update-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Utility
ms.date: 12/12/2022
ms.date: 01/02/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/update-list?view=powershell-5.1&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Update-List
Expand All @@ -25,7 +25,8 @@ Update-List [-Add <Object[]>] [-Remove <Object[]>] [-InputObject <PSObject>] [[-
### ReplaceSet

```
Update-List -Replace <Object[]> [-InputObject <PSObject>] [[-Property] <String>] [<CommonParameters>]
Update-List -Replace <Object[]> [-InputObject <PSObject>] [[-Property] <String>]
[<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -37,17 +38,13 @@ objects.
The **Add** and **Remove** parameters add individual items to and remove them from the collection.
The **Replace** parameter replaces the entire collection.

If you do not specify a property in the command, `Update-List` returns an object that describes the
update instead of updating the object. You can submit the update object to cmdlets that change
objects, such as `Set` cmdlets.
If you don't specify a property in the command, `Update-List` returns a hashtable that describes the
update instead of updating the object. Later, you can use this change set to update a list object.

This cmdlet works only when the property that is being updated supports the **IList** interface that
This cmdlet works only when the property that's being updated supports the **IList** interface that
`Update-List` uses. Also, any `Set` cmdlets that accept an update must support the **IList**
interface.

The core cmdlets that are installed with PowerShell do not support this interface. To
determine whether a cmdlet supports `Update-List`, see the cmdlet Help topic.

## EXAMPLES

### Example 1: Add items to a property value
Expand Down Expand Up @@ -170,6 +167,36 @@ Deck : 2♣ K♥ 4♠ 10♥ 8♠ 10♦ 9♠ 6♠ K♦ 7♣ 3♣ Q♣ A♥
8♥
```

### Example 4: Apply a change set to a list object

If you don't specify a property, `Update-List` returns a hashtable that describes the update instead
of updating the object. You can cast the hashtable to a **System.PSListModifier** object and use the
`ApplyTo()` method to apply the change set to a list.

```powershell
$list = [System.Collections.ArrayList] (1, 43, 2)
$changeInstructions = Update-List -Remove 43 -Add 42
$changeInstructions
```

```Output
Name Value
---- -----
Add {42}
Remove {43}
```

```powershell
([PSListModifier]($changeInstructions)).ApplyTo($list)
$list
```

```Output
1
2
42
```

## PARAMETERS

### -Add
Expand Down Expand Up @@ -207,7 +234,7 @@ Accept wildcard characters: False

### -Property

Specifies the property that contains the collection that is being updated. If you omit this
Specifies the property that contains the collection that's being updated. If you omit this
parameter, `Update-List` returns an object that represents the change instead of changing the
object.

Expand Down Expand Up @@ -260,7 +287,8 @@ Accept wildcard characters: False

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
-WarningAction, and -WarningVariable. For more information, see
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

Expand All @@ -270,9 +298,9 @@ You can pipe the object to be updated to this cmdlet.

## OUTPUTS

### System.Management.Automation.PSListModifier
### System.Collections.Hashtable

By default, this cmdlet returns an object representing the update action.
By default, this cmdlet returns a hashtable that describes the update.

### System.Object

Expand Down
54 changes: 41 additions & 13 deletions reference/7.2/Microsoft.PowerShell.Utility/Update-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Utility
ms.date: 12/12/2022
ms.date: 01/02/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/update-list?view=powershell-7.2&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Update-List
Expand All @@ -25,7 +25,8 @@ Update-List [-Add <Object[]>] [-Remove <Object[]>] [-InputObject <PSObject>] [[-
### ReplaceSet

```
Update-List -Replace <Object[]> [-InputObject <PSObject>] [[-Property] <String>] [<CommonParameters>]
Update-List -Replace <Object[]> [-InputObject <PSObject>] [[-Property] <String>]
[<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -37,17 +38,13 @@ objects.
The **Add** and **Remove** parameters add individual items to and remove them from the collection.
The **Replace** parameter replaces the entire collection.

If you do not specify a property in the command, `Update-List` returns an object that describes the
update instead of updating the object. You can submit the update object to cmdlets that change
objects, such as `Set` cmdlets.
If you don't specify a property in the command, `Update-List` returns a hashtable that describes the
update instead of updating the object. Later, you can use this change set to update a list object.

This cmdlet works only when the property that is being updated supports the **IList** interface that
This cmdlet works only when the property that's being updated supports the **IList** interface that
`Update-List` uses. Also, any `Set` cmdlets that accept an update must support the **IList**
interface.

The core cmdlets that are installed with PowerShell do not support this interface. To
determine whether a cmdlet supports `Update-List`, see the cmdlet Help topic.

This cmdlet was reintroduced in PowerShell 7.

## EXAMPLES
Expand Down Expand Up @@ -172,6 +169,36 @@ Deck : 2♣ K♥ 4♠ 10♥ 8♠ 10♦ 9♠ 6♠ K♦ 7♣ 3♣ Q♣ A♥
8♥
```

### Example 4: Apply a change set to a list object

If you don't specify a property, `Update-List` returns a hashtable that describes the update instead
of updating the object. You can cast the hashtable to a **System.PSListModifier** object and use the
`ApplyTo()` method to apply the change set to a list.

```powershell
$list = [System.Collections.ArrayList] (1, 43, 2)
$changeInstructions = Update-List -Remove 43 -Add 42
$changeInstructions
```

```Output
Name Value
---- -----
Add {42}
Remove {43}
```

```powershell
([PSListModifier]($changeInstructions)).ApplyTo($list)
$list
```

```Output
1
2
42
```

## PARAMETERS

### -Add
Expand Down Expand Up @@ -209,7 +236,7 @@ Accept wildcard characters: False

### -Property

Specifies the property that contains the collection that is being updated. If you omit this
Specifies the property that contains the collection that's being updated. If you omit this
parameter, `Update-List` returns an object that represents the change instead of changing the
object.

Expand Down Expand Up @@ -262,7 +289,8 @@ Accept wildcard characters: False

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
-WarningAction, and -WarningVariable. For more information, see
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

Expand All @@ -272,9 +300,9 @@ You can pipe the object to be updated to this cmdlet.

## OUTPUTS

### System.Management.Automation.PSListModifier
### System.Collections.Hashtable

By default, this cmdlet returns an object representing the update action.
By default, this cmdlet returns a hashtable that describes the update.

### System.Object

Expand Down
54 changes: 41 additions & 13 deletions reference/7.3/Microsoft.PowerShell.Utility/Update-List.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
external help file: Microsoft.PowerShell.Commands.Utility.dll-Help.xml
Locale: en-US
Module Name: Microsoft.PowerShell.Utility
ms.date: 12/12/2022
ms.date: 01/02/2024
online version: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/update-list?view=powershell-7.3&WT.mc_id=ps-gethelp
schema: 2.0.0
title: Update-List
Expand All @@ -25,7 +25,8 @@ Update-List [-Add <Object[]>] [-Remove <Object[]>] [-InputObject <PSObject>] [[-
### ReplaceSet

```
Update-List -Replace <Object[]> [-InputObject <PSObject>] [[-Property] <String>] [<CommonParameters>]
Update-List -Replace <Object[]> [-InputObject <PSObject>] [[-Property] <String>]
[<CommonParameters>]
```

## DESCRIPTION
Expand All @@ -37,17 +38,13 @@ objects.
The **Add** and **Remove** parameters add individual items to and remove them from the collection.
The **Replace** parameter replaces the entire collection.

If you do not specify a property in the command, `Update-List` returns an object that describes the
update instead of updating the object. You can submit the update object to cmdlets that change
objects, such as `Set` cmdlets.
If you don't specify a property in the command, `Update-List` returns a hashtable that describes the
update instead of updating the object. Later, you can use this change set to update a list object.

This cmdlet works only when the property that is being updated supports the **IList** interface that
This cmdlet works only when the property that's being updated supports the **IList** interface that
`Update-List` uses. Also, any `Set` cmdlets that accept an update must support the **IList**
interface.

The core cmdlets that are installed with PowerShell do not support this interface. To
determine whether a cmdlet supports `Update-List`, see the cmdlet Help topic.

This cmdlet was reintroduced in PowerShell 7.

## EXAMPLES
Expand Down Expand Up @@ -172,6 +169,36 @@ Deck : 2♣ K♥ 4♠ 10♥ 8♠ 10♦ 9♠ 6♠ K♦ 7♣ 3♣ Q♣ A♥
8♥
```

### Example 4: Apply a change set to a list object

If you don't specify a property, `Update-List` returns a hashtable that describes the update instead
of updating the object. You can cast the hashtable to a **System.PSListModifier** object and use the
`ApplyTo()` method to apply the change set to a list.

```powershell
$list = [System.Collections.ArrayList] (1, 43, 2)
$changeInstructions = Update-List -Remove 43 -Add 42
$changeInstructions
```

```Output
Name Value
---- -----
Add {42}
Remove {43}
```

```powershell
([PSListModifier]($changeInstructions)).ApplyTo($list)
$list
```

```Output
1
2
42
```

## PARAMETERS

### -Add
Expand Down Expand Up @@ -209,7 +236,7 @@ Accept wildcard characters: False

### -Property

Specifies the property that contains the collection that is being updated. If you omit this
Specifies the property that contains the collection that's being updated. If you omit this
parameter, `Update-List` returns an object that represents the change instead of changing the
object.

Expand Down Expand Up @@ -262,7 +289,8 @@ Accept wildcard characters: False

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose,
-WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).
-WarningAction, and -WarningVariable. For more information, see
[about_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

Expand All @@ -272,9 +300,9 @@ You can pipe the object to be updated to this cmdlet.

## OUTPUTS

### System.Management.Automation.PSListModifier
### System.Collections.Hashtable

By default, this cmdlet returns an object representing the update action.
By default, this cmdlet returns a hashtable that describes the update.

### System.Object

Expand Down
Loading