@maxim_mazurok/gapi.client.chromemanagement-v1 0.1.20251103 → 0.1.20251105
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 +132 -1
- package/package.json +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://chromemanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251105
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -234,6 +234,12 @@ declare namespace gapi.client {
|
|
|
234
234
|
/** Output only. This can contain very specific hosts, or patterns like "*.com" for instance. */
|
|
235
235
|
hostMatch?: string;
|
|
236
236
|
}
|
|
237
|
+
interface GoogleChromeManagementV1CountActiveDevicesResponse {
|
|
238
|
+
/** Number of active devices in the 7 days leading up to the date specified in the request. */
|
|
239
|
+
sevenDaysCount?: string;
|
|
240
|
+
/** Number of active devices in the 30 days leading up to the date specified in the request. */
|
|
241
|
+
thirtyDaysCount?: string;
|
|
242
|
+
}
|
|
237
243
|
interface GoogleChromeManagementV1CountChromeAppRequestsResponse {
|
|
238
244
|
/** Token to specify the next page in the list. */
|
|
239
245
|
nextPageToken?: string;
|
|
@@ -296,6 +302,32 @@ declare namespace gapi.client {
|
|
|
296
302
|
/** Total number browser versions matching request. */
|
|
297
303
|
totalSize?: number;
|
|
298
304
|
}
|
|
305
|
+
interface GoogleChromeManagementV1CountDevicesPerBootTypeResponse {
|
|
306
|
+
/** Number of devices with dev boot type. */
|
|
307
|
+
devBootTypeCount?: string;
|
|
308
|
+
/** Number of devices with unreported boot type. */
|
|
309
|
+
unreportedBootTypeCount?: string;
|
|
310
|
+
/** Number of devices with verified boot type. */
|
|
311
|
+
verifiedBootTypeCount?: string;
|
|
312
|
+
}
|
|
313
|
+
interface GoogleChromeManagementV1CountDevicesPerReleaseChannelResponse {
|
|
314
|
+
/** Number of devices with beta release channel. */
|
|
315
|
+
betaChannelCount?: string;
|
|
316
|
+
/** Number of devices with canary release channel. */
|
|
317
|
+
canaryChannelCount?: string;
|
|
318
|
+
/** Number of devices with dev release channel. */
|
|
319
|
+
devChannelCount?: string;
|
|
320
|
+
/** Number of devices with ltc release channel. */
|
|
321
|
+
ltcChannelCount?: string;
|
|
322
|
+
/** Number of devices with lts release channel. */
|
|
323
|
+
ltsChannelCount?: string;
|
|
324
|
+
/** Number of devices with stable release channel. */
|
|
325
|
+
stableChannelCount?: string;
|
|
326
|
+
/** Number of devices with an unreported release channel. */
|
|
327
|
+
unreportedChannelCount?: string;
|
|
328
|
+
/** Number of devices with unsupported release channel. */
|
|
329
|
+
unsupportedChannelCount?: string;
|
|
330
|
+
}
|
|
299
331
|
interface GoogleChromeManagementV1CountInstalledAppsResponse {
|
|
300
332
|
/** List of installed apps matching request. */
|
|
301
333
|
installedApps?: GoogleChromeManagementV1InstalledApp[];
|
|
@@ -2121,6 +2153,39 @@ declare namespace gapi.client {
|
|
|
2121
2153
|
commands: CommandsResource;
|
|
2122
2154
|
}
|
|
2123
2155
|
interface ReportsResource {
|
|
2156
|
+
/** Get a count of active devices per set time frames. */
|
|
2157
|
+
countActiveDevices(request?: {
|
|
2158
|
+
/** V1 error format. */
|
|
2159
|
+
'$.xgafv'?: string;
|
|
2160
|
+
/** OAuth access token. */
|
|
2161
|
+
access_token?: string;
|
|
2162
|
+
/** Data format for response. */
|
|
2163
|
+
alt?: string;
|
|
2164
|
+
/** JSONP */
|
|
2165
|
+
callback?: string;
|
|
2166
|
+
/** Required. Obfuscated customer ID prefixed with "customers/C" or "customers/my_customer". */
|
|
2167
|
+
customer: string;
|
|
2168
|
+
/** Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant. */
|
|
2169
|
+
'date.day'?: number;
|
|
2170
|
+
/** Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day. */
|
|
2171
|
+
'date.month'?: number;
|
|
2172
|
+
/** Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year. */
|
|
2173
|
+
'date.year'?: number;
|
|
2174
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2175
|
+
fields?: string;
|
|
2176
|
+
/** 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. */
|
|
2177
|
+
key?: string;
|
|
2178
|
+
/** OAuth 2.0 token for the current user. */
|
|
2179
|
+
oauth_token?: string;
|
|
2180
|
+
/** Returns response with indentations and line breaks. */
|
|
2181
|
+
prettyPrint?: boolean;
|
|
2182
|
+
/** 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. */
|
|
2183
|
+
quotaUser?: string;
|
|
2184
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2185
|
+
upload_protocol?: string;
|
|
2186
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2187
|
+
uploadType?: string;
|
|
2188
|
+
}): Request<GoogleChromeManagementV1CountActiveDevicesResponse>;
|
|
2124
2189
|
/** Count of Chrome Browsers that have been recently enrolled, have new policy to be synced, or have no recent activity. */
|
|
2125
2190
|
countChromeBrowsersNeedingAttention(request?: {
|
|
2126
2191
|
/** V1 error format. */
|
|
@@ -2313,6 +2378,72 @@ declare namespace gapi.client {
|
|
|
2313
2378
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2314
2379
|
uploadType?: string;
|
|
2315
2380
|
}): Request<GoogleChromeManagementV1CountChromeVersionsResponse>;
|
|
2381
|
+
/** Get a count of devices per boot type. */
|
|
2382
|
+
countDevicesPerBootType(request?: {
|
|
2383
|
+
/** V1 error format. */
|
|
2384
|
+
'$.xgafv'?: string;
|
|
2385
|
+
/** OAuth access token. */
|
|
2386
|
+
access_token?: string;
|
|
2387
|
+
/** Data format for response. */
|
|
2388
|
+
alt?: string;
|
|
2389
|
+
/** JSONP */
|
|
2390
|
+
callback?: string;
|
|
2391
|
+
/** Required. Obfuscated customer ID prefixed with "customers/C" or "customers/my_customer". */
|
|
2392
|
+
customer: string;
|
|
2393
|
+
/** Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant. */
|
|
2394
|
+
'date.day'?: number;
|
|
2395
|
+
/** Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day. */
|
|
2396
|
+
'date.month'?: number;
|
|
2397
|
+
/** Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year. */
|
|
2398
|
+
'date.year'?: number;
|
|
2399
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2400
|
+
fields?: string;
|
|
2401
|
+
/** 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. */
|
|
2402
|
+
key?: string;
|
|
2403
|
+
/** OAuth 2.0 token for the current user. */
|
|
2404
|
+
oauth_token?: string;
|
|
2405
|
+
/** Returns response with indentations and line breaks. */
|
|
2406
|
+
prettyPrint?: boolean;
|
|
2407
|
+
/** 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. */
|
|
2408
|
+
quotaUser?: string;
|
|
2409
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2410
|
+
upload_protocol?: string;
|
|
2411
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2412
|
+
uploadType?: string;
|
|
2413
|
+
}): Request<GoogleChromeManagementV1CountDevicesPerBootTypeResponse>;
|
|
2414
|
+
/** Get a count of devices per channel. */
|
|
2415
|
+
countDevicesPerReleaseChannel(request?: {
|
|
2416
|
+
/** V1 error format. */
|
|
2417
|
+
'$.xgafv'?: string;
|
|
2418
|
+
/** OAuth access token. */
|
|
2419
|
+
access_token?: string;
|
|
2420
|
+
/** Data format for response. */
|
|
2421
|
+
alt?: string;
|
|
2422
|
+
/** JSONP */
|
|
2423
|
+
callback?: string;
|
|
2424
|
+
/** Required. Obfuscated customer ID prefixed with "customers/C" or "customers/my_customer". */
|
|
2425
|
+
customer: string;
|
|
2426
|
+
/** Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to specify a year by itself or a year and month where the day isn't significant. */
|
|
2427
|
+
'date.day'?: number;
|
|
2428
|
+
/** Month of a year. Must be from 1 to 12, or 0 to specify a year without a month and day. */
|
|
2429
|
+
'date.month'?: number;
|
|
2430
|
+
/** Year of the date. Must be from 1 to 9999, or 0 to specify a date without a year. */
|
|
2431
|
+
'date.year'?: number;
|
|
2432
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
2433
|
+
fields?: string;
|
|
2434
|
+
/** 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. */
|
|
2435
|
+
key?: string;
|
|
2436
|
+
/** OAuth 2.0 token for the current user. */
|
|
2437
|
+
oauth_token?: string;
|
|
2438
|
+
/** Returns response with indentations and line breaks. */
|
|
2439
|
+
prettyPrint?: boolean;
|
|
2440
|
+
/** 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. */
|
|
2441
|
+
quotaUser?: string;
|
|
2442
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
2443
|
+
upload_protocol?: string;
|
|
2444
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2445
|
+
uploadType?: string;
|
|
2446
|
+
}): Request<GoogleChromeManagementV1CountDevicesPerReleaseChannelResponse>;
|
|
2316
2447
|
/** Generate report of app installations. */
|
|
2317
2448
|
countInstalledApps(request?: {
|
|
2318
2449
|
/** V1 error format. */
|