@maxim_mazurok/gapi.client.chromemanagement-v1 0.1.20260310 → 0.2.20260604

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.
Files changed (3) hide show
  1. package/index.d.ts +1210 -164
  2. package/package.json +1 -1
  3. package/readme.md +17 -0
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: 20260310
12
+ // Revision: 20260604
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -41,6 +41,8 @@ declare namespace gapi.client {
41
41
  androidAppInfo?: GoogleChromeManagementV1AndroidAppInfo;
42
42
  /** Output only. Unique store identifier for the item. Examples: "gmbmikajjgmnabiglmofipeabaddhgne" for the Save to Google Drive Chrome extension, "com.google.android.apps.docs" for the Google Drive Android app. */
43
43
  appId?: string;
44
+ /** Output only. The category IDs of the app, which are the same as stored in the Web Store item. It's expected that there is only one category ID. */
45
+ categoryIds?: string[];
44
46
  /** Output only. Chrome Web Store app information. */
45
47
  chromeAppInfo?: GoogleChromeManagementV1ChromeAppInfo;
46
48
  /** Output only. App's description. */
@@ -74,7 +76,7 @@ declare namespace gapi.client {
74
76
  /** Output only. Information about a partial service error if applicable. */
75
77
  serviceError?: GoogleRpcStatus;
76
78
  /** Output only. App type. */
77
- type?: string;
79
+ type?: 'APP_ITEM_TYPE_UNSPECIFIED' | 'CHROME' | 'ANDROID' | 'WEB';
78
80
  }
79
81
  interface GoogleChromeManagementV1AppReport {
80
82
  /** Timestamp when the report was collected. */
@@ -88,7 +90,23 @@ declare namespace gapi.client {
88
90
  /** Application instance id. This will be unique per window/instance. */
89
91
  appInstanceId?: string;
90
92
  /** Type of app. */
91
- appType?: string;
93
+ appType?:
94
+ | 'TELEMETRY_APPLICATION_TYPE_UNSPECIFIED'
95
+ | 'APPLICATION_TYPE_ARC'
96
+ | 'APPLICATION_TYPE_BUILT_IN'
97
+ | 'APPLICATION_TYPE_CROSTINI'
98
+ | 'APPLICATION_TYPE_CHROME_APP'
99
+ | 'APPLICATION_TYPE_WEB'
100
+ | 'APPLICATION_TYPE_MAC_OS'
101
+ | 'APPLICATION_TYPE_PLUGIN_VM'
102
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER'
103
+ | 'APPLICATION_TYPE_REMOTE'
104
+ | 'APPLICATION_TYPE_BOREALIS'
105
+ | 'APPLICATION_TYPE_SYSTEM_WEB'
106
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_CHROME_APP'
107
+ | 'APPLICATION_TYPE_EXTENSION'
108
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_EXTENSION'
109
+ | 'APPLICATION_TYPE_BRUSCHETTA';
92
110
  /** App foreground running time. */
93
111
  runningDuration?: string;
94
112
  }
@@ -142,7 +160,11 @@ declare namespace gapi.client {
142
160
  }
143
161
  interface GoogleChromeManagementV1BatteryStatusReport {
144
162
  /** Output only. Battery health. */
145
- batteryHealth?: string;
163
+ batteryHealth?:
164
+ | 'BATTERY_HEALTH_UNSPECIFIED'
165
+ | 'BATTERY_HEALTH_NORMAL'
166
+ | 'BATTERY_REPLACE_SOON'
167
+ | 'BATTERY_REPLACE_NOW';
146
168
  /** Output only. Cycle count. */
147
169
  cycleCount?: number;
148
170
  /** Output only. Full charge capacity (mAmpere-hours). */
@@ -164,19 +186,37 @@ declare namespace gapi.client {
164
186
  /** Total time since shutdown start to power off. */
165
187
  shutdownDuration?: string;
166
188
  /** The shutdown reason. */
167
- shutdownReason?: string;
189
+ shutdownReason?:
190
+ | 'SHUTDOWN_REASON_UNSPECIFIED'
191
+ | 'USER_REQUEST'
192
+ | 'SYSTEM_UPDATE'
193
+ | 'LOW_BATTERY'
194
+ | 'OTHER';
168
195
  /** The timestamp when shutdown. */
169
196
  shutdownTime?: string;
170
197
  }
171
198
  interface GoogleChromeManagementV1BrowserVersion {
172
199
  /** Output only. The release channel of the installed browser. */
173
- channel?: string;
200
+ channel?:
201
+ | 'RELEASE_CHANNEL_UNSPECIFIED'
202
+ | 'CANARY'
203
+ | 'DEV'
204
+ | 'BETA'
205
+ | 'STABLE';
174
206
  /** Output only. Count grouped by device_system and major version */
175
207
  count?: string;
176
208
  /** Output only. Version of the system-specified operating system. */
177
209
  deviceOsVersion?: string;
178
210
  /** Output only. The device operating system. */
179
- system?: string;
211
+ system?:
212
+ | 'DEVICE_SYSTEM_UNSPECIFIED'
213
+ | 'SYSTEM_OTHER'
214
+ | 'SYSTEM_ANDROID'
215
+ | 'SYSTEM_IOS'
216
+ | 'SYSTEM_CROS'
217
+ | 'SYSTEM_WINDOWS'
218
+ | 'SYSTEM_MAC'
219
+ | 'SYSTEM_LINUX';
180
220
  /** Output only. The full version of the installed browser. */
181
221
  version?: string;
182
222
  }
@@ -204,7 +244,7 @@ declare namespace gapi.client {
204
244
  /** Output only. The app developer has enabled support for their app. Version-specific field that will only be set when the requested app version is found. */
205
245
  supportEnabled?: boolean;
206
246
  /** Output only. Types of an item in the Chrome Web Store */
207
- type?: string;
247
+ type?: 'ITEM_TYPE_UNSPECIFIED' | 'EXTENSION' | 'OTHERS';
208
248
  }
209
249
  interface GoogleChromeManagementV1ChromeAppPermission {
210
250
  /** Output only. If available, whether this permissions grants the app/extension access to user data. */
@@ -294,6 +334,14 @@ declare namespace gapi.client {
294
334
  /** The DeviceHardwareCountReport for device storage amount in gigabytes (for example 128). */
295
335
  storageReports?: GoogleChromeManagementV1DeviceHardwareCountReport[];
296
336
  }
337
+ interface GoogleChromeManagementV1CountChromeProfileVersionsResponse {
338
+ /** Token to specify the next page of the request. */
339
+ nextPageToken?: string;
340
+ /** List of all browser versions reported for profiles and their install counts. */
341
+ profileBrowserVersions?: GoogleChromeManagementV1BrowserVersion[];
342
+ /** Total number browser versions matching request. */
343
+ totalSize?: number;
344
+ }
297
345
  interface GoogleChromeManagementV1CountChromeVersionsResponse {
298
346
  /** List of all browser versions and their install counts. */
299
347
  browserVersions?: GoogleChromeManagementV1BrowserVersion[];
@@ -354,7 +402,7 @@ declare namespace gapi.client {
354
402
  }
355
403
  interface GoogleChromeManagementV1CpuInfo {
356
404
  /** Output only. Architecture type for the CPU. * This field provides device information, which is static and will not change over time. * Data for this field is controlled via policy: [ReportDeviceCpuInfo](https://chromeenterprise.google/policies/#ReportDeviceCpuInfo) * Data Collection Frequency: Only at Upload * Default Data Reporting Frequency: 3 hours - Policy Controlled: Yes * Cache: If the device is offline, the collected data is stored locally, and will be reported when the device is next online: No * Reported for affiliated users only: N/A */
357
- architecture?: string;
405
+ architecture?: 'ARCHITECTURE_UNSPECIFIED' | 'X64';
358
406
  /** Output only. Whether keylocker is configured.`TRUE` = Enabled; `FALSE` = disabled. Only reported if keylockerSupported = `TRUE`. */
359
407
  keylockerConfigured?: boolean;
360
408
  /** Output only. Whether keylocker is supported. */
@@ -388,13 +436,30 @@ declare namespace gapi.client {
388
436
  }
389
437
  interface GoogleChromeManagementV1DeviceActivityReport {
390
438
  /** Output only. Device activity state. */
391
- deviceActivityState?: string;
439
+ deviceActivityState?:
440
+ | 'DEVICE_ACTIVITY_STATE_UNSPECIFIED'
441
+ | 'ACTIVE'
442
+ | 'IDLE'
443
+ | 'LOCKED';
392
444
  /** Output only. Timestamp of when the report was collected. */
393
445
  reportTime?: string;
394
446
  }
395
447
  interface GoogleChromeManagementV1DeviceAueCountReport {
396
448
  /** Enum value of month corresponding to the auto update expiration date in UTC time zone. If the device is already expired, this field is empty. */
397
- aueMonth?: string;
449
+ aueMonth?:
450
+ | 'MONTH_UNSPECIFIED'
451
+ | 'JANUARY'
452
+ | 'FEBRUARY'
453
+ | 'MARCH'
454
+ | 'APRIL'
455
+ | 'MAY'
456
+ | 'JUNE'
457
+ | 'JULY'
458
+ | 'AUGUST'
459
+ | 'SEPTEMBER'
460
+ | 'OCTOBER'
461
+ | 'NOVEMBER'
462
+ | 'DECEMBER';
398
463
  /** Int value of year corresponding to the Auto Update Expiration date in UTC time zone. If the device is already expired, this field is empty. */
399
464
  aueYear?: string;
400
465
  /** Count of devices of this model. */
@@ -514,6 +579,14 @@ declare namespace gapi.client {
514
579
  /** Total number of devices matching request. */
515
580
  totalSize?: number;
516
581
  }
582
+ interface GoogleChromeManagementV1FindInstalledAppProfilesResponse {
583
+ /** Token to specify the next page of the request. */
584
+ nextPageToken?: string;
585
+ /** A list of profiles which have the app installed. Sorted in ascending alphabetical order on the profile.Email field. */
586
+ profiles?: GoogleChromeManagementV1ProfileAppInstallInstance[];
587
+ /** Total number of profiles matching request. */
588
+ totalSize?: number;
589
+ }
517
590
  interface GoogleChromeManagementV1GraphicsAdapterInfo {
518
591
  /** Output only. Adapter name. Example: Mesa DRI Intel(R) UHD Graphics 620 (Kabylake GT2). */
519
592
  adapter?: string;
@@ -542,23 +615,46 @@ declare namespace gapi.client {
542
615
  /** Timestamp of when status changed was detected */
543
616
  reportTime?: string;
544
617
  /** State the device changed to */
545
- state?: string;
618
+ state?:
619
+ | 'STATE_UNSPECIFIED'
620
+ | 'UNKNOWN'
621
+ | 'ONLINE'
622
+ | 'OFFLINE'
623
+ | 'DEVICE_OUTDATED';
546
624
  }
547
625
  interface GoogleChromeManagementV1HttpsLatencyRoutineData {
548
626
  /** Output only. HTTPS latency if routine succeeded or failed because of HIGH_LATENCY or VERY_HIGH_LATENCY. */
549
627
  latency?: string;
550
628
  /** Output only. HTTPS latency routine problem if a problem occurred. */
551
- problem?: string;
629
+ problem?:
630
+ | 'HTTPS_LATENCY_PROBLEM_UNSPECIFIED'
631
+ | 'FAILED_DNS_RESOLUTIONS'
632
+ | 'FAILED_HTTPS_REQUESTS'
633
+ | 'HIGH_LATENCY'
634
+ | 'VERY_HIGH_LATENCY';
552
635
  }
553
636
  interface GoogleChromeManagementV1InstalledApp {
554
637
  /** Output only. Unique identifier of the app. For Chrome apps and extensions, the 32-character id (e.g. ehoadneljpdggcbbknedodolkkjodefl). For Android apps, the package name (e.g. com.evernote). */
555
638
  appId?: string;
556
639
  /** Output only. How the app was installed. */
557
- appInstallType?: string;
640
+ appInstallType?:
641
+ | 'APP_INSTALL_TYPE_UNSPECIFIED'
642
+ | 'MULTIPLE'
643
+ | 'NORMAL'
644
+ | 'ADMIN'
645
+ | 'DEVELOPMENT'
646
+ | 'SIDELOAD'
647
+ | 'OTHER';
558
648
  /** Output only. Source of the installed app. */
559
- appSource?: string;
649
+ appSource?: 'APP_SOURCE_UNSPECIFIED' | 'CHROME_WEBSTORE' | 'PLAY_STORE';
560
650
  /** Output only. Type of the app. */
561
- appType?: string;
651
+ appType?:
652
+ | 'APP_TYPE_UNSPECIFIED'
653
+ | 'EXTENSION'
654
+ | 'APP'
655
+ | 'THEME'
656
+ | 'HOSTED_APP'
657
+ | 'ANDROID_APP';
562
658
  /** Output only. Count of browser devices with this app installed. */
563
659
  browserDeviceCount?: string;
564
660
  /** Output only. Description of the installed app. */
@@ -573,6 +669,8 @@ declare namespace gapi.client {
573
669
  osUserCount?: string;
574
670
  /** Output only. Permissions of the installed app. */
575
671
  permissions?: string[];
672
+ /** Output only. Count of Chrome Profiles with this app installed. */
673
+ profileCount?: string;
576
674
  /** Output only. If available, the risk assessment data about this extension. */
577
675
  riskAssessment?: GoogleChromeManagementV1RiskAssessmentData;
578
676
  }
@@ -644,7 +742,11 @@ declare namespace gapi.client {
644
742
  /** Output only. MEID (if applicable) of the corresponding network device. */
645
743
  meid?: string;
646
744
  /** Output only. Network device type. */
647
- type?: string;
745
+ type?:
746
+ | 'NETWORK_DEVICE_TYPE_UNSPECIFIED'
747
+ | 'CELLULAR_DEVICE'
748
+ | 'ETHERNET_DEVICE'
749
+ | 'WIFI_DEVICE';
648
750
  }
649
751
  interface GoogleChromeManagementV1NetworkDiagnosticsReport {
650
752
  /** Output only. HTTPS latency test data. */
@@ -658,9 +760,21 @@ declare namespace gapi.client {
658
760
  }
659
761
  interface GoogleChromeManagementV1NetworkStatusReport {
660
762
  /** Output only. Current connection state of the network. */
661
- connectionState?: string;
763
+ connectionState?:
764
+ | 'NETWORK_CONNECTION_STATE_UNSPECIFIED'
765
+ | 'ONLINE'
766
+ | 'CONNECTED'
767
+ | 'PORTAL'
768
+ | 'CONNECTING'
769
+ | 'NOT_CONNECTED';
662
770
  /** Output only. Network connection type. */
663
- connectionType?: string;
771
+ connectionType?:
772
+ | 'NETWORK_TYPE_UNSPECIFIED'
773
+ | 'CELLULAR'
774
+ | 'ETHERNET'
775
+ | 'TETHER'
776
+ | 'VPN'
777
+ | 'WIFI';
664
778
  /** Output only. Whether the wifi encryption key is turned off. */
665
779
  encryptionOn?: boolean;
666
780
  /** Output only. Gateway IP address. */
@@ -706,7 +820,11 @@ declare namespace gapi.client {
706
820
  /** Output only. New requested platform version from the pending updated kiosk app. */
707
821
  newRequestedPlatformVersion?: string;
708
822
  /** Output only. Current state of the os update. */
709
- updateState?: string;
823
+ updateState?:
824
+ | 'UPDATE_STATE_UNSPECIFIED'
825
+ | 'OS_IMAGE_DOWNLOAD_NOT_STARTED'
826
+ | 'OS_IMAGE_DOWNLOAD_IN_PROGRESS'
827
+ | 'OS_UPDATE_NEED_REBOOT';
710
828
  }
711
829
  interface GoogleChromeManagementV1PeripheralsReport {
712
830
  /** Output only. Timestamp of when the report was collected. */
@@ -730,7 +848,7 @@ declare namespace gapi.client {
730
848
  }
731
849
  interface GoogleChromeManagementV1PrintJob {
732
850
  /** Color mode. */
733
- colorMode?: string;
851
+ colorMode?: 'COLOR_MODE_UNSPECIFIED' | 'BLACK_AND_WHITE' | 'COLOR';
734
852
  /** Print job completion timestamp. */
735
853
  completeTime?: string;
736
854
  /** Number of copies. */
@@ -740,7 +858,11 @@ declare namespace gapi.client {
740
858
  /** Number of pages in the document. */
741
859
  documentPageCount?: number;
742
860
  /** Duplex mode. */
743
- duplexMode?: string;
861
+ duplexMode?:
862
+ | 'DUPLEX_MODE_UNSPECIFIED'
863
+ | 'ONE_SIDED'
864
+ | 'TWO_SIDED_LONG_EDGE'
865
+ | 'TWO_SIDED_SHORT_EDGE';
744
866
  /** Unique ID of the print job. */
745
867
  id?: string;
746
868
  /** Name of the printer used for printing. */
@@ -748,7 +870,7 @@ declare namespace gapi.client {
748
870
  /** API ID of the printer used for printing. */
749
871
  printerId?: string;
750
872
  /** The final state of the job. */
751
- state?: string;
873
+ state?: 'STATE_UNSPECIFIED' | 'PRINTED' | 'CANCELLED' | 'FAILED';
752
874
  /** The title of the document. */
753
875
  title?: string;
754
876
  /** The primary e-mail address of the user who submitted the print job. */
@@ -756,6 +878,16 @@ declare namespace gapi.client {
756
878
  /** The unique Directory API ID of the user who submitted the print job. */
757
879
  userId?: string;
758
880
  }
881
+ interface GoogleChromeManagementV1ProfileAppInstallInstance {
882
+ /** Output only. The email of the profile. */
883
+ email?: string;
884
+ /** Output only. The Chrome client side profile ID. */
885
+ profileId?: string;
886
+ /** Output only. The organizational unit id of the profile. */
887
+ profileOrgUnitId?: string;
888
+ /** Output only. Profile permanent ID is the unique identifier of a profile within one customer. */
889
+ profilePermanentId?: string;
890
+ }
759
891
  interface GoogleChromeManagementV1RiskAssessment {
760
892
  /** Risk assessment for the extension. Currently, this is a numerical value, and its interpretation is specific to each risk assessment provider. */
761
893
  assessment?: string;
@@ -768,15 +900,28 @@ declare namespace gapi.client {
768
900
  /** Individual risk assessments. */
769
901
  entries?: GoogleChromeManagementV1RiskAssessmentEntry[];
770
902
  /** Overall assessed risk level across all entries. This will be the highest risk level from all entries. */
771
- overallRiskLevel?: string;
903
+ overallRiskLevel?:
904
+ | 'RISK_LEVEL_UNSPECIFIED'
905
+ | 'RISK_LEVEL_LOW'
906
+ | 'RISK_LEVEL_MEDIUM'
907
+ | 'RISK_LEVEL_HIGH';
772
908
  }
773
909
  interface GoogleChromeManagementV1RiskAssessmentEntry {
774
910
  /** Output only. The risk assessment provider from which this entry comes from. */
775
- provider?: string;
911
+ provider?:
912
+ | 'RISK_ASSESSMENT_PROVIDER_UNSPECIFIED'
913
+ | 'RISK_ASSESSMENT_PROVIDER_CRXCAVATOR'
914
+ | 'RISK_ASSESSMENT_PROVIDER_SPIN_AI'
915
+ | 'RISK_ASSESSMENT_PROVIDER_LAYERX'
916
+ | 'RISK_ASSESSMENT_PROVIDER_SPIN_AI_V2';
776
917
  /** Output only. The details of the provider's risk assessment. */
777
918
  riskAssessment?: GoogleChromeManagementV1RiskAssessment;
778
919
  /** Output only. The bucketed risk level for the risk assessment. */
779
- riskLevel?: string;
920
+ riskLevel?:
921
+ | 'RISK_LEVEL_UNSPECIFIED'
922
+ | 'RISK_LEVEL_LOW'
923
+ | 'RISK_LEVEL_MEDIUM'
924
+ | 'RISK_LEVEL_HIGH';
780
925
  }
781
926
  interface GoogleChromeManagementV1RuntimeCountersReport {
782
927
  /** Number of times that the device has entered into the hibernation state. Currently obtained via the PSR, count from S0->S4. */
@@ -816,29 +961,145 @@ declare namespace gapi.client {
816
961
  /** App id. For PWAs this is the start URL, and for extensions this is the extension id. */
817
962
  appId?: string;
818
963
  /** App installation reason. */
819
- appInstallReason?: string;
964
+ appInstallReason?:
965
+ | 'APPLICATION_INSTALL_REASON_UNSPECIFIED'
966
+ | 'APPLICATION_INSTALL_REASON_SYSTEM'
967
+ | 'APPLICATION_INSTALL_REASON_POLICY'
968
+ | 'APPLICATION_INSTALL_REASON_OEM'
969
+ | 'APPLICATION_INSTALL_REASON_DEFAULT'
970
+ | 'APPLICATION_INSTALL_REASON_SYNC'
971
+ | 'APPLICATION_INSTALL_REASON_USER'
972
+ | 'APPLICATION_INSTALL_REASON_SUB_APP'
973
+ | 'APPLICATION_INSTALL_REASON_KIOSK'
974
+ | 'APPLICATION_INSTALL_REASON_COMMAND_LINE';
820
975
  /** App installation source. */
821
- appInstallSource?: string;
976
+ appInstallSource?:
977
+ | 'APPLICATION_INSTALL_SOURCE_UNSPECIFIED'
978
+ | 'APPLICATION_INSTALL_SOURCE_SYSTEM'
979
+ | 'APPLICATION_INSTALL_SOURCE_SYNC'
980
+ | 'APPLICATION_INSTALL_SOURCE_PLAY_STORE'
981
+ | 'APPLICATION_INSTALL_SOURCE_CHROME_WEB_STORE'
982
+ | 'APPLICATION_INSTALL_SOURCE_BROWSER';
822
983
  /** App installation time depending on the app lifecycle. */
823
- appInstallTime?: string;
984
+ appInstallTime?:
985
+ | 'APPLICATION_INSTALL_TIME_UNSPECIFIED'
986
+ | 'APPLICATION_INSTALL_TIME_INIT'
987
+ | 'APPLICATION_INSTALL_TIME_RUNNING';
824
988
  /** Type of app. */
825
- appType?: string;
989
+ appType?:
990
+ | 'TELEMETRY_APPLICATION_TYPE_UNSPECIFIED'
991
+ | 'APPLICATION_TYPE_ARC'
992
+ | 'APPLICATION_TYPE_BUILT_IN'
993
+ | 'APPLICATION_TYPE_CROSTINI'
994
+ | 'APPLICATION_TYPE_CHROME_APP'
995
+ | 'APPLICATION_TYPE_WEB'
996
+ | 'APPLICATION_TYPE_MAC_OS'
997
+ | 'APPLICATION_TYPE_PLUGIN_VM'
998
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER'
999
+ | 'APPLICATION_TYPE_REMOTE'
1000
+ | 'APPLICATION_TYPE_BOREALIS'
1001
+ | 'APPLICATION_TYPE_SYSTEM_WEB'
1002
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_CHROME_APP'
1003
+ | 'APPLICATION_TYPE_EXTENSION'
1004
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_EXTENSION'
1005
+ | 'APPLICATION_TYPE_BRUSCHETTA';
826
1006
  }
827
1007
  interface GoogleChromeManagementV1TelemetryAppLaunchEvent {
828
1008
  /** App id. For PWAs this is the start URL, and for extensions this is the extension id. */
829
1009
  appId?: string;
830
1010
  /** App launch source. */
831
- appLaunchSource?: string;
1011
+ appLaunchSource?:
1012
+ | 'APPLICATION_LAUNCH_SOURCE_UNSPECIFIED'
1013
+ | 'APPLICATION_LAUNCH_SOURCE_APP_LIST_GRID'
1014
+ | 'APPLICATION_LAUNCH_SOURCE_APP_LIST_GRID_CONTEXT_MENU'
1015
+ | 'APPLICATION_LAUNCH_SOURCE_APP_LIST_QUERY'
1016
+ | 'APPLICATION_LAUNCH_SOURCE_APP_LIST_QUERY_CONTEXT_MENU'
1017
+ | 'APPLICATION_LAUNCH_SOURCE_APP_LIST_RECOMMENDATION'
1018
+ | 'APPLICATION_LAUNCH_SOURCE_PARENTAL_CONTROLS'
1019
+ | 'APPLICATION_LAUNCH_SOURCE_SHELF'
1020
+ | 'APPLICATION_LAUNCH_SOURCE_FILE_MANAGER'
1021
+ | 'APPLICATION_LAUNCH_SOURCE_LINK'
1022
+ | 'APPLICATION_LAUNCH_SOURCE_OMNIBOX'
1023
+ | 'APPLICATION_LAUNCH_SOURCE_CHROME_INTERNAL'
1024
+ | 'APPLICATION_LAUNCH_SOURCE_KEYBOARD'
1025
+ | 'APPLICATION_LAUNCH_SOURCE_OTHER_APP'
1026
+ | 'APPLICATION_LAUNCH_SOURCE_MENU'
1027
+ | 'APPLICATION_LAUNCH_SOURCE_INSTALLED_NOTIFICATION'
1028
+ | 'APPLICATION_LAUNCH_SOURCE_TEST'
1029
+ | 'APPLICATION_LAUNCH_SOURCE_ARC'
1030
+ | 'APPLICATION_LAUNCH_SOURCE_SHARESHEET'
1031
+ | 'APPLICATION_LAUNCH_SOURCE_RELEASE_NOTES_NOTIFICATION'
1032
+ | 'APPLICATION_LAUNCH_SOURCE_FULL_RESTORE'
1033
+ | 'APPLICATION_LAUNCH_SOURCE_SMART_TEXT_CONTEXT_MENU'
1034
+ | 'APPLICATION_LAUNCH_SOURCE_DISCOVER_TAB_NOTIFICATION'
1035
+ | 'APPLICATION_LAUNCH_SOURCE_MANAGEMENT_API'
1036
+ | 'APPLICATION_LAUNCH_SOURCE_KIOSK'
1037
+ | 'APPLICATION_LAUNCH_SOURCE_COMMAND_LINE'
1038
+ | 'APPLICATION_LAUNCH_SOURCE_BACKGROUND_MODE'
1039
+ | 'APPLICATION_LAUNCH_SOURCE_NEW_TAB_PAGE'
1040
+ | 'APPLICATION_LAUNCH_SOURCE_INTENT_URL'
1041
+ | 'APPLICATION_LAUNCH_SOURCE_OS_LOGIN'
1042
+ | 'APPLICATION_LAUNCH_SOURCE_PROTOCOL_HANDLER'
1043
+ | 'APPLICATION_LAUNCH_SOURCE_URL_HANDLER'
1044
+ | 'APPLICATION_LAUNCH_SOURCE_LOCK_SCREEN'
1045
+ | 'APPLICATION_LAUNCH_SOURCE_APP_HOME_PAGE'
1046
+ | 'APPLICATION_LAUNCH_SOURCE_REPARENTING'
1047
+ | 'APPLICATION_LAUNCH_SOURCE_PROFILE_MENU'
1048
+ | 'APPLICATION_LAUNCH_SOURCE_SYSTEM_TRAY_CALENDAR'
1049
+ | 'APPLICATION_LAUNCH_SOURCE_INSTALLER'
1050
+ | 'APPLICATION_LAUNCH_SOURCE_FIRST_RUN'
1051
+ | 'APPLICATION_LAUNCH_SOURCE_WELCOME_TOUR'
1052
+ | 'APPLICATION_LAUNCH_SOURCE_FOCUS_MODE'
1053
+ | 'APPLICATION_LAUNCH_SOURCE_SPARKY'
1054
+ | 'APPLICATION_LAUNCH_SOURCE_NAVIGATION_CAPTURING'
1055
+ | 'APPLICATION_LAUNCH_SOURCE_WEB_INSTALL_API';
832
1056
  /** Type of app. */
833
- appType?: string;
1057
+ appType?:
1058
+ | 'TELEMETRY_APPLICATION_TYPE_UNSPECIFIED'
1059
+ | 'APPLICATION_TYPE_ARC'
1060
+ | 'APPLICATION_TYPE_BUILT_IN'
1061
+ | 'APPLICATION_TYPE_CROSTINI'
1062
+ | 'APPLICATION_TYPE_CHROME_APP'
1063
+ | 'APPLICATION_TYPE_WEB'
1064
+ | 'APPLICATION_TYPE_MAC_OS'
1065
+ | 'APPLICATION_TYPE_PLUGIN_VM'
1066
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER'
1067
+ | 'APPLICATION_TYPE_REMOTE'
1068
+ | 'APPLICATION_TYPE_BOREALIS'
1069
+ | 'APPLICATION_TYPE_SYSTEM_WEB'
1070
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_CHROME_APP'
1071
+ | 'APPLICATION_TYPE_EXTENSION'
1072
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_EXTENSION'
1073
+ | 'APPLICATION_TYPE_BRUSCHETTA';
834
1074
  }
835
1075
  interface GoogleChromeManagementV1TelemetryAppUninstallEvent {
836
1076
  /** App id. For PWAs this is the start URL, and for extensions this is the extension id. */
837
1077
  appId?: string;
838
1078
  /** Type of app. */
839
- appType?: string;
1079
+ appType?:
1080
+ | 'TELEMETRY_APPLICATION_TYPE_UNSPECIFIED'
1081
+ | 'APPLICATION_TYPE_ARC'
1082
+ | 'APPLICATION_TYPE_BUILT_IN'
1083
+ | 'APPLICATION_TYPE_CROSTINI'
1084
+ | 'APPLICATION_TYPE_CHROME_APP'
1085
+ | 'APPLICATION_TYPE_WEB'
1086
+ | 'APPLICATION_TYPE_MAC_OS'
1087
+ | 'APPLICATION_TYPE_PLUGIN_VM'
1088
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER'
1089
+ | 'APPLICATION_TYPE_REMOTE'
1090
+ | 'APPLICATION_TYPE_BOREALIS'
1091
+ | 'APPLICATION_TYPE_SYSTEM_WEB'
1092
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_CHROME_APP'
1093
+ | 'APPLICATION_TYPE_EXTENSION'
1094
+ | 'APPLICATION_TYPE_STANDALONE_BROWSER_EXTENSION'
1095
+ | 'APPLICATION_TYPE_BRUSCHETTA';
840
1096
  /** App uninstall source. */
841
- appUninstallSource?: string;
1097
+ appUninstallSource?:
1098
+ | 'APPLICATION_UNINSTALL_SOURCE_UNSPECIFIED'
1099
+ | 'APPLICATION_UNINSTALL_SOURCE_APP_LIST'
1100
+ | 'APPLICATION_UNINSTALL_SOURCE_APP_MANAGEMENT'
1101
+ | 'APPLICATION_UNINSTALL_SOURCE_SHELF'
1102
+ | 'APPLICATION_UNINSTALL_SOURCE_MIGRATION';
842
1103
  }
843
1104
  interface GoogleChromeManagementV1TelemetryAudioSevereUnderrunEvent {}
844
1105
  interface GoogleChromeManagementV1TelemetryDevice {
@@ -917,7 +1178,22 @@ declare namespace gapi.client {
917
1178
  /** Output only. Information about the device associated with the event. */
918
1179
  device?: GoogleChromeManagementV1TelemetryDeviceInfo;
919
1180
  /** The event type of the current event. */
920
- eventType?: string;
1181
+ eventType?:
1182
+ | 'EVENT_TYPE_UNSPECIFIED'
1183
+ | 'AUDIO_SEVERE_UNDERRUN'
1184
+ | 'NETWORK_STATE_CHANGE'
1185
+ | 'USB_ADDED'
1186
+ | 'USB_REMOVED'
1187
+ | 'NETWORK_HTTPS_LATENCY_CHANGE'
1188
+ | 'WIFI_SIGNAL_STRENGTH_LOW'
1189
+ | 'WIFI_SIGNAL_STRENGTH_RECOVERED'
1190
+ | 'VPN_CONNECTION_STATE_CHANGE'
1191
+ | 'APP_INSTALLED'
1192
+ | 'APP_UNINSTALLED'
1193
+ | 'APP_LAUNCHED'
1194
+ | 'OS_CRASH'
1195
+ | 'EXTERNAL_DISPLAY_CONNECTED'
1196
+ | 'EXTERNAL_DISPLAY_DISCONNECTED';
921
1197
  /** Output only. Payload for external display connected/disconnected event. Present only when `event_type` is `EXTERNAL_DISPLAY_CONNECTED` or `EXTERNAL_DISPLAY_DISCONNECTED`. */
922
1198
  externalDisplaysEvent?: GoogleChromeManagementV1TelemetryExternalDisplayEvent;
923
1199
  /** Output only. Payload for HTTPS latency change event. Present only when `event_type` is `NETWORK_HTTPS_LATENCY_CHANGE`. */
@@ -941,7 +1217,22 @@ declare namespace gapi.client {
941
1217
  }
942
1218
  interface GoogleChromeManagementV1TelemetryEventNotificationFilter {
943
1219
  /** Only sends the notifications for events of these types. Must not be empty. */
944
- eventTypes?: string[];
1220
+ eventTypes?:
1221
+ | 'EVENT_TYPE_UNSPECIFIED'
1222
+ | 'AUDIO_SEVERE_UNDERRUN'
1223
+ | 'NETWORK_STATE_CHANGE'
1224
+ | 'USB_ADDED'
1225
+ | 'USB_REMOVED'
1226
+ | 'NETWORK_HTTPS_LATENCY_CHANGE'
1227
+ | 'WIFI_SIGNAL_STRENGTH_LOW'
1228
+ | 'WIFI_SIGNAL_STRENGTH_RECOVERED'
1229
+ | 'VPN_CONNECTION_STATE_CHANGE'
1230
+ | 'APP_INSTALLED'
1231
+ | 'APP_UNINSTALLED'
1232
+ | 'APP_LAUNCHED'
1233
+ | 'OS_CRASH'
1234
+ | 'EXTERNAL_DISPLAY_CONNECTED'
1235
+ | 'EXTERNAL_DISPLAY_DISCONNECTED'[];
945
1236
  }
946
1237
  interface GoogleChromeManagementV1TelemetryExternalDisplayData {
947
1238
  /** The display name. */
@@ -965,11 +1256,20 @@ declare namespace gapi.client {
965
1256
  /** HTTPS latency routine data that triggered the event. */
966
1257
  httpsLatencyRoutineData?: GoogleChromeManagementV1HttpsLatencyRoutineData;
967
1258
  /** Current HTTPS latency state. */
968
- httpsLatencyState?: string;
1259
+ httpsLatencyState?:
1260
+ | 'HTTPS_LATENCY_STATE_UNSPECIFIED'
1261
+ | 'RECOVERY'
1262
+ | 'PROBLEM';
969
1263
  }
970
1264
  interface GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent {
971
1265
  /** Current connection state of the network. */
972
- connectionState?: string;
1266
+ connectionState?:
1267
+ | 'NETWORK_CONNECTION_STATE_UNSPECIFIED'
1268
+ | 'ONLINE'
1269
+ | 'CONNECTED'
1270
+ | 'PORTAL'
1271
+ | 'CONNECTING'
1272
+ | 'NOT_CONNECTED';
973
1273
  /** Unique identifier of the network. */
974
1274
  guid?: string;
975
1275
  }
@@ -1005,9 +1305,17 @@ declare namespace gapi.client {
1005
1305
  /** Crash id. */
1006
1306
  crashId?: string;
1007
1307
  /** Crash type. */
1008
- crashType?: string;
1308
+ crashType?:
1309
+ | 'CRASH_TYPE_UNSPECIFIED'
1310
+ | 'CRASH_TYPE_KERNEL'
1311
+ | 'CRASH_TYPE_EMBEDDED_CONTROLLER';
1009
1312
  /** Session type. */
1010
- sessionType?: string;
1313
+ sessionType?:
1314
+ | 'SESSION_TYPE_UNSPECIFIED'
1315
+ | 'SESSION_TYPE_SIGNED_IN_USER'
1316
+ | 'SESSION_TYPE_KIOSK'
1317
+ | 'SESSION_TYPE_MANAGED_GUEST'
1318
+ | 'SESSION_TYPE_ACTIVE_DIRECTORY';
1011
1319
  }
1012
1320
  interface GoogleChromeManagementV1TelemetryUsbPeripheralsEvent {
1013
1321
  /** List of usb devices that were either added or removed. */
@@ -1049,13 +1357,29 @@ declare namespace gapi.client {
1049
1357
  }
1050
1358
  interface GoogleChromeManagementV1ThunderboltInfo {
1051
1359
  /** Security level of the Thunderbolt bus. */
1052
- securityLevel?: string;
1360
+ securityLevel?:
1361
+ | 'THUNDERBOLT_SECURITY_LEVEL_UNSPECIFIED'
1362
+ | 'THUNDERBOLT_SECURITY_NONE_LEVEL'
1363
+ | 'THUNDERBOLT_SECURITY_USER_LEVEL'
1364
+ | 'THUNDERBOLT_SECURITY_SECURE_LEVEL'
1365
+ | 'THUNDERBOLT_SECURITY_DP_ONLY_LEVEL'
1366
+ | 'THUNDERBOLT_SECURITY_USB_ONLY_LEVEL'
1367
+ | 'THUNDERBOLT_SECURITY_NO_PCIE_LEVEL';
1053
1368
  }
1054
1369
  interface GoogleChromeManagementV1TotalMemoryEncryptionInfo {
1055
1370
  /** Memory encryption algorithm. */
1056
- encryptionAlgorithm?: string;
1371
+ encryptionAlgorithm?:
1372
+ | 'MEMORY_ENCRYPTION_ALGORITHM_UNSPECIFIED'
1373
+ | 'MEMORY_ENCRYPTION_ALGORITHM_UNKNOWN'
1374
+ | 'MEMORY_ENCRYPTION_ALGORITHM_AES_XTS_128'
1375
+ | 'MEMORY_ENCRYPTION_ALGORITHM_AES_XTS_256';
1057
1376
  /** The state of memory encryption on the device. */
1058
- encryptionState?: string;
1377
+ encryptionState?:
1378
+ | 'MEMORY_ENCRYPTION_STATE_UNSPECIFIED'
1379
+ | 'MEMORY_ENCRYPTION_STATE_UNKNOWN'
1380
+ | 'MEMORY_ENCRYPTION_STATE_DISABLED'
1381
+ | 'MEMORY_ENCRYPTION_STATE_TME'
1382
+ | 'MEMORY_ENCRYPTION_STATE_MKTME';
1059
1383
  /** The length of the encryption keys. */
1060
1384
  keyLength?: string;
1061
1385
  /** The maximum number of keys that can be used for encryption. */
@@ -1115,9 +1439,12 @@ declare namespace gapi.client {
1115
1439
  /** Output only. Latest rotation timestamp of the public key rotation. */
1116
1440
  keyRotationTime?: string;
1117
1441
  /** Output only. Trust level of the public key. */
1118
- keyTrustLevel?: string;
1442
+ keyTrustLevel?:
1443
+ | 'KEY_TRUST_LEVEL_UNSPECIFIED'
1444
+ | 'CHROME_BROWSER_HW_KEY'
1445
+ | 'CHROME_BROWSER_OS_KEY';
1119
1446
  /** Output only. Type of the public key. */
1120
- keyType?: string;
1447
+ keyType?: 'KEY_TYPE_UNSPECIFIED' | 'RSA_KEY' | 'EC_KEY';
1121
1448
  /** Output only. Value of the public key. */
1122
1449
  publicKey?: string;
1123
1450
  }
@@ -1145,7 +1472,10 @@ declare namespace gapi.client {
1145
1472
  /** Output only. The signature of `signature_algorithm`, generated using the client's private key using `signature_algorithm`. This field is only present after the `SignData` operation has finished. */
1146
1473
  signature?: string;
1147
1474
  /** Output only. The signature algorithm that the client and backend components use when processing `sign_data`. If the `profile_type` is a `GenericProfile`, this field will only be present after the `SignData` operation was initiated. If the `profile_type` is a `ScepProfile`, the field will always be present. */
1148
- signatureAlgorithm?: string;
1475
+ signatureAlgorithm?:
1476
+ | 'SIGNATURE_ALGORITHM_UNSPECIFIED'
1477
+ | 'SIGNATURE_ALGORITHM_RSA_PKCS1_V1_5_SHA256'
1478
+ | 'SIGNATURE_ALGORITHM_ECDSA_SHA256';
1149
1479
  /** Output only. The data that the client was asked to sign. This field is only present after the `SignData` operation has been initiated. */
1150
1480
  signData?: string;
1151
1481
  /** Output only. Server-generated timestamp of when the certificate provisioning process has been created. */
@@ -1153,9 +1483,22 @@ declare namespace gapi.client {
1153
1483
  /** Output only. The public key for which a certificate should be provisioned. Represented as a DER-encoded X.509 SubjectPublicKeyInfo. */
1154
1484
  subjectPublicKeyInfo?: string;
1155
1485
  }
1486
+ interface GoogleChromeManagementVersionsV1CheckEnablementStatusResponse {
1487
+ /** The state of the insights feature. */
1488
+ insightsState?:
1489
+ | 'INSIGHTS_ENABLEMENT_STATE_UNSPECIFIED'
1490
+ | 'INSIGHTS_ENABLED'
1491
+ | 'INSIGHTS_DISABLED';
1492
+ }
1156
1493
  interface GoogleChromeManagementVersionsV1ChromeBrowserProfile {
1157
1494
  /** Output only. The specific affiliation state of the profile. */
1158
- affiliationState?: string;
1495
+ affiliationState?:
1496
+ | 'AFFILIATION_STATE_UNSPECIFIED'
1497
+ | 'UNAFFILIATED_GENERIC'
1498
+ | 'PROFILE_ONLY'
1499
+ | 'UNAFFILIATED_LOCAL_MACHINE'
1500
+ | 'UNAFFILIATED_CLOUD_MACHINE'
1501
+ | 'AFFILIATED_CLOUD_MANAGED';
1159
1502
  /** Optional. Location of the profile annotated by the admin. */
1160
1503
  annotatedLocation?: string;
1161
1504
  /** Optional. User of the profile annotated by the admin. */
@@ -1177,7 +1520,10 @@ declare namespace gapi.client {
1177
1520
  /** Output only. Timestamp of the first enrollment of the profile. */
1178
1521
  firstEnrollmentTime?: string;
1179
1522
  /** Output only. Identify provider of the profile. */
1180
- identityProvider?: string;
1523
+ identityProvider?:
1524
+ | 'IDENTITY_PROVIDER_UNSPECIFIED'
1525
+ | 'GOOGLE_IDENTITY_PROVIDER'
1526
+ | 'EXTERNAL_IDENTITY_PROVIDER';
1181
1527
  /** Output only. Timestamp of the latest activity by the profile. */
1182
1528
  lastActivityTime?: string;
1183
1529
  /** Output only. Timestamp of the latest policy fetch by the profile. */
@@ -1213,7 +1559,11 @@ declare namespace gapi.client {
1213
1559
  /** Output only. Result of the remote command. */
1214
1560
  commandResult?: GoogleChromeManagementVersionsV1ChromeBrowserProfileCommandCommandResult;
1215
1561
  /** Output only. State of the remote command. */
1216
- commandState?: string;
1562
+ commandState?:
1563
+ | 'COMMAND_STATE_UNSPECIFIED'
1564
+ | 'PENDING'
1565
+ | 'EXPIRED'
1566
+ | 'EXECUTED_BY_CLIENT';
1217
1567
  /** Required. Type of the remote command. The only supported command_type is "clearBrowsingData". */
1218
1568
  commandType?: string;
1219
1569
  /** Output only. Timestamp of the issurance of the remote command. */
@@ -1231,7 +1581,11 @@ declare namespace gapi.client {
1231
1581
  /** Output only. Result code that indicates the type of error or success of the command. */
1232
1582
  resultCode?: string;
1233
1583
  /** Output only. Result type of the remote command. */
1234
- resultType?: string;
1584
+ resultType?:
1585
+ | 'COMMAND_RESULT_TYPE_UNSPECIFIED'
1586
+ | 'IGNORED'
1587
+ | 'FAILURE'
1588
+ | 'SUCCESS';
1235
1589
  }
1236
1590
  interface GoogleChromeManagementVersionsV1ChromeOsDevice {
1237
1591
  /** 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. */
@@ -1252,16 +1606,132 @@ declare namespace gapi.client {
1252
1606
  callerInstanceId?: string;
1253
1607
  }
1254
1608
  interface GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessResponse {}
1609
+ interface GoogleChromeManagementVersionsV1ConnectorConfig {
1610
+ /** Required. The details of the connector config. */
1611
+ details?: GoogleChromeManagementVersionsV1ConnectorConfigDetails;
1612
+ /** Required. The display name of the config. */
1613
+ displayName?: string;
1614
+ /** Identifier. Format: customers/{customer}/connectorConfigs/{connector_config} */
1615
+ name?: string;
1616
+ /** Output only. The status of the connector config. */
1617
+ status?: GoogleChromeManagementVersionsV1ConnectorConfigStatus;
1618
+ /** Required. The type of the connector. */
1619
+ type?:
1620
+ | 'CONNECTOR_TYPE_UNSPECIFIED'
1621
+ | 'REPORTING'
1622
+ | 'DEVICE_TRUST'
1623
+ | 'XDR'
1624
+ | 'IDENTITY_BASED_ENROLLMENT'
1625
+ | 'CERTIFICATE_AUTHORITY'
1626
+ | 'ROOT_STORE'
1627
+ | 'CONTENT_ANALYSIS';
1628
+ }
1629
+ interface GoogleChromeManagementVersionsV1ConnectorConfigDetails {
1630
+ /** CrowdStrike connector config. */
1631
+ crowdStrikeConfig?: GoogleChromeManagementVersionsV1CrowdStrikeConfig;
1632
+ /** CrowdStrike Falcon Next Gen connector config. */
1633
+ crowdStrikeFalconNextGenConfig?: GoogleChromeManagementVersionsV1CrowdStrikeFalconNextGenConfig;
1634
+ /** CrowdStrike XDR connector config. */
1635
+ crowdStrikeXdrConfig?: GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig;
1636
+ /** Device trust connector config. */
1637
+ deviceTrustConfig?: GoogleChromeManagementVersionsV1DeviceTrustConfig;
1638
+ /** Google SecOps connector config. */
1639
+ googleSecOpsConfig?: GoogleChromeManagementVersionsV1GoogleSecOpsConfig;
1640
+ /** MIP label connector config. */
1641
+ mipLabelConfig?: GoogleChromeManagementVersionsV1MipLabelConfig;
1642
+ /** Palo Alto Networks connector config. */
1643
+ paloAltoNetworksConfig?: GoogleChromeManagementVersionsV1PaloAltoNetworksConfig;
1644
+ /** Pub/Sub connector config. */
1645
+ pubSubConfig?: GoogleChromeManagementVersionsV1PubSubConfig;
1646
+ /** Pub/Sub XDR connector config. */
1647
+ pubSubXdrConfig?: GoogleChromeManagementVersionsV1PubSubXdrConfig;
1648
+ /** Splunk connector config. */
1649
+ splunkConfig?: GoogleChromeManagementVersionsV1SplunkConfig;
1650
+ }
1651
+ interface GoogleChromeManagementVersionsV1ConnectorConfigStatus {
1652
+ /** Output only. Field recording time of the earliest failure since the last success event. This field is only set when the state is `DISABLED_BY_FAILURES`. */
1653
+ failureStartTime?: string;
1654
+ /** Output only. The state of the connector config. The connector state is disabled if the connector has not successfully sent an event in the last 24 hours. */
1655
+ state?: 'CONFIG_STATE_UNKNOWN' | 'ENABLED' | 'DISABLED_BY_FAILURES';
1656
+ /** Output only. Field recording time of most recent modification of the status. For `ENABLED`, this is the time the status was changed to `ENABLED`. For `DISABLED_BY_FAILURES`, this is the time of the most recent failed attempt to send an event to this config. */
1657
+ updateTime?: string;
1658
+ }
1659
+ interface GoogleChromeManagementVersionsV1CrowdStrikeConfig {
1660
+ /** Required. Input only. API key to use on the ingestion API. */
1661
+ apiKey?: string;
1662
+ /** Required. Host to identify the customer specific server to receive the events. */
1663
+ host?: string;
1664
+ /** Required. The reporting settings for the CrowdStrike config. */
1665
+ reportingSettings?: GoogleChromeManagementVersionsV1ReportingSettings;
1666
+ }
1667
+ interface GoogleChromeManagementVersionsV1CrowdStrikeFalconNextGenConfig {
1668
+ /** Required. Input only. API key to use on the ingestion API. */
1669
+ apiKey?: string;
1670
+ /** Required. Host to identify the customer specific server to receive the events. */
1671
+ host?: string;
1672
+ /** Required. The reporting settings for the CrowdStrike Falcon Next Gen config. */
1673
+ reportingSettings?: GoogleChromeManagementVersionsV1ReportingSettings;
1674
+ }
1675
+ interface GoogleChromeManagementVersionsV1CrowdStrikeXdrConfig {
1676
+ /** Required. Input only. API key to use on the ingestion API. */
1677
+ apiKey?: string;
1678
+ /** Required. Host to identify the customer specific server to receive the events. */
1679
+ host?: string;
1680
+ /** Required. The XDR settings for the CrowdStrike XDR config. */
1681
+ xdrSettings?: GoogleChromeManagementVersionsV1XdrSettings;
1682
+ }
1255
1683
  interface GoogleChromeManagementVersionsV1DeviceInfo {
1256
1684
  /** Output only. Device ID that identifies the affiliated device on which the profile exists. If the device type is CHROME_BROWSER, then this represents a unique Directory API ID of the device that can be used in Admin SDK Browsers API. */
1257
1685
  affiliatedDeviceId?: string;
1258
1686
  /** Output only. Type of the device on which the profile exists. */
1259
- deviceType?: string;
1687
+ deviceType?: 'DEVICE_TYPE_UNSPECIFIED' | 'CHROME_BROWSER';
1260
1688
  /** Output only. Hostname of the device on which the profile exists. */
1261
1689
  hostname?: string;
1262
1690
  /** Output only. Machine name of the device on which the profile exists. On platforms which do not report the machine name (currently iOS and Android) this is instead set to the browser's device_id - but note that this is a different device_id than the |affiliated_device_id|. */
1263
1691
  machine?: string;
1264
1692
  }
1693
+ interface GoogleChromeManagementVersionsV1DeviceTrustConfig {
1694
+ /** Required. The scope at which this configuration will be applied. Note that this only applies to Chrome browser, as in ChromeOS it's always applied. */
1695
+ scope?:
1696
+ | 'BROWSER_ENFORCEMENT_SCOPE_UNSPECIFIED'
1697
+ | 'BROWSERS_ONLY'
1698
+ | 'PROFILES_ONLY'
1699
+ | 'BROWSERS_AND_PROFILES';
1700
+ /** Required. A list of email addresses of the service accounts which are allowed to call the Verified Access API with full access. */
1701
+ serviceAccounts?: string[];
1702
+ /** Optional. The service provider for the device trust connector. */
1703
+ serviceProvider?:
1704
+ | 'SERVICE_PROVIDER_UNSPECIFIED'
1705
+ | 'UNIVERSAL_DEVICE_TRUST'
1706
+ | 'OKTA'
1707
+ | 'PING_IDENTITY'
1708
+ | 'ONELOGIN'
1709
+ | 'DUO'
1710
+ | 'ZSCALER'
1711
+ | 'OMNISSA'
1712
+ | 'JUMPCLOUD';
1713
+ /** Required. List of URLs allowed to be part of the attestation flow to get the set of signals from the machine. URLs must have HTTPS scheme, e.g. "https://example.com". Wildcards, *, are allowed. For detailed information on valid URL patterns, please see https://cloud.google.com/docs/chrome-enterprise/policies/url-patterns. */
1714
+ urlMatchers?: string[];
1715
+ }
1716
+ interface GoogleChromeManagementVersionsV1DisableInsightsRequest {}
1717
+ interface GoogleChromeManagementVersionsV1DisableInsightsResponse {
1718
+ /** The state of the insights feature. */
1719
+ insightsState?:
1720
+ | 'INSIGHTS_ENABLEMENT_STATE_UNSPECIFIED'
1721
+ | 'INSIGHTS_ENABLED'
1722
+ | 'INSIGHTS_DISABLED';
1723
+ }
1724
+ interface GoogleChromeManagementVersionsV1EnableInsightsRequest {
1725
+ /** Optional. The Organizational Units to set up required connectors for. Organizational Units are provided as paths relative to root. If this field is not set, connectors will be set up at root OU (as if it were set to ["/"]). Example: ["/corp/sales", "/eng"] */
1726
+ targetOus?: string[];
1727
+ }
1728
+ interface GoogleChromeManagementVersionsV1EnableInsightsResponse {
1729
+ /** The state of the insights feature. */
1730
+ insightsState?:
1731
+ | 'INSIGHTS_ENABLEMENT_STATE_UNSPECIFIED'
1732
+ | 'INSIGHTS_ENABLED'
1733
+ | 'INSIGHTS_DISABLED';
1734
+ }
1265
1735
  interface GoogleChromeManagementVersionsV1GenericCaConnection {
1266
1736
  /** Output only. A string that references the administrator-provided configuration for the certification authority service. */
1267
1737
  caConnectionAdapterConfigReference?: string;
@@ -1270,6 +1740,14 @@ declare namespace gapi.client {
1270
1740
  /** Output only. A string that references the administrator-provided configuration for the certificate provisioning profile. */
1271
1741
  profileAdapterConfigReference?: string;
1272
1742
  }
1743
+ interface GoogleChromeManagementVersionsV1GoogleSecOpsConfig {
1744
+ /** Required. Input only. API key to use on the ingestion API. */
1745
+ apiKey?: string;
1746
+ /** Required. Host of ingestion API endpoint. Allows customer to upload events to servers in specific geographical regions. Existing configs that don't have this setting default to US. */
1747
+ host?: string;
1748
+ /** Required. The reporting settings for the Google SecOps config. */
1749
+ reportingSettings?: GoogleChromeManagementVersionsV1ReportingSettings;
1750
+ }
1273
1751
  interface GoogleChromeManagementVersionsV1ListChromeBrowserProfileCommandsResponse {
1274
1752
  /** The list of commands returned. */
1275
1753
  chromeBrowserProfileCommands?: GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand[];
@@ -1286,6 +1764,18 @@ declare namespace gapi.client {
1286
1764
  /** Total size represents an estimated number of resources returned. Not guaranteed to be accurate above 10k profiles. */
1287
1765
  totalSize?: string;
1288
1766
  }
1767
+ interface GoogleChromeManagementVersionsV1ListConnectorConfigsResponse {
1768
+ /** The list of connector configs returned. */
1769
+ connectorConfigs?: GoogleChromeManagementVersionsV1ConnectorConfig[];
1770
+ /** The page token used to retrieve the next page of the listing request. If the token is empty, there are no more pages to retrieve. */
1771
+ nextPageToken?: string;
1772
+ }
1773
+ interface GoogleChromeManagementVersionsV1MipLabelConfig {
1774
+ /** Optional. Domain can be used optionally for the corner case where one Dasher customer ID maps to multiple Microsoft tenant ID. Each domain can be verified with at most one Microsoft tenant. */
1775
+ domains?: string[];
1776
+ /** Required. Microsoft tenant ID. */
1777
+ microsoftTenantId?: string;
1778
+ }
1289
1779
  interface GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest {
1290
1780
  /** Required. Destination organizational unit where the third party chrome profile user will be moved to. */
1291
1781
  destinationOrgUnit?: string;
@@ -1294,6 +1784,26 @@ declare namespace gapi.client {
1294
1784
  /** Output only. The moved third party profile user. */
1295
1785
  thirdPartyProfileUser?: GoogleChromeManagementVersionsV1ThirdPartyProfileUser;
1296
1786
  }
1787
+ interface GoogleChromeManagementVersionsV1PaloAltoNetworksConfig {
1788
+ /** Required. Input only. API key to use on the ingestion API. */
1789
+ apiKey?: string;
1790
+ /** Required. Host to identify the customer specific server to receive the events. */
1791
+ host?: string;
1792
+ /** Required. The reporting settings for the Palo Alto Networks config. */
1793
+ reportingSettings?: GoogleChromeManagementVersionsV1ReportingSettings;
1794
+ }
1795
+ interface GoogleChromeManagementVersionsV1PubSubConfig {
1796
+ /** Required. The reporting settings for the Pub/Sub config. */
1797
+ reportingSettings?: GoogleChromeManagementVersionsV1ReportingSettings;
1798
+ /** Required. The full path to the topic to send the event to. */
1799
+ topicFullPath?: string;
1800
+ }
1801
+ interface GoogleChromeManagementVersionsV1PubSubXdrConfig {
1802
+ /** Required. The full path to the topic to send the event to. */
1803
+ topicFullPath?: string;
1804
+ /** Required. The XDR settings for the Pub/Sub XDR config. */
1805
+ xdrSettings?: GoogleChromeManagementVersionsV1XdrSettings;
1806
+ }
1297
1807
  interface GoogleChromeManagementVersionsV1ReportingData {
1298
1808
  /** Output only. Executable path of the installed Chrome browser. A valid path is included only in affiliated profiles. */
1299
1809
  browserExecutablePath?: string;
@@ -1310,7 +1820,13 @@ declare namespace gapi.client {
1310
1820
  }
1311
1821
  interface GoogleChromeManagementVersionsV1ReportingDataConflictingPolicyData {
1312
1822
  /** Output only. Source of the policy. */
1313
- source?: string;
1823
+ source?:
1824
+ | 'POLICY_SOURCE_UNSPECIFIED'
1825
+ | 'MACHINE_PLATFORM'
1826
+ | 'USER_PLATFORM'
1827
+ | 'MACHINE_LEVEL_USER_CLOUD'
1828
+ | 'USER_CLOUD'
1829
+ | 'MACHINE_MERGED';
1314
1830
  }
1315
1831
  interface GoogleChromeManagementVersionsV1ReportingDataExtensionData {
1316
1832
  /** Output only. Description of the extension. */
@@ -1318,11 +1834,23 @@ declare namespace gapi.client {
1318
1834
  /** Output only. ID of the extension. */
1319
1835
  extensionId?: string;
1320
1836
  /** Output only. Type of the extension. */
1321
- extensionType?: string;
1837
+ extensionType?:
1838
+ | 'EXTENSION_TYPE_UNSPECIFIED'
1839
+ | 'EXTENSION'
1840
+ | 'APP'
1841
+ | 'THEME'
1842
+ | 'HOSTED_APP';
1322
1843
  /** Output only. The URL of the homepage of the extension. */
1323
1844
  homepageUri?: string;
1324
1845
  /** Output only. Installation type of the extension. */
1325
- installationType?: string;
1846
+ installationType?:
1847
+ | 'INSTALLATION_TYPE_UNSPECIFIED'
1848
+ | 'MULTIPLE'
1849
+ | 'NORMAL'
1850
+ | 'ADMIN'
1851
+ | 'DEVELOPMENT'
1852
+ | 'SIDELOAD'
1853
+ | 'OTHER';
1326
1854
  /** Output only. Represents whether the user disabled the extension. */
1327
1855
  isDisabled?: boolean;
1328
1856
  /** Output only. Represents whether the extension is from the webstore. */
@@ -1352,10 +1880,50 @@ declare namespace gapi.client {
1352
1880
  /** Output only. Name of the policy. */
1353
1881
  name?: string;
1354
1882
  /** Output only. Source of the policy. */
1355
- source?: string;
1883
+ source?:
1884
+ | 'POLICY_SOURCE_UNSPECIFIED'
1885
+ | 'MACHINE_PLATFORM'
1886
+ | 'USER_PLATFORM'
1887
+ | 'MACHINE_LEVEL_USER_CLOUD'
1888
+ | 'USER_CLOUD'
1889
+ | 'MACHINE_MERGED';
1356
1890
  /** Output only. Value of the policy. */
1357
1891
  value?: string;
1358
1892
  }
1893
+ interface GoogleChromeManagementVersionsV1ReportingSettings {
1894
+ /** Optional. The list of user and browser events that are enabled for this connector. An empty list disables all default events, and using `ALL_DEFAULT_EVENTS` will enable all default events. */
1895
+ enabledDefaultEvents?:
1896
+ | 'DEFAULT_EVENT_UNSPECIFIED'
1897
+ | 'ALL_DEFAULT_EVENTS'
1898
+ | 'BROWSER_CRASH_EVENT'
1899
+ | 'BROWSER_EXTENSION_INSTALL_EVENT'
1900
+ | 'CONTENT_TRANSFER_EVENT'
1901
+ | 'CONTENT_UNSCANNED_EVENT'
1902
+ | 'DATA_ACCESS_CONTROL_EVENT'
1903
+ | 'MALWARE_TRANSFER_EVENT'
1904
+ | 'PASSWORD_CHANGED_EVENT'
1905
+ | 'PASSWORD_REUSE_EVENT'
1906
+ | 'SENSITIVE_DATA_TRANSFER_EVENT'
1907
+ | 'SUSPICIOUS_URL_EVENT'
1908
+ | 'UNSAFE_SITE_VISIT_EVENT'
1909
+ | 'URL_FILTERING_INTERSTITIAL_EVENT'[];
1910
+ /** Optional. The list of device events that are enabled for this config. An empty list disables all device events, and using `ALL_DEVICE_EVENTS` will enable all device events. */
1911
+ enabledDeviceEvents?:
1912
+ | 'DEVICE_EVENT_UNSPECIFIED'
1913
+ | 'ALL_DEVICE_EVENTS'
1914
+ | 'ADD_REMOVE_USER_EVENT'
1915
+ | 'LOGIN_LOGOUT_EVENT'
1916
+ | 'CRD_EVENT'
1917
+ | 'PERIPHERAL_EVENT'[];
1918
+ /** Optional. The list of opt-in events that are enabled for this config. An empty list disables all opt-in events, and using `ALL_OPT_IN_EVENTS` will enable all opt-in events. */
1919
+ enabledOptInEvents?:
1920
+ | 'OPT_IN_EVENT_UNSPECIFIED'
1921
+ | 'ALL_OPT_IN_EVENTS'
1922
+ | 'LOGIN_EVENT'
1923
+ | 'PASSWORD_BREACH_EVENT'
1924
+ | 'URL_NAVIGATION_EVENT'
1925
+ | 'EXTENSION_TELEMETRY_EVENT'[];
1926
+ }
1359
1927
  interface GoogleChromeManagementVersionsV1ScepCaConnection {
1360
1928
  /** Output only. A string that references the administrator-provided configuration for the certification authority service. */
1361
1929
  caConnectionAdapterConfigReference?: string;
@@ -1366,7 +1934,10 @@ declare namespace gapi.client {
1366
1934
  /** Output only. The country of the subject. */
1367
1935
  country?: string;
1368
1936
  /** Output only. The allowed key usages for certificate's key. */
1369
- keyUsages?: string[];
1937
+ keyUsages?:
1938
+ | 'KEY_USAGE_UNSPECIFIED'
1939
+ | 'KEY_USAGE_SIGNING'
1940
+ | 'KEY_USAGE_KEY_ENCIPHERMENT'[];
1370
1941
  /** Output only. The locality of the subject. */
1371
1942
  locality?: string;
1372
1943
  /** Output only. The name of the organization the subject belongs to. */
@@ -1391,7 +1962,10 @@ declare namespace gapi.client {
1391
1962
  }
1392
1963
  interface GoogleChromeManagementVersionsV1SignDataRequest {
1393
1964
  /** Required. The signature algorithm that the adapter expects the client and backend components to use when processing `sign_data`. */
1394
- signatureAlgorithm?: string;
1965
+ signatureAlgorithm?:
1966
+ | 'SIGNATURE_ALGORITHM_UNSPECIFIED'
1967
+ | 'SIGNATURE_ALGORITHM_RSA_PKCS1_V1_5_SHA256'
1968
+ | 'SIGNATURE_ALGORITHM_ECDSA_SHA256';
1395
1969
  /** Required. The data that the client was asked to sign. */
1396
1970
  signData?: string;
1397
1971
  }
@@ -1399,9 +1973,28 @@ declare namespace gapi.client {
1399
1973
  /** Output only. The certificate provisioning process. The signature generated by the client will be available in the `signature` field of `CertificateProvisioningProcess`. */
1400
1974
  certificateProvisioningProcess?: GoogleChromeManagementVersionsV1CertificateProvisioningProcess;
1401
1975
  }
1976
+ interface GoogleChromeManagementVersionsV1SplunkConfig {
1977
+ /** Required. Input only. The data input's HTTP Event Collector token to use as an Authorization header. */
1978
+ hecToken?: string;
1979
+ /** Required. Host to identify the customer specific server to receive the events. */
1980
+ host?: string;
1981
+ /** Optional. The port number to use. If not set, the default Splunk port is used. */
1982
+ portNumber?: number;
1983
+ /** Required. The reporting settings for the Splunk config. */
1984
+ reportingSettings?: GoogleChromeManagementVersionsV1ReportingSettings;
1985
+ /** Optional. Optional source name to override the default one set in the Splunk admin console. */
1986
+ source?: string;
1987
+ /** Optional. Whether to use an unsecure HTTP scheme. Defaults to false (HTTPS). */
1988
+ unsecureScheme?: boolean;
1989
+ }
1402
1990
  interface GoogleChromeManagementVersionsV1SubjectAltName {
1403
1991
  /** Output only. The type of the SubjectAltName extension. */
1404
- type?: string;
1992
+ type?:
1993
+ | 'SUBJECT_ALT_NAME_TYPE_UNSPECIFIED'
1994
+ | 'RFC822_NAME'
1995
+ | 'DNS_NAME'
1996
+ | 'OTHER_NAME_USER_PRINCIPAL_NAME'
1997
+ | 'UNIFORM_RESOURCE_IDENTIFIER';
1405
1998
  /** Output only. The value of the subject alternative name with respect to the `type`. */
1406
1999
  value?: string;
1407
2000
  }
@@ -1416,6 +2009,10 @@ declare namespace gapi.client {
1416
2009
  certificatePem?: string;
1417
2010
  }
1418
2011
  interface GoogleChromeManagementVersionsV1UploadCertificateResponse {}
2012
+ interface GoogleChromeManagementVersionsV1XdrSettings {
2013
+ /** Required. Whether to enable all XDR events. */
2014
+ enableAllXdrEvents?: boolean;
2015
+ }
1419
2016
  interface GoogleLongrunningCancelOperationRequest {}
1420
2017
  interface GoogleLongrunningListOperationsResponse {
1421
2018
  /** The standard List next-page token. */
@@ -1442,7 +2039,7 @@ declare namespace gapi.client {
1442
2039
  /** The status code, which should be an enum value of google.rpc.Code. */
1443
2040
  code?: number;
1444
2041
  /** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
1445
- details?: Array<{[P in string]: any}>;
2042
+ details?: {[P in string]: any}[];
1446
2043
  /** A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client. */
1447
2044
  message?: string;
1448
2045
  }
@@ -1458,11 +2055,11 @@ declare namespace gapi.client {
1458
2055
  /** Get a specific app for a customer by its resource name. */
1459
2056
  get(request?: {
1460
2057
  /** V1 error format. */
1461
- '$.xgafv'?: string;
2058
+ '$.xgafv'?: '1' | '2';
1462
2059
  /** OAuth access token. */
1463
2060
  access_token?: string;
1464
2061
  /** Data format for response. */
1465
- alt?: string;
2062
+ alt?: 'json' | 'media' | 'proto';
1466
2063
  /** JSONP */
1467
2064
  callback?: string;
1468
2065
  /** Selector specifying which fields to include in a partial response. */
@@ -1487,11 +2084,11 @@ declare namespace gapi.client {
1487
2084
  /** Get a specific app for a customer by its resource name. */
1488
2085
  get(request?: {
1489
2086
  /** V1 error format. */
1490
- '$.xgafv'?: string;
2087
+ '$.xgafv'?: '1' | '2';
1491
2088
  /** OAuth access token. */
1492
2089
  access_token?: string;
1493
2090
  /** Data format for response. */
1494
- alt?: string;
2091
+ alt?: 'json' | 'media' | 'proto';
1495
2092
  /** JSONP */
1496
2093
  callback?: string;
1497
2094
  /** Selector specifying which fields to include in a partial response. */
@@ -1516,11 +2113,11 @@ declare namespace gapi.client {
1516
2113
  /** Get a specific app for a customer by its resource name. */
1517
2114
  get(request?: {
1518
2115
  /** V1 error format. */
1519
- '$.xgafv'?: string;
2116
+ '$.xgafv'?: '1' | '2';
1520
2117
  /** OAuth access token. */
1521
2118
  access_token?: string;
1522
2119
  /** Data format for response. */
1523
- alt?: string;
2120
+ alt?: 'json' | 'media' | 'proto';
1524
2121
  /** JSONP */
1525
2122
  callback?: string;
1526
2123
  /** Selector specifying which fields to include in a partial response. */
@@ -1545,11 +2142,11 @@ declare namespace gapi.client {
1545
2142
  /** Generate summary of app installation requests. */
1546
2143
  countChromeAppRequests(request?: {
1547
2144
  /** V1 error format. */
1548
- '$.xgafv'?: string;
2145
+ '$.xgafv'?: '1' | '2';
1549
2146
  /** OAuth access token. */
1550
2147
  access_token?: string;
1551
2148
  /** Data format for response. */
1552
- alt?: string;
2149
+ alt?: 'json' | 'media' | 'proto';
1553
2150
  /** JSONP */
1554
2151
  callback?: string;
1555
2152
  /** Required. Customer id or "my_customer" to use the customer associated to the account making the request. */
@@ -1580,11 +2177,11 @@ declare namespace gapi.client {
1580
2177
  /** Get a list of devices that have requested to install an extension. */
1581
2178
  fetchDevicesRequestingExtension(request?: {
1582
2179
  /** V1 error format. */
1583
- '$.xgafv'?: string;
2180
+ '$.xgafv'?: '1' | '2';
1584
2181
  /** OAuth access token. */
1585
2182
  access_token?: string;
1586
2183
  /** Data format for response. */
1587
- alt?: string;
2184
+ alt?: 'json' | 'media' | 'proto';
1588
2185
  /** JSONP */
1589
2186
  callback?: string;
1590
2187
  /** Required. The customer ID or "my_customer" prefixed with "customers/". */
@@ -1615,11 +2212,11 @@ declare namespace gapi.client {
1615
2212
  /** Get a list of users that have requested to install an extension. */
1616
2213
  fetchUsersRequestingExtension(request?: {
1617
2214
  /** V1 error format. */
1618
- '$.xgafv'?: string;
2215
+ '$.xgafv'?: '1' | '2';
1619
2216
  /** OAuth access token. */
1620
2217
  access_token?: string;
1621
2218
  /** Data format for response. */
1622
- alt?: string;
2219
+ alt?: 'json' | 'media' | 'proto';
1623
2220
  /** JSONP */
1624
2221
  callback?: string;
1625
2222
  /** Required. The customer ID or "my_customer" prefixed with "customers/". */
@@ -1655,11 +2252,11 @@ declare namespace gapi.client {
1655
2252
  /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
1656
2253
  get(request?: {
1657
2254
  /** V1 error format. */
1658
- '$.xgafv'?: string;
2255
+ '$.xgafv'?: '1' | '2';
1659
2256
  /** OAuth access token. */
1660
2257
  access_token?: string;
1661
2258
  /** Data format for response. */
1662
- alt?: string;
2259
+ alt?: 'json' | 'media' | 'proto';
1663
2260
  /** JSONP */
1664
2261
  callback?: string;
1665
2262
  /** Selector specifying which fields to include in a partial response. */
@@ -1684,11 +2281,11 @@ declare namespace gapi.client {
1684
2281
  /** Claims a certificate provisioning process. For each certificate provisioning process, this operation can succeed only for one `caller_instance_id`. */
1685
2282
  claim(request: {
1686
2283
  /** V1 error format. */
1687
- '$.xgafv'?: string;
2284
+ '$.xgafv'?: '1' | '2';
1688
2285
  /** OAuth access token. */
1689
2286
  access_token?: string;
1690
2287
  /** Data format for response. */
1691
- alt?: string;
2288
+ alt?: 'json' | 'media' | 'proto';
1692
2289
  /** JSONP */
1693
2290
  callback?: string;
1694
2291
  /** Selector specifying which fields to include in a partial response. */
@@ -1713,11 +2310,11 @@ declare namespace gapi.client {
1713
2310
  claim(
1714
2311
  request: {
1715
2312
  /** V1 error format. */
1716
- '$.xgafv'?: string;
2313
+ '$.xgafv'?: '1' | '2';
1717
2314
  /** OAuth access token. */
1718
2315
  access_token?: string;
1719
2316
  /** Data format for response. */
1720
- alt?: string;
2317
+ alt?: 'json' | 'media' | 'proto';
1721
2318
  /** JSONP */
1722
2319
  callback?: string;
1723
2320
  /** Selector specifying which fields to include in a partial response. */
@@ -1742,11 +2339,11 @@ declare namespace gapi.client {
1742
2339
  /** Retrieves a certificate provisioning process. */
1743
2340
  get(request?: {
1744
2341
  /** V1 error format. */
1745
- '$.xgafv'?: string;
2342
+ '$.xgafv'?: '1' | '2';
1746
2343
  /** OAuth access token. */
1747
2344
  access_token?: string;
1748
2345
  /** Data format for response. */
1749
- alt?: string;
2346
+ alt?: 'json' | 'media' | 'proto';
1750
2347
  /** JSONP */
1751
2348
  callback?: string;
1752
2349
  /** Selector specifying which fields to include in a partial response. */
@@ -1769,11 +2366,11 @@ declare namespace gapi.client {
1769
2366
  /** Marks a certificate provisioning process as failed. */
1770
2367
  setFailure(request: {
1771
2368
  /** V1 error format. */
1772
- '$.xgafv'?: string;
2369
+ '$.xgafv'?: '1' | '2';
1773
2370
  /** OAuth access token. */
1774
2371
  access_token?: string;
1775
2372
  /** Data format for response. */
1776
- alt?: string;
2373
+ alt?: 'json' | 'media' | 'proto';
1777
2374
  /** JSONP */
1778
2375
  callback?: string;
1779
2376
  /** Selector specifying which fields to include in a partial response. */
@@ -1798,11 +2395,11 @@ declare namespace gapi.client {
1798
2395
  setFailure(
1799
2396
  request: {
1800
2397
  /** V1 error format. */
1801
- '$.xgafv'?: string;
2398
+ '$.xgafv'?: '1' | '2';
1802
2399
  /** OAuth access token. */
1803
2400
  access_token?: string;
1804
2401
  /** Data format for response. */
1805
- alt?: string;
2402
+ alt?: 'json' | 'media' | 'proto';
1806
2403
  /** JSONP */
1807
2404
  callback?: string;
1808
2405
  /** Selector specifying which fields to include in a partial response. */
@@ -1827,11 +2424,11 @@ declare namespace gapi.client {
1827
2424
  /** Requests the client that initiated a certificate provisioning process to sign data. This should only be called after `ClaimCertificateProvisioningProcess` has been successfully executed. */
1828
2425
  signData(request: {
1829
2426
  /** V1 error format. */
1830
- '$.xgafv'?: string;
2427
+ '$.xgafv'?: '1' | '2';
1831
2428
  /** OAuth access token. */
1832
2429
  access_token?: string;
1833
2430
  /** Data format for response. */
1834
- alt?: string;
2431
+ alt?: 'json' | 'media' | 'proto';
1835
2432
  /** JSONP */
1836
2433
  callback?: string;
1837
2434
  /** Selector specifying which fields to include in a partial response. */
@@ -1856,11 +2453,11 @@ declare namespace gapi.client {
1856
2453
  signData(
1857
2454
  request: {
1858
2455
  /** V1 error format. */
1859
- '$.xgafv'?: string;
2456
+ '$.xgafv'?: '1' | '2';
1860
2457
  /** OAuth access token. */
1861
2458
  access_token?: string;
1862
2459
  /** Data format for response. */
1863
- alt?: string;
2460
+ alt?: 'json' | 'media' | 'proto';
1864
2461
  /** JSONP */
1865
2462
  callback?: string;
1866
2463
  /** Selector specifying which fields to include in a partial response. */
@@ -1885,11 +2482,11 @@ declare namespace gapi.client {
1885
2482
  /** Uploads a successfully issued certificate for a certificate provisioning process. */
1886
2483
  uploadCertificate(request: {
1887
2484
  /** V1 error format. */
1888
- '$.xgafv'?: string;
2485
+ '$.xgafv'?: '1' | '2';
1889
2486
  /** OAuth access token. */
1890
2487
  access_token?: string;
1891
2488
  /** Data format for response. */
1892
- alt?: string;
2489
+ alt?: 'json' | 'media' | 'proto';
1893
2490
  /** JSONP */
1894
2491
  callback?: string;
1895
2492
  /** Selector specifying which fields to include in a partial response. */
@@ -1914,11 +2511,11 @@ declare namespace gapi.client {
1914
2511
  uploadCertificate(
1915
2512
  request: {
1916
2513
  /** V1 error format. */
1917
- '$.xgafv'?: string;
2514
+ '$.xgafv'?: '1' | '2';
1918
2515
  /** OAuth access token. */
1919
2516
  access_token?: string;
1920
2517
  /** Data format for response. */
1921
- alt?: string;
2518
+ alt?: 'json' | 'media' | 'proto';
1922
2519
  /** JSONP */
1923
2520
  callback?: string;
1924
2521
  /** Selector specifying which fields to include in a partial response. */
@@ -1942,15 +2539,374 @@ declare namespace gapi.client {
1942
2539
  ): Request<{}>;
1943
2540
  operations: OperationsResource;
1944
2541
  }
2542
+ interface ConnectorConfigsResource {
2543
+ /** Creates a connector config. */
2544
+ create(request: {
2545
+ /** V1 error format. */
2546
+ '$.xgafv'?: '1' | '2';
2547
+ /** OAuth access token. */
2548
+ access_token?: string;
2549
+ /** Data format for response. */
2550
+ alt?: 'json' | 'media' | 'proto';
2551
+ /** JSONP */
2552
+ callback?: string;
2553
+ /** Optional. ID to use for the connector config, which becomes the final component of the connector config's resource name. If provided, the ID must be 1-63 characters long, and contain only lowercase letters, digits, and hyphens. It must start with a letter, and end with a letter or number. If not provided, the connector config will be assigned a random UUID. */
2554
+ connectorConfigId?: string;
2555
+ /** Selector specifying which fields to include in a partial response. */
2556
+ fields?: string;
2557
+ /** 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. */
2558
+ key?: string;
2559
+ /** OAuth 2.0 token for the current user. */
2560
+ oauth_token?: string;
2561
+ /** Required. Format: customers/{customer} */
2562
+ parent: string;
2563
+ /** Returns response with indentations and line breaks. */
2564
+ prettyPrint?: boolean;
2565
+ /** 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. */
2566
+ quotaUser?: string;
2567
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2568
+ upload_protocol?: string;
2569
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2570
+ uploadType?: string;
2571
+ /** Request body */
2572
+ resource: GoogleChromeManagementVersionsV1ConnectorConfig;
2573
+ }): Request<GoogleChromeManagementVersionsV1ConnectorConfig>;
2574
+ create(
2575
+ request: {
2576
+ /** V1 error format. */
2577
+ '$.xgafv'?: '1' | '2';
2578
+ /** OAuth access token. */
2579
+ access_token?: string;
2580
+ /** Data format for response. */
2581
+ alt?: 'json' | 'media' | 'proto';
2582
+ /** JSONP */
2583
+ callback?: string;
2584
+ /** Optional. ID to use for the connector config, which becomes the final component of the connector config's resource name. If provided, the ID must be 1-63 characters long, and contain only lowercase letters, digits, and hyphens. It must start with a letter, and end with a letter or number. If not provided, the connector config will be assigned a random UUID. */
2585
+ connectorConfigId?: string;
2586
+ /** Selector specifying which fields to include in a partial response. */
2587
+ fields?: string;
2588
+ /** 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. */
2589
+ key?: string;
2590
+ /** OAuth 2.0 token for the current user. */
2591
+ oauth_token?: string;
2592
+ /** Required. Format: customers/{customer} */
2593
+ parent: string;
2594
+ /** Returns response with indentations and line breaks. */
2595
+ prettyPrint?: boolean;
2596
+ /** 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. */
2597
+ quotaUser?: string;
2598
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2599
+ upload_protocol?: string;
2600
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2601
+ uploadType?: string;
2602
+ },
2603
+ body: GoogleChromeManagementVersionsV1ConnectorConfig,
2604
+ ): Request<GoogleChromeManagementVersionsV1ConnectorConfig>;
2605
+ /** Deletes a connector config. */
2606
+ delete(request?: {
2607
+ /** V1 error format. */
2608
+ '$.xgafv'?: '1' | '2';
2609
+ /** OAuth access token. */
2610
+ access_token?: string;
2611
+ /** Data format for response. */
2612
+ alt?: 'json' | 'media' | 'proto';
2613
+ /** JSONP */
2614
+ callback?: string;
2615
+ /** Selector specifying which fields to include in a partial response. */
2616
+ fields?: string;
2617
+ /** 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. */
2618
+ key?: string;
2619
+ /** Required. Format: customers/{customer}/connectorConfigs/{connector_config} */
2620
+ name: string;
2621
+ /** OAuth 2.0 token for the current user. */
2622
+ oauth_token?: string;
2623
+ /** Returns response with indentations and line breaks. */
2624
+ prettyPrint?: boolean;
2625
+ /** 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. */
2626
+ quotaUser?: string;
2627
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2628
+ upload_protocol?: string;
2629
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2630
+ uploadType?: string;
2631
+ }): Request<{}>;
2632
+ /** Gets a connector config with customer ID and config ID. */
2633
+ get(request?: {
2634
+ /** V1 error format. */
2635
+ '$.xgafv'?: '1' | '2';
2636
+ /** OAuth access token. */
2637
+ access_token?: string;
2638
+ /** Data format for response. */
2639
+ alt?: 'json' | 'media' | 'proto';
2640
+ /** JSONP */
2641
+ callback?: string;
2642
+ /** Selector specifying which fields to include in a partial response. */
2643
+ fields?: string;
2644
+ /** 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. */
2645
+ key?: string;
2646
+ /** Required. Format: customers/{customer}/connectorConfigs/{connector_config} */
2647
+ name: string;
2648
+ /** OAuth 2.0 token for the current user. */
2649
+ oauth_token?: string;
2650
+ /** Returns response with indentations and line breaks. */
2651
+ prettyPrint?: boolean;
2652
+ /** 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. */
2653
+ quotaUser?: string;
2654
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2655
+ upload_protocol?: string;
2656
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2657
+ uploadType?: string;
2658
+ }): Request<GoogleChromeManagementVersionsV1ConnectorConfig>;
2659
+ /** Lists connector configs of a customer. */
2660
+ list(request?: {
2661
+ /** V1 error format. */
2662
+ '$.xgafv'?: '1' | '2';
2663
+ /** OAuth access token. */
2664
+ access_token?: string;
2665
+ /** Data format for response. */
2666
+ alt?: 'json' | 'media' | 'proto';
2667
+ /** JSONP */
2668
+ callback?: string;
2669
+ /** Selector specifying which fields to include in a partial response. */
2670
+ fields?: string;
2671
+ /** 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. */
2672
+ key?: string;
2673
+ /** OAuth 2.0 token for the current user. */
2674
+ oauth_token?: string;
2675
+ /** Optional. The maximum number of connector configs to return. The default page size is 50 if page_size is unspecified, and the maximum page size allowed is 100. Values above 100 will be capped at 100. */
2676
+ pageSize?: number;
2677
+ /** Optional. A page token, received from a previous `ListConnectorConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListConnectorConfigs` must match the call that provided the page token. */
2678
+ pageToken?: string;
2679
+ /** Required. Format: customers/{customer} */
2680
+ parent: string;
2681
+ /** Returns response with indentations and line breaks. */
2682
+ prettyPrint?: boolean;
2683
+ /** 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. */
2684
+ quotaUser?: string;
2685
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2686
+ upload_protocol?: string;
2687
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2688
+ uploadType?: string;
2689
+ }): Request<GoogleChromeManagementVersionsV1ListConnectorConfigsResponse>;
2690
+ /** Updates a connector config. */
2691
+ patch(request: {
2692
+ /** V1 error format. */
2693
+ '$.xgafv'?: '1' | '2';
2694
+ /** OAuth access token. */
2695
+ access_token?: string;
2696
+ /** Data format for response. */
2697
+ alt?: 'json' | 'media' | 'proto';
2698
+ /** JSONP */
2699
+ callback?: string;
2700
+ /** Selector specifying which fields to include in a partial response. */
2701
+ fields?: string;
2702
+ /** 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. */
2703
+ key?: string;
2704
+ /** Identifier. Format: customers/{customer}/connectorConfigs/{connector_config} */
2705
+ name: string;
2706
+ /** OAuth 2.0 token for the current user. */
2707
+ oauth_token?: string;
2708
+ /** Returns response with indentations and line breaks. */
2709
+ prettyPrint?: boolean;
2710
+ /** 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. */
2711
+ quotaUser?: string;
2712
+ /** Optional. The update mask that can be used to specify which fields to update. */
2713
+ updateMask?: string;
2714
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2715
+ upload_protocol?: string;
2716
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2717
+ uploadType?: string;
2718
+ /** Request body */
2719
+ resource: GoogleChromeManagementVersionsV1ConnectorConfig;
2720
+ }): Request<GoogleChromeManagementVersionsV1ConnectorConfig>;
2721
+ patch(
2722
+ request: {
2723
+ /** V1 error format. */
2724
+ '$.xgafv'?: '1' | '2';
2725
+ /** OAuth access token. */
2726
+ access_token?: string;
2727
+ /** Data format for response. */
2728
+ alt?: 'json' | 'media' | 'proto';
2729
+ /** JSONP */
2730
+ callback?: string;
2731
+ /** Selector specifying which fields to include in a partial response. */
2732
+ fields?: string;
2733
+ /** 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. */
2734
+ key?: string;
2735
+ /** Identifier. Format: customers/{customer}/connectorConfigs/{connector_config} */
2736
+ name: string;
2737
+ /** OAuth 2.0 token for the current user. */
2738
+ oauth_token?: string;
2739
+ /** Returns response with indentations and line breaks. */
2740
+ prettyPrint?: boolean;
2741
+ /** 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. */
2742
+ quotaUser?: string;
2743
+ /** Optional. The update mask that can be used to specify which fields to update. */
2744
+ updateMask?: string;
2745
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2746
+ upload_protocol?: string;
2747
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2748
+ uploadType?: string;
2749
+ },
2750
+ body: GoogleChromeManagementVersionsV1ConnectorConfig,
2751
+ ): Request<GoogleChromeManagementVersionsV1ConnectorConfig>;
2752
+ }
2753
+ interface SecurityInsightsResource {
2754
+ /** Gets the setting state of the insights feature for the customer. */
2755
+ checkEnablementStatus(request?: {
2756
+ /** V1 error format. */
2757
+ '$.xgafv'?: '1' | '2';
2758
+ /** OAuth access token. */
2759
+ access_token?: string;
2760
+ /** Data format for response. */
2761
+ alt?: 'json' | 'media' | 'proto';
2762
+ /** JSONP */
2763
+ callback?: string;
2764
+ /** Required. The customer to check the enablement status for. Format: customers/{customer_id} */
2765
+ customer: string;
2766
+ /** Selector specifying which fields to include in a partial response. */
2767
+ fields?: string;
2768
+ /** 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. */
2769
+ key?: string;
2770
+ /** OAuth 2.0 token for the current user. */
2771
+ oauth_token?: string;
2772
+ /** Returns response with indentations and line breaks. */
2773
+ prettyPrint?: boolean;
2774
+ /** 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. */
2775
+ quotaUser?: string;
2776
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2777
+ upload_protocol?: string;
2778
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2779
+ uploadType?: string;
2780
+ }): Request<GoogleChromeManagementVersionsV1CheckEnablementStatusResponse>;
2781
+ /** Disables insights for the customer. */
2782
+ disable(request: {
2783
+ /** V1 error format. */
2784
+ '$.xgafv'?: '1' | '2';
2785
+ /** OAuth access token. */
2786
+ access_token?: string;
2787
+ /** Data format for response. */
2788
+ alt?: 'json' | 'media' | 'proto';
2789
+ /** JSONP */
2790
+ callback?: string;
2791
+ /** Required. The customer to disable insights for. Format: customers/{customer} */
2792
+ customer: string;
2793
+ /** Selector specifying which fields to include in a partial response. */
2794
+ fields?: string;
2795
+ /** 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. */
2796
+ key?: string;
2797
+ /** OAuth 2.0 token for the current user. */
2798
+ oauth_token?: string;
2799
+ /** Returns response with indentations and line breaks. */
2800
+ prettyPrint?: boolean;
2801
+ /** 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. */
2802
+ quotaUser?: string;
2803
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2804
+ upload_protocol?: string;
2805
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2806
+ uploadType?: string;
2807
+ /** Request body */
2808
+ resource: GoogleChromeManagementVersionsV1DisableInsightsRequest;
2809
+ }): Request<GoogleChromeManagementVersionsV1DisableInsightsResponse>;
2810
+ disable(
2811
+ request: {
2812
+ /** V1 error format. */
2813
+ '$.xgafv'?: '1' | '2';
2814
+ /** OAuth access token. */
2815
+ access_token?: string;
2816
+ /** Data format for response. */
2817
+ alt?: 'json' | 'media' | 'proto';
2818
+ /** JSONP */
2819
+ callback?: string;
2820
+ /** Required. The customer to disable insights for. Format: customers/{customer} */
2821
+ customer: string;
2822
+ /** Selector specifying which fields to include in a partial response. */
2823
+ fields?: string;
2824
+ /** 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. */
2825
+ key?: string;
2826
+ /** OAuth 2.0 token for the current user. */
2827
+ oauth_token?: string;
2828
+ /** Returns response with indentations and line breaks. */
2829
+ prettyPrint?: boolean;
2830
+ /** 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. */
2831
+ quotaUser?: string;
2832
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2833
+ upload_protocol?: string;
2834
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2835
+ uploadType?: string;
2836
+ },
2837
+ body: GoogleChromeManagementVersionsV1DisableInsightsRequest,
2838
+ ): Request<GoogleChromeManagementVersionsV1DisableInsightsResponse>;
2839
+ /** Enables insights for the customer and sets up required chrome connectors. */
2840
+ enable(request: {
2841
+ /** V1 error format. */
2842
+ '$.xgafv'?: '1' | '2';
2843
+ /** OAuth access token. */
2844
+ access_token?: string;
2845
+ /** Data format for response. */
2846
+ alt?: 'json' | 'media' | 'proto';
2847
+ /** JSONP */
2848
+ callback?: string;
2849
+ /** Required. The customer to enable insights for. Format: customers/{customer} */
2850
+ customer: string;
2851
+ /** Selector specifying which fields to include in a partial response. */
2852
+ fields?: string;
2853
+ /** 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. */
2854
+ key?: string;
2855
+ /** OAuth 2.0 token for the current user. */
2856
+ oauth_token?: string;
2857
+ /** Returns response with indentations and line breaks. */
2858
+ prettyPrint?: boolean;
2859
+ /** 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. */
2860
+ quotaUser?: string;
2861
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2862
+ upload_protocol?: string;
2863
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2864
+ uploadType?: string;
2865
+ /** Request body */
2866
+ resource: GoogleChromeManagementVersionsV1EnableInsightsRequest;
2867
+ }): Request<GoogleChromeManagementVersionsV1EnableInsightsResponse>;
2868
+ enable(
2869
+ request: {
2870
+ /** V1 error format. */
2871
+ '$.xgafv'?: '1' | '2';
2872
+ /** OAuth access token. */
2873
+ access_token?: string;
2874
+ /** Data format for response. */
2875
+ alt?: 'json' | 'media' | 'proto';
2876
+ /** JSONP */
2877
+ callback?: string;
2878
+ /** Required. The customer to enable insights for. Format: customers/{customer} */
2879
+ customer: string;
2880
+ /** Selector specifying which fields to include in a partial response. */
2881
+ fields?: string;
2882
+ /** 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. */
2883
+ key?: string;
2884
+ /** OAuth 2.0 token for the current user. */
2885
+ oauth_token?: string;
2886
+ /** Returns response with indentations and line breaks. */
2887
+ prettyPrint?: boolean;
2888
+ /** 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. */
2889
+ quotaUser?: string;
2890
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
2891
+ upload_protocol?: string;
2892
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2893
+ uploadType?: string;
2894
+ },
2895
+ body: GoogleChromeManagementVersionsV1EnableInsightsRequest,
2896
+ ): Request<GoogleChromeManagementVersionsV1EnableInsightsResponse>;
2897
+ }
2898
+ interface EnterpriseResource {
2899
+ securityInsights: SecurityInsightsResource;
2900
+ }
1945
2901
  interface CommandsResource {
1946
2902
  /** Creates a Chrome browser profile remote command. */
1947
2903
  create(request: {
1948
2904
  /** V1 error format. */
1949
- '$.xgafv'?: string;
2905
+ '$.xgafv'?: '1' | '2';
1950
2906
  /** OAuth access token. */
1951
2907
  access_token?: string;
1952
2908
  /** Data format for response. */
1953
- alt?: string;
2909
+ alt?: 'json' | 'media' | 'proto';
1954
2910
  /** JSONP */
1955
2911
  callback?: string;
1956
2912
  /** Selector specifying which fields to include in a partial response. */
@@ -1975,11 +2931,11 @@ declare namespace gapi.client {
1975
2931
  create(
1976
2932
  request: {
1977
2933
  /** V1 error format. */
1978
- '$.xgafv'?: string;
2934
+ '$.xgafv'?: '1' | '2';
1979
2935
  /** OAuth access token. */
1980
2936
  access_token?: string;
1981
2937
  /** Data format for response. */
1982
- alt?: string;
2938
+ alt?: 'json' | 'media' | 'proto';
1983
2939
  /** JSONP */
1984
2940
  callback?: string;
1985
2941
  /** Selector specifying which fields to include in a partial response. */
@@ -2004,11 +2960,11 @@ declare namespace gapi.client {
2004
2960
  /** Gets a Chrome browser profile remote command. */
2005
2961
  get(request?: {
2006
2962
  /** V1 error format. */
2007
- '$.xgafv'?: string;
2963
+ '$.xgafv'?: '1' | '2';
2008
2964
  /** OAuth access token. */
2009
2965
  access_token?: string;
2010
2966
  /** Data format for response. */
2011
- alt?: string;
2967
+ alt?: 'json' | 'media' | 'proto';
2012
2968
  /** JSONP */
2013
2969
  callback?: string;
2014
2970
  /** Selector specifying which fields to include in a partial response. */
@@ -2031,11 +2987,11 @@ declare namespace gapi.client {
2031
2987
  /** Lists remote commands of a Chrome browser profile. */
2032
2988
  list(request?: {
2033
2989
  /** V1 error format. */
2034
- '$.xgafv'?: string;
2990
+ '$.xgafv'?: '1' | '2';
2035
2991
  /** OAuth access token. */
2036
2992
  access_token?: string;
2037
2993
  /** Data format for response. */
2038
- alt?: string;
2994
+ alt?: 'json' | 'media' | 'proto';
2039
2995
  /** JSONP */
2040
2996
  callback?: string;
2041
2997
  /** Selector specifying which fields to include in a partial response. */
@@ -2064,11 +3020,11 @@ declare namespace gapi.client {
2064
3020
  /** Deletes the data collected from a Chrome browser profile. */
2065
3021
  delete(request?: {
2066
3022
  /** V1 error format. */
2067
- '$.xgafv'?: string;
3023
+ '$.xgafv'?: '1' | '2';
2068
3024
  /** OAuth access token. */
2069
3025
  access_token?: string;
2070
3026
  /** Data format for response. */
2071
- alt?: string;
3027
+ alt?: 'json' | 'media' | 'proto';
2072
3028
  /** JSONP */
2073
3029
  callback?: string;
2074
3030
  /** Selector specifying which fields to include in a partial response. */
@@ -2091,11 +3047,11 @@ declare namespace gapi.client {
2091
3047
  /** Gets a Chrome browser profile with customer ID and profile permanent ID. */
2092
3048
  get(request?: {
2093
3049
  /** V1 error format. */
2094
- '$.xgafv'?: string;
3050
+ '$.xgafv'?: '1' | '2';
2095
3051
  /** OAuth access token. */
2096
3052
  access_token?: string;
2097
3053
  /** Data format for response. */
2098
- alt?: string;
3054
+ alt?: 'json' | 'media' | 'proto';
2099
3055
  /** JSONP */
2100
3056
  callback?: string;
2101
3057
  /** Selector specifying which fields to include in a partial response. */
@@ -2118,11 +3074,11 @@ declare namespace gapi.client {
2118
3074
  /** Lists Chrome browser profiles of a customer based on the given search and sorting criteria. */
2119
3075
  list(request?: {
2120
3076
  /** V1 error format. */
2121
- '$.xgafv'?: string;
3077
+ '$.xgafv'?: '1' | '2';
2122
3078
  /** OAuth access token. */
2123
3079
  access_token?: string;
2124
3080
  /** Data format for response. */
2125
- alt?: string;
3081
+ alt?: 'json' | 'media' | 'proto';
2126
3082
  /** JSONP */
2127
3083
  callback?: string;
2128
3084
  /** Selector specifying which fields to include in a partial response. */
@@ -2156,11 +3112,11 @@ declare namespace gapi.client {
2156
3112
  /** Get a count of active devices per set time frames. */
2157
3113
  countActiveDevices(request?: {
2158
3114
  /** V1 error format. */
2159
- '$.xgafv'?: string;
3115
+ '$.xgafv'?: '1' | '2';
2160
3116
  /** OAuth access token. */
2161
3117
  access_token?: string;
2162
3118
  /** Data format for response. */
2163
- alt?: string;
3119
+ alt?: 'json' | 'media' | 'proto';
2164
3120
  /** JSONP */
2165
3121
  callback?: string;
2166
3122
  /** Required. Obfuscated customer ID prefixed with "customers/C" or "customers/my_customer". */
@@ -2189,11 +3145,11 @@ declare namespace gapi.client {
2189
3145
  /** Count of Chrome Browsers that have been recently enrolled, have new policy to be synced, or have no recent activity. */
2190
3146
  countChromeBrowsersNeedingAttention(request?: {
2191
3147
  /** V1 error format. */
2192
- '$.xgafv'?: string;
3148
+ '$.xgafv'?: '1' | '2';
2193
3149
  /** OAuth access token. */
2194
3150
  access_token?: string;
2195
3151
  /** Data format for response. */
2196
- alt?: string;
3152
+ alt?: 'json' | 'media' | 'proto';
2197
3153
  /** JSONP */
2198
3154
  callback?: string;
2199
3155
  /** Required. The customer ID or "my_customer" prefixed with "customers/". */
@@ -2218,11 +3174,11 @@ declare namespace gapi.client {
2218
3174
  /** Get a count of Chrome crash events. */
2219
3175
  countChromeCrashEvents(request?: {
2220
3176
  /** V1 error format. */
2221
- '$.xgafv'?: string;
3177
+ '$.xgafv'?: '1' | '2';
2222
3178
  /** OAuth access token. */
2223
3179
  access_token?: string;
2224
3180
  /** Data format for response. */
2225
- alt?: string;
3181
+ alt?: 'json' | 'media' | 'proto';
2226
3182
  /** JSONP */
2227
3183
  callback?: string;
2228
3184
  /** Customer ID. */
@@ -2251,11 +3207,11 @@ declare namespace gapi.client {
2251
3207
  /** Generate report of the number of devices expiring in each month of the selected time frame. Devices are grouped by auto update expiration date and model. Further information can be found [here](https://support.google.com/chrome/a/answer/10564947). */
2252
3208
  countChromeDevicesReachingAutoExpirationDate(request?: {
2253
3209
  /** V1 error format. */
2254
- '$.xgafv'?: string;
3210
+ '$.xgafv'?: '1' | '2';
2255
3211
  /** OAuth access token. */
2256
3212
  access_token?: string;
2257
3213
  /** Data format for response. */
2258
- alt?: string;
3214
+ alt?: 'json' | 'media' | 'proto';
2259
3215
  /** JSONP */
2260
3216
  callback?: string;
2261
3217
  /** Required. The customer ID or "my_customer" prefixed with "customers/". */
@@ -2284,11 +3240,11 @@ declare namespace gapi.client {
2284
3240
  /** Counts of ChromeOS devices that have not synced policies or have lacked user activity in the past 28 days, are out of date, or are not complaint. Further information can be found here https://support.google.com/chrome/a/answer/10564947 */
2285
3241
  countChromeDevicesThatNeedAttention(request?: {
2286
3242
  /** V1 error format. */
2287
- '$.xgafv'?: string;
3243
+ '$.xgafv'?: '1' | '2';
2288
3244
  /** OAuth access token. */
2289
3245
  access_token?: string;
2290
3246
  /** Data format for response. */
2291
- alt?: string;
3247
+ alt?: 'json' | 'media' | 'proto';
2292
3248
  /** JSONP */
2293
3249
  callback?: string;
2294
3250
  /** Required. The customer ID or "my_customer" prefixed with "customers/". */
@@ -2315,11 +3271,11 @@ declare namespace gapi.client {
2315
3271
  /** Counts of devices with a specific hardware specification from the requested hardware type (for example model name, processor type). Further information can be found here https://support.google.com/chrome/a/answer/10564947 */
2316
3272
  countChromeHardwareFleetDevices(request?: {
2317
3273
  /** V1 error format. */
2318
- '$.xgafv'?: string;
3274
+ '$.xgafv'?: '1' | '2';
2319
3275
  /** OAuth access token. */
2320
3276
  access_token?: string;
2321
3277
  /** Data format for response. */
2322
- alt?: string;
3278
+ alt?: 'json' | 'media' | 'proto';
2323
3279
  /** JSONP */
2324
3280
  callback?: string;
2325
3281
  /** Required. The customer ID or "my_customer". */
@@ -2343,14 +3299,49 @@ declare namespace gapi.client {
2343
3299
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2344
3300
  uploadType?: string;
2345
3301
  }): Request<GoogleChromeManagementV1CountChromeHardwareFleetDevicesResponse>;
3302
+ /** Generate report of installed Chrome versions on managed profiles. */
3303
+ countChromeProfileVersions(request?: {
3304
+ /** V1 error format. */
3305
+ '$.xgafv'?: '1' | '2';
3306
+ /** OAuth access token. */
3307
+ access_token?: string;
3308
+ /** Data format for response. */
3309
+ alt?: 'json' | 'media' | 'proto';
3310
+ /** JSONP */
3311
+ callback?: string;
3312
+ /** Required. Customer id or "my_customer" to use the customer associated to the account making the request. */
3313
+ customer: string;
3314
+ /** Selector specifying which fields to include in a partial response. */
3315
+ fields?: string;
3316
+ /** Optional. Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Supported filter fields: * last_active_date */
3317
+ filter?: string;
3318
+ /** 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. */
3319
+ key?: string;
3320
+ /** OAuth 2.0 token for the current user. */
3321
+ oauth_token?: string;
3322
+ /** The ID of the organizational unit. If omitted, all data will be returned. */
3323
+ orgUnitId?: string;
3324
+ /** Optional. Maximum number of results to return. Maximum and default are 100. */
3325
+ pageSize?: number;
3326
+ /** Optional. Token to specify the page of the request to be returned. */
3327
+ pageToken?: string;
3328
+ /** Returns response with indentations and line breaks. */
3329
+ prettyPrint?: boolean;
3330
+ /** 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. */
3331
+ quotaUser?: string;
3332
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3333
+ upload_protocol?: string;
3334
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3335
+ uploadType?: string;
3336
+ }): Request<GoogleChromeManagementV1CountChromeProfileVersionsResponse>;
2346
3337
  /** Generate report of installed Chrome versions. */
2347
3338
  countChromeVersions(request?: {
2348
3339
  /** V1 error format. */
2349
- '$.xgafv'?: string;
3340
+ '$.xgafv'?: '1' | '2';
2350
3341
  /** OAuth access token. */
2351
3342
  access_token?: string;
2352
3343
  /** Data format for response. */
2353
- alt?: string;
3344
+ alt?: 'json' | 'media' | 'proto';
2354
3345
  /** JSONP */
2355
3346
  callback?: string;
2356
3347
  /** Required. Customer id or "my_customer" to use the customer associated to the account making the request. */
@@ -2381,11 +3372,11 @@ declare namespace gapi.client {
2381
3372
  /** Get a count of devices per boot type. */
2382
3373
  countDevicesPerBootType(request?: {
2383
3374
  /** V1 error format. */
2384
- '$.xgafv'?: string;
3375
+ '$.xgafv'?: '1' | '2';
2385
3376
  /** OAuth access token. */
2386
3377
  access_token?: string;
2387
3378
  /** Data format for response. */
2388
- alt?: string;
3379
+ alt?: 'json' | 'media' | 'proto';
2389
3380
  /** JSONP */
2390
3381
  callback?: string;
2391
3382
  /** Required. Obfuscated customer ID prefixed with "customers/C" or "customers/my_customer". */
@@ -2414,11 +3405,11 @@ declare namespace gapi.client {
2414
3405
  /** Get a count of devices per channel. */
2415
3406
  countDevicesPerReleaseChannel(request?: {
2416
3407
  /** V1 error format. */
2417
- '$.xgafv'?: string;
3408
+ '$.xgafv'?: '1' | '2';
2418
3409
  /** OAuth access token. */
2419
3410
  access_token?: string;
2420
3411
  /** Data format for response. */
2421
- alt?: string;
3412
+ alt?: 'json' | 'media' | 'proto';
2422
3413
  /** JSONP */
2423
3414
  callback?: string;
2424
3415
  /** Required. Obfuscated customer ID prefixed with "customers/C" or "customers/my_customer". */
@@ -2447,11 +3438,11 @@ declare namespace gapi.client {
2447
3438
  /** Generate report of app installations. */
2448
3439
  countInstalledApps(request?: {
2449
3440
  /** V1 error format. */
2450
- '$.xgafv'?: string;
3441
+ '$.xgafv'?: '1' | '2';
2451
3442
  /** OAuth access token. */
2452
3443
  access_token?: string;
2453
3444
  /** Data format for response. */
2454
- alt?: string;
3445
+ alt?: 'json' | 'media' | 'proto';
2455
3446
  /** JSONP */
2456
3447
  callback?: string;
2457
3448
  /** Required. Customer id or "my_customer" to use the customer associated to the account making the request. */
@@ -2484,11 +3475,11 @@ declare namespace gapi.client {
2484
3475
  /** Get a summary of printing done by each printer. */
2485
3476
  countPrintJobsByPrinter(request?: {
2486
3477
  /** V1 error format. */
2487
- '$.xgafv'?: string;
3478
+ '$.xgafv'?: '1' | '2';
2488
3479
  /** OAuth access token. */
2489
3480
  access_token?: string;
2490
3481
  /** Data format for response. */
2491
- alt?: string;
3482
+ alt?: 'json' | 'media' | 'proto';
2492
3483
  /** JSONP */
2493
3484
  callback?: string;
2494
3485
  /** Required. Customer ID prefixed with "customers/" or "customers/my_customer" to use the customer associated to the account making the request. */
@@ -2521,11 +3512,11 @@ declare namespace gapi.client {
2521
3512
  /** Get a summary of printing done by each user. */
2522
3513
  countPrintJobsByUser(request?: {
2523
3514
  /** V1 error format. */
2524
- '$.xgafv'?: string;
3515
+ '$.xgafv'?: '1' | '2';
2525
3516
  /** OAuth access token. */
2526
3517
  access_token?: string;
2527
3518
  /** Data format for response. */
2528
- alt?: string;
3519
+ alt?: 'json' | 'media' | 'proto';
2529
3520
  /** JSONP */
2530
3521
  callback?: string;
2531
3522
  /** Required. Customer ID prefixed with "customers/" or "customers/my_customer" to use the customer associated to the account making the request. */
@@ -2558,11 +3549,11 @@ declare namespace gapi.client {
2558
3549
  /** Get a list of print jobs. */
2559
3550
  enumeratePrintJobs(request?: {
2560
3551
  /** V1 error format. */
2561
- '$.xgafv'?: string;
3552
+ '$.xgafv'?: '1' | '2';
2562
3553
  /** OAuth access token. */
2563
3554
  access_token?: string;
2564
3555
  /** Data format for response. */
2565
- alt?: string;
3556
+ alt?: 'json' | 'media' | 'proto';
2566
3557
  /** JSONP */
2567
3558
  callback?: string;
2568
3559
  /** Required. Customer ID prefixed with "customers/" or "customers/my_customer" to use the customer associated to the account making the request. */
@@ -2595,15 +3586,21 @@ declare namespace gapi.client {
2595
3586
  /** Generate report of managed Chrome browser devices that have a specified app installed. */
2596
3587
  findInstalledAppDevices(request?: {
2597
3588
  /** V1 error format. */
2598
- '$.xgafv'?: string;
3589
+ '$.xgafv'?: '1' | '2';
2599
3590
  /** OAuth access token. */
2600
3591
  access_token?: string;
2601
3592
  /** Data format for response. */
2602
- alt?: string;
3593
+ alt?: 'json' | 'media' | 'proto';
2603
3594
  /** Unique identifier of the app. For Chrome apps and extensions, the 32-character id (e.g. ehoadneljpdggcbbknedodolkkjodefl). For Android apps, the package name (e.g. com.evernote). */
2604
3595
  appId?: string;
2605
3596
  /** Type of the app. Optional. If not provided, an app type will be inferred from the format of the app ID. */
2606
- appType?: string;
3597
+ appType?:
3598
+ | 'APP_TYPE_UNSPECIFIED'
3599
+ | 'EXTENSION'
3600
+ | 'APP'
3601
+ | 'THEME'
3602
+ | 'HOSTED_APP'
3603
+ | 'ANDROID_APP';
2607
3604
  /** JSONP */
2608
3605
  callback?: string;
2609
3606
  /** Required. Customer id or "my_customer" to use the customer associated to the account making the request. */
@@ -2633,16 +3630,63 @@ declare namespace gapi.client {
2633
3630
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
2634
3631
  uploadType?: string;
2635
3632
  }): Request<GoogleChromeManagementV1FindInstalledAppDevicesResponse>;
3633
+ /** Generate report of managed Chrome profiles that have a specified app installed. */
3634
+ findInstalledAppProfiles(request?: {
3635
+ /** V1 error format. */
3636
+ '$.xgafv'?: '1' | '2';
3637
+ /** OAuth access token. */
3638
+ access_token?: string;
3639
+ /** Data format for response. */
3640
+ alt?: 'json' | 'media' | 'proto';
3641
+ /** Required. Unique identifier of the app. For Chrome apps and extensions, the 32-character id (e.g. ehoadneljpdggcbbknedodolkkjodefl). For Android apps, the package name (e.g. com.evernote). */
3642
+ appId?: string;
3643
+ /** Type of the app. Optional. If not provided, an app type will be inferred from the format of the app ID. */
3644
+ appType?:
3645
+ | 'APP_TYPE_UNSPECIFIED'
3646
+ | 'EXTENSION'
3647
+ | 'APP'
3648
+ | 'THEME'
3649
+ | 'HOSTED_APP'
3650
+ | 'ANDROID_APP';
3651
+ /** JSONP */
3652
+ callback?: string;
3653
+ /** Required. Customer id or "my_customer" to use the customer associated to the account making the request. */
3654
+ customer: string;
3655
+ /** Selector specifying which fields to include in a partial response. */
3656
+ fields?: string;
3657
+ /** Optional. Query string to filter results, AND-separated fields in EBNF syntax. Note: OR operations are not supported in this filter. Supported filter fields: * last_active_date */
3658
+ filter?: string;
3659
+ /** 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. */
3660
+ key?: string;
3661
+ /** OAuth 2.0 token for the current user. */
3662
+ oauth_token?: string;
3663
+ /** Optional. Field used to order results. Supported order by fields: * email * profile_id * profile_permanent_id */
3664
+ orderBy?: string;
3665
+ /** Optional. The ID of the organizational unit. */
3666
+ orgUnitId?: string;
3667
+ /** Optional. Maximum number of results to return. Maximum and default are 100. */
3668
+ pageSize?: number;
3669
+ /** Optional. Token to specify the page of the request to be returned. */
3670
+ pageToken?: string;
3671
+ /** Returns response with indentations and line breaks. */
3672
+ prettyPrint?: boolean;
3673
+ /** 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. */
3674
+ quotaUser?: string;
3675
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
3676
+ upload_protocol?: string;
3677
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
3678
+ uploadType?: string;
3679
+ }): Request<GoogleChromeManagementV1FindInstalledAppProfilesResponse>;
2636
3680
  }
2637
3681
  interface DevicesResource {
2638
3682
  /** Get telemetry device. */
2639
3683
  get(request?: {
2640
3684
  /** V1 error format. */
2641
- '$.xgafv'?: string;
3685
+ '$.xgafv'?: '1' | '2';
2642
3686
  /** OAuth access token. */
2643
3687
  access_token?: string;
2644
3688
  /** Data format for response. */
2645
- alt?: string;
3689
+ alt?: 'json' | 'media' | 'proto';
2646
3690
  /** JSONP */
2647
3691
  callback?: string;
2648
3692
  /** Selector specifying which fields to include in a partial response. */
@@ -2667,11 +3711,11 @@ declare namespace gapi.client {
2667
3711
  /** List all telemetry devices. */
2668
3712
  list(request?: {
2669
3713
  /** V1 error format. */
2670
- '$.xgafv'?: string;
3714
+ '$.xgafv'?: '1' | '2';
2671
3715
  /** OAuth access token. */
2672
3716
  access_token?: string;
2673
3717
  /** Data format for response. */
2674
- alt?: string;
3718
+ alt?: 'json' | 'media' | 'proto';
2675
3719
  /** JSONP */
2676
3720
  callback?: string;
2677
3721
  /** Selector specifying which fields to include in a partial response. */
@@ -2704,11 +3748,11 @@ declare namespace gapi.client {
2704
3748
  /** List telemetry events. */
2705
3749
  list(request?: {
2706
3750
  /** V1 error format. */
2707
- '$.xgafv'?: string;
3751
+ '$.xgafv'?: '1' | '2';
2708
3752
  /** OAuth access token. */
2709
3753
  access_token?: string;
2710
3754
  /** Data format for response. */
2711
- alt?: string;
3755
+ alt?: 'json' | 'media' | 'proto';
2712
3756
  /** JSONP */
2713
3757
  callback?: string;
2714
3758
  /** Selector specifying which fields to include in a partial response. */
@@ -2741,11 +3785,11 @@ declare namespace gapi.client {
2741
3785
  /** Create a telemetry notification config. */
2742
3786
  create(request: {
2743
3787
  /** V1 error format. */
2744
- '$.xgafv'?: string;
3788
+ '$.xgafv'?: '1' | '2';
2745
3789
  /** OAuth access token. */
2746
3790
  access_token?: string;
2747
3791
  /** Data format for response. */
2748
- alt?: string;
3792
+ alt?: 'json' | 'media' | 'proto';
2749
3793
  /** JSONP */
2750
3794
  callback?: string;
2751
3795
  /** Selector specifying which fields to include in a partial response. */
@@ -2770,11 +3814,11 @@ declare namespace gapi.client {
2770
3814
  create(
2771
3815
  request: {
2772
3816
  /** V1 error format. */
2773
- '$.xgafv'?: string;
3817
+ '$.xgafv'?: '1' | '2';
2774
3818
  /** OAuth access token. */
2775
3819
  access_token?: string;
2776
3820
  /** Data format for response. */
2777
- alt?: string;
3821
+ alt?: 'json' | 'media' | 'proto';
2778
3822
  /** JSONP */
2779
3823
  callback?: string;
2780
3824
  /** Selector specifying which fields to include in a partial response. */
@@ -2799,11 +3843,11 @@ declare namespace gapi.client {
2799
3843
  /** Delete a telemetry notification config. */
2800
3844
  delete(request?: {
2801
3845
  /** V1 error format. */
2802
- '$.xgafv'?: string;
3846
+ '$.xgafv'?: '1' | '2';
2803
3847
  /** OAuth access token. */
2804
3848
  access_token?: string;
2805
3849
  /** Data format for response. */
2806
- alt?: string;
3850
+ alt?: 'json' | 'media' | 'proto';
2807
3851
  /** JSONP */
2808
3852
  callback?: string;
2809
3853
  /** Selector specifying which fields to include in a partial response. */
@@ -2826,11 +3870,11 @@ declare namespace gapi.client {
2826
3870
  /** List all telemetry notification configs. */
2827
3871
  list(request?: {
2828
3872
  /** V1 error format. */
2829
- '$.xgafv'?: string;
3873
+ '$.xgafv'?: '1' | '2';
2830
3874
  /** OAuth access token. */
2831
3875
  access_token?: string;
2832
3876
  /** Data format for response. */
2833
- alt?: string;
3877
+ alt?: 'json' | 'media' | 'proto';
2834
3878
  /** JSONP */
2835
3879
  callback?: string;
2836
3880
  /** Selector specifying which fields to include in a partial response. */
@@ -2859,11 +3903,11 @@ declare namespace gapi.client {
2859
3903
  /** Get telemetry user. */
2860
3904
  get(request?: {
2861
3905
  /** V1 error format. */
2862
- '$.xgafv'?: string;
3906
+ '$.xgafv'?: '1' | '2';
2863
3907
  /** OAuth access token. */
2864
3908
  access_token?: string;
2865
3909
  /** Data format for response. */
2866
- alt?: string;
3910
+ alt?: 'json' | 'media' | 'proto';
2867
3911
  /** JSONP */
2868
3912
  callback?: string;
2869
3913
  /** Selector specifying which fields to include in a partial response. */
@@ -2888,11 +3932,11 @@ declare namespace gapi.client {
2888
3932
  /** List all telemetry users. */
2889
3933
  list(request?: {
2890
3934
  /** V1 error format. */
2891
- '$.xgafv'?: string;
3935
+ '$.xgafv'?: '1' | '2';
2892
3936
  /** OAuth access token. */
2893
3937
  access_token?: string;
2894
3938
  /** Data format for response. */
2895
- alt?: string;
3939
+ alt?: 'json' | 'media' | 'proto';
2896
3940
  /** JSONP */
2897
3941
  callback?: string;
2898
3942
  /** Selector specifying which fields to include in a partial response. */
@@ -2931,11 +3975,11 @@ declare namespace gapi.client {
2931
3975
  /** Moves a third party chrome profile user to a destination OU. All profiles associated to that user will be moved to the destination OU. */
2932
3976
  move(request: {
2933
3977
  /** V1 error format. */
2934
- '$.xgafv'?: string;
3978
+ '$.xgafv'?: '1' | '2';
2935
3979
  /** OAuth access token. */
2936
3980
  access_token?: string;
2937
3981
  /** Data format for response. */
2938
- alt?: string;
3982
+ alt?: 'json' | 'media' | 'proto';
2939
3983
  /** JSONP */
2940
3984
  callback?: string;
2941
3985
  /** Selector specifying which fields to include in a partial response. */
@@ -2960,11 +4004,11 @@ declare namespace gapi.client {
2960
4004
  move(
2961
4005
  request: {
2962
4006
  /** V1 error format. */
2963
- '$.xgafv'?: string;
4007
+ '$.xgafv'?: '1' | '2';
2964
4008
  /** OAuth access token. */
2965
4009
  access_token?: string;
2966
4010
  /** Data format for response. */
2967
- alt?: string;
4011
+ alt?: 'json' | 'media' | 'proto';
2968
4012
  /** JSONP */
2969
4013
  callback?: string;
2970
4014
  /** Selector specifying which fields to include in a partial response. */
@@ -2990,6 +4034,8 @@ declare namespace gapi.client {
2990
4034
  interface CustomersResource {
2991
4035
  apps: AppsResource;
2992
4036
  certificateProvisioningProcesses: CertificateProvisioningProcessesResource;
4037
+ connectorConfigs: ConnectorConfigsResource;
4038
+ enterprise: EnterpriseResource;
2993
4039
  profiles: ProfilesResource;
2994
4040
  reports: ReportsResource;
2995
4041
  telemetry: TelemetryResource;
@@ -2999,11 +4045,11 @@ declare namespace gapi.client {
2999
4045
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
3000
4046
  cancel(request: {
3001
4047
  /** V1 error format. */
3002
- '$.xgafv'?: string;
4048
+ '$.xgafv'?: '1' | '2';
3003
4049
  /** OAuth access token. */
3004
4050
  access_token?: string;
3005
4051
  /** Data format for response. */
3006
- alt?: string;
4052
+ alt?: 'json' | 'media' | 'proto';
3007
4053
  /** JSONP */
3008
4054
  callback?: string;
3009
4055
  /** Selector specifying which fields to include in a partial response. */
@@ -3028,11 +4074,11 @@ declare namespace gapi.client {
3028
4074
  cancel(
3029
4075
  request: {
3030
4076
  /** V1 error format. */
3031
- '$.xgafv'?: string;
4077
+ '$.xgafv'?: '1' | '2';
3032
4078
  /** OAuth access token. */
3033
4079
  access_token?: string;
3034
4080
  /** Data format for response. */
3035
- alt?: string;
4081
+ alt?: 'json' | 'media' | 'proto';
3036
4082
  /** JSONP */
3037
4083
  callback?: string;
3038
4084
  /** Selector specifying which fields to include in a partial response. */
@@ -3057,11 +4103,11 @@ declare namespace gapi.client {
3057
4103
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
3058
4104
  delete(request?: {
3059
4105
  /** V1 error format. */
3060
- '$.xgafv'?: string;
4106
+ '$.xgafv'?: '1' | '2';
3061
4107
  /** OAuth access token. */
3062
4108
  access_token?: string;
3063
4109
  /** Data format for response. */
3064
- alt?: string;
4110
+ alt?: 'json' | 'media' | 'proto';
3065
4111
  /** JSONP */
3066
4112
  callback?: string;
3067
4113
  /** Selector specifying which fields to include in a partial response. */
@@ -3084,11 +4130,11 @@ declare namespace gapi.client {
3084
4130
  /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
3085
4131
  list(request?: {
3086
4132
  /** V1 error format. */
3087
- '$.xgafv'?: string;
4133
+ '$.xgafv'?: '1' | '2';
3088
4134
  /** OAuth access token. */
3089
4135
  access_token?: string;
3090
4136
  /** Data format for response. */
3091
- alt?: string;
4137
+ alt?: 'json' | 'media' | 'proto';
3092
4138
  /** JSONP */
3093
4139
  callback?: string;
3094
4140
  /** Selector specifying which fields to include in a partial response. */