Skip to content

Commit

Permalink
pushing fix for #194 for Update-GSChromeDevice
Browse files Browse the repository at this point in the history
  • Loading branch information
scrthq committed Jun 5, 2019
1 parent db1967b commit e24f166
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
* [PSGSuite - ChangeLog](#psgsuite---changelog)
* [2.28.2](#2282)
* [2.28.1](#2281)
* [2.28.0](#2280)
* [2.27.0](#2270)
Expand Down Expand Up @@ -89,6 +90,15 @@

# PSGSuite - ChangeLog

## 2.28.2

* [Issue #194](https://github.com/scrthq/PSGSuite/issues/194)
* Fixed: Parameters not setting correctyl on `Update-GSChromeOSDevice`:
* `AnnotatedAssetId [string]`
* `AnnotatedLocation [string]`
* `AnnotatedUser [string]`
* `Notes [string]`

## 2.28.1

* [Issue #188](https://github.com/scrthq/PSGSuite/issues/188)
Expand Down
2 changes: 1 addition & 1 deletion PSGSuite/PSGSuite.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'PSGSuite.psm1'

# Version number of this module.
ModuleVersion = '2.28.1'
ModuleVersion = '2.28.2'

# ID used to uniquely identify this module
GUID = '9d751152-e83e-40bb-a6db-4c329092aaec'
Expand Down
2 changes: 1 addition & 1 deletion PSGSuite/Public/Security/Update-GSChromeOSDevice.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function Update-GSChromeOSDevice {
foreach ($dev in $ResourceId) {
try {
Write-Verbose "Updating Chrome OS Device '$dev'"
$request = $service.Chromeosdevices.Patch($actionBody,$customerId,$dev)
$request = $service.Chromeosdevices.Patch($body,$customerId,$dev)
$request.Execute()
}
catch {
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,15 @@ All other functions are either intact or have an alias included to support backw

[Full CHANGELOG here](https://github.com/scrthq/PSGSuite/blob/master/CHANGELOG.md)

#### 2.28.2

* [Issue #194](https://github.com/scrthq/PSGSuite/issues/194)
* Fixed: Parameters not setting correctyl on `Update-GSChromeOSDevice`:
* `AnnotatedAssetId [string]`
* `AnnotatedLocation [string]`
* `AnnotatedUser [string]`
* `Notes [string]`

#### 2.28.1

* [Issue #188](https://github.com/scrthq/PSGSuite/issues/188)
Expand Down

0 comments on commit e24f166

Please sign in to comment.