members property

List<String>? members
getter/setter pair

A collection of identifiers for members who may assume the provided role.

Recognized identifiers are as follows:

  • allUsers — A special identifier that represents anyone on the internet; with or without a Google account.
  • allAuthenticatedUsers — A special identifier that represents anyone who is authenticated with a Google account or a service account.
  • user:emailid — An email address that represents a specific account. For example, user:[email protected] or user:[email protected].
  • serviceAccount:emailid — An email address that represents a service account. For example, serviceAccount:[email protected] .
  • group:emailid — An email address that represents a Google group. For example, group:[email protected].
  • domain:domain — A Google Apps domain name that represents all the users of that domain. For example, domain:google.com or domain:example.com.
  • projectOwner:projectid — Owners of the given project. For example, projectOwner:my-example-project
  • projectEditor:projectid — Editors of the given project. For example, projectEditor:my-example-project
  • projectViewer:projectid — Viewers of the given project. For example, projectViewer:my-example-project

Implementation

core.List<core.String>? members;