mirror of
https://github.com/GAM-team/GAM.git
synced 2026-07-04 04:41:35 +00:00
Added a variant of gam create vaulthold
Some checks failed
Push wiki / pushwiki (push) Has been cancelled
Some checks failed
Push wiki / pushwiki (push) Has been cancelled
This commit is contained in:
@@ -462,6 +462,7 @@
|
|||||||
See: https://support.google.com/mail/answer/7190
|
See: https://support.google.com/mail/answer/7190
|
||||||
<QueryGroup> ::= <String>
|
<QueryGroup> ::= <String>
|
||||||
See: https://developers.google.com/admin-sdk/directory/v1/guides/search-groups
|
See: https://developers.google.com/admin-sdk/directory/v1/guides/search-groups
|
||||||
|
<QueryItem> ::= <UniqueID>|<String>
|
||||||
<QueryMemberRestrictions> ::= <String>
|
<QueryMemberRestrictions> ::= <String>
|
||||||
See: https://cloud.google.com/identity/docs/reference/rest/v1beta1/SecuritySettings#MemberRestriction
|
See: https://cloud.google.com/identity/docs/reference/rest/v1beta1/SecuritySettings#MemberRestriction
|
||||||
<QueryMobile> ::= <String>
|
<QueryMobile> ::= <String>
|
||||||
|
|||||||
@@ -10,6 +10,15 @@ Add the `-s` option to the end of the above commands to suppress creating the `g
|
|||||||
|
|
||||||
See [Downloads-Installs-GAM7](https://github.com/GAM-team/GAM/wiki/Downloads-Installs) for Windows or other options, including manual installation
|
See [Downloads-Installs-GAM7](https://github.com/GAM-team/GAM/wiki/Downloads-Installs) for Windows or other options, including manual installation
|
||||||
|
|
||||||
|
### - 7.22.04
|
||||||
|
|
||||||
|
Added a variant of `gam create vaulthold` that gets its parameters from a saved Vault query.
|
||||||
|
```
|
||||||
|
gam create vaulthold matter <MatterItem> [name <String>]
|
||||||
|
vaultquery <QueryItem>
|
||||||
|
[showdetails|returnidonly]
|
||||||
|
```
|
||||||
|
|
||||||
### 7.22.03
|
### 7.22.03
|
||||||
|
|
||||||
Fix backwards compatability bug introduced in 7.22.00 for `gam print users` that changed `suspended`
|
Fix backwards compatability bug introduced in 7.22.00 for `gam print users` that changed `suspended`
|
||||||
|
|||||||
@@ -252,7 +252,7 @@ writes the credentials into the file oauth2.txt.
|
|||||||
admin@server:/Users/admin$ rm -f /Users/admin/GAMConfig/oauth2.txt
|
admin@server:/Users/admin$ rm -f /Users/admin/GAMConfig/oauth2.txt
|
||||||
admin@server:/Users/admin$ gam version
|
admin@server:/Users/admin$ gam version
|
||||||
WARNING: Config File: /Users/admin/GAMConfig/gam.cfg, Section: DEFAULT, Item: oauth2_txt, Value: /Users/admin/GAMConfig/oauth2.txt, Not Found
|
WARNING: Config File: /Users/admin/GAMConfig/gam.cfg, Section: DEFAULT, Item: oauth2_txt, Value: /Users/admin/GAMConfig/oauth2.txt, Not Found
|
||||||
GAM 7.22.03 - https://github.com/GAM-team/GAM - pyinstaller
|
GAM 7.22.04 - https://github.com/GAM-team/GAM - pyinstaller
|
||||||
GAM Team <google-apps-manager@googlegroups.com>
|
GAM Team <google-apps-manager@googlegroups.com>
|
||||||
Python 3.13.7 64-bit final
|
Python 3.13.7 64-bit final
|
||||||
MacOS Sequoia 15.6.1 x86_64
|
MacOS Sequoia 15.6.1 x86_64
|
||||||
|
|||||||
@@ -73,6 +73,7 @@
|
|||||||
<MatterItem> ::= <UniqueID>|<String>
|
<MatterItem> ::= <UniqueID>|<String>
|
||||||
<MatterState> ::= open|closed|deleted
|
<MatterState> ::= open|closed|deleted
|
||||||
<MatterStateList> ::= "<MatterState>(,<MatterState>)*"
|
<MatterStateList> ::= "<MatterState>(,<MatterState>)*"
|
||||||
|
<QueryItem> ::= <UniqueID>|<String>
|
||||||
<SharedDriveID> ::= <String>
|
<SharedDriveID> ::= <String>
|
||||||
<SharedDriveIDList> ::= "<SharedDriveID>(,<SharedDriveID>)*"
|
<SharedDriveIDList> ::= "<SharedDriveID>(,<SharedDriveID>)*"
|
||||||
<URL> ::= <String>
|
<URL> ::= <String>
|
||||||
@@ -606,6 +607,21 @@ The `shownames` argument controls whether account and org unit names are display
|
|||||||
|
|
||||||
## Vault Holds
|
## Vault Holds
|
||||||
## Create Vault Holds
|
## Create Vault Holds
|
||||||
|
### Create a hold from a saved Vault query.
|
||||||
|
```
|
||||||
|
gam create vaulthold|hold matter <MatterItem> [name <String>]
|
||||||
|
vaultquery <QueryItem>
|
||||||
|
[showdetails|returnidonly]
|
||||||
|
```
|
||||||
|
Specify the name of the hold:
|
||||||
|
* `name <String>` - The hold will be named `<String>`
|
||||||
|
* `default` - The hold will be named `GAM <corpus> Hold - <Time>`
|
||||||
|
|
||||||
|
Use the `showdetails` option to have the full details of the hold displayed.
|
||||||
|
|
||||||
|
Use the `returnidonly` option to have only the hold ID displayed.
|
||||||
|
|
||||||
|
### Create a hold from parameters.
|
||||||
```
|
```
|
||||||
gam create vaulthold|hold matter <MatterItem> [name <String>] corpus calendar|drive|mail|groups|hangouts_chat|voice
|
gam create vaulthold|hold matter <MatterItem> [name <String>] corpus calendar|drive|mail|groups|hangouts_chat|voice
|
||||||
[(accounts|groups|users <EmailItemList>) | (orgunit|org|ou <OrgUnit>)]
|
[(accounts|groups|users <EmailItemList>) | (orgunit|org|ou <OrgUnit>)]
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Print the current version of Gam with details
|
Print the current version of Gam with details
|
||||||
```
|
```
|
||||||
gam version
|
gam version
|
||||||
GAM 7.22.03 - https://github.com/GAM-team/GAM - pyinstaller
|
GAM 7.22.04 - https://github.com/GAM-team/GAM - pyinstaller
|
||||||
GAM Team <google-apps-manager@googlegroups.com>
|
GAM Team <google-apps-manager@googlegroups.com>
|
||||||
Python 3.13.7 64-bit final
|
Python 3.13.7 64-bit final
|
||||||
macOS Sequoia 15.7 x86_64
|
macOS Sequoia 15.7 x86_64
|
||||||
@@ -15,7 +15,7 @@ Time: 2023-06-02T21:10:00-07:00
|
|||||||
Print the current version of Gam with details and time offset information
|
Print the current version of Gam with details and time offset information
|
||||||
```
|
```
|
||||||
gam version timeoffset
|
gam version timeoffset
|
||||||
GAM 7.22.03 - https://github.com/GAM-team/GAM - pyinstaller
|
GAM 7.22.04 - https://github.com/GAM-team/GAM - pyinstaller
|
||||||
GAM Team <google-apps-manager@googlegroups.com>
|
GAM Team <google-apps-manager@googlegroups.com>
|
||||||
Python 3.13.7 64-bit final
|
Python 3.13.7 64-bit final
|
||||||
macOS Sequoia 15.7 x86_64
|
macOS Sequoia 15.7 x86_64
|
||||||
@@ -27,7 +27,7 @@ Your system time differs from www.googleapis.com by less than 1 second
|
|||||||
Print the current version of Gam with extended details and SSL information
|
Print the current version of Gam with extended details and SSL information
|
||||||
```
|
```
|
||||||
gam version extended
|
gam version extended
|
||||||
GAM 7.22.03 - https://github.com/GAM-team/GAM - pyinstaller
|
GAM 7.22.04 - https://github.com/GAM-team/GAM - pyinstaller
|
||||||
GAM Team <google-apps-manager@googlegroups.com>
|
GAM Team <google-apps-manager@googlegroups.com>
|
||||||
Python 3.13.7 64-bit final
|
Python 3.13.7 64-bit final
|
||||||
macOS Sequoia 15.7 x86_64
|
macOS Sequoia 15.7 x86_64
|
||||||
|
|||||||
Reference in New Issue
Block a user