Regen all docs. (#700)
* Stop recursing if discovery == {}
* Generate docs with 'make docs'.
diff --git a/docs/dyn/androidpublisher_v2.edits.tracks.html b/docs/dyn/androidpublisher_v2.edits.tracks.html
index 4540dcd..f71e558 100644
--- a/docs/dyn/androidpublisher_v2.edits.tracks.html
+++ b/docs/dyn/androidpublisher_v2.edits.tracks.html
@@ -82,10 +82,10 @@
<p class="firstline">Lists all the track configurations for this edit.</p>
<p class="toc_element">
<code><a href="#patch">patch(packageName, editId, track, body)</a></code></p>
-<p class="firstline">Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume. This method supports patch semantics.</p>
+<p class="firstline">Updates the track configuration for the specified track type. This method supports patch semantics.</p>
<p class="toc_element">
<code><a href="#update">update(packageName, editId, track, body)</a></code></p>
-<p class="firstline">Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume.</p>
+<p class="firstline">Updates the track configuration for the specified track type.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="get">get(packageName, editId, track)</code>
@@ -94,20 +94,15 @@
Args:
packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
editId: string, Unique identifier for this edit. (required)
- track: string, The track type to read or modify. (required)
- Allowed values
- alpha -
- beta -
- production -
- rollout -
+ track: string, The track to read or modify. (required)
Returns:
An object of the form:
{
- "track": "A String",
+ "track": "A String", # Identifier for this track.
"userFraction": 3.14,
- "versionCodes": [
+ "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases.
42,
],
}</pre>
@@ -128,9 +123,9 @@
"kind": "androidpublisher#tracksListResponse", # Identifies what kind of resource this is. Value: the fixed string "androidpublisher#tracksListResponse".
"tracks": [
{
- "track": "A String",
+ "track": "A String", # Identifier for this track.
"userFraction": 3.14,
- "versionCodes": [
+ "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases.
42,
],
},
@@ -140,24 +135,19 @@
<div class="method">
<code class="details" id="patch">patch(packageName, editId, track, body)</code>
- <pre>Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume. This method supports patch semantics.
+ <pre>Updates the track configuration for the specified track type. This method supports patch semantics.
Args:
packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
editId: string, Unique identifier for this edit. (required)
- track: string, The track type to read or modify. (required)
- Allowed values
- alpha -
- beta -
- production -
- rollout -
+ track: string, The track to read or modify. (required)
body: object, The request body. (required)
The object takes the form of:
{
- "track": "A String",
+ "track": "A String", # Identifier for this track.
"userFraction": 3.14,
- "versionCodes": [
+ "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases.
42,
],
}
@@ -167,9 +157,9 @@
An object of the form:
{
- "track": "A String",
+ "track": "A String", # Identifier for this track.
"userFraction": 3.14,
- "versionCodes": [
+ "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases.
42,
],
}</pre>
@@ -177,24 +167,19 @@
<div class="method">
<code class="details" id="update">update(packageName, editId, track, body)</code>
- <pre>Updates the track configuration for the specified track type. When halted, the rollout track cannot be updated without adding new APKs, and adding new APKs will cause it to resume.
+ <pre>Updates the track configuration for the specified track type.
Args:
packageName: string, Unique identifier for the Android app that is being updated; for example, "com.spiffygame". (required)
editId: string, Unique identifier for this edit. (required)
- track: string, The track type to read or modify. (required)
- Allowed values
- alpha -
- beta -
- production -
- rollout -
+ track: string, The track to read or modify. (required)
body: object, The request body. (required)
The object takes the form of:
{
- "track": "A String",
+ "track": "A String", # Identifier for this track.
"userFraction": 3.14,
- "versionCodes": [
+ "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases.
42,
],
}
@@ -204,9 +189,9 @@
An object of the form:
{
- "track": "A String",
+ "track": "A String", # Identifier for this track.
"userFraction": 3.14,
- "versionCodes": [
+ "versionCodes": [ # Version codes to make active on this track. Note that this list should contain all versions you wish to be active, including those you wish to retain from previous releases.
42,
],
}</pre>