Skip to content

Commit

Permalink
Merge pull request #5056 from modular-magician/codegen-pr-2772
Browse files Browse the repository at this point in the history
Groups not supported in acm levels members
  • Loading branch information
slevenick authored Dec 3, 2019
2 parents 04801e8 + 420496e commit c205750
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions google/resource_access_context_manager_access_level.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,14 @@ If empty, all IP addresses are allowed.`,
"members": {
Type: schema.TypeList,
Optional: true,
Description: `An allowed list of members (users, groups, service accounts).
Description: `An allowed list of members (users, service accounts).
Using groups is not supported yet.
The signed-in user originating the request must be a part of one
of the provided members. If not specified, a request may come
from any user (logged in/not logged in, not present in any
groups, etc.).
Formats: 'user:{emailid}', 'group:{emailid}', 'serviceAccount:{emailid}'`,
Formats: 'user:{emailid}', 'serviceAccount:{emailid}'`,
Elem: &schema.Schema{
Type: schema.TypeString,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,13 @@ The `conditions` block supports:

* `members` -
(Optional)
An allowed list of members (users, groups, service accounts).
An allowed list of members (users, service accounts).
Using groups is not supported yet.
The signed-in user originating the request must be a part of one
of the provided members. If not specified, a request may come
from any user (logged in/not logged in, not present in any
groups, etc.).
Formats: `user:{emailid}`, `group:{emailid}`, `serviceAccount:{emailid}`
Formats: `user:{emailid}`, `serviceAccount:{emailid}`

* `negate` -
(Optional)
Expand Down

0 comments on commit c205750

Please sign in to comment.