@maxim_mazurok/gapi.client.playdeveloperreporting-v1alpha1 0.0.20230420 → 0.0.20230425
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +982 -500
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://playdeveloperreporting.googleapis.com/$discovery/rest?version=v1alpha1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230425
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -24,52 +24,69 @@ declare namespace gapi.client {
|
|
|
24
24
|
namespace playdeveloperreporting {
|
|
25
25
|
interface GooglePlayDeveloperReportingV1alpha1Anomaly {
|
|
26
26
|
/** Combination of dimensions in which the anomaly was detected. */
|
|
27
|
-
dimensions?:
|
|
27
|
+
dimensions?:
|
|
28
|
+
GooglePlayDeveloperReportingV1alpha1DimensionValue[];
|
|
28
29
|
/** Metric where the anomaly was detected, together with the anomalous value. */
|
|
29
|
-
metric?:
|
|
30
|
+
metric?:
|
|
31
|
+
GooglePlayDeveloperReportingV1alpha1MetricValue;
|
|
30
32
|
/** Metric set resource where the anomaly was detected. */
|
|
31
|
-
metricSet?:
|
|
33
|
+
metricSet?:
|
|
34
|
+
string;
|
|
32
35
|
/** Name of the anomaly. Format: apps/{app}/anomalies/{anomaly} */
|
|
33
|
-
name?:
|
|
36
|
+
name?:
|
|
37
|
+
string;
|
|
34
38
|
/** Timeline specification that covers the anomaly period. */
|
|
35
|
-
timelineSpec?:
|
|
39
|
+
timelineSpec?:
|
|
40
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
36
41
|
}
|
|
37
42
|
interface GooglePlayDeveloperReportingV1alpha1AnrRateMetricSet {
|
|
38
43
|
/** Summary about data freshness in this resource. */
|
|
39
|
-
freshnessInfo?:
|
|
44
|
+
freshnessInfo?:
|
|
45
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfo;
|
|
40
46
|
/** The resource name. Format: apps/{app}/anrRateMetricSet */
|
|
41
|
-
name?:
|
|
47
|
+
name?:
|
|
48
|
+
string;
|
|
42
49
|
}
|
|
43
50
|
interface GooglePlayDeveloperReportingV1alpha1CrashRateMetricSet {
|
|
44
51
|
/** Summary about data freshness in this resource. */
|
|
45
|
-
freshnessInfo?:
|
|
52
|
+
freshnessInfo?:
|
|
53
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfo;
|
|
46
54
|
/** The resource name. Format: apps/{app}/crashRateMetricSet */
|
|
47
|
-
name?:
|
|
55
|
+
name?:
|
|
56
|
+
string;
|
|
48
57
|
}
|
|
49
58
|
interface GooglePlayDeveloperReportingV1alpha1DecimalConfidenceInterval {
|
|
50
59
|
/** The confidence interval's lower bound. */
|
|
51
|
-
lowerBound?:
|
|
60
|
+
lowerBound?:
|
|
61
|
+
GoogleTypeDecimal;
|
|
52
62
|
/** The confidence interval's upper bound. */
|
|
53
|
-
upperBound?:
|
|
63
|
+
upperBound?:
|
|
64
|
+
GoogleTypeDecimal;
|
|
54
65
|
}
|
|
55
66
|
interface GooglePlayDeveloperReportingV1alpha1DimensionValue {
|
|
56
67
|
/** Name of the dimension. */
|
|
57
|
-
dimension?:
|
|
68
|
+
dimension?:
|
|
69
|
+
string;
|
|
58
70
|
/** Actual value, represented as an int64. */
|
|
59
|
-
int64Value?:
|
|
71
|
+
int64Value?:
|
|
72
|
+
string;
|
|
60
73
|
/** Actual value, represented as a string. */
|
|
61
|
-
stringValue?:
|
|
74
|
+
stringValue?:
|
|
75
|
+
string;
|
|
62
76
|
/**
|
|
63
77
|
* Optional. Human-friendly label for the value, always in English. For example, 'Spain' for the 'ES' country code. Whereas the dimension value is stable, this value label is subject
|
|
64
78
|
* to change. Do not assume that the (value, value_label) relationship is stable. For example, the ISO country code 'MK' changed its name recently to 'North Macedonia'.
|
|
65
79
|
*/
|
|
66
|
-
valueLabel?:
|
|
80
|
+
valueLabel?:
|
|
81
|
+
string;
|
|
67
82
|
}
|
|
68
83
|
interface GooglePlayDeveloperReportingV1alpha1ErrorCountMetricSet {
|
|
69
84
|
/** Summary about data freshness in this resource. */
|
|
70
|
-
freshnessInfo?:
|
|
85
|
+
freshnessInfo?:
|
|
86
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfo;
|
|
71
87
|
/** The resource name. Format: apps/{app}/errorCountMetricSet */
|
|
72
|
-
name?:
|
|
88
|
+
name?:
|
|
89
|
+
string;
|
|
73
90
|
}
|
|
74
91
|
interface GooglePlayDeveloperReportingV1alpha1ErrorIssue {
|
|
75
92
|
/**
|
|
@@ -77,77 +94,99 @@ declare namespace gapi.client {
|
|
|
77
94
|
* unhandled exception errors, the type of the innermost exception that was thrown, e.g., IllegalArgumentException. For signals in native code, the signal that was raised, e.g.
|
|
78
95
|
* SIGSEGV.
|
|
79
96
|
*/
|
|
80
|
-
cause?:
|
|
97
|
+
cause?:
|
|
98
|
+
string;
|
|
81
99
|
/**
|
|
82
100
|
* Location where the issue happened. Depending on the type this can be either: * APPLICATION_NOT_RESPONDING: the name of the activity or service that stopped responding. * CRASH: the
|
|
83
101
|
* likely method name that caused the error.
|
|
84
102
|
*/
|
|
85
|
-
location?:
|
|
103
|
+
location?:
|
|
104
|
+
string;
|
|
86
105
|
/** The resource name of the issue. Format: apps/{app}/errorIssues/{issue} */
|
|
87
|
-
name?:
|
|
106
|
+
name?:
|
|
107
|
+
string;
|
|
88
108
|
/** Type of the errors grouped in this issue. */
|
|
89
|
-
type?:
|
|
109
|
+
type?:
|
|
110
|
+
string;
|
|
90
111
|
}
|
|
91
112
|
interface GooglePlayDeveloperReportingV1alpha1ErrorReport {
|
|
92
113
|
/**
|
|
93
114
|
* The issue this report was associated with. **Please note:** this resource is currently in Alpha. There could be changes to the issue grouping that would result in similar but more
|
|
94
115
|
* recent error reports being assigned to a different issue.
|
|
95
116
|
*/
|
|
96
|
-
issue?:
|
|
117
|
+
issue?:
|
|
118
|
+
string;
|
|
97
119
|
/** The resource name of the report. Format: apps/{app}/errorReports/{report} */
|
|
98
|
-
name?:
|
|
120
|
+
name?:
|
|
121
|
+
string;
|
|
99
122
|
/**
|
|
100
123
|
* Textual representation of the error report. These textual reports are produced by the platform. The reports are then sanitized and filtered to remove any potentially sensitive
|
|
101
124
|
* information. Although their format is fairly stable, they are not entirely meant for machine consumption and we cannot guarantee that there won't be subtle changes to the formatting
|
|
102
125
|
* that may break systems trying to parse information out of the reports.
|
|
103
126
|
*/
|
|
104
|
-
reportText?:
|
|
127
|
+
reportText?:
|
|
128
|
+
string;
|
|
105
129
|
/** Type of the error for which this report was generated. */
|
|
106
|
-
type?:
|
|
130
|
+
type?:
|
|
131
|
+
string;
|
|
107
132
|
}
|
|
108
133
|
interface GooglePlayDeveloperReportingV1alpha1ExcessiveWakeupRateMetricSet {
|
|
109
134
|
/** Summary about data freshness in this resource. */
|
|
110
|
-
freshnessInfo?:
|
|
135
|
+
freshnessInfo?:
|
|
136
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfo;
|
|
111
137
|
/** The resource name. Format: apps/{app}/excessiveWakeupRateMetricSet */
|
|
112
|
-
name?:
|
|
138
|
+
name?:
|
|
139
|
+
string;
|
|
113
140
|
}
|
|
114
141
|
interface GooglePlayDeveloperReportingV1alpha1FreshnessInfo {
|
|
115
142
|
/** Information about data freshness for every supported aggregation period. This field has set semantics, keyed by the `aggregation_period` field. */
|
|
116
|
-
freshnesses?:
|
|
143
|
+
freshnesses?:
|
|
144
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfoFreshness[];
|
|
117
145
|
}
|
|
118
146
|
interface GooglePlayDeveloperReportingV1alpha1FreshnessInfoFreshness {
|
|
119
147
|
/** Aggregation period for which data is available. */
|
|
120
|
-
aggregationPeriod?:
|
|
148
|
+
aggregationPeriod?:
|
|
149
|
+
string;
|
|
121
150
|
/**
|
|
122
151
|
* Latest end time for which data is available, for the aggregation period. The time is specified in the metric set's default timezone. *Note:* time ranges in TimelineSpec are
|
|
123
152
|
* represented as `start_time, end_time)`. For example, if the latest available timeline data point for a `DAILY` aggregation period is `2021-06-23 00:00:00 America/Los_Angeles`, the
|
|
124
153
|
* value of this field would be `2021-06-24 00:00:00 America/Los_Angeles` so it can be easily reused in [TimelineSpec.end_time.
|
|
125
154
|
*/
|
|
126
|
-
latestEndTime?:
|
|
155
|
+
latestEndTime?:
|
|
156
|
+
GoogleTypeDateTime;
|
|
127
157
|
}
|
|
128
158
|
interface GooglePlayDeveloperReportingV1alpha1ListAnomaliesResponse {
|
|
129
159
|
/** Anomalies that were found. */
|
|
130
|
-
anomalies?:
|
|
160
|
+
anomalies?:
|
|
161
|
+
GooglePlayDeveloperReportingV1alpha1Anomaly[];
|
|
131
162
|
/** Continuation token to fetch the next page of data. */
|
|
132
|
-
nextPageToken?:
|
|
163
|
+
nextPageToken?:
|
|
164
|
+
string;
|
|
133
165
|
}
|
|
134
166
|
interface GooglePlayDeveloperReportingV1alpha1MetricsRow {
|
|
135
167
|
/** Granularity of the aggregation period of the row. */
|
|
136
|
-
aggregationPeriod?:
|
|
168
|
+
aggregationPeriod?:
|
|
169
|
+
string;
|
|
137
170
|
/** Dimension columns in the row. */
|
|
138
|
-
dimensions?:
|
|
171
|
+
dimensions?:
|
|
172
|
+
GooglePlayDeveloperReportingV1alpha1DimensionValue[];
|
|
139
173
|
/** Metric columns in the row. */
|
|
140
|
-
metrics?:
|
|
174
|
+
metrics?:
|
|
175
|
+
GooglePlayDeveloperReportingV1alpha1MetricValue[];
|
|
141
176
|
/** Starting date (and time for hourly aggregation) of the period covered by this row. */
|
|
142
|
-
startTime?:
|
|
177
|
+
startTime?:
|
|
178
|
+
GoogleTypeDateTime;
|
|
143
179
|
}
|
|
144
180
|
interface GooglePlayDeveloperReportingV1alpha1MetricValue {
|
|
145
181
|
/** Actual value, represented as a decimal number. */
|
|
146
|
-
decimalValue?:
|
|
182
|
+
decimalValue?:
|
|
183
|
+
GoogleTypeDecimal;
|
|
147
184
|
/** Confidence interval of a value that is of type `type.Decimal`. */
|
|
148
|
-
decimalValueConfidenceInterval?:
|
|
185
|
+
decimalValueConfidenceInterval?:
|
|
186
|
+
GooglePlayDeveloperReportingV1alpha1DecimalConfidenceInterval;
|
|
149
187
|
/** Name of the metric. */
|
|
150
|
-
metric?:
|
|
188
|
+
metric?:
|
|
189
|
+
string;
|
|
151
190
|
}
|
|
152
191
|
interface GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetRequest {
|
|
153
192
|
/**
|
|
@@ -162,47 +201,57 @@ declare namespace gapi.client {
|
|
|
162
201
|
* `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE. * `deviceScreenDpi`
|
|
163
202
|
* (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
164
203
|
*/
|
|
165
|
-
dimensions?:
|
|
204
|
+
dimensions?:
|
|
205
|
+
string[];
|
|
166
206
|
/** Filters to apply to data. The filtering expression follows [AIP-160](https://google.aip.dev/160) standard and supports filtering by equality of all breakdown dimensions. */
|
|
167
|
-
filter?:
|
|
207
|
+
filter?:
|
|
208
|
+
string;
|
|
168
209
|
/**
|
|
169
210
|
* Metrics to aggregate. **Supported metrics:** * `anrRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that experienced at least one ANR. *
|
|
170
|
-
* `anrRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `anrRate` in the last 7 days. The daily values are weighted by the count of distinct users for the day.
|
|
171
|
-
* `anrRate28dUserWeighted` (`google.type.Decimal`): Rolling average value of `anrRate` in the last 28 days. The daily values are weighted by the
|
|
172
|
-
* `userPerceivedAnrRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period
|
|
173
|
-
* currently those of 'Input dispatching' type. * `userPerceivedAnrRate7dUserWeighted`
|
|
174
|
-
* daily values are weighted by the count of distinct users for the day.
|
|
175
|
-
*
|
|
176
|
-
*
|
|
177
|
-
*
|
|
178
|
-
*
|
|
211
|
+
* `anrRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `anrRate` in the last 7 days. The daily values are weighted by the count of distinct users for the day. Not
|
|
212
|
+
* supported in HOURLY granularity. * `anrRate28dUserWeighted` (`google.type.Decimal`): Rolling average value of `anrRate` in the last 28 days. The daily values are weighted by the
|
|
213
|
+
* count of distinct users for the day. Not supported in HOURLY granularity. * `userPerceivedAnrRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period
|
|
214
|
+
* that experienced at least one user-perceived ANR. User-perceived ANRs are currently those of 'Input dispatching' type. * `userPerceivedAnrRate7dUserWeighted`
|
|
215
|
+
* (`google.type.Decimal`): Rolling average value of `userPerceivedAnrRate` in the last 7 days. The daily values are weighted by the count of distinct users for the day. Not supported
|
|
216
|
+
* in HOURLY granularity. * `userPerceivedAnrRate28dUserWeighted` (`google.type.Decimal`): Rolling average value of `userPerceivedAnrRate` in the last 28 days. The daily values are
|
|
217
|
+
* weighted by the count of distinct users for the day. Not . supported in HOURLY granularity. * `distinctUsers` (`google.type.Decimal`): Count of distinct users in the aggregation
|
|
218
|
+
* period that were used as normalization value for the `anrRate` and `userPerceivedAnrRate` metrics. A user is counted in this metric if they used the app in the foreground during the
|
|
219
|
+
* aggregation period. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of
|
|
220
|
+
* 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value.
|
|
179
221
|
*/
|
|
180
|
-
metrics?:
|
|
222
|
+
metrics?:
|
|
223
|
+
string[];
|
|
181
224
|
/** Maximum size of the returned data. If unspecified, at most 1000 rows will be returned. The maximum value is 100,000; values above 100,000 will be coerced to 100,000. */
|
|
182
|
-
pageSize?:
|
|
225
|
+
pageSize?:
|
|
226
|
+
number;
|
|
183
227
|
/**
|
|
184
228
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
185
229
|
* provided the page token.
|
|
186
230
|
*/
|
|
187
|
-
pageToken?:
|
|
231
|
+
pageToken?:
|
|
232
|
+
string;
|
|
188
233
|
/**
|
|
189
234
|
* Specification of the timeline aggregation parameters. **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints,
|
|
190
|
-
* the default and only supported timezone is `America/Los_Angeles`.
|
|
235
|
+
* the default and only supported timezone is `America/Los_Angeles`. * HOURLY: metrics are aggregated in hourly intervals. The default and only supported timezone is `UTC`.
|
|
191
236
|
*/
|
|
192
|
-
timelineSpec?:
|
|
237
|
+
timelineSpec?:
|
|
238
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
193
239
|
/**
|
|
194
240
|
* User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
|
|
195
241
|
* the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
|
|
196
242
|
* data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
|
|
197
243
|
* was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
|
|
198
244
|
*/
|
|
199
|
-
userCohort?:
|
|
245
|
+
userCohort?:
|
|
246
|
+
string;
|
|
200
247
|
}
|
|
201
248
|
interface GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetResponse {
|
|
202
249
|
/** Continuation token to fetch the next page of data. */
|
|
203
|
-
nextPageToken?:
|
|
250
|
+
nextPageToken?:
|
|
251
|
+
string;
|
|
204
252
|
/** Returned rows of data. */
|
|
205
|
-
rows?:
|
|
253
|
+
rows?:
|
|
254
|
+
GooglePlayDeveloperReportingV1alpha1MetricsRow[];
|
|
206
255
|
}
|
|
207
256
|
interface GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetRequest {
|
|
208
257
|
/**
|
|
@@ -217,48 +266,58 @@ declare namespace gapi.client {
|
|
|
217
266
|
* `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE. * `deviceScreenDpi`
|
|
218
267
|
* (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
219
268
|
*/
|
|
220
|
-
dimensions?:
|
|
269
|
+
dimensions?:
|
|
270
|
+
string[];
|
|
221
271
|
/** Filters to apply to data. The filtering expression follows [AIP-160](https://google.aip.dev/160) standard and supports filtering by equality of all breakdown dimensions. */
|
|
222
|
-
filter?:
|
|
272
|
+
filter?:
|
|
273
|
+
string;
|
|
223
274
|
/**
|
|
224
275
|
* Metrics to aggregate. **Supported metrics:** * `crashRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that experienced at least one crash. *
|
|
225
276
|
* `crashRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `crashRate` in the last 7 days. The daily values are weighted by the count of distinct users for the day.
|
|
226
277
|
* * `crashRate28dUserWeighted` (`google.type.Decimal`): Rolling average value of `crashRate` in the last 28 days. The daily values are weighted by the count of distinct users for the
|
|
227
|
-
* day. * `userPerceivedCrashRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that experienced at least one
|
|
228
|
-
* your app (a user-perceived crash). An app is considered to be in active use if it is displaying any activity or executing any foreground
|
|
229
|
-
* `userPerceivedCrashRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `userPerceivedCrashRate` in the last 7 days. The daily values are weighted by the
|
|
230
|
-
* distinct users for the day. * `userPerceivedCrashRate28dUserWeighted` (`google.type.Decimal`): Rolling average value of
|
|
231
|
-
* values are weighted by the count of distinct users for the day.
|
|
232
|
-
*
|
|
233
|
-
*
|
|
234
|
-
* users being counted multiple times. The value is rounded to the nearest multiple of
|
|
278
|
+
* day. Not supported in HOURLY granularity. * `userPerceivedCrashRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that experienced at least one
|
|
279
|
+
* crash while they were actively using your app (a user-perceived crash). An app is considered to be in active use if it is displaying any activity or executing any foreground
|
|
280
|
+
* service. * `userPerceivedCrashRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `userPerceivedCrashRate` in the last 7 days. The daily values are weighted by the
|
|
281
|
+
* count of distinct users for the day. Not supported in HOURLY granularity. * `userPerceivedCrashRate28dUserWeighted` (`google.type.Decimal`): Rolling average value of
|
|
282
|
+
* `userPerceivedCrashRate` in the last 28 days. The daily values are weighted by the count of distinct users for the day. Not supported in HOURLY granularity. * `distinctUsers`
|
|
283
|
+
* (`google.type.Decimal`): Count of distinct users in the aggregation period that were used as normalization value for the `crashRate` and `userPerceivedCrashRate` metrics. A user is
|
|
284
|
+
* counted in this metric if they used the app actively during the aggregation period. An app is considered to be in active use if it is displaying any activity or executing any
|
|
285
|
+
* foreground service. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of
|
|
286
|
+
* 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value.
|
|
235
287
|
*/
|
|
236
|
-
metrics?:
|
|
288
|
+
metrics?:
|
|
289
|
+
string[];
|
|
237
290
|
/** Maximum size of the returned data. If unspecified, at most 1000 rows will be returned. The maximum value is 100,000; values above 100,000 will be coerced to 100,000. */
|
|
238
|
-
pageSize?:
|
|
291
|
+
pageSize?:
|
|
292
|
+
number;
|
|
239
293
|
/**
|
|
240
294
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
241
295
|
* provided the page token.
|
|
242
296
|
*/
|
|
243
|
-
pageToken?:
|
|
297
|
+
pageToken?:
|
|
298
|
+
string;
|
|
244
299
|
/**
|
|
245
300
|
* Specification of the timeline aggregation parameters. **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints,
|
|
246
|
-
* the default and only supported timezone is `America/Los_Angeles`.
|
|
301
|
+
* the default and only supported timezone is `America/Los_Angeles`. * HOURLY: metrics are aggregated in hourly intervals. The default and only supported timezone is `UTC`.
|
|
247
302
|
*/
|
|
248
|
-
timelineSpec?:
|
|
303
|
+
timelineSpec?:
|
|
304
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
249
305
|
/**
|
|
250
306
|
* User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
|
|
251
307
|
* the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
|
|
252
308
|
* data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
|
|
253
309
|
* was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
|
|
254
310
|
*/
|
|
255
|
-
userCohort?:
|
|
311
|
+
userCohort?:
|
|
312
|
+
string;
|
|
256
313
|
}
|
|
257
314
|
interface GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetResponse {
|
|
258
315
|
/** Continuation token to fetch the next page of data. */
|
|
259
|
-
nextPageToken?:
|
|
316
|
+
nextPageToken?:
|
|
317
|
+
string;
|
|
260
318
|
/** Returned rows of data. */
|
|
261
|
-
rows?:
|
|
319
|
+
rows?:
|
|
320
|
+
GooglePlayDeveloperReportingV1alpha1MetricsRow[];
|
|
262
321
|
}
|
|
263
322
|
interface GooglePlayDeveloperReportingV1alpha1QueryErrorCountMetricSetRequest {
|
|
264
323
|
/**
|
|
@@ -273,33 +332,41 @@ declare namespace gapi.client {
|
|
|
273
332
|
* `deviceVulkanVersion` (string): Vulkan version of the device, e.g., "4198400". * `deviceGlEsVersion` (string): OpenGL ES version of the device, e.g., "196610". * `deviceScreenSize`
|
|
274
333
|
* (string): Screen size of the device, e.g., NORMAL, LARGE. * `deviceScreenDpi` (string): Screen density of the device, e.g., mdpi, hdpi.
|
|
275
334
|
*/
|
|
276
|
-
dimensions?:
|
|
335
|
+
dimensions?:
|
|
336
|
+
string[];
|
|
277
337
|
/** Filters to apply to data. The filtering expression follows [AIP-160](https://google.aip.dev/160) standard and supports filtering by equality of all breakdown dimensions. */
|
|
278
|
-
filter?:
|
|
338
|
+
filter?:
|
|
339
|
+
string;
|
|
279
340
|
/**
|
|
280
341
|
* Metrics to aggregate. **Supported metrics:** * `errorReportCount` (`google.type.Decimal`): Absolute count of individual error reports that have been received for an app. *
|
|
281
342
|
* `distinctUsers` (`google.type.Decimal`): Count of distinct users for which reports have been received. Care must be taken not to aggregate this count further, as it may result in
|
|
282
343
|
* users being counted multiple times. This value is not rounded, however it may be an approximation.
|
|
283
344
|
*/
|
|
284
|
-
metrics?:
|
|
345
|
+
metrics?:
|
|
346
|
+
string[];
|
|
285
347
|
/** Maximum size of the returned data. If unspecified, at most 1000 rows will be returned. The maximum value is 100000; values above 100000 will be coerced to 100000. */
|
|
286
|
-
pageSize?:
|
|
348
|
+
pageSize?:
|
|
349
|
+
number;
|
|
287
350
|
/**
|
|
288
351
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
289
352
|
* provided the page token.
|
|
290
353
|
*/
|
|
291
|
-
pageToken?:
|
|
354
|
+
pageToken?:
|
|
355
|
+
string;
|
|
292
356
|
/**
|
|
293
357
|
* Specification of the timeline aggregation parameters. **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar date intervals. The default and only supported
|
|
294
358
|
* timezone is `America/Los_Angeles`.
|
|
295
359
|
*/
|
|
296
|
-
timelineSpec?:
|
|
360
|
+
timelineSpec?:
|
|
361
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
297
362
|
}
|
|
298
363
|
interface GooglePlayDeveloperReportingV1alpha1QueryErrorCountMetricSetResponse {
|
|
299
364
|
/** Continuation token to fetch the next page of data. */
|
|
300
|
-
nextPageToken?:
|
|
365
|
+
nextPageToken?:
|
|
366
|
+
string;
|
|
301
367
|
/** Returned rows. */
|
|
302
|
-
rows?:
|
|
368
|
+
rows?:
|
|
369
|
+
GooglePlayDeveloperReportingV1alpha1MetricsRow[];
|
|
303
370
|
}
|
|
304
371
|
interface GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetRequest {
|
|
305
372
|
/**
|
|
@@ -314,9 +381,11 @@ declare namespace gapi.client {
|
|
|
314
381
|
* (string): OpenGL ES version of the device, e.g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE. * `deviceScreenDpi` (string): Screen
|
|
315
382
|
* density of the device, e.g., mdpi, hdpi.
|
|
316
383
|
*/
|
|
317
|
-
dimensions?:
|
|
384
|
+
dimensions?:
|
|
385
|
+
string[];
|
|
318
386
|
/** Filters to apply to data. The filtering expression follows [AIP-160](https://google.aip.dev/160) standard and supports filtering by equality of all breakdown dimensions. */
|
|
319
|
-
filter?:
|
|
387
|
+
filter?:
|
|
388
|
+
string;
|
|
320
389
|
/**
|
|
321
390
|
* Metrics to aggregate. **Supported metrics:** * `excessiveWakeupRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that had more than 10 wakeups
|
|
322
391
|
* per hour. * `excessiveWakeupRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `excessiveWakeupRate` in the last 7 days. The daily values are weighted by the
|
|
@@ -326,32 +395,39 @@ declare namespace gapi.client {
|
|
|
326
395
|
* also background work. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of
|
|
327
396
|
* 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value.
|
|
328
397
|
*/
|
|
329
|
-
metrics?:
|
|
398
|
+
metrics?:
|
|
399
|
+
string[];
|
|
330
400
|
/** Maximum size of the returned data. If unspecified, at most 1000 rows will be returned. The maximum value is 100000; values above 100000 will be coerced to 100000. */
|
|
331
|
-
pageSize?:
|
|
401
|
+
pageSize?:
|
|
402
|
+
number;
|
|
332
403
|
/**
|
|
333
404
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
334
405
|
* provided the page token.
|
|
335
406
|
*/
|
|
336
|
-
pageToken?:
|
|
407
|
+
pageToken?:
|
|
408
|
+
string;
|
|
337
409
|
/**
|
|
338
410
|
* Specification of the timeline aggregation parameters. **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints,
|
|
339
411
|
* the only supported timezone is `America/Los_Angeles`.
|
|
340
412
|
*/
|
|
341
|
-
timelineSpec?:
|
|
413
|
+
timelineSpec?:
|
|
414
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
342
415
|
/**
|
|
343
416
|
* User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
|
|
344
417
|
* the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
|
|
345
418
|
* data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
|
|
346
419
|
* was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
|
|
347
420
|
*/
|
|
348
|
-
userCohort?:
|
|
421
|
+
userCohort?:
|
|
422
|
+
string;
|
|
349
423
|
}
|
|
350
424
|
interface GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetResponse {
|
|
351
425
|
/** Continuation token to fetch the next page of data. */
|
|
352
|
-
nextPageToken?:
|
|
426
|
+
nextPageToken?:
|
|
427
|
+
string;
|
|
353
428
|
/** Returned rows of data. */
|
|
354
|
-
rows?:
|
|
429
|
+
rows?:
|
|
430
|
+
GooglePlayDeveloperReportingV1alpha1MetricsRow[];
|
|
355
431
|
}
|
|
356
432
|
interface GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest {
|
|
357
433
|
/**
|
|
@@ -366,9 +442,11 @@ declare namespace gapi.client {
|
|
|
366
442
|
* (string): OpenGL ES version of the device, e.g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE. * `deviceScreenDpi` (string): Screen
|
|
367
443
|
* density of the device, e.g., mdpi, hdpi.
|
|
368
444
|
*/
|
|
369
|
-
dimensions?:
|
|
445
|
+
dimensions?:
|
|
446
|
+
string[];
|
|
370
447
|
/** Filters to apply to data. The filtering expression follows [AIP-160](https://google.aip.dev/160) standard and supports filtering by equality of all breakdown dimensions. */
|
|
371
|
-
filter?:
|
|
448
|
+
filter?:
|
|
449
|
+
string;
|
|
372
450
|
/**
|
|
373
451
|
* Metrics to aggregate. **Supported metrics:** * `slowRenderingRate20Fps` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that had a slow rendering. *
|
|
374
452
|
* `slowRenderingRate20Fps7dUserWeighted` (`google.type.Decimal`): Rolling average value of `slowRenderingRate20Fps` in the last 7 days. The daily values are weighted by the count of
|
|
@@ -381,32 +459,39 @@ declare namespace gapi.client {
|
|
|
381
459
|
* not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending
|
|
382
460
|
* on the magnitude of the value.
|
|
383
461
|
*/
|
|
384
|
-
metrics?:
|
|
462
|
+
metrics?:
|
|
463
|
+
string[];
|
|
385
464
|
/** Maximum size of the returned data. If unspecified, at most 1000 rows will be returned. The maximum value is 100000; values above 100000 will be coerced to 100000. */
|
|
386
|
-
pageSize?:
|
|
465
|
+
pageSize?:
|
|
466
|
+
number;
|
|
387
467
|
/**
|
|
388
468
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
389
469
|
* provided the page token.
|
|
390
470
|
*/
|
|
391
|
-
pageToken?:
|
|
471
|
+
pageToken?:
|
|
472
|
+
string;
|
|
392
473
|
/**
|
|
393
474
|
* Specification of the timeline aggregation parameters. **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints,
|
|
394
475
|
* the only supported timezone is `America/Los_Angeles`.
|
|
395
476
|
*/
|
|
396
|
-
timelineSpec?:
|
|
477
|
+
timelineSpec?:
|
|
478
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
397
479
|
/**
|
|
398
480
|
* User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
|
|
399
481
|
* the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
|
|
400
482
|
* data from beta Android versions only, excluding data from released Android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
|
|
401
483
|
* was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
|
|
402
484
|
*/
|
|
403
|
-
userCohort?:
|
|
485
|
+
userCohort?:
|
|
486
|
+
string;
|
|
404
487
|
}
|
|
405
488
|
interface GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse {
|
|
406
489
|
/** Continuation token to fetch the next page of data. */
|
|
407
|
-
nextPageToken?:
|
|
490
|
+
nextPageToken?:
|
|
491
|
+
string;
|
|
408
492
|
/** Returned rows of data. */
|
|
409
|
-
rows?:
|
|
493
|
+
rows?:
|
|
494
|
+
GooglePlayDeveloperReportingV1alpha1MetricsRow[];
|
|
410
495
|
}
|
|
411
496
|
interface GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest {
|
|
412
497
|
/**
|
|
@@ -421,9 +506,11 @@ declare namespace gapi.client {
|
|
|
421
506
|
* (string): OpenGL ES version of the device, e.g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE. * `deviceScreenDpi` (string): Screen
|
|
422
507
|
* density of the device, e.g., mdpi, hdpi.
|
|
423
508
|
*/
|
|
424
|
-
dimensions?:
|
|
509
|
+
dimensions?:
|
|
510
|
+
string[];
|
|
425
511
|
/** Filters to apply to data. The filtering expression follows [AIP-160](https://google.aip.dev/160) standard and supports filtering by equality of all breakdown dimensions. */
|
|
426
|
-
filter?:
|
|
512
|
+
filter?:
|
|
513
|
+
string;
|
|
427
514
|
/**
|
|
428
515
|
* Metrics to aggregate. **Supported metrics:** * `slowStartRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that had a slow start. *
|
|
429
516
|
* `slowStartRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `slowStartRate` in the last 7 days. The daily values are weighted by the count of distinct users for
|
|
@@ -432,32 +519,39 @@ declare namespace gapi.client {
|
|
|
432
519
|
* `slowStartRate` metric. A user is counted in this metric if their app was launched in the device. Care must be taken not to aggregate this count further, as it may result in users
|
|
433
520
|
* being counted multiple times. The value is rounded to the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value.
|
|
434
521
|
*/
|
|
435
|
-
metrics?:
|
|
522
|
+
metrics?:
|
|
523
|
+
string[];
|
|
436
524
|
/** Maximum size of the returned data. If unspecified, at most 1000 rows will be returned. The maximum value is 100000; values above 100000 will be coerced to 100000. */
|
|
437
|
-
pageSize?:
|
|
525
|
+
pageSize?:
|
|
526
|
+
number;
|
|
438
527
|
/**
|
|
439
528
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
440
529
|
* provided the page token.
|
|
441
530
|
*/
|
|
442
|
-
pageToken?:
|
|
531
|
+
pageToken?:
|
|
532
|
+
string;
|
|
443
533
|
/**
|
|
444
534
|
* Specification of the timeline aggregation parameters. **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints,
|
|
445
535
|
* the only supported timezone is `America/Los_Angeles`.
|
|
446
536
|
*/
|
|
447
|
-
timelineSpec?:
|
|
537
|
+
timelineSpec?:
|
|
538
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
448
539
|
/**
|
|
449
540
|
* User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
|
|
450
541
|
* the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
|
|
451
542
|
* data from beta Android versions only, excluding data from released Android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
|
|
452
543
|
* was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
|
|
453
544
|
*/
|
|
454
|
-
userCohort?:
|
|
545
|
+
userCohort?:
|
|
546
|
+
string;
|
|
455
547
|
}
|
|
456
548
|
interface GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse {
|
|
457
549
|
/** Continuation token to fetch the next page of data. */
|
|
458
|
-
nextPageToken?:
|
|
550
|
+
nextPageToken?:
|
|
551
|
+
string;
|
|
459
552
|
/** Returned rows of data. */
|
|
460
|
-
rows?:
|
|
553
|
+
rows?:
|
|
554
|
+
GooglePlayDeveloperReportingV1alpha1MetricsRow[];
|
|
461
555
|
}
|
|
462
556
|
interface GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetRequest {
|
|
463
557
|
/**
|
|
@@ -472,9 +566,11 @@ declare namespace gapi.client {
|
|
|
472
566
|
* (string): OpenGL ES version of the device, e.g., "196610". * `deviceScreenSize` (string): Screen size of the device, e.g., NORMAL, LARGE. * `deviceScreenDpi` (string): Screen
|
|
473
567
|
* density of the device, e.g., mdpi, hdpi.
|
|
474
568
|
*/
|
|
475
|
-
dimensions?:
|
|
569
|
+
dimensions?:
|
|
570
|
+
string[];
|
|
476
571
|
/** Filters to apply to data. The filtering expression follows [AIP-160](https://google.aip.dev/160) standard and supports filtering by equality of all breakdown dimensions. */
|
|
477
|
-
filter?:
|
|
572
|
+
filter?:
|
|
573
|
+
string;
|
|
478
574
|
/**
|
|
479
575
|
* Metrics to aggregate. **Supported metrics:** * `stuckBgWakelockRate` (`google.type.Decimal`): Percentage of distinct users in the aggregation period that had a wakelock held in the
|
|
480
576
|
* background for longer than 1 hour. * `stuckBgWakelockRate7dUserWeighted` (`google.type.Decimal`): Rolling average value of `stuckBgWakelockRate` in the last 7 days. The daily values
|
|
@@ -484,95 +580,124 @@ declare namespace gapi.client {
|
|
|
484
580
|
* foreground usage but also background work. Care must be taken not to aggregate this count further, as it may result in users being counted multiple times. The value is rounded to
|
|
485
581
|
* the nearest multiple of 10, 100, 1,000 or 1,000,000, depending on the magnitude of the value.
|
|
486
582
|
*/
|
|
487
|
-
metrics?:
|
|
583
|
+
metrics?:
|
|
584
|
+
string[];
|
|
488
585
|
/** Maximum size of the returned data. If unspecified, at most 1000 rows will be returned. The maximum value is 100000; values above 100000 will be coerced to 100000. */
|
|
489
|
-
pageSize?:
|
|
586
|
+
pageSize?:
|
|
587
|
+
number;
|
|
490
588
|
/**
|
|
491
589
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
492
590
|
* provided the page token.
|
|
493
591
|
*/
|
|
494
|
-
pageToken?:
|
|
592
|
+
pageToken?:
|
|
593
|
+
string;
|
|
495
594
|
/**
|
|
496
595
|
* Specification of the timeline aggregation parameters. **Supported aggregation periods:** * DAILY: metrics are aggregated in calendar date intervals. Due to historical constraints,
|
|
497
596
|
* the only supported timezone is `America/Los_Angeles`.
|
|
498
597
|
*/
|
|
499
|
-
timelineSpec?:
|
|
598
|
+
timelineSpec?:
|
|
599
|
+
GooglePlayDeveloperReportingV1alpha1TimelineSpec;
|
|
500
600
|
/**
|
|
501
601
|
* User view to select. The output data will correspond to the selected view. **Supported values:** * `OS_PUBLIC` To select data from all publicly released Android versions. This is
|
|
502
602
|
* the default. Supports all the above dimensions. * `APP_TESTERS` To select data from users who have opted in to be testers. Supports all the above dimensions. * `OS_BETA` To select
|
|
503
603
|
* data from beta android versions only, excluding data from released android versions. Only the following dimensions are supported: * `versionCode` (int64): version of the app that
|
|
504
604
|
* was running on the user's device. * `osBuild` (string): OS build of the user's device, e.g., "T1B2.220916.004".
|
|
505
605
|
*/
|
|
506
|
-
userCohort?:
|
|
606
|
+
userCohort?:
|
|
607
|
+
string;
|
|
507
608
|
}
|
|
508
609
|
interface GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetResponse {
|
|
509
610
|
/** Continuation token to fetch the next page of data. */
|
|
510
|
-
nextPageToken?:
|
|
611
|
+
nextPageToken?:
|
|
612
|
+
string;
|
|
511
613
|
/** Returned rows of data. */
|
|
512
|
-
rows?:
|
|
614
|
+
rows?:
|
|
615
|
+
GooglePlayDeveloperReportingV1alpha1MetricsRow[];
|
|
513
616
|
}
|
|
514
617
|
interface GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse {
|
|
515
618
|
/** ErrorIssues that were found. */
|
|
516
|
-
errorIssues?:
|
|
619
|
+
errorIssues?:
|
|
620
|
+
GooglePlayDeveloperReportingV1alpha1ErrorIssue[];
|
|
517
621
|
/** Continuation token to fetch the next page of data. */
|
|
518
|
-
nextPageToken?:
|
|
622
|
+
nextPageToken?:
|
|
623
|
+
string;
|
|
519
624
|
}
|
|
520
625
|
interface GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse {
|
|
521
626
|
/** Error reports that were found. */
|
|
522
|
-
errorReports?:
|
|
627
|
+
errorReports?:
|
|
628
|
+
GooglePlayDeveloperReportingV1alpha1ErrorReport[];
|
|
523
629
|
/** Page token to fetch the next page of reports. */
|
|
524
|
-
nextPageToken?:
|
|
630
|
+
nextPageToken?:
|
|
631
|
+
string;
|
|
525
632
|
}
|
|
526
633
|
interface GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet {
|
|
527
634
|
/** Summary about data freshness in this resource. */
|
|
528
|
-
freshnessInfo?:
|
|
635
|
+
freshnessInfo?:
|
|
636
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfo;
|
|
529
637
|
/** The resource name. Format: apps/{app}/slowRenderingRateMetricSet */
|
|
530
|
-
name?:
|
|
638
|
+
name?:
|
|
639
|
+
string;
|
|
531
640
|
}
|
|
532
641
|
interface GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet {
|
|
533
642
|
/** Summary about data freshness in this resource. */
|
|
534
|
-
freshnessInfo?:
|
|
643
|
+
freshnessInfo?:
|
|
644
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfo;
|
|
535
645
|
/** The resource name. Format: apps/{app}/slowStartRateMetricSet */
|
|
536
|
-
name?:
|
|
646
|
+
name?:
|
|
647
|
+
string;
|
|
537
648
|
}
|
|
538
649
|
interface GooglePlayDeveloperReportingV1alpha1StuckBackgroundWakelockRateMetricSet {
|
|
539
650
|
/** Summary about data freshness in this resource. */
|
|
540
|
-
freshnessInfo?:
|
|
651
|
+
freshnessInfo?:
|
|
652
|
+
GooglePlayDeveloperReportingV1alpha1FreshnessInfo;
|
|
541
653
|
/** The resource name. Format: apps/{app}/stuckBackgroundWakelockRateMetricSet */
|
|
542
|
-
name?:
|
|
654
|
+
name?:
|
|
655
|
+
string;
|
|
543
656
|
}
|
|
544
657
|
interface GooglePlayDeveloperReportingV1alpha1TimelineSpec {
|
|
545
658
|
/** Type of the aggregation period of the datapoints in the timeline. Intervals are identified by the date and time at the start of the interval. */
|
|
546
|
-
aggregationPeriod?:
|
|
659
|
+
aggregationPeriod?:
|
|
660
|
+
string;
|
|
547
661
|
/** Ending datapoint of the timeline (exclusive). See start_time for restrictions. The timezone of the end point must match the timezone of the start point. */
|
|
548
|
-
endTime?:
|
|
662
|
+
endTime?:
|
|
663
|
+
GoogleTypeDateTime;
|
|
549
664
|
/**
|
|
550
665
|
* Starting datapoint of the timeline (inclusive). Must be aligned to the aggregation period as follows: * HOURLY: the 'minutes', 'seconds' and 'nanos' fields must be unset. The
|
|
551
666
|
* time_zone can be left unset (defaults to UTC) or set explicitly to "UTC". Setting any other utc_offset or timezone id will result in a validation error. * DAILY: the 'hours',
|
|
552
667
|
* 'minutes', 'seconds' and 'nanos' fields must be unset. Different metric sets support different timezones. It can be left unset to use the default timezone specified by the metric
|
|
553
668
|
* set. The timezone of the end point must match the timezone of the start point.
|
|
554
669
|
*/
|
|
555
|
-
startTime?:
|
|
670
|
+
startTime?:
|
|
671
|
+
GoogleTypeDateTime;
|
|
556
672
|
}
|
|
557
673
|
interface GoogleTypeDateTime {
|
|
558
674
|
/** Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day. */
|
|
559
|
-
day?:
|
|
675
|
+
day?:
|
|
676
|
+
number;
|
|
560
677
|
/** Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time. */
|
|
561
|
-
hours?:
|
|
678
|
+
hours?:
|
|
679
|
+
number;
|
|
562
680
|
/** Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0. */
|
|
563
|
-
minutes?:
|
|
681
|
+
minutes?:
|
|
682
|
+
number;
|
|
564
683
|
/** Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month. */
|
|
565
|
-
month?:
|
|
684
|
+
month?:
|
|
685
|
+
number;
|
|
566
686
|
/** Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0. */
|
|
567
|
-
nanos?:
|
|
687
|
+
nanos?:
|
|
688
|
+
number;
|
|
568
689
|
/** Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds. */
|
|
569
|
-
seconds?:
|
|
690
|
+
seconds?:
|
|
691
|
+
number;
|
|
570
692
|
/** Time zone. */
|
|
571
|
-
timeZone?:
|
|
693
|
+
timeZone?:
|
|
694
|
+
GoogleTypeTimeZone;
|
|
572
695
|
/** UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }. */
|
|
573
|
-
utcOffset?:
|
|
696
|
+
utcOffset?:
|
|
697
|
+
string;
|
|
574
698
|
/** Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year. */
|
|
575
|
-
year?:
|
|
699
|
+
year?:
|
|
700
|
+
number;
|
|
576
701
|
}
|
|
577
702
|
interface GoogleTypeDecimal {
|
|
578
703
|
/**
|
|
@@ -592,27 +717,35 @@ declare namespace gapi.client {
|
|
|
592
717
|
* 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**
|
|
593
718
|
* error with `400 Bad Request` (`INVALID_ARGUMENT` in gRPC) if the service receives a value outside of the supported range.
|
|
594
719
|
*/
|
|
595
|
-
value?:
|
|
720
|
+
value?:
|
|
721
|
+
string;
|
|
596
722
|
}
|
|
597
723
|
interface GoogleTypeTimeZone {
|
|
598
724
|
/** IANA Time Zone Database time zone, e.g. "America/New_York". */
|
|
599
|
-
id?:
|
|
725
|
+
id?:
|
|
726
|
+
string;
|
|
600
727
|
/** Optional. IANA Time Zone Database version number, e.g. "2019a". */
|
|
601
|
-
version?:
|
|
728
|
+
version?:
|
|
729
|
+
string;
|
|
602
730
|
}
|
|
603
731
|
interface AnomaliesResource {
|
|
604
732
|
/** Lists anomalies in any of the datasets. */
|
|
605
733
|
list(request?: {
|
|
606
734
|
/** V1 error format. */
|
|
607
|
-
"$.xgafv"?:
|
|
735
|
+
"$.xgafv"?:
|
|
736
|
+
string;
|
|
608
737
|
/** OAuth access token. */
|
|
609
|
-
access_token?:
|
|
738
|
+
access_token?:
|
|
739
|
+
string;
|
|
610
740
|
/** Data format for response. */
|
|
611
|
-
alt?:
|
|
741
|
+
alt?:
|
|
742
|
+
string;
|
|
612
743
|
/** JSONP */
|
|
613
|
-
callback?:
|
|
744
|
+
callback?:
|
|
745
|
+
string;
|
|
614
746
|
/** Selector specifying which fields to include in a partial response. */
|
|
615
|
-
fields?:
|
|
747
|
+
fields?:
|
|
748
|
+
string;
|
|
616
749
|
/**
|
|
617
750
|
* Filtering criteria for anomalies. For basic filter guidance, please check: https://google.aip.dev/160. **Supported functions:** * `activeBetween(startTime, endTime)`: If
|
|
618
751
|
* specified, only list anomalies that were active in between `startTime` (inclusive) and `endTime` (exclusive). Both parameters are expected to conform to an RFC-3339 formatted
|
|
@@ -620,112 +753,159 @@ declare namespace gapi.client {
|
|
|
620
753
|
* upper bound, respectively. Examples: * `activeBetween("2021-04-21T11:30:00Z", "2021-07-21T00:00:00Z")` * `activeBetween(UNBOUNDED, "2021-11-21T00:00:00-04:00")` *
|
|
621
754
|
* `activeBetween("2021-07-21T00:00:00-04:00", UNBOUNDED)`
|
|
622
755
|
*/
|
|
623
|
-
filter?:
|
|
756
|
+
filter?:
|
|
757
|
+
string;
|
|
624
758
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
625
|
-
key?:
|
|
759
|
+
key?:
|
|
760
|
+
string;
|
|
626
761
|
/** OAuth 2.0 token for the current user. */
|
|
627
|
-
oauth_token?:
|
|
762
|
+
oauth_token?:
|
|
763
|
+
string;
|
|
628
764
|
/** Maximum size of the returned data. If unspecified, at most 10 anomalies will be returned. The maximum value is 100; values above 100 will be coerced to 100. */
|
|
629
|
-
pageSize?:
|
|
765
|
+
pageSize?:
|
|
766
|
+
number;
|
|
630
767
|
/**
|
|
631
768
|
* A page token, received from a previous `ListErrorReports` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
632
769
|
* `ListErrorReports` must match the call that provided the page token.
|
|
633
770
|
*/
|
|
634
|
-
pageToken?:
|
|
771
|
+
pageToken?:
|
|
772
|
+
string;
|
|
635
773
|
/** Required. Parent app for which anomalies were detected. Format: apps/{app} */
|
|
636
|
-
parent:
|
|
774
|
+
parent:
|
|
775
|
+
string;
|
|
637
776
|
/** Returns response with indentations and line breaks. */
|
|
638
|
-
prettyPrint?:
|
|
777
|
+
prettyPrint?:
|
|
778
|
+
boolean;
|
|
639
779
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
640
|
-
quotaUser?:
|
|
780
|
+
quotaUser?:
|
|
781
|
+
string;
|
|
641
782
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
642
|
-
upload_protocol?:
|
|
783
|
+
upload_protocol?:
|
|
784
|
+
string;
|
|
643
785
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
644
|
-
uploadType?:
|
|
786
|
+
uploadType?:
|
|
787
|
+
string;
|
|
645
788
|
}): Request<GooglePlayDeveloperReportingV1alpha1ListAnomaliesResponse>;
|
|
646
789
|
}
|
|
647
790
|
interface AnrrateResource {
|
|
648
791
|
/** Describes the properties of the metric set. */
|
|
649
792
|
get(request?: {
|
|
650
793
|
/** V1 error format. */
|
|
651
|
-
"$.xgafv"?:
|
|
794
|
+
"$.xgafv"?:
|
|
795
|
+
string;
|
|
652
796
|
/** OAuth access token. */
|
|
653
|
-
access_token?:
|
|
797
|
+
access_token?:
|
|
798
|
+
string;
|
|
654
799
|
/** Data format for response. */
|
|
655
|
-
alt?:
|
|
800
|
+
alt?:
|
|
801
|
+
string;
|
|
656
802
|
/** JSONP */
|
|
657
|
-
callback?:
|
|
803
|
+
callback?:
|
|
804
|
+
string;
|
|
658
805
|
/** Selector specifying which fields to include in a partial response. */
|
|
659
|
-
fields?:
|
|
806
|
+
fields?:
|
|
807
|
+
string;
|
|
660
808
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
661
|
-
key?:
|
|
809
|
+
key?:
|
|
810
|
+
string;
|
|
662
811
|
/** Required. The resource name. Format: apps/{app}/anrRateMetricSet */
|
|
663
|
-
name:
|
|
812
|
+
name:
|
|
813
|
+
string;
|
|
664
814
|
/** OAuth 2.0 token for the current user. */
|
|
665
|
-
oauth_token?:
|
|
815
|
+
oauth_token?:
|
|
816
|
+
string;
|
|
666
817
|
/** Returns response with indentations and line breaks. */
|
|
667
|
-
prettyPrint?:
|
|
818
|
+
prettyPrint?:
|
|
819
|
+
boolean;
|
|
668
820
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
669
|
-
quotaUser?:
|
|
821
|
+
quotaUser?:
|
|
822
|
+
string;
|
|
670
823
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
671
|
-
upload_protocol?:
|
|
824
|
+
upload_protocol?:
|
|
825
|
+
string;
|
|
672
826
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
673
|
-
uploadType?:
|
|
827
|
+
uploadType?:
|
|
828
|
+
string;
|
|
674
829
|
}): Request<GooglePlayDeveloperReportingV1alpha1AnrRateMetricSet>;
|
|
675
830
|
/** Queries the metrics in the metric set. */
|
|
676
831
|
query(request: {
|
|
677
832
|
/** V1 error format. */
|
|
678
|
-
"$.xgafv"?:
|
|
833
|
+
"$.xgafv"?:
|
|
834
|
+
string;
|
|
679
835
|
/** OAuth access token. */
|
|
680
|
-
access_token?:
|
|
836
|
+
access_token?:
|
|
837
|
+
string;
|
|
681
838
|
/** Data format for response. */
|
|
682
|
-
alt?:
|
|
839
|
+
alt?:
|
|
840
|
+
string;
|
|
683
841
|
/** JSONP */
|
|
684
|
-
callback?:
|
|
842
|
+
callback?:
|
|
843
|
+
string;
|
|
685
844
|
/** Selector specifying which fields to include in a partial response. */
|
|
686
|
-
fields?:
|
|
845
|
+
fields?:
|
|
846
|
+
string;
|
|
687
847
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
688
|
-
key?:
|
|
848
|
+
key?:
|
|
849
|
+
string;
|
|
689
850
|
/** Required. The resource name. Format: apps/{app}/anrRateMetricSet */
|
|
690
|
-
name:
|
|
851
|
+
name:
|
|
852
|
+
string;
|
|
691
853
|
/** OAuth 2.0 token for the current user. */
|
|
692
|
-
oauth_token?:
|
|
854
|
+
oauth_token?:
|
|
855
|
+
string;
|
|
693
856
|
/** Returns response with indentations and line breaks. */
|
|
694
|
-
prettyPrint?:
|
|
857
|
+
prettyPrint?:
|
|
858
|
+
boolean;
|
|
695
859
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
696
|
-
quotaUser?:
|
|
860
|
+
quotaUser?:
|
|
861
|
+
string;
|
|
697
862
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
698
|
-
upload_protocol?:
|
|
863
|
+
upload_protocol?:
|
|
864
|
+
string;
|
|
699
865
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
700
|
-
uploadType?:
|
|
866
|
+
uploadType?:
|
|
867
|
+
string;
|
|
701
868
|
/** Request body */
|
|
702
|
-
resource:
|
|
869
|
+
resource:
|
|
870
|
+
GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetRequest;
|
|
703
871
|
}): Request<GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetResponse>;
|
|
704
872
|
query(request: {
|
|
705
873
|
/** V1 error format. */
|
|
706
|
-
"$.xgafv"?:
|
|
874
|
+
"$.xgafv"?:
|
|
875
|
+
string;
|
|
707
876
|
/** OAuth access token. */
|
|
708
|
-
access_token?:
|
|
877
|
+
access_token?:
|
|
878
|
+
string;
|
|
709
879
|
/** Data format for response. */
|
|
710
|
-
alt?:
|
|
880
|
+
alt?:
|
|
881
|
+
string;
|
|
711
882
|
/** JSONP */
|
|
712
|
-
callback?:
|
|
883
|
+
callback?:
|
|
884
|
+
string;
|
|
713
885
|
/** Selector specifying which fields to include in a partial response. */
|
|
714
|
-
fields?:
|
|
886
|
+
fields?:
|
|
887
|
+
string;
|
|
715
888
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
716
|
-
key?:
|
|
889
|
+
key?:
|
|
890
|
+
string;
|
|
717
891
|
/** Required. The resource name. Format: apps/{app}/anrRateMetricSet */
|
|
718
|
-
name:
|
|
892
|
+
name:
|
|
893
|
+
string;
|
|
719
894
|
/** OAuth 2.0 token for the current user. */
|
|
720
|
-
oauth_token?:
|
|
895
|
+
oauth_token?:
|
|
896
|
+
string;
|
|
721
897
|
/** Returns response with indentations and line breaks. */
|
|
722
|
-
prettyPrint?:
|
|
898
|
+
prettyPrint?:
|
|
899
|
+
boolean;
|
|
723
900
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
724
|
-
quotaUser?:
|
|
901
|
+
quotaUser?:
|
|
902
|
+
string;
|
|
725
903
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
726
|
-
upload_protocol?:
|
|
904
|
+
upload_protocol?:
|
|
905
|
+
string;
|
|
727
906
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
728
|
-
uploadType?:
|
|
907
|
+
uploadType?:
|
|
908
|
+
string;
|
|
729
909
|
},
|
|
730
910
|
body: GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetRequest): Request<GooglePlayDeveloperReportingV1alpha1QueryAnrRateMetricSetResponse>;
|
|
731
911
|
}
|
|
@@ -733,84 +913,121 @@ declare namespace gapi.client {
|
|
|
733
913
|
/** Describes the properties of the metric set. */
|
|
734
914
|
get(request?: {
|
|
735
915
|
/** V1 error format. */
|
|
736
|
-
"$.xgafv"?:
|
|
916
|
+
"$.xgafv"?:
|
|
917
|
+
string;
|
|
737
918
|
/** OAuth access token. */
|
|
738
|
-
access_token?:
|
|
919
|
+
access_token?:
|
|
920
|
+
string;
|
|
739
921
|
/** Data format for response. */
|
|
740
|
-
alt?:
|
|
922
|
+
alt?:
|
|
923
|
+
string;
|
|
741
924
|
/** JSONP */
|
|
742
|
-
callback?:
|
|
925
|
+
callback?:
|
|
926
|
+
string;
|
|
743
927
|
/** Selector specifying which fields to include in a partial response. */
|
|
744
|
-
fields?:
|
|
928
|
+
fields?:
|
|
929
|
+
string;
|
|
745
930
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
746
|
-
key?:
|
|
931
|
+
key?:
|
|
932
|
+
string;
|
|
747
933
|
/** Required. The resource name. Format: apps/{app}/crashRateMetricSet */
|
|
748
|
-
name:
|
|
934
|
+
name:
|
|
935
|
+
string;
|
|
749
936
|
/** OAuth 2.0 token for the current user. */
|
|
750
|
-
oauth_token?:
|
|
937
|
+
oauth_token?:
|
|
938
|
+
string;
|
|
751
939
|
/** Returns response with indentations and line breaks. */
|
|
752
|
-
prettyPrint?:
|
|
940
|
+
prettyPrint?:
|
|
941
|
+
boolean;
|
|
753
942
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
754
|
-
quotaUser?:
|
|
943
|
+
quotaUser?:
|
|
944
|
+
string;
|
|
755
945
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
756
|
-
upload_protocol?:
|
|
946
|
+
upload_protocol?:
|
|
947
|
+
string;
|
|
757
948
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
758
|
-
uploadType?:
|
|
949
|
+
uploadType?:
|
|
950
|
+
string;
|
|
759
951
|
}): Request<GooglePlayDeveloperReportingV1alpha1CrashRateMetricSet>;
|
|
760
952
|
/** Queries the metrics in the metric set. */
|
|
761
953
|
query(request: {
|
|
762
954
|
/** V1 error format. */
|
|
763
|
-
"$.xgafv"?:
|
|
955
|
+
"$.xgafv"?:
|
|
956
|
+
string;
|
|
764
957
|
/** OAuth access token. */
|
|
765
|
-
access_token?:
|
|
958
|
+
access_token?:
|
|
959
|
+
string;
|
|
766
960
|
/** Data format for response. */
|
|
767
|
-
alt?:
|
|
961
|
+
alt?:
|
|
962
|
+
string;
|
|
768
963
|
/** JSONP */
|
|
769
|
-
callback?:
|
|
964
|
+
callback?:
|
|
965
|
+
string;
|
|
770
966
|
/** Selector specifying which fields to include in a partial response. */
|
|
771
|
-
fields?:
|
|
967
|
+
fields?:
|
|
968
|
+
string;
|
|
772
969
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
773
|
-
key?:
|
|
970
|
+
key?:
|
|
971
|
+
string;
|
|
774
972
|
/** Required. The resource name. Format: apps/{app}/crashRateMetricSet */
|
|
775
|
-
name:
|
|
973
|
+
name:
|
|
974
|
+
string;
|
|
776
975
|
/** OAuth 2.0 token for the current user. */
|
|
777
|
-
oauth_token?:
|
|
976
|
+
oauth_token?:
|
|
977
|
+
string;
|
|
778
978
|
/** Returns response with indentations and line breaks. */
|
|
779
|
-
prettyPrint?:
|
|
979
|
+
prettyPrint?:
|
|
980
|
+
boolean;
|
|
780
981
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
781
|
-
quotaUser?:
|
|
982
|
+
quotaUser?:
|
|
983
|
+
string;
|
|
782
984
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
783
|
-
upload_protocol?:
|
|
985
|
+
upload_protocol?:
|
|
986
|
+
string;
|
|
784
987
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
785
|
-
uploadType?:
|
|
988
|
+
uploadType?:
|
|
989
|
+
string;
|
|
786
990
|
/** Request body */
|
|
787
|
-
resource:
|
|
991
|
+
resource:
|
|
992
|
+
GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetRequest;
|
|
788
993
|
}): Request<GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetResponse>;
|
|
789
994
|
query(request: {
|
|
790
995
|
/** V1 error format. */
|
|
791
|
-
"$.xgafv"?:
|
|
996
|
+
"$.xgafv"?:
|
|
997
|
+
string;
|
|
792
998
|
/** OAuth access token. */
|
|
793
|
-
access_token?:
|
|
999
|
+
access_token?:
|
|
1000
|
+
string;
|
|
794
1001
|
/** Data format for response. */
|
|
795
|
-
alt?:
|
|
1002
|
+
alt?:
|
|
1003
|
+
string;
|
|
796
1004
|
/** JSONP */
|
|
797
|
-
callback?:
|
|
1005
|
+
callback?:
|
|
1006
|
+
string;
|
|
798
1007
|
/** Selector specifying which fields to include in a partial response. */
|
|
799
|
-
fields?:
|
|
1008
|
+
fields?:
|
|
1009
|
+
string;
|
|
800
1010
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
801
|
-
key?:
|
|
1011
|
+
key?:
|
|
1012
|
+
string;
|
|
802
1013
|
/** Required. The resource name. Format: apps/{app}/crashRateMetricSet */
|
|
803
|
-
name:
|
|
1014
|
+
name:
|
|
1015
|
+
string;
|
|
804
1016
|
/** OAuth 2.0 token for the current user. */
|
|
805
|
-
oauth_token?:
|
|
1017
|
+
oauth_token?:
|
|
1018
|
+
string;
|
|
806
1019
|
/** Returns response with indentations and line breaks. */
|
|
807
|
-
prettyPrint?:
|
|
1020
|
+
prettyPrint?:
|
|
1021
|
+
boolean;
|
|
808
1022
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
809
|
-
quotaUser?:
|
|
1023
|
+
quotaUser?:
|
|
1024
|
+
string;
|
|
810
1025
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
811
|
-
upload_protocol?:
|
|
1026
|
+
upload_protocol?:
|
|
1027
|
+
string;
|
|
812
1028
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
813
|
-
uploadType?:
|
|
1029
|
+
uploadType?:
|
|
1030
|
+
string;
|
|
814
1031
|
},
|
|
815
1032
|
body: GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetRequest): Request<GooglePlayDeveloperReportingV1alpha1QueryCrashRateMetricSetResponse>;
|
|
816
1033
|
}
|
|
@@ -818,84 +1035,121 @@ declare namespace gapi.client {
|
|
|
818
1035
|
/** Describes the properties of the metrics set. */
|
|
819
1036
|
get(request?: {
|
|
820
1037
|
/** V1 error format. */
|
|
821
|
-
"$.xgafv"?:
|
|
1038
|
+
"$.xgafv"?:
|
|
1039
|
+
string;
|
|
822
1040
|
/** OAuth access token. */
|
|
823
|
-
access_token?:
|
|
1041
|
+
access_token?:
|
|
1042
|
+
string;
|
|
824
1043
|
/** Data format for response. */
|
|
825
|
-
alt?:
|
|
1044
|
+
alt?:
|
|
1045
|
+
string;
|
|
826
1046
|
/** JSONP */
|
|
827
|
-
callback?:
|
|
1047
|
+
callback?:
|
|
1048
|
+
string;
|
|
828
1049
|
/** Selector specifying which fields to include in a partial response. */
|
|
829
|
-
fields?:
|
|
1050
|
+
fields?:
|
|
1051
|
+
string;
|
|
830
1052
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
831
|
-
key?:
|
|
1053
|
+
key?:
|
|
1054
|
+
string;
|
|
832
1055
|
/** Required. Name of the errors metric set. Format: apps/{app}/errorCountMetricSet */
|
|
833
|
-
name:
|
|
1056
|
+
name:
|
|
1057
|
+
string;
|
|
834
1058
|
/** OAuth 2.0 token for the current user. */
|
|
835
|
-
oauth_token?:
|
|
1059
|
+
oauth_token?:
|
|
1060
|
+
string;
|
|
836
1061
|
/** Returns response with indentations and line breaks. */
|
|
837
|
-
prettyPrint?:
|
|
1062
|
+
prettyPrint?:
|
|
1063
|
+
boolean;
|
|
838
1064
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
839
|
-
quotaUser?:
|
|
1065
|
+
quotaUser?:
|
|
1066
|
+
string;
|
|
840
1067
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
841
|
-
upload_protocol?:
|
|
1068
|
+
upload_protocol?:
|
|
1069
|
+
string;
|
|
842
1070
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
843
|
-
uploadType?:
|
|
1071
|
+
uploadType?:
|
|
1072
|
+
string;
|
|
844
1073
|
}): Request<GooglePlayDeveloperReportingV1alpha1ErrorCountMetricSet>;
|
|
845
1074
|
/** Queries the metrics in the metrics set. */
|
|
846
1075
|
query(request: {
|
|
847
1076
|
/** V1 error format. */
|
|
848
|
-
"$.xgafv"?:
|
|
1077
|
+
"$.xgafv"?:
|
|
1078
|
+
string;
|
|
849
1079
|
/** OAuth access token. */
|
|
850
|
-
access_token?:
|
|
1080
|
+
access_token?:
|
|
1081
|
+
string;
|
|
851
1082
|
/** Data format for response. */
|
|
852
|
-
alt?:
|
|
1083
|
+
alt?:
|
|
1084
|
+
string;
|
|
853
1085
|
/** JSONP */
|
|
854
|
-
callback?:
|
|
1086
|
+
callback?:
|
|
1087
|
+
string;
|
|
855
1088
|
/** Selector specifying which fields to include in a partial response. */
|
|
856
|
-
fields?:
|
|
1089
|
+
fields?:
|
|
1090
|
+
string;
|
|
857
1091
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
858
|
-
key?:
|
|
1092
|
+
key?:
|
|
1093
|
+
string;
|
|
859
1094
|
/** Required. The resource name. Format: apps/{app}/errorCountMetricSet */
|
|
860
|
-
name:
|
|
1095
|
+
name:
|
|
1096
|
+
string;
|
|
861
1097
|
/** OAuth 2.0 token for the current user. */
|
|
862
|
-
oauth_token?:
|
|
1098
|
+
oauth_token?:
|
|
1099
|
+
string;
|
|
863
1100
|
/** Returns response with indentations and line breaks. */
|
|
864
|
-
prettyPrint?:
|
|
1101
|
+
prettyPrint?:
|
|
1102
|
+
boolean;
|
|
865
1103
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
866
|
-
quotaUser?:
|
|
1104
|
+
quotaUser?:
|
|
1105
|
+
string;
|
|
867
1106
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
868
|
-
upload_protocol?:
|
|
1107
|
+
upload_protocol?:
|
|
1108
|
+
string;
|
|
869
1109
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
870
|
-
uploadType?:
|
|
1110
|
+
uploadType?:
|
|
1111
|
+
string;
|
|
871
1112
|
/** Request body */
|
|
872
|
-
resource:
|
|
1113
|
+
resource:
|
|
1114
|
+
GooglePlayDeveloperReportingV1alpha1QueryErrorCountMetricSetRequest;
|
|
873
1115
|
}): Request<GooglePlayDeveloperReportingV1alpha1QueryErrorCountMetricSetResponse>;
|
|
874
1116
|
query(request: {
|
|
875
1117
|
/** V1 error format. */
|
|
876
|
-
"$.xgafv"?:
|
|
1118
|
+
"$.xgafv"?:
|
|
1119
|
+
string;
|
|
877
1120
|
/** OAuth access token. */
|
|
878
|
-
access_token?:
|
|
1121
|
+
access_token?:
|
|
1122
|
+
string;
|
|
879
1123
|
/** Data format for response. */
|
|
880
|
-
alt?:
|
|
1124
|
+
alt?:
|
|
1125
|
+
string;
|
|
881
1126
|
/** JSONP */
|
|
882
|
-
callback?:
|
|
1127
|
+
callback?:
|
|
1128
|
+
string;
|
|
883
1129
|
/** Selector specifying which fields to include in a partial response. */
|
|
884
|
-
fields?:
|
|
1130
|
+
fields?:
|
|
1131
|
+
string;
|
|
885
1132
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
886
|
-
key?:
|
|
1133
|
+
key?:
|
|
1134
|
+
string;
|
|
887
1135
|
/** Required. The resource name. Format: apps/{app}/errorCountMetricSet */
|
|
888
|
-
name:
|
|
1136
|
+
name:
|
|
1137
|
+
string;
|
|
889
1138
|
/** OAuth 2.0 token for the current user. */
|
|
890
|
-
oauth_token?:
|
|
1139
|
+
oauth_token?:
|
|
1140
|
+
string;
|
|
891
1141
|
/** Returns response with indentations and line breaks. */
|
|
892
|
-
prettyPrint?:
|
|
1142
|
+
prettyPrint?:
|
|
1143
|
+
boolean;
|
|
893
1144
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
894
|
-
quotaUser?:
|
|
1145
|
+
quotaUser?:
|
|
1146
|
+
string;
|
|
895
1147
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
896
|
-
upload_protocol?:
|
|
1148
|
+
upload_protocol?:
|
|
1149
|
+
string;
|
|
897
1150
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
898
|
-
uploadType?:
|
|
1151
|
+
uploadType?:
|
|
1152
|
+
string;
|
|
899
1153
|
},
|
|
900
1154
|
body: GooglePlayDeveloperReportingV1alpha1QueryErrorCountMetricSetRequest): Request<GooglePlayDeveloperReportingV1alpha1QueryErrorCountMetricSetResponse>;
|
|
901
1155
|
}
|
|
@@ -903,15 +1157,20 @@ declare namespace gapi.client {
|
|
|
903
1157
|
/** Searches all error issues in which reports have been grouped. */
|
|
904
1158
|
search(request?: {
|
|
905
1159
|
/** V1 error format. */
|
|
906
|
-
"$.xgafv"?:
|
|
1160
|
+
"$.xgafv"?:
|
|
1161
|
+
string;
|
|
907
1162
|
/** OAuth access token. */
|
|
908
|
-
access_token?:
|
|
1163
|
+
access_token?:
|
|
1164
|
+
string;
|
|
909
1165
|
/** Data format for response. */
|
|
910
|
-
alt?:
|
|
1166
|
+
alt?:
|
|
1167
|
+
string;
|
|
911
1168
|
/** JSONP */
|
|
912
|
-
callback?:
|
|
1169
|
+
callback?:
|
|
1170
|
+
string;
|
|
913
1171
|
/** Selector specifying which fields to include in a partial response. */
|
|
914
|
-
fields?:
|
|
1172
|
+
fields?:
|
|
1173
|
+
string;
|
|
915
1174
|
/**
|
|
916
1175
|
* A selection predicate to retrieve only a subset of the issues. Counts in the returned error issues will only reflect occurrences that matched the filter. For filtering basics,
|
|
917
1176
|
* please check [AIP-160](https://google.aip.dev/160). ** Supported field names:** * `apiLevel`: Matches error issues that occurred in the requested Android versions (specified as
|
|
@@ -927,92 +1186,127 @@ declare namespace gapi.client {
|
|
|
927
1186
|
* errorIssueType = ANR` is not a valid filter. ** Examples ** Some valid filtering expressions: * `versionCode = 123 AND errorIssueType = ANR` * `versionCode = 123 AND
|
|
928
1187
|
* errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123 AND (errorIssueType = OR errorIssueType = CRASH)`
|
|
929
1188
|
*/
|
|
930
|
-
filter?:
|
|
1189
|
+
filter?:
|
|
1190
|
+
string;
|
|
931
1191
|
/** Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day. */
|
|
932
|
-
"interval.endTime.day"?:
|
|
1192
|
+
"interval.endTime.day"?:
|
|
1193
|
+
number;
|
|
933
1194
|
/**
|
|
934
1195
|
* Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing
|
|
935
1196
|
* time.
|
|
936
1197
|
*/
|
|
937
|
-
"interval.endTime.hours"?:
|
|
1198
|
+
"interval.endTime.hours"?:
|
|
1199
|
+
number;
|
|
938
1200
|
/** Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0. */
|
|
939
|
-
"interval.endTime.minutes"?:
|
|
1201
|
+
"interval.endTime.minutes"?:
|
|
1202
|
+
number;
|
|
940
1203
|
/** Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month. */
|
|
941
|
-
"interval.endTime.month"?:
|
|
1204
|
+
"interval.endTime.month"?:
|
|
1205
|
+
number;
|
|
942
1206
|
/** Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0. */
|
|
943
|
-
"interval.endTime.nanos"?:
|
|
1207
|
+
"interval.endTime.nanos"?:
|
|
1208
|
+
number;
|
|
944
1209
|
/** Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds. */
|
|
945
|
-
"interval.endTime.seconds"?:
|
|
1210
|
+
"interval.endTime.seconds"?:
|
|
1211
|
+
number;
|
|
946
1212
|
/** IANA Time Zone Database time zone, e.g. "America/New_York". */
|
|
947
|
-
"interval.endTime.timeZone.id"?:
|
|
1213
|
+
"interval.endTime.timeZone.id"?:
|
|
1214
|
+
string;
|
|
948
1215
|
/** Optional. IANA Time Zone Database version number, e.g. "2019a". */
|
|
949
|
-
"interval.endTime.timeZone.version"?:
|
|
1216
|
+
"interval.endTime.timeZone.version"?:
|
|
1217
|
+
string;
|
|
950
1218
|
/** UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }. */
|
|
951
|
-
"interval.endTime.utcOffset"?:
|
|
1219
|
+
"interval.endTime.utcOffset"?:
|
|
1220
|
+
string;
|
|
952
1221
|
/** Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year. */
|
|
953
|
-
"interval.endTime.year"?:
|
|
1222
|
+
"interval.endTime.year"?:
|
|
1223
|
+
number;
|
|
954
1224
|
/** Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day. */
|
|
955
|
-
"interval.startTime.day"?:
|
|
1225
|
+
"interval.startTime.day"?:
|
|
1226
|
+
number;
|
|
956
1227
|
/**
|
|
957
1228
|
* Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing
|
|
958
1229
|
* time.
|
|
959
1230
|
*/
|
|
960
|
-
"interval.startTime.hours"?:
|
|
1231
|
+
"interval.startTime.hours"?:
|
|
1232
|
+
number;
|
|
961
1233
|
/** Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0. */
|
|
962
|
-
"interval.startTime.minutes"?:
|
|
1234
|
+
"interval.startTime.minutes"?:
|
|
1235
|
+
number;
|
|
963
1236
|
/** Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month. */
|
|
964
|
-
"interval.startTime.month"?:
|
|
1237
|
+
"interval.startTime.month"?:
|
|
1238
|
+
number;
|
|
965
1239
|
/** Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0. */
|
|
966
|
-
"interval.startTime.nanos"?:
|
|
1240
|
+
"interval.startTime.nanos"?:
|
|
1241
|
+
number;
|
|
967
1242
|
/** Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds. */
|
|
968
|
-
"interval.startTime.seconds"?:
|
|
1243
|
+
"interval.startTime.seconds"?:
|
|
1244
|
+
number;
|
|
969
1245
|
/** IANA Time Zone Database time zone, e.g. "America/New_York". */
|
|
970
|
-
"interval.startTime.timeZone.id"?:
|
|
1246
|
+
"interval.startTime.timeZone.id"?:
|
|
1247
|
+
string;
|
|
971
1248
|
/** Optional. IANA Time Zone Database version number, e.g. "2019a". */
|
|
972
|
-
"interval.startTime.timeZone.version"?:
|
|
1249
|
+
"interval.startTime.timeZone.version"?:
|
|
1250
|
+
string;
|
|
973
1251
|
/** UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }. */
|
|
974
|
-
"interval.startTime.utcOffset"?:
|
|
1252
|
+
"interval.startTime.utcOffset"?:
|
|
1253
|
+
string;
|
|
975
1254
|
/** Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year. */
|
|
976
|
-
"interval.startTime.year"?:
|
|
1255
|
+
"interval.startTime.year"?:
|
|
1256
|
+
number;
|
|
977
1257
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
978
|
-
key?:
|
|
1258
|
+
key?:
|
|
1259
|
+
string;
|
|
979
1260
|
/** OAuth 2.0 token for the current user. */
|
|
980
|
-
oauth_token?:
|
|
1261
|
+
oauth_token?:
|
|
1262
|
+
string;
|
|
981
1263
|
/**
|
|
982
1264
|
* The maximum number of error issues to return. The service may return fewer than this value. If unspecified, at most 50 error issues will be returned. The maximum value is 1000;
|
|
983
1265
|
* values above 1000 will be coerced to 1000.
|
|
984
1266
|
*/
|
|
985
|
-
pageSize?:
|
|
1267
|
+
pageSize?:
|
|
1268
|
+
number;
|
|
986
1269
|
/**
|
|
987
1270
|
* A page token, received from a previous call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to the request must match the call that
|
|
988
1271
|
* provided the page token.
|
|
989
1272
|
*/
|
|
990
|
-
pageToken?:
|
|
1273
|
+
pageToken?:
|
|
1274
|
+
string;
|
|
991
1275
|
/** Required. Parent resource of the error issues, indicating the application for which they were received. Format: apps/{app} */
|
|
992
|
-
parent:
|
|
1276
|
+
parent:
|
|
1277
|
+
string;
|
|
993
1278
|
/** Returns response with indentations and line breaks. */
|
|
994
|
-
prettyPrint?:
|
|
1279
|
+
prettyPrint?:
|
|
1280
|
+
boolean;
|
|
995
1281
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
996
|
-
quotaUser?:
|
|
1282
|
+
quotaUser?:
|
|
1283
|
+
string;
|
|
997
1284
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
998
|
-
upload_protocol?:
|
|
1285
|
+
upload_protocol?:
|
|
1286
|
+
string;
|
|
999
1287
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1000
|
-
uploadType?:
|
|
1288
|
+
uploadType?:
|
|
1289
|
+
string;
|
|
1001
1290
|
}): Request<GooglePlayDeveloperReportingV1alpha1SearchErrorIssuesResponse>;
|
|
1002
1291
|
}
|
|
1003
1292
|
interface ReportsResource {
|
|
1004
1293
|
/** Searches all error reports received for an app. */
|
|
1005
1294
|
search(request?: {
|
|
1006
1295
|
/** V1 error format. */
|
|
1007
|
-
"$.xgafv"?:
|
|
1296
|
+
"$.xgafv"?:
|
|
1297
|
+
string;
|
|
1008
1298
|
/** OAuth access token. */
|
|
1009
|
-
access_token?:
|
|
1299
|
+
access_token?:
|
|
1300
|
+
string;
|
|
1010
1301
|
/** Data format for response. */
|
|
1011
|
-
alt?:
|
|
1302
|
+
alt?:
|
|
1303
|
+
string;
|
|
1012
1304
|
/** JSONP */
|
|
1013
|
-
callback?:
|
|
1305
|
+
callback?:
|
|
1306
|
+
string;
|
|
1014
1307
|
/** Selector specifying which fields to include in a partial response. */
|
|
1015
|
-
fields?:
|
|
1308
|
+
fields?:
|
|
1309
|
+
string;
|
|
1016
1310
|
/**
|
|
1017
1311
|
* A selection predicate to retrieve only a subset of the reports. For filtering basics, please check [AIP-160](https://google.aip.dev/160). ** Supported field names:** *
|
|
1018
1312
|
* `apiLevel`: Matches error reports that occurred in the requested Android versions (specified as the numeric API level) only. Example: `apiLevel = 28 OR apiLevel = 29`. *
|
|
@@ -1029,166 +1323,236 @@ declare namespace gapi.client {
|
|
|
1029
1323
|
* `versionCode = 123 OR errorIssueType = ANR` is not valid. ** Examples ** Some valid filtering expressions: * `versionCode = 123 AND errorIssueType = ANR` * `versionCode = 123
|
|
1030
1324
|
* AND errorIssueType = OR errorIssueType = CRASH` * `versionCode = 123 AND (errorIssueType = OR errorIssueType = CRASH)`
|
|
1031
1325
|
*/
|
|
1032
|
-
filter?:
|
|
1326
|
+
filter?:
|
|
1327
|
+
string;
|
|
1033
1328
|
/** Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day. */
|
|
1034
|
-
"interval.endTime.day"?:
|
|
1329
|
+
"interval.endTime.day"?:
|
|
1330
|
+
number;
|
|
1035
1331
|
/**
|
|
1036
1332
|
* Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing
|
|
1037
1333
|
* time.
|
|
1038
1334
|
*/
|
|
1039
|
-
"interval.endTime.hours"?:
|
|
1335
|
+
"interval.endTime.hours"?:
|
|
1336
|
+
number;
|
|
1040
1337
|
/** Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0. */
|
|
1041
|
-
"interval.endTime.minutes"?:
|
|
1338
|
+
"interval.endTime.minutes"?:
|
|
1339
|
+
number;
|
|
1042
1340
|
/** Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month. */
|
|
1043
|
-
"interval.endTime.month"?:
|
|
1341
|
+
"interval.endTime.month"?:
|
|
1342
|
+
number;
|
|
1044
1343
|
/** Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0. */
|
|
1045
|
-
"interval.endTime.nanos"?:
|
|
1344
|
+
"interval.endTime.nanos"?:
|
|
1345
|
+
number;
|
|
1046
1346
|
/** Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds. */
|
|
1047
|
-
"interval.endTime.seconds"?:
|
|
1347
|
+
"interval.endTime.seconds"?:
|
|
1348
|
+
number;
|
|
1048
1349
|
/** IANA Time Zone Database time zone, e.g. "America/New_York". */
|
|
1049
|
-
"interval.endTime.timeZone.id"?:
|
|
1350
|
+
"interval.endTime.timeZone.id"?:
|
|
1351
|
+
string;
|
|
1050
1352
|
/** Optional. IANA Time Zone Database version number, e.g. "2019a". */
|
|
1051
|
-
"interval.endTime.timeZone.version"?:
|
|
1353
|
+
"interval.endTime.timeZone.version"?:
|
|
1354
|
+
string;
|
|
1052
1355
|
/** UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }. */
|
|
1053
|
-
"interval.endTime.utcOffset"?:
|
|
1356
|
+
"interval.endTime.utcOffset"?:
|
|
1357
|
+
string;
|
|
1054
1358
|
/** Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year. */
|
|
1055
|
-
"interval.endTime.year"?:
|
|
1359
|
+
"interval.endTime.year"?:
|
|
1360
|
+
number;
|
|
1056
1361
|
/** Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day. */
|
|
1057
|
-
"interval.startTime.day"?:
|
|
1362
|
+
"interval.startTime.day"?:
|
|
1363
|
+
number;
|
|
1058
1364
|
/**
|
|
1059
1365
|
* Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing
|
|
1060
1366
|
* time.
|
|
1061
1367
|
*/
|
|
1062
|
-
"interval.startTime.hours"?:
|
|
1368
|
+
"interval.startTime.hours"?:
|
|
1369
|
+
number;
|
|
1063
1370
|
/** Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0. */
|
|
1064
|
-
"interval.startTime.minutes"?:
|
|
1371
|
+
"interval.startTime.minutes"?:
|
|
1372
|
+
number;
|
|
1065
1373
|
/** Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month. */
|
|
1066
|
-
"interval.startTime.month"?:
|
|
1374
|
+
"interval.startTime.month"?:
|
|
1375
|
+
number;
|
|
1067
1376
|
/** Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0. */
|
|
1068
|
-
"interval.startTime.nanos"?:
|
|
1377
|
+
"interval.startTime.nanos"?:
|
|
1378
|
+
number;
|
|
1069
1379
|
/** Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds. */
|
|
1070
|
-
"interval.startTime.seconds"?:
|
|
1380
|
+
"interval.startTime.seconds"?:
|
|
1381
|
+
number;
|
|
1071
1382
|
/** IANA Time Zone Database time zone, e.g. "America/New_York". */
|
|
1072
|
-
"interval.startTime.timeZone.id"?:
|
|
1383
|
+
"interval.startTime.timeZone.id"?:
|
|
1384
|
+
string;
|
|
1073
1385
|
/** Optional. IANA Time Zone Database version number, e.g. "2019a". */
|
|
1074
|
-
"interval.startTime.timeZone.version"?:
|
|
1386
|
+
"interval.startTime.timeZone.version"?:
|
|
1387
|
+
string;
|
|
1075
1388
|
/** UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }. */
|
|
1076
|
-
"interval.startTime.utcOffset"?:
|
|
1389
|
+
"interval.startTime.utcOffset"?:
|
|
1390
|
+
string;
|
|
1077
1391
|
/** Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year. */
|
|
1078
|
-
"interval.startTime.year"?:
|
|
1392
|
+
"interval.startTime.year"?:
|
|
1393
|
+
number;
|
|
1079
1394
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1080
|
-
key?:
|
|
1395
|
+
key?:
|
|
1396
|
+
string;
|
|
1081
1397
|
/** OAuth 2.0 token for the current user. */
|
|
1082
|
-
oauth_token?:
|
|
1398
|
+
oauth_token?:
|
|
1399
|
+
string;
|
|
1083
1400
|
/**
|
|
1084
1401
|
* The maximum number of reports to return. The service may return fewer than this value. If unspecified, at most 50 reports will be returned. The maximum value is 1000; values
|
|
1085
1402
|
* above 1000 will be coerced to 1000.
|
|
1086
1403
|
*/
|
|
1087
|
-
pageSize?:
|
|
1404
|
+
pageSize?:
|
|
1405
|
+
number;
|
|
1088
1406
|
/**
|
|
1089
1407
|
* A page token, received from a previous `SearchErrorReports` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
1090
1408
|
* `SearchErrorReports` must match the call that provided the page token.
|
|
1091
1409
|
*/
|
|
1092
|
-
pageToken?:
|
|
1410
|
+
pageToken?:
|
|
1411
|
+
string;
|
|
1093
1412
|
/** Required. Parent resource of the reports, indicating the application for which they were received. Format: apps/{app} */
|
|
1094
|
-
parent:
|
|
1413
|
+
parent:
|
|
1414
|
+
string;
|
|
1095
1415
|
/** Returns response with indentations and line breaks. */
|
|
1096
|
-
prettyPrint?:
|
|
1416
|
+
prettyPrint?:
|
|
1417
|
+
boolean;
|
|
1097
1418
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1098
|
-
quotaUser?:
|
|
1419
|
+
quotaUser?:
|
|
1420
|
+
string;
|
|
1099
1421
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1100
|
-
upload_protocol?:
|
|
1422
|
+
upload_protocol?:
|
|
1423
|
+
string;
|
|
1101
1424
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1102
|
-
uploadType?:
|
|
1425
|
+
uploadType?:
|
|
1426
|
+
string;
|
|
1103
1427
|
}): Request<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>;
|
|
1104
1428
|
}
|
|
1105
1429
|
interface ErrorsResource {
|
|
1106
|
-
counts:
|
|
1107
|
-
|
|
1108
|
-
|
|
1430
|
+
counts:
|
|
1431
|
+
CountsResource;
|
|
1432
|
+
issues:
|
|
1433
|
+
IssuesResource;
|
|
1434
|
+
reports:
|
|
1435
|
+
ReportsResource;
|
|
1109
1436
|
}
|
|
1110
1437
|
interface ExcessivewakeuprateResource {
|
|
1111
1438
|
/** Describes the properties of the metric set. */
|
|
1112
1439
|
get(request?: {
|
|
1113
1440
|
/** V1 error format. */
|
|
1114
|
-
"$.xgafv"?:
|
|
1441
|
+
"$.xgafv"?:
|
|
1442
|
+
string;
|
|
1115
1443
|
/** OAuth access token. */
|
|
1116
|
-
access_token?:
|
|
1444
|
+
access_token?:
|
|
1445
|
+
string;
|
|
1117
1446
|
/** Data format for response. */
|
|
1118
|
-
alt?:
|
|
1447
|
+
alt?:
|
|
1448
|
+
string;
|
|
1119
1449
|
/** JSONP */
|
|
1120
|
-
callback?:
|
|
1450
|
+
callback?:
|
|
1451
|
+
string;
|
|
1121
1452
|
/** Selector specifying which fields to include in a partial response. */
|
|
1122
|
-
fields?:
|
|
1453
|
+
fields?:
|
|
1454
|
+
string;
|
|
1123
1455
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1124
|
-
key?:
|
|
1456
|
+
key?:
|
|
1457
|
+
string;
|
|
1125
1458
|
/** Required. The resource name. Format: apps/{app}/excessiveWakeupRateMetricSet */
|
|
1126
|
-
name:
|
|
1459
|
+
name:
|
|
1460
|
+
string;
|
|
1127
1461
|
/** OAuth 2.0 token for the current user. */
|
|
1128
|
-
oauth_token?:
|
|
1462
|
+
oauth_token?:
|
|
1463
|
+
string;
|
|
1129
1464
|
/** Returns response with indentations and line breaks. */
|
|
1130
|
-
prettyPrint?:
|
|
1465
|
+
prettyPrint?:
|
|
1466
|
+
boolean;
|
|
1131
1467
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1132
|
-
quotaUser?:
|
|
1468
|
+
quotaUser?:
|
|
1469
|
+
string;
|
|
1133
1470
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1134
|
-
upload_protocol?:
|
|
1471
|
+
upload_protocol?:
|
|
1472
|
+
string;
|
|
1135
1473
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1136
|
-
uploadType?:
|
|
1474
|
+
uploadType?:
|
|
1475
|
+
string;
|
|
1137
1476
|
}): Request<GooglePlayDeveloperReportingV1alpha1ExcessiveWakeupRateMetricSet>;
|
|
1138
1477
|
/** Queries the metrics in the metric set. */
|
|
1139
1478
|
query(request: {
|
|
1140
1479
|
/** V1 error format. */
|
|
1141
|
-
"$.xgafv"?:
|
|
1480
|
+
"$.xgafv"?:
|
|
1481
|
+
string;
|
|
1142
1482
|
/** OAuth access token. */
|
|
1143
|
-
access_token?:
|
|
1483
|
+
access_token?:
|
|
1484
|
+
string;
|
|
1144
1485
|
/** Data format for response. */
|
|
1145
|
-
alt?:
|
|
1486
|
+
alt?:
|
|
1487
|
+
string;
|
|
1146
1488
|
/** JSONP */
|
|
1147
|
-
callback?:
|
|
1489
|
+
callback?:
|
|
1490
|
+
string;
|
|
1148
1491
|
/** Selector specifying which fields to include in a partial response. */
|
|
1149
|
-
fields?:
|
|
1492
|
+
fields?:
|
|
1493
|
+
string;
|
|
1150
1494
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1151
|
-
key?:
|
|
1495
|
+
key?:
|
|
1496
|
+
string;
|
|
1152
1497
|
/** Required. The resource name. Format: apps/{app}/excessiveWakeupRateMetricSet */
|
|
1153
|
-
name:
|
|
1498
|
+
name:
|
|
1499
|
+
string;
|
|
1154
1500
|
/** OAuth 2.0 token for the current user. */
|
|
1155
|
-
oauth_token?:
|
|
1501
|
+
oauth_token?:
|
|
1502
|
+
string;
|
|
1156
1503
|
/** Returns response with indentations and line breaks. */
|
|
1157
|
-
prettyPrint?:
|
|
1504
|
+
prettyPrint?:
|
|
1505
|
+
boolean;
|
|
1158
1506
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1159
|
-
quotaUser?:
|
|
1507
|
+
quotaUser?:
|
|
1508
|
+
string;
|
|
1160
1509
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1161
|
-
upload_protocol?:
|
|
1510
|
+
upload_protocol?:
|
|
1511
|
+
string;
|
|
1162
1512
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1163
|
-
uploadType?:
|
|
1513
|
+
uploadType?:
|
|
1514
|
+
string;
|
|
1164
1515
|
/** Request body */
|
|
1165
|
-
resource:
|
|
1516
|
+
resource:
|
|
1517
|
+
GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetRequest;
|
|
1166
1518
|
}): Request<GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetResponse>;
|
|
1167
1519
|
query(request: {
|
|
1168
1520
|
/** V1 error format. */
|
|
1169
|
-
"$.xgafv"?:
|
|
1521
|
+
"$.xgafv"?:
|
|
1522
|
+
string;
|
|
1170
1523
|
/** OAuth access token. */
|
|
1171
|
-
access_token?:
|
|
1524
|
+
access_token?:
|
|
1525
|
+
string;
|
|
1172
1526
|
/** Data format for response. */
|
|
1173
|
-
alt?:
|
|
1527
|
+
alt?:
|
|
1528
|
+
string;
|
|
1174
1529
|
/** JSONP */
|
|
1175
|
-
callback?:
|
|
1530
|
+
callback?:
|
|
1531
|
+
string;
|
|
1176
1532
|
/** Selector specifying which fields to include in a partial response. */
|
|
1177
|
-
fields?:
|
|
1533
|
+
fields?:
|
|
1534
|
+
string;
|
|
1178
1535
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1179
|
-
key?:
|
|
1536
|
+
key?:
|
|
1537
|
+
string;
|
|
1180
1538
|
/** Required. The resource name. Format: apps/{app}/excessiveWakeupRateMetricSet */
|
|
1181
|
-
name:
|
|
1539
|
+
name:
|
|
1540
|
+
string;
|
|
1182
1541
|
/** OAuth 2.0 token for the current user. */
|
|
1183
|
-
oauth_token?:
|
|
1542
|
+
oauth_token?:
|
|
1543
|
+
string;
|
|
1184
1544
|
/** Returns response with indentations and line breaks. */
|
|
1185
|
-
prettyPrint?:
|
|
1545
|
+
prettyPrint?:
|
|
1546
|
+
boolean;
|
|
1186
1547
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1187
|
-
quotaUser?:
|
|
1548
|
+
quotaUser?:
|
|
1549
|
+
string;
|
|
1188
1550
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1189
|
-
upload_protocol?:
|
|
1551
|
+
upload_protocol?:
|
|
1552
|
+
string;
|
|
1190
1553
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1191
|
-
uploadType?:
|
|
1554
|
+
uploadType?:
|
|
1555
|
+
string;
|
|
1192
1556
|
},
|
|
1193
1557
|
body: GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetRequest): Request<GooglePlayDeveloperReportingV1alpha1QueryExcessiveWakeupRateMetricSetResponse>;
|
|
1194
1558
|
}
|
|
@@ -1196,84 +1560,121 @@ declare namespace gapi.client {
|
|
|
1196
1560
|
/** Describes the properties of the metric set. */
|
|
1197
1561
|
get(request?: {
|
|
1198
1562
|
/** V1 error format. */
|
|
1199
|
-
"$.xgafv"?:
|
|
1563
|
+
"$.xgafv"?:
|
|
1564
|
+
string;
|
|
1200
1565
|
/** OAuth access token. */
|
|
1201
|
-
access_token?:
|
|
1566
|
+
access_token?:
|
|
1567
|
+
string;
|
|
1202
1568
|
/** Data format for response. */
|
|
1203
|
-
alt?:
|
|
1569
|
+
alt?:
|
|
1570
|
+
string;
|
|
1204
1571
|
/** JSONP */
|
|
1205
|
-
callback?:
|
|
1572
|
+
callback?:
|
|
1573
|
+
string;
|
|
1206
1574
|
/** Selector specifying which fields to include in a partial response. */
|
|
1207
|
-
fields?:
|
|
1575
|
+
fields?:
|
|
1576
|
+
string;
|
|
1208
1577
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1209
|
-
key?:
|
|
1578
|
+
key?:
|
|
1579
|
+
string;
|
|
1210
1580
|
/** Required. The resource name. Format: apps/{app}/slowRenderingRateMetricSet */
|
|
1211
|
-
name:
|
|
1581
|
+
name:
|
|
1582
|
+
string;
|
|
1212
1583
|
/** OAuth 2.0 token for the current user. */
|
|
1213
|
-
oauth_token?:
|
|
1584
|
+
oauth_token?:
|
|
1585
|
+
string;
|
|
1214
1586
|
/** Returns response with indentations and line breaks. */
|
|
1215
|
-
prettyPrint?:
|
|
1587
|
+
prettyPrint?:
|
|
1588
|
+
boolean;
|
|
1216
1589
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1217
|
-
quotaUser?:
|
|
1590
|
+
quotaUser?:
|
|
1591
|
+
string;
|
|
1218
1592
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1219
|
-
upload_protocol?:
|
|
1593
|
+
upload_protocol?:
|
|
1594
|
+
string;
|
|
1220
1595
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1221
|
-
uploadType?:
|
|
1596
|
+
uploadType?:
|
|
1597
|
+
string;
|
|
1222
1598
|
}): Request<GooglePlayDeveloperReportingV1alpha1SlowRenderingRateMetricSet>;
|
|
1223
1599
|
/** Queries the metrics in the metric set. */
|
|
1224
1600
|
query(request: {
|
|
1225
1601
|
/** V1 error format. */
|
|
1226
|
-
"$.xgafv"?:
|
|
1602
|
+
"$.xgafv"?:
|
|
1603
|
+
string;
|
|
1227
1604
|
/** OAuth access token. */
|
|
1228
|
-
access_token?:
|
|
1605
|
+
access_token?:
|
|
1606
|
+
string;
|
|
1229
1607
|
/** Data format for response. */
|
|
1230
|
-
alt?:
|
|
1608
|
+
alt?:
|
|
1609
|
+
string;
|
|
1231
1610
|
/** JSONP */
|
|
1232
|
-
callback?:
|
|
1611
|
+
callback?:
|
|
1612
|
+
string;
|
|
1233
1613
|
/** Selector specifying which fields to include in a partial response. */
|
|
1234
|
-
fields?:
|
|
1614
|
+
fields?:
|
|
1615
|
+
string;
|
|
1235
1616
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1236
|
-
key?:
|
|
1617
|
+
key?:
|
|
1618
|
+
string;
|
|
1237
1619
|
/** Required. The resource name. Format: apps/{app}/slowRenderingRateMetricSet */
|
|
1238
|
-
name:
|
|
1620
|
+
name:
|
|
1621
|
+
string;
|
|
1239
1622
|
/** OAuth 2.0 token for the current user. */
|
|
1240
|
-
oauth_token?:
|
|
1623
|
+
oauth_token?:
|
|
1624
|
+
string;
|
|
1241
1625
|
/** Returns response with indentations and line breaks. */
|
|
1242
|
-
prettyPrint?:
|
|
1626
|
+
prettyPrint?:
|
|
1627
|
+
boolean;
|
|
1243
1628
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1244
|
-
quotaUser?:
|
|
1629
|
+
quotaUser?:
|
|
1630
|
+
string;
|
|
1245
1631
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1246
|
-
upload_protocol?:
|
|
1632
|
+
upload_protocol?:
|
|
1633
|
+
string;
|
|
1247
1634
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1248
|
-
uploadType?:
|
|
1635
|
+
uploadType?:
|
|
1636
|
+
string;
|
|
1249
1637
|
/** Request body */
|
|
1250
|
-
resource:
|
|
1638
|
+
resource:
|
|
1639
|
+
GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest;
|
|
1251
1640
|
}): Request<GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse>;
|
|
1252
1641
|
query(request: {
|
|
1253
1642
|
/** V1 error format. */
|
|
1254
|
-
"$.xgafv"?:
|
|
1643
|
+
"$.xgafv"?:
|
|
1644
|
+
string;
|
|
1255
1645
|
/** OAuth access token. */
|
|
1256
|
-
access_token?:
|
|
1646
|
+
access_token?:
|
|
1647
|
+
string;
|
|
1257
1648
|
/** Data format for response. */
|
|
1258
|
-
alt?:
|
|
1649
|
+
alt?:
|
|
1650
|
+
string;
|
|
1259
1651
|
/** JSONP */
|
|
1260
|
-
callback?:
|
|
1652
|
+
callback?:
|
|
1653
|
+
string;
|
|
1261
1654
|
/** Selector specifying which fields to include in a partial response. */
|
|
1262
|
-
fields?:
|
|
1655
|
+
fields?:
|
|
1656
|
+
string;
|
|
1263
1657
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1264
|
-
key?:
|
|
1658
|
+
key?:
|
|
1659
|
+
string;
|
|
1265
1660
|
/** Required. The resource name. Format: apps/{app}/slowRenderingRateMetricSet */
|
|
1266
|
-
name:
|
|
1661
|
+
name:
|
|
1662
|
+
string;
|
|
1267
1663
|
/** OAuth 2.0 token for the current user. */
|
|
1268
|
-
oauth_token?:
|
|
1664
|
+
oauth_token?:
|
|
1665
|
+
string;
|
|
1269
1666
|
/** Returns response with indentations and line breaks. */
|
|
1270
|
-
prettyPrint?:
|
|
1667
|
+
prettyPrint?:
|
|
1668
|
+
boolean;
|
|
1271
1669
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1272
|
-
quotaUser?:
|
|
1670
|
+
quotaUser?:
|
|
1671
|
+
string;
|
|
1273
1672
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1274
|
-
upload_protocol?:
|
|
1673
|
+
upload_protocol?:
|
|
1674
|
+
string;
|
|
1275
1675
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1276
|
-
uploadType?:
|
|
1676
|
+
uploadType?:
|
|
1677
|
+
string;
|
|
1277
1678
|
},
|
|
1278
1679
|
body: GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetRequest): Request<GooglePlayDeveloperReportingV1alpha1QuerySlowRenderingRateMetricSetResponse>;
|
|
1279
1680
|
}
|
|
@@ -1281,84 +1682,121 @@ declare namespace gapi.client {
|
|
|
1281
1682
|
/** Describes the properties of the metric set. */
|
|
1282
1683
|
get(request?: {
|
|
1283
1684
|
/** V1 error format. */
|
|
1284
|
-
"$.xgafv"?:
|
|
1685
|
+
"$.xgafv"?:
|
|
1686
|
+
string;
|
|
1285
1687
|
/** OAuth access token. */
|
|
1286
|
-
access_token?:
|
|
1688
|
+
access_token?:
|
|
1689
|
+
string;
|
|
1287
1690
|
/** Data format for response. */
|
|
1288
|
-
alt?:
|
|
1691
|
+
alt?:
|
|
1692
|
+
string;
|
|
1289
1693
|
/** JSONP */
|
|
1290
|
-
callback?:
|
|
1694
|
+
callback?:
|
|
1695
|
+
string;
|
|
1291
1696
|
/** Selector specifying which fields to include in a partial response. */
|
|
1292
|
-
fields?:
|
|
1697
|
+
fields?:
|
|
1698
|
+
string;
|
|
1293
1699
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1294
|
-
key?:
|
|
1700
|
+
key?:
|
|
1701
|
+
string;
|
|
1295
1702
|
/** Required. The resource name. Format: apps/{app}/slowStartRateMetricSet */
|
|
1296
|
-
name:
|
|
1703
|
+
name:
|
|
1704
|
+
string;
|
|
1297
1705
|
/** OAuth 2.0 token for the current user. */
|
|
1298
|
-
oauth_token?:
|
|
1706
|
+
oauth_token?:
|
|
1707
|
+
string;
|
|
1299
1708
|
/** Returns response with indentations and line breaks. */
|
|
1300
|
-
prettyPrint?:
|
|
1709
|
+
prettyPrint?:
|
|
1710
|
+
boolean;
|
|
1301
1711
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1302
|
-
quotaUser?:
|
|
1712
|
+
quotaUser?:
|
|
1713
|
+
string;
|
|
1303
1714
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1304
|
-
upload_protocol?:
|
|
1715
|
+
upload_protocol?:
|
|
1716
|
+
string;
|
|
1305
1717
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1306
|
-
uploadType?:
|
|
1718
|
+
uploadType?:
|
|
1719
|
+
string;
|
|
1307
1720
|
}): Request<GooglePlayDeveloperReportingV1alpha1SlowStartRateMetricSet>;
|
|
1308
1721
|
/** Queries the metrics in the metric set. */
|
|
1309
1722
|
query(request: {
|
|
1310
1723
|
/** V1 error format. */
|
|
1311
|
-
"$.xgafv"?:
|
|
1724
|
+
"$.xgafv"?:
|
|
1725
|
+
string;
|
|
1312
1726
|
/** OAuth access token. */
|
|
1313
|
-
access_token?:
|
|
1727
|
+
access_token?:
|
|
1728
|
+
string;
|
|
1314
1729
|
/** Data format for response. */
|
|
1315
|
-
alt?:
|
|
1730
|
+
alt?:
|
|
1731
|
+
string;
|
|
1316
1732
|
/** JSONP */
|
|
1317
|
-
callback?:
|
|
1733
|
+
callback?:
|
|
1734
|
+
string;
|
|
1318
1735
|
/** Selector specifying which fields to include in a partial response. */
|
|
1319
|
-
fields?:
|
|
1736
|
+
fields?:
|
|
1737
|
+
string;
|
|
1320
1738
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1321
|
-
key?:
|
|
1739
|
+
key?:
|
|
1740
|
+
string;
|
|
1322
1741
|
/** Required. The resource name. Format: apps/{app}/slowStartRateMetricSet */
|
|
1323
|
-
name:
|
|
1742
|
+
name:
|
|
1743
|
+
string;
|
|
1324
1744
|
/** OAuth 2.0 token for the current user. */
|
|
1325
|
-
oauth_token?:
|
|
1745
|
+
oauth_token?:
|
|
1746
|
+
string;
|
|
1326
1747
|
/** Returns response with indentations and line breaks. */
|
|
1327
|
-
prettyPrint?:
|
|
1748
|
+
prettyPrint?:
|
|
1749
|
+
boolean;
|
|
1328
1750
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1329
|
-
quotaUser?:
|
|
1751
|
+
quotaUser?:
|
|
1752
|
+
string;
|
|
1330
1753
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1331
|
-
upload_protocol?:
|
|
1754
|
+
upload_protocol?:
|
|
1755
|
+
string;
|
|
1332
1756
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1333
|
-
uploadType?:
|
|
1757
|
+
uploadType?:
|
|
1758
|
+
string;
|
|
1334
1759
|
/** Request body */
|
|
1335
|
-
resource:
|
|
1760
|
+
resource:
|
|
1761
|
+
GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest;
|
|
1336
1762
|
}): Request<GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse>;
|
|
1337
1763
|
query(request: {
|
|
1338
1764
|
/** V1 error format. */
|
|
1339
|
-
"$.xgafv"?:
|
|
1765
|
+
"$.xgafv"?:
|
|
1766
|
+
string;
|
|
1340
1767
|
/** OAuth access token. */
|
|
1341
|
-
access_token?:
|
|
1768
|
+
access_token?:
|
|
1769
|
+
string;
|
|
1342
1770
|
/** Data format for response. */
|
|
1343
|
-
alt?:
|
|
1771
|
+
alt?:
|
|
1772
|
+
string;
|
|
1344
1773
|
/** JSONP */
|
|
1345
|
-
callback?:
|
|
1774
|
+
callback?:
|
|
1775
|
+
string;
|
|
1346
1776
|
/** Selector specifying which fields to include in a partial response. */
|
|
1347
|
-
fields?:
|
|
1777
|
+
fields?:
|
|
1778
|
+
string;
|
|
1348
1779
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1349
|
-
key?:
|
|
1780
|
+
key?:
|
|
1781
|
+
string;
|
|
1350
1782
|
/** Required. The resource name. Format: apps/{app}/slowStartRateMetricSet */
|
|
1351
|
-
name:
|
|
1783
|
+
name:
|
|
1784
|
+
string;
|
|
1352
1785
|
/** OAuth 2.0 token for the current user. */
|
|
1353
|
-
oauth_token?:
|
|
1786
|
+
oauth_token?:
|
|
1787
|
+
string;
|
|
1354
1788
|
/** Returns response with indentations and line breaks. */
|
|
1355
|
-
prettyPrint?:
|
|
1789
|
+
prettyPrint?:
|
|
1790
|
+
boolean;
|
|
1356
1791
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1357
|
-
quotaUser?:
|
|
1792
|
+
quotaUser?:
|
|
1793
|
+
string;
|
|
1358
1794
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1359
|
-
upload_protocol?:
|
|
1795
|
+
upload_protocol?:
|
|
1796
|
+
string;
|
|
1360
1797
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1361
|
-
uploadType?:
|
|
1798
|
+
uploadType?:
|
|
1799
|
+
string;
|
|
1362
1800
|
},
|
|
1363
1801
|
body: GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetRequest): Request<GooglePlayDeveloperReportingV1alpha1QuerySlowStartRateMetricSetResponse>;
|
|
1364
1802
|
}
|
|
@@ -1366,95 +1804,139 @@ declare namespace gapi.client {
|
|
|
1366
1804
|
/** Describes the properties of the metric set. */
|
|
1367
1805
|
get(request?: {
|
|
1368
1806
|
/** V1 error format. */
|
|
1369
|
-
"$.xgafv"?:
|
|
1807
|
+
"$.xgafv"?:
|
|
1808
|
+
string;
|
|
1370
1809
|
/** OAuth access token. */
|
|
1371
|
-
access_token?:
|
|
1810
|
+
access_token?:
|
|
1811
|
+
string;
|
|
1372
1812
|
/** Data format for response. */
|
|
1373
|
-
alt?:
|
|
1813
|
+
alt?:
|
|
1814
|
+
string;
|
|
1374
1815
|
/** JSONP */
|
|
1375
|
-
callback?:
|
|
1816
|
+
callback?:
|
|
1817
|
+
string;
|
|
1376
1818
|
/** Selector specifying which fields to include in a partial response. */
|
|
1377
|
-
fields?:
|
|
1819
|
+
fields?:
|
|
1820
|
+
string;
|
|
1378
1821
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1379
|
-
key?:
|
|
1822
|
+
key?:
|
|
1823
|
+
string;
|
|
1380
1824
|
/** Required. The resource name. Format: apps/{app}/stuckBackgroundWakelockRateMetricSet */
|
|
1381
|
-
name:
|
|
1825
|
+
name:
|
|
1826
|
+
string;
|
|
1382
1827
|
/** OAuth 2.0 token for the current user. */
|
|
1383
|
-
oauth_token?:
|
|
1828
|
+
oauth_token?:
|
|
1829
|
+
string;
|
|
1384
1830
|
/** Returns response with indentations and line breaks. */
|
|
1385
|
-
prettyPrint?:
|
|
1831
|
+
prettyPrint?:
|
|
1832
|
+
boolean;
|
|
1386
1833
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1387
|
-
quotaUser?:
|
|
1834
|
+
quotaUser?:
|
|
1835
|
+
string;
|
|
1388
1836
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1389
|
-
upload_protocol?:
|
|
1837
|
+
upload_protocol?:
|
|
1838
|
+
string;
|
|
1390
1839
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1391
|
-
uploadType?:
|
|
1840
|
+
uploadType?:
|
|
1841
|
+
string;
|
|
1392
1842
|
}): Request<GooglePlayDeveloperReportingV1alpha1StuckBackgroundWakelockRateMetricSet>;
|
|
1393
1843
|
/** Queries the metrics in the metric set. */
|
|
1394
1844
|
query(request: {
|
|
1395
1845
|
/** V1 error format. */
|
|
1396
|
-
"$.xgafv"?:
|
|
1846
|
+
"$.xgafv"?:
|
|
1847
|
+
string;
|
|
1397
1848
|
/** OAuth access token. */
|
|
1398
|
-
access_token?:
|
|
1849
|
+
access_token?:
|
|
1850
|
+
string;
|
|
1399
1851
|
/** Data format for response. */
|
|
1400
|
-
alt?:
|
|
1852
|
+
alt?:
|
|
1853
|
+
string;
|
|
1401
1854
|
/** JSONP */
|
|
1402
|
-
callback?:
|
|
1855
|
+
callback?:
|
|
1856
|
+
string;
|
|
1403
1857
|
/** Selector specifying which fields to include in a partial response. */
|
|
1404
|
-
fields?:
|
|
1858
|
+
fields?:
|
|
1859
|
+
string;
|
|
1405
1860
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1406
|
-
key?:
|
|
1861
|
+
key?:
|
|
1862
|
+
string;
|
|
1407
1863
|
/** Required. The resource name. Format: apps/{app}/stuckBackgroundWakelockRateMetricSet */
|
|
1408
|
-
name:
|
|
1864
|
+
name:
|
|
1865
|
+
string;
|
|
1409
1866
|
/** OAuth 2.0 token for the current user. */
|
|
1410
|
-
oauth_token?:
|
|
1867
|
+
oauth_token?:
|
|
1868
|
+
string;
|
|
1411
1869
|
/** Returns response with indentations and line breaks. */
|
|
1412
|
-
prettyPrint?:
|
|
1870
|
+
prettyPrint?:
|
|
1871
|
+
boolean;
|
|
1413
1872
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1414
|
-
quotaUser?:
|
|
1873
|
+
quotaUser?:
|
|
1874
|
+
string;
|
|
1415
1875
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1416
|
-
upload_protocol?:
|
|
1876
|
+
upload_protocol?:
|
|
1877
|
+
string;
|
|
1417
1878
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1418
|
-
uploadType?:
|
|
1879
|
+
uploadType?:
|
|
1880
|
+
string;
|
|
1419
1881
|
/** Request body */
|
|
1420
|
-
resource:
|
|
1882
|
+
resource:
|
|
1883
|
+
GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetRequest;
|
|
1421
1884
|
}): Request<GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetResponse>;
|
|
1422
1885
|
query(request: {
|
|
1423
1886
|
/** V1 error format. */
|
|
1424
|
-
"$.xgafv"?:
|
|
1887
|
+
"$.xgafv"?:
|
|
1888
|
+
string;
|
|
1425
1889
|
/** OAuth access token. */
|
|
1426
|
-
access_token?:
|
|
1890
|
+
access_token?:
|
|
1891
|
+
string;
|
|
1427
1892
|
/** Data format for response. */
|
|
1428
|
-
alt?:
|
|
1893
|
+
alt?:
|
|
1894
|
+
string;
|
|
1429
1895
|
/** JSONP */
|
|
1430
|
-
callback?:
|
|
1896
|
+
callback?:
|
|
1897
|
+
string;
|
|
1431
1898
|
/** Selector specifying which fields to include in a partial response. */
|
|
1432
|
-
fields?:
|
|
1899
|
+
fields?:
|
|
1900
|
+
string;
|
|
1433
1901
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1434
|
-
key?:
|
|
1902
|
+
key?:
|
|
1903
|
+
string;
|
|
1435
1904
|
/** Required. The resource name. Format: apps/{app}/stuckBackgroundWakelockRateMetricSet */
|
|
1436
|
-
name:
|
|
1905
|
+
name:
|
|
1906
|
+
string;
|
|
1437
1907
|
/** OAuth 2.0 token for the current user. */
|
|
1438
|
-
oauth_token?:
|
|
1908
|
+
oauth_token?:
|
|
1909
|
+
string;
|
|
1439
1910
|
/** Returns response with indentations and line breaks. */
|
|
1440
|
-
prettyPrint?:
|
|
1911
|
+
prettyPrint?:
|
|
1912
|
+
boolean;
|
|
1441
1913
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1442
|
-
quotaUser?:
|
|
1914
|
+
quotaUser?:
|
|
1915
|
+
string;
|
|
1443
1916
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1444
|
-
upload_protocol?:
|
|
1917
|
+
upload_protocol?:
|
|
1918
|
+
string;
|
|
1445
1919
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1446
|
-
uploadType?:
|
|
1920
|
+
uploadType?:
|
|
1921
|
+
string;
|
|
1447
1922
|
},
|
|
1448
1923
|
body: GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetRequest): Request<GooglePlayDeveloperReportingV1alpha1QueryStuckBackgroundWakelockRateMetricSetResponse>;
|
|
1449
1924
|
}
|
|
1450
1925
|
interface VitalsResource {
|
|
1451
|
-
anrrate:
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1926
|
+
anrrate:
|
|
1927
|
+
AnrrateResource;
|
|
1928
|
+
crashrate:
|
|
1929
|
+
CrashrateResource;
|
|
1930
|
+
errors:
|
|
1931
|
+
ErrorsResource;
|
|
1932
|
+
excessivewakeuprate:
|
|
1933
|
+
ExcessivewakeuprateResource;
|
|
1934
|
+
slowrenderingrate:
|
|
1935
|
+
SlowrenderingrateResource;
|
|
1936
|
+
slowstartrate:
|
|
1937
|
+
SlowstartrateResource;
|
|
1938
|
+
stuckbackgroundwakelockrate:
|
|
1939
|
+
StuckbackgroundwakelockrateResource;
|
|
1458
1940
|
}
|
|
1459
1941
|
|
|
1460
1942
|
const anomalies: AnomaliesResource;
|