@maxim_mazurok/gapi.client.chromemanagement-v1 0.0.20250709 → 0.0.20250713
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 +160 -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: 20250713
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -419,6 +419,8 @@ declare namespace gapi.client {
|
|
|
419
419
|
displayName?: string;
|
|
420
420
|
/** Output only. Display width in millimeters. */
|
|
421
421
|
displayWidthMm?: number;
|
|
422
|
+
/** Output only. EDID version. */
|
|
423
|
+
edidVersion?: string;
|
|
422
424
|
/** Output only. Is display internal or not. */
|
|
423
425
|
internal?: boolean;
|
|
424
426
|
/** Output only. Three letter manufacturer ID. */
|
|
@@ -427,12 +429,16 @@ declare namespace gapi.client {
|
|
|
427
429
|
manufactureYear?: number;
|
|
428
430
|
/** Output only. Manufacturer product code. */
|
|
429
431
|
modelId?: number;
|
|
432
|
+
/** Output only. Serial number. */
|
|
433
|
+
serialNumber?: number;
|
|
430
434
|
}
|
|
431
435
|
interface GoogleChromeManagementV1DisplayInfo {
|
|
432
436
|
/** Output only. Represents the graphics card device id. */
|
|
433
437
|
deviceId?: string;
|
|
434
438
|
/** Output only. Display device name. */
|
|
435
439
|
displayName?: string;
|
|
440
|
+
/** Output only. EDID version. */
|
|
441
|
+
edidVersion?: string;
|
|
436
442
|
/** Output only. Indicates if display is internal or not. */
|
|
437
443
|
isInternal?: boolean;
|
|
438
444
|
/** Output only. Refresh rate in Hz. */
|
|
@@ -441,6 +447,8 @@ declare namespace gapi.client {
|
|
|
441
447
|
resolutionHeight?: number;
|
|
442
448
|
/** Output only. Resolution width in pixels. */
|
|
443
449
|
resolutionWidth?: number;
|
|
450
|
+
/** Output only. Serial number. */
|
|
451
|
+
serialNumber?: number;
|
|
444
452
|
}
|
|
445
453
|
interface GoogleChromeManagementV1EnumeratePrintJobsResponse {
|
|
446
454
|
/** A token, which can be used in a subsequent request to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
@@ -1135,6 +1143,30 @@ declare namespace gapi.client {
|
|
|
1135
1143
|
/** Output only. Unique Directory API ID of the user that can be used in Admin SDK Users API. */
|
|
1136
1144
|
userId?: string;
|
|
1137
1145
|
}
|
|
1146
|
+
interface GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand {
|
|
1147
|
+
/** Output only. Result of the remote command. */
|
|
1148
|
+
commandResult?: GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult;
|
|
1149
|
+
/** Output only. State of the remote command. */
|
|
1150
|
+
commandState?: string;
|
|
1151
|
+
/** Required. Type of the remote command. The only supported command_type is "clearBrowsingData". */
|
|
1152
|
+
commandType?: string;
|
|
1153
|
+
/** Output only. Timestamp of the issurance of the remote command. */
|
|
1154
|
+
issueTime?: string;
|
|
1155
|
+
/** Identifier. Format: customers/{customer_id}/profiles/{profile_permanent_id}/commands/{command_id} */
|
|
1156
|
+
name?: string;
|
|
1157
|
+
/** Required. Payload of the remote command. The payload for "clearBrowsingData" command supports: - fields "clearCache" and "clearCookies" - values of boolean type. */
|
|
1158
|
+
payload?: {[P in string]: any};
|
|
1159
|
+
/** Output only. Valid duration of the remote command. */
|
|
1160
|
+
validDuration?: string;
|
|
1161
|
+
}
|
|
1162
|
+
interface GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult {
|
|
1163
|
+
/** Output only. Timestamp of the client execution of the remote command. */
|
|
1164
|
+
clientExecutionTime?: string;
|
|
1165
|
+
/** Output only. Result code that indicates the type of error or success of the command. */
|
|
1166
|
+
resultCode?: string;
|
|
1167
|
+
/** Output only. Result type of the remote command. */
|
|
1168
|
+
resultType?: string;
|
|
1169
|
+
}
|
|
1138
1170
|
interface GoogleChromeManagementVersionsV1ChromeOsDevice {
|
|
1139
1171
|
/** Output only. The unique Directory API ID of the device. This value is the same as the Admin Console's Directory API ID in the ChromeOS Devices tab. */
|
|
1140
1172
|
deviceDirectoryApiId?: string;
|
|
@@ -1167,6 +1199,14 @@ declare namespace gapi.client {
|
|
|
1167
1199
|
/** Output only. A string that references the administrator-provided configuration for the certificate provisioning profile. This field can be missing if no configuration was given. */
|
|
1168
1200
|
profileAdapterConfigReference?: string;
|
|
1169
1201
|
}
|
|
1202
|
+
interface GoogleChromeManagementVersionsV1ListChromeBrowserProfileCommandsResponse {
|
|
1203
|
+
/** The list of commands returned. */
|
|
1204
|
+
chromeBrowserProfileCommands?: GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand[];
|
|
1205
|
+
/** The pagination token that can be used to list the next page. */
|
|
1206
|
+
nextPageToken?: string;
|
|
1207
|
+
/** Total size represents an estimated number of resources returned. */
|
|
1208
|
+
totalSize?: string;
|
|
1209
|
+
}
|
|
1170
1210
|
interface GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse {
|
|
1171
1211
|
/** The list of profiles returned. */
|
|
1172
1212
|
chromeBrowserProfiles?: GoogleChromeManagementVersionsV1ChromeBrowserProfile[];
|
|
@@ -1459,6 +1499,124 @@ declare namespace gapi.client {
|
|
|
1459
1499
|
chrome: ChromeResource;
|
|
1460
1500
|
web: WebResource;
|
|
1461
1501
|
}
|
|
1502
|
+
interface CommandsResource {
|
|
1503
|
+
/** Creates a Chrome browser profile remote command. */
|
|
1504
|
+
create(request: {
|
|
1505
|
+
/** V1 error format. */
|
|
1506
|
+
'$.xgafv'?: string;
|
|
1507
|
+
/** OAuth access token. */
|
|
1508
|
+
access_token?: string;
|
|
1509
|
+
/** Data format for response. */
|
|
1510
|
+
alt?: string;
|
|
1511
|
+
/** JSONP */
|
|
1512
|
+
callback?: string;
|
|
1513
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1514
|
+
fields?: string;
|
|
1515
|
+
/** 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. */
|
|
1516
|
+
key?: string;
|
|
1517
|
+
/** OAuth 2.0 token for the current user. */
|
|
1518
|
+
oauth_token?: string;
|
|
1519
|
+
/** Required. Format: customers/{customer_id}/profiles/{profile_permanent_id} */
|
|
1520
|
+
parent: string;
|
|
1521
|
+
/** Returns response with indentations and line breaks. */
|
|
1522
|
+
prettyPrint?: boolean;
|
|
1523
|
+
/** 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. */
|
|
1524
|
+
quotaUser?: string;
|
|
1525
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1526
|
+
upload_protocol?: string;
|
|
1527
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1528
|
+
uploadType?: string;
|
|
1529
|
+
/** Request body */
|
|
1530
|
+
resource: GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand;
|
|
1531
|
+
}): Request<GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand>;
|
|
1532
|
+
create(
|
|
1533
|
+
request: {
|
|
1534
|
+
/** V1 error format. */
|
|
1535
|
+
'$.xgafv'?: string;
|
|
1536
|
+
/** OAuth access token. */
|
|
1537
|
+
access_token?: string;
|
|
1538
|
+
/** Data format for response. */
|
|
1539
|
+
alt?: string;
|
|
1540
|
+
/** JSONP */
|
|
1541
|
+
callback?: string;
|
|
1542
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1543
|
+
fields?: string;
|
|
1544
|
+
/** 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. */
|
|
1545
|
+
key?: string;
|
|
1546
|
+
/** OAuth 2.0 token for the current user. */
|
|
1547
|
+
oauth_token?: string;
|
|
1548
|
+
/** Required. Format: customers/{customer_id}/profiles/{profile_permanent_id} */
|
|
1549
|
+
parent: string;
|
|
1550
|
+
/** Returns response with indentations and line breaks. */
|
|
1551
|
+
prettyPrint?: boolean;
|
|
1552
|
+
/** 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. */
|
|
1553
|
+
quotaUser?: string;
|
|
1554
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1555
|
+
upload_protocol?: string;
|
|
1556
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1557
|
+
uploadType?: string;
|
|
1558
|
+
},
|
|
1559
|
+
body: GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand,
|
|
1560
|
+
): Request<GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand>;
|
|
1561
|
+
/** Gets a Chrome browser profile remote command. */
|
|
1562
|
+
get(request?: {
|
|
1563
|
+
/** V1 error format. */
|
|
1564
|
+
'$.xgafv'?: string;
|
|
1565
|
+
/** OAuth access token. */
|
|
1566
|
+
access_token?: string;
|
|
1567
|
+
/** Data format for response. */
|
|
1568
|
+
alt?: string;
|
|
1569
|
+
/** JSONP */
|
|
1570
|
+
callback?: string;
|
|
1571
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1572
|
+
fields?: string;
|
|
1573
|
+
/** 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. */
|
|
1574
|
+
key?: string;
|
|
1575
|
+
/** Required. Format: customers/{customer_id}/profiles/{profile_permanent_id}/commands/{command_id} */
|
|
1576
|
+
name: string;
|
|
1577
|
+
/** OAuth 2.0 token for the current user. */
|
|
1578
|
+
oauth_token?: string;
|
|
1579
|
+
/** Returns response with indentations and line breaks. */
|
|
1580
|
+
prettyPrint?: boolean;
|
|
1581
|
+
/** 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. */
|
|
1582
|
+
quotaUser?: string;
|
|
1583
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1584
|
+
upload_protocol?: string;
|
|
1585
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1586
|
+
uploadType?: string;
|
|
1587
|
+
}): Request<GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand>;
|
|
1588
|
+
/** Lists remote commands of a Chrome browser profile. */
|
|
1589
|
+
list(request?: {
|
|
1590
|
+
/** V1 error format. */
|
|
1591
|
+
'$.xgafv'?: string;
|
|
1592
|
+
/** OAuth access token. */
|
|
1593
|
+
access_token?: string;
|
|
1594
|
+
/** Data format for response. */
|
|
1595
|
+
alt?: string;
|
|
1596
|
+
/** JSONP */
|
|
1597
|
+
callback?: string;
|
|
1598
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1599
|
+
fields?: string;
|
|
1600
|
+
/** 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. */
|
|
1601
|
+
key?: string;
|
|
1602
|
+
/** OAuth 2.0 token for the current user. */
|
|
1603
|
+
oauth_token?: string;
|
|
1604
|
+
/** Optional. The maximum number of commands to return. The default page size is 100 if page_size is unspecified, and the maximum page size allowed is 100. */
|
|
1605
|
+
pageSize?: number;
|
|
1606
|
+
/** Optional. The page token used to retrieve a specific page of the listing request. */
|
|
1607
|
+
pageToken?: string;
|
|
1608
|
+
/** Required. Format: customers/{customer_id}/profiles/{profile_permanent_id} */
|
|
1609
|
+
parent: string;
|
|
1610
|
+
/** Returns response with indentations and line breaks. */
|
|
1611
|
+
prettyPrint?: boolean;
|
|
1612
|
+
/** 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. */
|
|
1613
|
+
quotaUser?: string;
|
|
1614
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1615
|
+
upload_protocol?: string;
|
|
1616
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1617
|
+
uploadType?: string;
|
|
1618
|
+
}): Request<GoogleChromeManagementVersionsV1ListChromeBrowserProfileCommandsResponse>;
|
|
1619
|
+
}
|
|
1462
1620
|
interface ProfilesResource {
|
|
1463
1621
|
/** Deletes the data collected from a Chrome browser profile. */
|
|
1464
1622
|
delete(request?: {
|
|
@@ -1549,6 +1707,7 @@ declare namespace gapi.client {
|
|
|
1549
1707
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1550
1708
|
uploadType?: string;
|
|
1551
1709
|
}): Request<GoogleChromeManagementVersionsV1ListChromeBrowserProfilesResponse>;
|
|
1710
|
+
commands: CommandsResource;
|
|
1552
1711
|
}
|
|
1553
1712
|
interface ReportsResource {
|
|
1554
1713
|
/** Count of Chrome Browsers that have been recently enrolled, have new policy to be synced, or have no recent activity. */
|