Skip to content

Commit

Permalink
feat(playdeveloperreporting): update the api
Browse files Browse the repository at this point in the history
#### playdeveloperreporting:v1alpha1

The following keys were added:
- resources.apps.methods.fetchReleaseFilterOptions (Total Keys: 11)
- resources.apps.methods.search (Total Keys: 12)
- resources.vitals.resources.errors.resources.issues.methods.search.parameters.orderBy (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1alpha1App (Total Keys: 9)
- schemas.GooglePlayDeveloperReportingV1alpha1DeviceId (Total Keys: 4)
- schemas.GooglePlayDeveloperReportingV1alpha1DeviceModelSummary (Total Keys: 5)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.distinctUsers (Total Keys: 3)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.errorReportCount (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.firstAppVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.firstOsVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.issueUri.type (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.lastAppVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.lastErrorReportTime (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorIssue.properties.lastOsVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorReport.properties.deviceModel.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorReport.properties.eventTime (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1alpha1ErrorReport.properties.osVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1alpha1OsVersion (Total Keys: 4)
- schemas.GooglePlayDeveloperReportingV1alpha1Release (Total Keys: 10)
- schemas.GooglePlayDeveloperReportingV1alpha1SearchAccessibleAppsResponse (Total Keys: 5)
- schemas.GooglePlayDeveloperReportingV1alpha1Track (Total Keys: 6)

#### playdeveloperreporting:v1beta1

The following keys were added:
- resources.apps.methods.fetchReleaseFilterOptions (Total Keys: 11)
- resources.apps.methods.search (Total Keys: 12)
- resources.vitals.resources.errors.resources.issues.methods.search.parameters.orderBy (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1beta1App (Total Keys: 9)
- schemas.GooglePlayDeveloperReportingV1beta1DeviceId (Total Keys: 4)
- schemas.GooglePlayDeveloperReportingV1beta1DeviceModelSummary (Total Keys: 5)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.distinctUsers (Total Keys: 3)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.errorReportCount (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.firstAppVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.firstOsVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.issueUri.type (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.lastAppVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.lastErrorReportTime (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorIssue.properties.lastOsVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorReport.properties.deviceModel.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorReport.properties.eventTime (Total Keys: 2)
- schemas.GooglePlayDeveloperReportingV1beta1ErrorReport.properties.osVersion.$ref (Total Keys: 1)
- schemas.GooglePlayDeveloperReportingV1beta1OsVersion (Total Keys: 4)
- schemas.GooglePlayDeveloperReportingV1beta1Release (Total Keys: 10)
- schemas.GooglePlayDeveloperReportingV1beta1SearchAccessibleAppsResponse (Total Keys: 5)
- schemas.GooglePlayDeveloperReportingV1beta1Track (Total Keys: 6)
  • Loading branch information
yoshi-automation committed May 24, 2023
1 parent 4240bb4 commit d48585c
Show file tree
Hide file tree
Showing 26 changed files with 1,064 additions and 116 deletions.
2 changes: 1 addition & 1 deletion docs/dyn/playdeveloperreporting_v1alpha1.anomalies.html
Expand Up @@ -121,7 +121,7 @@ <h3>Method Details</h3>
&quot;decimalValue&quot;: { # A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java&#x27;s BigDecimal or Python&#x27;s decimal.Decimal. [BigDecimal]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html [decimal.Decimal]: https://docs.python.org/3/library/decimal.html # Actual value, represented as a decimal number.
&quot;value&quot;: &quot;A String&quot;, # The decimal value, as a string. The string representation consists of an optional sign, `+` (`U+002B`) or `-` (`U+002D`), followed by a sequence of zero or more decimal digits (&quot;the integer&quot;), optionally followed by a fraction, optionally followed by an exponent. An empty string **should** be interpreted as `0`. The fraction consists of a decimal point followed by zero or more decimal digits. The string must contain at least one digit in either the integer or the fraction. The number formed by the sign, the integer and the fraction is referred to as the significand. The exponent consists of the character `e` (`U+0065`) or `E` (`U+0045`) followed by one or more decimal digits. Services **should** normalize decimal values before storing them by: - Removing an explicitly-provided `+` sign (`+2.5` -&gt; `2.5`). - Replacing a zero-length integer value with `0` (`.5` -&gt; `0.5`). - Coercing the exponent character to upper-case, with explicit sign (`2.5e8` -&gt; `2.5E+8`). - Removing an explicitly-provided zero exponent (`2.5E0` -&gt; `2.5`). Services **may** perform additional normalization based on its own needs and the internal decimal implementation selected, such as shifting the decimal point and exponent value together (example: `2.5E-1` &lt;-&gt; `0.25`). Additionally, services **may** preserve trailing zeroes in the fraction to indicate increased precision, but are not required to do so. Note that only the `.` character is supported to divide the integer and the fraction; `,` **should not** be supported regardless of locale. Additionally, thousand separators **should not** be supported. If a service does support them, values **must** be normalized. The ENBF grammar is: DecimalString = &#x27;&#x27; | [Sign] Significand [Exponent]; Sign = &#x27;+&#x27; | &#x27;-&#x27;; Significand = Digits &#x27;.&#x27; | [Digits] &#x27;.&#x27; Digits; Exponent = (&#x27;e&#x27; | &#x27;E&#x27;) [Sign] Digits; Digits = { &#x27;0&#x27; | &#x27;1&#x27; | &#x27;2&#x27; | &#x27;3&#x27; | &#x27;4&#x27; | &#x27;5&#x27; | &#x27;6&#x27; | &#x27;7&#x27; | &#x27;8&#x27; | &#x27;9&#x27; }; Services **should** clearly document the range of supported values, the maximum supported precision (total number of digits), and, if applicable, the scale (number of digits after the decimal point), as well as how it behaves when receiving out-of-bounds values. Services **may** choose to accept values passed as input even when the value has a higher precision or scale than the service supports, and **should** round the value to fit the supported scale. Alternatively, the service **may** error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if precision would be lost. Services **should** error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if the service receives a value outside of the supported range.
},
&quot;decimalValueConfidenceInterval&quot;: { # Represents the confidence interval of a metric. # Confidence interval of a value that is of type type.Decimal.
&quot;decimalValueConfidenceInterval&quot;: { # Represents the confidence interval of a metric. # Confidence interval of a value that is of type `type.Decimal`.
&quot;lowerBound&quot;: { # A representation of a decimal value, such as 2.5. Clients may convert values into language-native decimal formats, such as Java&#x27;s BigDecimal or Python&#x27;s decimal.Decimal. [BigDecimal]: https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/math/BigDecimal.html [decimal.Decimal]: https://docs.python.org/3/library/decimal.html # The confidence interval&#x27;s lower bound.
&quot;value&quot;: &quot;A String&quot;, # The decimal value, as a string. The string representation consists of an optional sign, `+` (`U+002B`) or `-` (`U+002D`), followed by a sequence of zero or more decimal digits (&quot;the integer&quot;), optionally followed by a fraction, optionally followed by an exponent. An empty string **should** be interpreted as `0`. The fraction consists of a decimal point followed by zero or more decimal digits. The string must contain at least one digit in either the integer or the fraction. The number formed by the sign, the integer and the fraction is referred to as the significand. The exponent consists of the character `e` (`U+0065`) or `E` (`U+0045`) followed by one or more decimal digits. Services **should** normalize decimal values before storing them by: - Removing an explicitly-provided `+` sign (`+2.5` -&gt; `2.5`). - Replacing a zero-length integer value with `0` (`.5` -&gt; `0.5`). - Coercing the exponent character to upper-case, with explicit sign (`2.5e8` -&gt; `2.5E+8`). - Removing an explicitly-provided zero exponent (`2.5E0` -&gt; `2.5`). Services **may** perform additional normalization based on its own needs and the internal decimal implementation selected, such as shifting the decimal point and exponent value together (example: `2.5E-1` &lt;-&gt; `0.25`). Additionally, services **may** preserve trailing zeroes in the fraction to indicate increased precision, but are not required to do so. Note that only the `.` character is supported to divide the integer and the fraction; `,` **should not** be supported regardless of locale. Additionally, thousand separators **should not** be supported. If a service does support them, values **must** be normalized. The ENBF grammar is: DecimalString = &#x27;&#x27; | [Sign] Significand [Exponent]; Sign = &#x27;+&#x27; | &#x27;-&#x27;; Significand = Digits &#x27;.&#x27; | [Digits] &#x27;.&#x27; Digits; Exponent = (&#x27;e&#x27; | &#x27;E&#x27;) [Sign] Digits; Digits = { &#x27;0&#x27; | &#x27;1&#x27; | &#x27;2&#x27; | &#x27;3&#x27; | &#x27;4&#x27; | &#x27;5&#x27; | &#x27;6&#x27; | &#x27;7&#x27; | &#x27;8&#x27; | &#x27;9&#x27; }; Services **should** clearly document the range of supported values, the maximum supported precision (total number of digits), and, if applicable, the scale (number of digits after the decimal point), as well as how it behaves when receiving out-of-bounds values. Services **may** choose to accept values passed as input even when the value has a higher precision or scale than the service supports, and **should** round the value to fit the supported scale. Alternatively, the service **may** error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if precision would be lost. Services **should** error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if the service receives a value outside of the supported range.
},
Expand Down
168 changes: 168 additions & 0 deletions docs/dyn/playdeveloperreporting_v1alpha1.apps.html
@@ -0,0 +1,168 @@
<html><body>
<style>

body, h1, h2, h3, div, span, p, pre, a {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}

body {
font-size: 13px;
padding: 1em;
}

h1 {
font-size: 26px;
margin-bottom: 1em;
}

h2 {
font-size: 24px;
margin-bottom: 1em;
}

h3 {
font-size: 20px;
margin-bottom: 1em;
margin-top: 1em;
}

pre, code {
line-height: 1.5;
font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}

pre {
margin-top: 0.5em;
}

h1, h2, h3, p {
font-family: Arial, sans serif;
}

h1, h2, h3 {
border-bottom: solid #CCC 1px;
}

.toc_element {
margin-top: 0.5em;
}

.firstline {
margin-left: 2 em;
}

.method {
margin-top: 1em;
border: solid 1px #CCC;
padding: 1em;
background: #EEE;
}

.details {
font-weight: bold;
font-size: 14px;
}

</style>

<h1><a href="playdeveloperreporting_v1alpha1.html">Google Play Developer Reporting API</a> . <a href="playdeveloperreporting_v1alpha1.apps.html">apps</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
<code><a href="#fetchReleaseFilterOptions">fetchReleaseFilterOptions(name, x__xgafv=None)</a></code></p>
<p class="firstline">Describes filtering options for releases.</p>
<p class="toc_element">
<code><a href="#search">search(pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">Searches for Apps accessible by the user.</p>
<p class="toc_element">
<code><a href="#search_next">search_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
<code class="details" id="close">close()</code>
<pre>Close httplib2 connections.</pre>
</div>

<div class="method">
<code class="details" id="fetchReleaseFilterOptions">fetchReleaseFilterOptions(name, x__xgafv=None)</code>
<pre>Describes filtering options for releases.

Args:
name: string, Required. Name of the resource, i.e. app the filtering options are for. Format: apps/{app} (required)
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format

Returns:
An object of the form:

{ # A set of filtering options for releases and version codes specific to an app.
&quot;tracks&quot;: [ # List of tracks to filter releases over. Provides the grouping of version codes under releases and tracks.
{ # A representation of a Play release track.
&quot;displayName&quot;: &quot;A String&quot;, # Readable identifier of the track.
&quot;servingReleases&quot;: [ # Represents all active releases in the track.
{ # A representation of an app release.
&quot;displayName&quot;: &quot;A String&quot;, # Readable identifier of the release.
&quot;versionCodes&quot;: [ # The version codes contained in this release.
&quot;A String&quot;,
],
},
],
&quot;type&quot;: &quot;A String&quot;, # The type of the track.
},
],
}</pre>
</div>

<div class="method">
<code class="details" id="search">search(pageSize=None, pageToken=None, x__xgafv=None)</code>
<pre>Searches for Apps accessible by the user.

Args:
pageSize: integer, The maximum number of apps to return. The service may return fewer than this value. If unspecified, at most 50 apps will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
pageToken: string, A page token, received from a previous `SearchAccessibleApps` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchAccessibleApps` must match the call that provided the page token.
x__xgafv: string, V1 error format.
Allowed values
1 - v1 error format
2 - v2 error format

Returns:
An object of the form:

{ # Response message for SearchAccessibleApps.
&quot;apps&quot;: [ # The apps accessible to the user calling the endpoint.
{ # A representation of an app in the Play Store.
&quot;displayName&quot;: &quot;A String&quot;, # Title of the app. This is the latest title as set in the Play Console and may not yet have been reviewed, so might not match the Play Store. Example: `Google Maps`.
&quot;name&quot;: &quot;A String&quot;, # The resource name. Format: apps/{app}
&quot;packageName&quot;: &quot;A String&quot;, # Package name of the app. Example: `com.example.app123`.
},
],
&quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
}</pre>
</div>

<div class="method">
<code class="details" id="search_next">search_next()</code>
<pre>Retrieves the next page of results.

Args:
previous_request: The request for the previous page. (required)
previous_response: The response from the request for the previous page. (required)

Returns:
A request object that you can call &#x27;execute()&#x27; on to request the next
page. Returns None if there are no more items in the collection.
</pre>
</div>

</body></html>
5 changes: 5 additions & 0 deletions docs/dyn/playdeveloperreporting_v1alpha1.html
Expand Up @@ -79,6 +79,11 @@ <h2>Instance Methods</h2>
</p>
<p class="firstline">Returns the anomalies Resource.</p>

<p class="toc_element">
<code><a href="playdeveloperreporting_v1alpha1.apps.html">apps()</a></code>
</p>
<p class="firstline">Returns the apps Resource.</p>

<p class="toc_element">
<code><a href="playdeveloperreporting_v1alpha1.vitals.html">vitals()</a></code>
</p>
Expand Down

0 comments on commit d48585c

Please sign in to comment.