MergePSCustomObject

0.0.2

Apteco PS Modules - PowerShell merge PSCustomObject

This module merges two PSCustomObjects into one. It is able to handle nested structures like hashtables, arrays and PSCustomObjects. Please see the examples below.

Just use

```PowerShell
$left = [PSCustomObject]@{
   "firstname" = "Florian"
   "lastname" = "Friedrichs"
   "address" = [hashtable]@{
 
Apteco PS Modules - PowerShell merge PSCustomObject

This module merges two PSCustomObjects into one. It is able to handle nested structures like hashtables, arrays and PSCustomObjects. Please see the examples below.

Just use

```PowerShell
$left = [PSCustomObject]@{
   "firstname" = "Florian"
   "lastname" = "Friedrichs"
   "address" = [hashtable]@{
       "Street" = "Kaiserstraße 35"
   }
   "tags" = [Array]@("nice","company")
   "product" = [PSCustomObject]@{
       "name" = "Orbit"
       "owner" = "Apteco Ltd."
   }
}

$right = [PSCustomObject]@{
   "lastname" = "von Bracht"
   "Street" = "Schaumainkai 87"
   "address" = [hashtable]@{
       "Street" = "Schaumainkai 87"
       "Postcode" = 60596
   }
   "tags" = [Array]@("wow")
   "product" = [PSCustomObject]@{
       "sprint" = 106
   }
}

Merge-PSCustomObject -Left $left -right $right -AddPropertiesFromRight -MergeArrays -MergePSCustomObjects -MergeHashtables

```

to merge two nested PSCustomObjects into one where the "right" will overwrite existing values from "left".

Show more

Minimum PowerShell version

5.1

Installation Options

Copy and Paste the following command to install this package using PowerShellGet More Info

Install-Module -Name MergePSCustomObject

Copy and Paste the following command to install this package using Microsoft.PowerShell.PSResourceGet More Info

Install-PSResource -Name MergePSCustomObject

You can deploy this package directly to Azure Automation. Note that deploying packages with dependencies will deploy all the dependencies to Azure Automation. Learn More

Manually download the .nupkg file to your system's default download location. Note that the file won't be unpacked, and won't include any dependencies. Learn More

Owners

Copyright

(c) 2023 Apteco GmbH. All rights reserved.

Package Details

Author(s)

  • florian.von.bracht@apteco.de

Tags

Windows Apteco

Functions

Merge-PSCustomObject

PSEditions

Desktop Core

Dependencies

Release Notes


0.0.2 Add dependency for MergeHashtable module        
0.0.1 Initial release of merge pscustomobject module through psgallery

FileList

Version History

Version Downloads Last updated
0.0.2 (current version) 74 8/18/2023
0.0.1 6 8/18/2023