-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from silinternational/develop
Release "Disable*" parameters for Google Groups
- Loading branch information
Showing
7 changed files
with
80 additions
and
43 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,7 +80,8 @@ of the destination configuration required for Google Groups: | |
"Destination": { | ||
"Type": "GoogleGroups", | ||
"ExtraJSON": { | ||
"BatchSizePerMinute": 50, | ||
"BatchSize": 10, | ||
"BatchDelaySeconds": 3, | ||
"DelegatedAdminEmail": "[email protected]", | ||
"GoogleAuth": { | ||
"type": "service_account", | ||
|
@@ -123,13 +124,18 @@ of the destination configuration required for Google Groups: | |
"GroupEmail": "[email protected]", | ||
"Owners": ["[email protected]","[email protected]"], | ||
"Managers": ["[email protected]", "[email protected]"], | ||
"ExtraOwners": ["[email protected]"] | ||
"ExtraOwners": ["[email protected]"], | ||
"DisableAdd": false, | ||
"DisableUpdate": false, | ||
"DisableDelete": false | ||
} | ||
} | ||
] | ||
} | ||
``` | ||
|
||
Configurations for `BatchSize`, `BatchDelaySeconds`, `DisableAdd`, `DisableUpdate`, and `DisableDelete` are all option with defaults as shown in example. | ||
|
||
### Google Users | ||
This destination can update User records in the Google Directory. The compare | ||
attribute is `primaryEmail`. A limited subset of user properties are available | ||
|
@@ -161,7 +167,8 @@ Following is an example configuration listing all available fields: | |
"Destination": { | ||
"Type": "GoogleUsers", | ||
"ExtraJSON": { | ||
"BatchSizePerMinute": 50, | ||
"BatchSize": 10, | ||
"BatchDelaySeconds": 3, | ||
"DelegatedAdminEmail": "[email protected]", | ||
"GoogleAuth": { | ||
"type": "service_account", | ||
|
@@ -317,13 +324,14 @@ as the `DelegatedAdminEmail` value under `Destination`/`ExtraJSON`. | |
"Username": "syncuser", | ||
"Password": "apitoken", | ||
"ListClientsPageLimit": 100, | ||
"BatchSizePerMinute": 50 | ||
"BatchSize": 50, | ||
"BatchDelaySeconds": 60 | ||
} | ||
} | ||
} | ||
``` | ||
|
||
`ListClientsPageLimit` and `BatchSizePerMinute` are optional. Their defaults are as shown in the example config. | ||
`ListClientsPageLimit`, `BatchSize` and `BatchDelaySeconds` are optional. Their defaults are as shown in the example config. | ||
|
||
### Exporting logs from CloudWatch | ||
|
||
|
@@ -346,3 +354,4 @@ stream. Note the single quotes around the log stream name to prevent the shell | |
from interpreting the `$` character. `--output text` can be changed to | ||
`--output json` if desired. Timestamps are available if needed, but omitted | ||
in this example by the `--query` string. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,8 @@ | |
"Destination": { | ||
"Type": "GoogleGroups", | ||
"ExtraJSON": { | ||
"BatchSizePerMinute": 50, | ||
"BatchSize": 10, | ||
"BatchDelaySeconds": 3, | ||
"DelegatedAdminEmail": "[email protected]", | ||
"GoogleAuth": { | ||
"type": "service_account", | ||
|
@@ -76,7 +77,10 @@ | |
], | ||
"ExtraMembers": [ | ||
"[email protected]" | ||
] | ||
], | ||
"DisableAdd": false, | ||
"DisableUpdate": false, | ||
"DisableDelete": false | ||
} | ||
} | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters