Update docs for 1.4.2 release
diff --git a/docs/dyn/androidenterprise_v1.users.html b/docs/dyn/androidenterprise_v1.users.html
index d99a2de..124750a 100644
--- a/docs/dyn/androidenterprise_v1.users.html
+++ b/docs/dyn/androidenterprise_v1.users.html
@@ -81,11 +81,17 @@
<code><a href="#get">get(enterpriseId, userId)</a></code></p>
<p class="firstline">Retrieves a user's details.</p>
<p class="toc_element">
+ <code><a href="#getAvailableProductSet">getAvailableProductSet(enterpriseId, userId)</a></code></p>
+<p class="firstline">Retrieves the set of products a user is entitled to access.</p>
+<p class="toc_element">
<code><a href="#list">list(enterpriseId, email)</a></code></p>
<p class="firstline">Looks up a user by email address.</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">
+ <code><a href="#setAvailableProductSet">setAvailableProductSet(enterpriseId, userId, body)</a></code></p>
+<p class="firstline">Modifies the set of products a user is entitled to access.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="generateToken">generateToken(enterpriseId, userId)</code>
@@ -128,6 +134,25 @@
</div>
<div class="method">
+ <code class="details" id="getAvailableProductSet">getAvailableProductSet(enterpriseId, userId)</code>
+ <pre>Retrieves the set of products a user is entitled to access.
+
+Args:
+ enterpriseId: string, The ID of the enterprise. (required)
+ userId: string, The ID of the user. (required)
+
+Returns:
+ An object of the form:
+
+ { # A set of products.
+ "kind": "androidenterprise#productSet", # Identifies what kind of resource this is. Value: the fixed string "androidenterprise#productSet".
+ "productId": [ # The list of product IDs making up the set of products.
+ "A String",
+ ],
+ }</pre>
+</div>
+
+<div class="method">
<code class="details" id="list">list(enterpriseId, email)</code>
<pre>Looks up a user by email address.
@@ -164,4 +189,33 @@
</pre>
</div>
+<div class="method">
+ <code class="details" id="setAvailableProductSet">setAvailableProductSet(enterpriseId, userId, body)</code>
+ <pre>Modifies the set of products a user is entitled to access.
+
+Args:
+ enterpriseId: string, The ID of the enterprise. (required)
+ userId: string, The ID of the user. (required)
+ body: object, The request body. (required)
+ The object takes the form of:
+
+{ # A set of products.
+ "kind": "androidenterprise#productSet", # Identifies what kind of resource this is. Value: the fixed string "androidenterprise#productSet".
+ "productId": [ # The list of product IDs making up the set of products.
+ "A String",
+ ],
+ }
+
+
+Returns:
+ An object of the form:
+
+ { # A set of products.
+ "kind": "androidenterprise#productSet", # Identifies what kind of resource this is. Value: the fixed string "androidenterprise#productSet".
+ "productId": [ # The list of product IDs making up the set of products.
+ "A String",
+ ],
+ }</pre>
+</div>
+
</body></html>
\ No newline at end of file