Regen all docs. (#700)
* Stop recursing if discovery == {}
* Generate docs with 'make docs'.
diff --git a/docs/dyn/androidenterprise_v1.users.html b/docs/dyn/androidenterprise_v1.users.html
index c1faa5b..5cfdddc 100644
--- a/docs/dyn/androidenterprise_v1.users.html
+++ b/docs/dyn/androidenterprise_v1.users.html
@@ -99,6 +99,9 @@
<code><a href="#patch">patch(enterpriseId, userId, body)</a></code></p>
<p class="firstline">Updates the details of an EMM-managed user.</p>
<p class="toc_element">
+ <code><a href="#revokeDeviceAccess">revokeDeviceAccess(enterpriseId, userId)</a></code></p>
+<p class="firstline">Revokes access to all devices currently provisioned to the user. The user will no longer be able to use the managed Play store on any of their managed devices.</p>
+<p class="toc_element">
<code><a href="#revokeToken">revokeToken(enterpriseId, userId)</a></code></p>
<p class="firstline">Revokes a previously generated token (activation code) for the user.</p>
<p class="toc_element">
@@ -122,6 +125,8 @@
<code class="details" id="generateAuthenticationToken">generateAuthenticationToken(enterpriseId, userId)</code>
<pre>Generates an authentication token which the device policy client can use to provision the given EMM-managed user account on a device. The generated token is single-use and expires after a few minutes.
+You can provision a maximum of 10 devices per user.
+
This call only works with EMM-managed accounts.
Args:
@@ -193,8 +198,19 @@
An object of the form:
{ # A set of products.
+ "productVisibility": [ # Additional list of product IDs making up the product set. Unlike the productID array, in this list It's possible to specify which tracks (alpha, beta, production) of a product are visible to the user. See ProductVisibility and its fields for more information. Specifying the same product ID both here and in the productId array is not allowed and it will result in an error.
+ { # A product to be made visible to a user.
+ "trackIds": [ # Grants the user visibility to the specified product track(s), identified by trackIds.
+ "A String",
+ ],
+ "tracks": [ # Deprecated. Use trackIds instead.
+ "A String",
+ ],
+ "productId": "A String", # The product ID to make visible to the user. Required for each item in the productVisibility list.
+ },
+ ],
"kind": "androidenterprise#productSet", # Identifies what kind of resource this is. Value: the fixed string "androidenterprise#productSet".
- "productSetBehavior": "A String", # The interpretation of this product set. "unknown" should never be sent and is ignored if received. "whitelist" means that the user is entitled to access the product set. "includeAll" means that all products are accessible, including products that are approved, products with revoked approval, and products that have never been approved. "allApproved" means that the user is entitled to access all products that are approved for the enterprise. If the value is "allApproved" or "includeAll", the productId field is ignored. If no value is provided, it is interpreted as "whitelist" for backwards compatibility.
+ "productSetBehavior": "A String", # The interpretation of this product set. "unknown" should never be sent and is ignored if received. "whitelist" means that the user is entitled to access the product set. "includeAll" means that all products are accessible, including products that are approved, products with revoked approval, and products that have never been approved. "allApproved" means that the user is entitled to access all products that are approved for the enterprise. If the value is "allApproved" or "includeAll", the productId field is ignored. If no value is provided, it is interpreted as "whitelist" for backwards compatibility. Further "allApproved" or "includeAll" does not enable automatic visibility of "alpha" or "beta" tracks for Android app. Use ProductVisibility to enable "alpha" or "beta" tracks per user.
"productId": [ # The list of product IDs making up the set of products.
"A String",
],
@@ -313,6 +329,18 @@
</div>
<div class="method">
+ <code class="details" id="revokeDeviceAccess">revokeDeviceAccess(enterpriseId, userId)</code>
+ <pre>Revokes access to all devices currently provisioned to the user. The user will no longer be able to use the managed Play store on any of their managed devices.
+
+This call only works with EMM-managed accounts.
+
+Args:
+ enterpriseId: string, The ID of the enterprise. (required)
+ userId: string, The ID of the user. (required)
+</pre>
+</div>
+
+<div class="method">
<code class="details" id="revokeToken">revokeToken(enterpriseId, userId)</code>
<pre>Revokes a previously generated token (activation code) for the user.
@@ -333,8 +361,19 @@
The object takes the form of:
{ # A set of products.
+ "productVisibility": [ # Additional list of product IDs making up the product set. Unlike the productID array, in this list It's possible to specify which tracks (alpha, beta, production) of a product are visible to the user. See ProductVisibility and its fields for more information. Specifying the same product ID both here and in the productId array is not allowed and it will result in an error.
+ { # A product to be made visible to a user.
+ "trackIds": [ # Grants the user visibility to the specified product track(s), identified by trackIds.
+ "A String",
+ ],
+ "tracks": [ # Deprecated. Use trackIds instead.
+ "A String",
+ ],
+ "productId": "A String", # The product ID to make visible to the user. Required for each item in the productVisibility list.
+ },
+ ],
"kind": "androidenterprise#productSet", # Identifies what kind of resource this is. Value: the fixed string "androidenterprise#productSet".
- "productSetBehavior": "A String", # The interpretation of this product set. "unknown" should never be sent and is ignored if received. "whitelist" means that the user is entitled to access the product set. "includeAll" means that all products are accessible, including products that are approved, products with revoked approval, and products that have never been approved. "allApproved" means that the user is entitled to access all products that are approved for the enterprise. If the value is "allApproved" or "includeAll", the productId field is ignored. If no value is provided, it is interpreted as "whitelist" for backwards compatibility.
+ "productSetBehavior": "A String", # The interpretation of this product set. "unknown" should never be sent and is ignored if received. "whitelist" means that the user is entitled to access the product set. "includeAll" means that all products are accessible, including products that are approved, products with revoked approval, and products that have never been approved. "allApproved" means that the user is entitled to access all products that are approved for the enterprise. If the value is "allApproved" or "includeAll", the productId field is ignored. If no value is provided, it is interpreted as "whitelist" for backwards compatibility. Further "allApproved" or "includeAll" does not enable automatic visibility of "alpha" or "beta" tracks for Android app. Use ProductVisibility to enable "alpha" or "beta" tracks per user.
"productId": [ # The list of product IDs making up the set of products.
"A String",
],
@@ -345,8 +384,19 @@
An object of the form:
{ # A set of products.
+ "productVisibility": [ # Additional list of product IDs making up the product set. Unlike the productID array, in this list It's possible to specify which tracks (alpha, beta, production) of a product are visible to the user. See ProductVisibility and its fields for more information. Specifying the same product ID both here and in the productId array is not allowed and it will result in an error.
+ { # A product to be made visible to a user.
+ "trackIds": [ # Grants the user visibility to the specified product track(s), identified by trackIds.
+ "A String",
+ ],
+ "tracks": [ # Deprecated. Use trackIds instead.
+ "A String",
+ ],
+ "productId": "A String", # The product ID to make visible to the user. Required for each item in the productVisibility list.
+ },
+ ],
"kind": "androidenterprise#productSet", # Identifies what kind of resource this is. Value: the fixed string "androidenterprise#productSet".
- "productSetBehavior": "A String", # The interpretation of this product set. "unknown" should never be sent and is ignored if received. "whitelist" means that the user is entitled to access the product set. "includeAll" means that all products are accessible, including products that are approved, products with revoked approval, and products that have never been approved. "allApproved" means that the user is entitled to access all products that are approved for the enterprise. If the value is "allApproved" or "includeAll", the productId field is ignored. If no value is provided, it is interpreted as "whitelist" for backwards compatibility.
+ "productSetBehavior": "A String", # The interpretation of this product set. "unknown" should never be sent and is ignored if received. "whitelist" means that the user is entitled to access the product set. "includeAll" means that all products are accessible, including products that are approved, products with revoked approval, and products that have never been approved. "allApproved" means that the user is entitled to access all products that are approved for the enterprise. If the value is "allApproved" or "includeAll", the productId field is ignored. If no value is provided, it is interpreted as "whitelist" for backwards compatibility. Further "allApproved" or "includeAll" does not enable automatic visibility of "alpha" or "beta" tracks for Android app. Use ProductVisibility to enable "alpha" or "beta" tracks per user.
"productId": [ # The list of product IDs making up the set of products.
"A String",
],