You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## 2.35.0 - 2019-12-29
* [Issue #216](#216) - _Thank you, [@WJurecki](https://github.com/WJurecki)!_
* Added `Add-GSSheetValues` to use the native `Append()` method instead of `BatchUpdate()` to prevent needing to calculate the last row like you do with `Export-GSSheet`. Since the input for this method has additional options and the output differs from what `Export-GSSheet` outputs, this has been moved to a unique function to prevent introducing breaking changes to `Export-GSSheet`.
* [Issue #221](#221)
* Added: `Invoke-GSUserOffboarding` function to wrap common offboarding tasks for ease of access management automation.
* [Issue #248](#248)
* Fixed `Get-GSSheetInfo` so it no longer defaults `-IncludeGridData` to `$true` if not specified in `$PSBoundParameters`.
* [Issue #249](#249)
* Updated private function `Resolve-Email` with new `IsGroup` switch, then cleaned up all `*-GSGroup*` functions to use it so that Group ID's are respected based on RegEx match.
* [Issue #252](#252)
* Added: `Archived` parameter to `Update-GSUser` to enable setting of Archived User licenses.
* Miscellaneous
* Swapped instances of `Get-StoragePath` for `Get-ConfigurationPath` in `Import-SpecificConfiguration` and `Set-PSGSuiteConfig` to avoid alias related issues with PowerShell 4.0
* Added `Add-GSSheetValues` to use the native `Append()` method instead of `BatchUpdate()` to prevent needing to calculate the last row like you do with `Export-GSSheet`. Since the input for this method has additional options and the output differs from what `Export-GSSheet` outputs, this has been moved to a unique function to prevent introducing breaking changes to `Export-GSSheet`.
* Updated private function `Resolve-Email` with new `IsGroup` switch, then cleaned up all `*-GSGroup*` functions to use it so that Group ID's are respected based on RegEx match.
* Added: `Archived` parameter to `Update-GSUser` to enable setting of Archived User licenses.
120
+
* Miscellaneous
121
+
* Swapped instances of `Get-StoragePath` for `Get-ConfigurationPath` in `Import-SpecificConfiguration` and `Set-PSGSuiteConfig` to avoid alias related issues with PowerShell 4.0
Copy file name to clipboardexpand all lines: PSGSuite/Public/Groups/Get-GSGroup.ps1
+6-6
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@
6
6
.DESCRIPTION
7
7
Gets the specified group's information. Returns the full group list if -Group is excluded. Designed for parity with Get-ADGroup (although Google's API is unable to 'Filter' for groups)
8
8
9
-
.PARAMETERGroup
10
-
The list of groups you would like to retrieve info for. If excluded, returns the group list instead
9
+
.PARAMETERIdentity
10
+
The group or list of groups you would like to retrieve info for. If excluded, returns the group list instead
11
11
12
12
.PARAMETERFilter
13
13
Query string search. Complete documentation is at https://developers.google.com/admin-sdk/directory/v1/guides/search-groups
Copy file name to clipboardexpand all lines: PSGSuite/Public/Groups/Get-GSGroupAlias.ps1
+6-9
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,11 @@ function Get-GSGroupAlias {
6
6
.DESCRIPTION
7
7
Gets the specified G SUite Group's aliases
8
8
9
-
.PARAMETERGroup
9
+
.PARAMETERIdentity
10
10
The primary email or ID of the group who you are trying to get aliases for. You can exclude the '@domain.com' to insert the Domain in the config or use the special 'me' to indicate the AdminEmail in the config.
0 commit comments