1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 10:35:03 +00:00

gcloud: Wed Oct 9 09:55:07 UTC 2024

This commit is contained in:
Automated 2024-10-09 09:55:07 +00:00
parent 489be55d99
commit 4ffb04ab9e
211 changed files with 7635 additions and 1232 deletions

View file

@ -5,7 +5,6 @@ SYNOPSIS
gcloud alpha identity groups create EMAIL --organization=ORGANIZATION
[--description=DESCRIPTION] [--display-name=DISPLAY_NAME]
[--dynamic-user-query=DYNAMIC_USER_QUERY]
[--posix-group=[gid=GID],[name=NAME]]
[--with-initial-owner=WITH_INITIAL_OWNER]
[--group-type=GROUP_TYPE; default="discussion" | --labels=LABELS]
[GCLOUD_WIDE_FLAG ...]
@ -34,11 +33,6 @@ EXAMPLES
--display-name="Security Group" \
--description="Description of Security Group"
To create a new POSIX group:
$ gcloud alpha identity groups create eng-discuss@example.com \
--organization="example.com" --posix-group=name=eng,gid=1005
POSITIONAL ARGUMENTS
EMAIL
The email address of the group to be created.
@ -65,15 +59,6 @@ OPTIONAL FLAGS
Example of a query:
--dynamic-user-query="user.organizations.exists(org,org.title=='SWE')"
--posix-group=[gid=GID],[name=NAME]
Group ID (gid) and name of the POSIX group that you want to associate
with the specified Cloud Identity group. You can specify multiple POSIX
groups with multiple instances of this flag.
For example, use '--posix-group=gid=1005,name=eng' to add a single
group, or '--posix-group=gid=1005,name=eng
--posix-group=gid=1006,name=docs' to add multiple groups.
--with-initial-owner=WITH_INITIAL_OWNER
If specified the user making the request will be added as the initial
owner of the group being created. WITH_INITIAL_OWNER must be one of:

View file

@ -4,8 +4,7 @@ NAME
SYNOPSIS
gcloud alpha identity groups update EMAIL
[--dynamic-user-query=DYNAMIC_USER_QUERY]
[--add-posix-group=[gid=GID],[name=NAME] | --clear-posix-groups
| --remove-posix-groups=[POSIX_GROUP,...]]
[--clear-posix-groups | --remove-posix-groups=[POSIX_GROUP,...]]
[--clear-description | --description=DESCRIPTION]
[--clear-display-name | --display-name=DISPLAY_NAME]
[GCLOUD_WIDE_FLAG ...]
@ -20,11 +19,6 @@ EXAMPLES
--display-name="New Engineer Discuss" \
--description="Group for engineering discussions"
To create a POSIX group from an existing Google Group:
$ gcloud alpha identity groups update eng-discuss@foo.com \
--add-posix-group=name=eng,gid=1005
To remove POSIX information from a Google Group:
$ gcloud alpha identity groups update eng-discuss@foo.com \
@ -43,15 +37,6 @@ FLAGS
At most one of these can be specified:
--add-posix-group=[gid=GID],[name=NAME]
Group id (gid) and a name for a POSIX group that you want to add to
the specified Cloud Identity group. You can specify multiple POSIX
groups to add with multiple instances of this flag.
For example, use '--add-posix-group=gid=1005,name=eng' to add a
single group, or '--add-posix-group=gid=1005,name=eng
--add-posix-group=gid=1006,name=docs' to add multiple groups.
--clear-posix-groups
Clear all POSIX groups from the specified Cloud Identity group.