Nathaniel Manista | 5cbe5ba | 2015-03-10 23:29:22 +0000 | [diff] [blame] | 1 | <html><body> |
| 2 | <style> |
| 3 | |
| 4 | body, h1, h2, h3, div, span, p, pre, a { |
| 5 | margin: 0; |
| 6 | padding: 0; |
| 7 | border: 0; |
| 8 | font-weight: inherit; |
| 9 | font-style: inherit; |
| 10 | font-size: 100%; |
| 11 | font-family: inherit; |
| 12 | vertical-align: baseline; |
| 13 | } |
| 14 | |
| 15 | body { |
| 16 | font-size: 13px; |
| 17 | padding: 1em; |
| 18 | } |
| 19 | |
| 20 | h1 { |
| 21 | font-size: 26px; |
| 22 | margin-bottom: 1em; |
| 23 | } |
| 24 | |
| 25 | h2 { |
| 26 | font-size: 24px; |
| 27 | margin-bottom: 1em; |
| 28 | } |
| 29 | |
| 30 | h3 { |
| 31 | font-size: 20px; |
| 32 | margin-bottom: 1em; |
| 33 | margin-top: 1em; |
| 34 | } |
| 35 | |
| 36 | pre, code { |
| 37 | line-height: 1.5; |
| 38 | font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; |
| 39 | } |
| 40 | |
| 41 | pre { |
| 42 | margin-top: 0.5em; |
| 43 | } |
| 44 | |
| 45 | h1, h2, h3, p { |
| 46 | font-family: Arial, sans serif; |
| 47 | } |
| 48 | |
| 49 | h1, h2, h3 { |
| 50 | border-bottom: solid #CCC 1px; |
| 51 | } |
| 52 | |
| 53 | .toc_element { |
| 54 | margin-top: 0.5em; |
| 55 | } |
| 56 | |
| 57 | .firstline { |
| 58 | margin-left: 2 em; |
| 59 | } |
| 60 | |
| 61 | .method { |
| 62 | margin-top: 1em; |
| 63 | border: solid 1px #CCC; |
| 64 | padding: 1em; |
| 65 | background: #EEE; |
| 66 | } |
| 67 | |
| 68 | .details { |
| 69 | font-weight: bold; |
| 70 | font-size: 14px; |
| 71 | } |
| 72 | |
| 73 | </style> |
| 74 | |
Nathaniel Manista | 4f877e5 | 2015-06-15 16:44:50 +0000 | [diff] [blame] | 75 | <h1><a href="androidenterprise_v1.html">Google Play EMM API</a> . <a href="androidenterprise_v1.grouplicenseusers.html">grouplicenseusers</a></h1> |
Nathaniel Manista | 5cbe5ba | 2015-03-10 23:29:22 +0000 | [diff] [blame] | 76 | <h2>Instance Methods</h2> |
| 77 | <p class="toc_element"> |
Bu Sun Kim | d059ad8 | 2020-07-22 17:02:09 -0700 | [diff] [blame] | 78 | <code><a href="#list">list(enterpriseId, groupLicenseId, x__xgafv=None)</a></code></p> |
| 79 | <p class="firstline">Retrieves the IDs of the users who have been granted entitlements</p> |
Nathaniel Manista | 5cbe5ba | 2015-03-10 23:29:22 +0000 | [diff] [blame] | 80 | <h3>Method Details</h3> |
| 81 | <div class="method"> |
Bu Sun Kim | d059ad8 | 2020-07-22 17:02:09 -0700 | [diff] [blame] | 82 | <code class="details" id="list">list(enterpriseId, groupLicenseId, x__xgafv=None)</code> |
| 83 | <pre>Retrieves the IDs of the users who have been granted entitlements |
| 84 | under the license. |
Nathaniel Manista | 5cbe5ba | 2015-03-10 23:29:22 +0000 | [diff] [blame] | 85 | |
| 86 | Args: |
| 87 | enterpriseId: string, The ID of the enterprise. (required) |
Bu Sun Kim | d059ad8 | 2020-07-22 17:02:09 -0700 | [diff] [blame] | 88 | groupLicenseId: string, The ID of the product the group license is for, e.g. |
| 89 | "app:com.google.android.gm". (required) |
| 90 | x__xgafv: string, V1 error format. |
| 91 | Allowed values |
| 92 | 1 - v1 error format |
| 93 | 2 - v2 error format |
Nathaniel Manista | 5cbe5ba | 2015-03-10 23:29:22 +0000 | [diff] [blame] | 94 | |
| 95 | Returns: |
| 96 | An object of the form: |
| 97 | |
Bu Sun Kim | d059ad8 | 2020-07-22 17:02:09 -0700 | [diff] [blame] | 98 | { |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 99 | "user": [ # A user of an enterprise. |
Bu Sun Kim | d059ad8 | 2020-07-22 17:02:09 -0700 | [diff] [blame] | 100 | { # A Users resource represents an account associated with an enterprise. The |
| 101 | # account may be specific to a device or to an individual user (who can then |
| 102 | # use the account across multiple devices). The account may provide access to |
| 103 | # managed Google Play only, or to other Google services, depending on the |
| 104 | # identity model: |
| 105 | # <ul><li>The Google managed domain identity model requires synchronization to |
| 106 | # Google account sources (via <code>primaryEmail</code>).</li> |
| 107 | # <li>The managed Google Play Accounts identity model provides a dynamic means |
| 108 | # for enterprises to create user or device accounts as needed. These accounts |
| 109 | # provide access to managed Google Play.</li> |
| 110 | # </ul> |
| 111 | "accountType": "A String", # The type of account that this user represents. A <code>userAccount</code> |
| 112 | # can be installed on multiple devices, but a <code>deviceAccount</code> is |
| 113 | # specific to a single device. An EMM-managed user (<code>emmManaged</code>) |
| 114 | # can be either type (<code>userAccount</code>, <code>deviceAccount</code>), |
| 115 | # but a Google-managed user (<code>googleManaged</code>) is always a |
| 116 | # <code>userAccount</code>. |
| 117 | "managementType": "A String", # The entity that manages the user. With <code>googleManaged</code> users, |
| 118 | # the source of truth is Google so EMMs have to make sure a Google Account |
| 119 | # exists for the user. With <code>emmManaged</code> users, the |
| 120 | # EMM is in charge. |
Bu Sun Kim | 6502091 | 2020-05-20 12:08:20 -0700 | [diff] [blame] | 121 | "id": "A String", # The unique ID for the user. |
Bu Sun Kim | d059ad8 | 2020-07-22 17:02:09 -0700 | [diff] [blame] | 122 | "primaryEmail": "A String", # The user's primary email address, for example, "jsmith@example.com". |
| 123 | # Will always be set for Google managed users and not set for EMM managed |
| 124 | # users. |
| 125 | "displayName": "A String", # The name that will appear in user interfaces. Setting this property is |
| 126 | # optional when creating EMM-managed users. If you do set this property, |
| 127 | # use something generic about the organization (such as "Example, Inc.") or |
| 128 | # your name (as EMM). |
| 129 | # Not used for Google-managed user accounts. |
| 130 | # @mutable androidenterprise.users.update |
| 131 | "accountIdentifier": "A String", # A unique identifier you create for this user, such as "user342" or |
| 132 | # "asset#44418". Do not use personally identifiable information (PII) for |
| 133 | # this property. Must always be set for EMM-managed users. |
| 134 | # Not set for Google-managed users. |
Sai Cheemalapati | c30d2b5 | 2017-03-13 12:12:03 -0400 | [diff] [blame] | 135 | }, |
Nathaniel Manista | 5cbe5ba | 2015-03-10 23:29:22 +0000 | [diff] [blame] | 136 | ], |
| 137 | }</pre> |
| 138 | </div> |
| 139 | |
| 140 | </body></html> |