@maxim_mazurok/gapi.client.chromemanagement-v1 0.2.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.
- package/index.d.ts +690 -2
- package/package.json +1 -1
- 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:
|
|
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. */
|
|
@@ -332,6 +334,14 @@ declare namespace gapi.client {
|
|
|
332
334
|
/** The DeviceHardwareCountReport for device storage amount in gigabytes (for example 128). */
|
|
333
335
|
storageReports?: GoogleChromeManagementV1DeviceHardwareCountReport[];
|
|
334
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
|
+
}
|
|
335
345
|
interface GoogleChromeManagementV1CountChromeVersionsResponse {
|
|
336
346
|
/** List of all browser versions and their install counts. */
|
|
337
347
|
browserVersions?: GoogleChromeManagementV1BrowserVersion[];
|
|
@@ -569,6 +579,14 @@ declare namespace gapi.client {
|
|
|
569
579
|
/** Total number of devices matching request. */
|
|
570
580
|
totalSize?: number;
|
|
571
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
|
+
}
|
|
572
590
|
interface GoogleChromeManagementV1GraphicsAdapterInfo {
|
|
573
591
|
/** Output only. Adapter name. Example: Mesa DRI Intel(R) UHD Graphics 620 (Kabylake GT2). */
|
|
574
592
|
adapter?: string;
|
|
@@ -651,6 +669,8 @@ declare namespace gapi.client {
|
|
|
651
669
|
osUserCount?: string;
|
|
652
670
|
/** Output only. Permissions of the installed app. */
|
|
653
671
|
permissions?: string[];
|
|
672
|
+
/** Output only. Count of Chrome Profiles with this app installed. */
|
|
673
|
+
profileCount?: string;
|
|
654
674
|
/** Output only. If available, the risk assessment data about this extension. */
|
|
655
675
|
riskAssessment?: GoogleChromeManagementV1RiskAssessmentData;
|
|
656
676
|
}
|
|
@@ -858,6 +878,16 @@ declare namespace gapi.client {
|
|
|
858
878
|
/** The unique Directory API ID of the user who submitted the print job. */
|
|
859
879
|
userId?: string;
|
|
860
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
|
+
}
|
|
861
891
|
interface GoogleChromeManagementV1RiskAssessment {
|
|
862
892
|
/** Risk assessment for the extension. Currently, this is a numerical value, and its interpretation is specific to each risk assessment provider. */
|
|
863
893
|
assessment?: string;
|
|
@@ -1453,6 +1483,13 @@ declare namespace gapi.client {
|
|
|
1453
1483
|
/** Output only. The public key for which a certificate should be provisioned. Represented as a DER-encoded X.509 SubjectPublicKeyInfo. */
|
|
1454
1484
|
subjectPublicKeyInfo?: string;
|
|
1455
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
|
+
}
|
|
1456
1493
|
interface GoogleChromeManagementVersionsV1ChromeBrowserProfile {
|
|
1457
1494
|
/** Output only. The specific affiliation state of the profile. */
|
|
1458
1495
|
affiliationState?:
|
|
@@ -1569,6 +1606,80 @@ declare namespace gapi.client {
|
|
|
1569
1606
|
callerInstanceId?: string;
|
|
1570
1607
|
}
|
|
1571
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
|
+
}
|
|
1572
1683
|
interface GoogleChromeManagementVersionsV1DeviceInfo {
|
|
1573
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. */
|
|
1574
1685
|
affiliatedDeviceId?: string;
|
|
@@ -1579,6 +1690,48 @@ declare namespace gapi.client {
|
|
|
1579
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|. */
|
|
1580
1691
|
machine?: string;
|
|
1581
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
|
+
}
|
|
1582
1735
|
interface GoogleChromeManagementVersionsV1GenericCaConnection {
|
|
1583
1736
|
/** Output only. A string that references the administrator-provided configuration for the certification authority service. */
|
|
1584
1737
|
caConnectionAdapterConfigReference?: string;
|
|
@@ -1587,6 +1740,14 @@ declare namespace gapi.client {
|
|
|
1587
1740
|
/** Output only. A string that references the administrator-provided configuration for the certificate provisioning profile. */
|
|
1588
1741
|
profileAdapterConfigReference?: string;
|
|
1589
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
|
+
}
|
|
1590
1751
|
interface GoogleChromeManagementVersionsV1ListChromeBrowserProfileCommandsResponse {
|
|
1591
1752
|
/** The list of commands returned. */
|
|
1592
1753
|
chromeBrowserProfileCommands?: GoogleChromeManagementVersionsV1ChromeBrowserProfileCommand[];
|
|
@@ -1603,6 +1764,18 @@ declare namespace gapi.client {
|
|
|
1603
1764
|
/** Total size represents an estimated number of resources returned. Not guaranteed to be accurate above 10k profiles. */
|
|
1604
1765
|
totalSize?: string;
|
|
1605
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
|
+
}
|
|
1606
1779
|
interface GoogleChromeManagementVersionsV1MoveThirdPartyProfileUserRequest {
|
|
1607
1780
|
/** Required. Destination organizational unit where the third party chrome profile user will be moved to. */
|
|
1608
1781
|
destinationOrgUnit?: string;
|
|
@@ -1611,6 +1784,26 @@ declare namespace gapi.client {
|
|
|
1611
1784
|
/** Output only. The moved third party profile user. */
|
|
1612
1785
|
thirdPartyProfileUser?: GoogleChromeManagementVersionsV1ThirdPartyProfileUser;
|
|
1613
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
|
+
}
|
|
1614
1807
|
interface GoogleChromeManagementVersionsV1ReportingData {
|
|
1615
1808
|
/** Output only. Executable path of the installed Chrome browser. A valid path is included only in affiliated profiles. */
|
|
1616
1809
|
browserExecutablePath?: string;
|
|
@@ -1697,6 +1890,40 @@ declare namespace gapi.client {
|
|
|
1697
1890
|
/** Output only. Value of the policy. */
|
|
1698
1891
|
value?: string;
|
|
1699
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
|
+
}
|
|
1700
1927
|
interface GoogleChromeManagementVersionsV1ScepCaConnection {
|
|
1701
1928
|
/** Output only. A string that references the administrator-provided configuration for the certification authority service. */
|
|
1702
1929
|
caConnectionAdapterConfigReference?: string;
|
|
@@ -1746,6 +1973,20 @@ declare namespace gapi.client {
|
|
|
1746
1973
|
/** Output only. The certificate provisioning process. The signature generated by the client will be available in the `signature` field of `CertificateProvisioningProcess`. */
|
|
1747
1974
|
certificateProvisioningProcess?: GoogleChromeManagementVersionsV1CertificateProvisioningProcess;
|
|
1748
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
|
+
}
|
|
1749
1990
|
interface GoogleChromeManagementVersionsV1SubjectAltName {
|
|
1750
1991
|
/** Output only. The type of the SubjectAltName extension. */
|
|
1751
1992
|
type?:
|
|
@@ -1768,6 +2009,10 @@ declare namespace gapi.client {
|
|
|
1768
2009
|
certificatePem?: string;
|
|
1769
2010
|
}
|
|
1770
2011
|
interface GoogleChromeManagementVersionsV1UploadCertificateResponse {}
|
|
2012
|
+
interface GoogleChromeManagementVersionsV1XdrSettings {
|
|
2013
|
+
/** Required. Whether to enable all XDR events. */
|
|
2014
|
+
enableAllXdrEvents?: boolean;
|
|
2015
|
+
}
|
|
1771
2016
|
interface GoogleLongrunningCancelOperationRequest {}
|
|
1772
2017
|
interface GoogleLongrunningListOperationsResponse {
|
|
1773
2018
|
/** The standard List next-page token. */
|
|
@@ -1794,7 +2039,7 @@ declare namespace gapi.client {
|
|
|
1794
2039
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
1795
2040
|
code?: number;
|
|
1796
2041
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
1797
|
-
details?:
|
|
2042
|
+
details?: {[P in string]: any}[];
|
|
1798
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. */
|
|
1799
2044
|
message?: string;
|
|
1800
2045
|
}
|
|
@@ -2294,6 +2539,365 @@ declare namespace gapi.client {
|
|
|
2294
2539
|
): Request<{}>;
|
|
2295
2540
|
operations: OperationsResource;
|
|
2296
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
|
+
}
|
|
2297
2901
|
interface CommandsResource {
|
|
2298
2902
|
/** Creates a Chrome browser profile remote command. */
|
|
2299
2903
|
create(request: {
|
|
@@ -2695,6 +3299,41 @@ declare namespace gapi.client {
|
|
|
2695
3299
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2696
3300
|
uploadType?: string;
|
|
2697
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>;
|
|
2698
3337
|
/** Generate report of installed Chrome versions. */
|
|
2699
3338
|
countChromeVersions(request?: {
|
|
2700
3339
|
/** V1 error format. */
|
|
@@ -2991,6 +3630,53 @@ declare namespace gapi.client {
|
|
|
2991
3630
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
2992
3631
|
uploadType?: string;
|
|
2993
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>;
|
|
2994
3680
|
}
|
|
2995
3681
|
interface DevicesResource {
|
|
2996
3682
|
/** Get telemetry device. */
|
|
@@ -3348,6 +4034,8 @@ declare namespace gapi.client {
|
|
|
3348
4034
|
interface CustomersResource {
|
|
3349
4035
|
apps: AppsResource;
|
|
3350
4036
|
certificateProvisioningProcesses: CertificateProvisioningProcessesResource;
|
|
4037
|
+
connectorConfigs: ConnectorConfigsResource;
|
|
4038
|
+
enterprise: EnterpriseResource;
|
|
3351
4039
|
profiles: ProfilesResource;
|
|
3352
4040
|
reports: ReportsResource;
|
|
3353
4041
|
telemetry: TelemetryResource;
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -11,6 +11,23 @@ Install typings for Chrome Management API:
|
|
|
11
11
|
npm install @types/gapi.client.chromemanagement-v1 --save-dev
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
+
## TypeScript 6.0+
|
|
15
|
+
|
|
16
|
+
TypeScript 6.0 changed `types` to default to `[]`. You must now explicitly list type packages in `tsconfig.json`:
|
|
17
|
+
|
|
18
|
+
```json
|
|
19
|
+
{
|
|
20
|
+
"compilerOptions": {
|
|
21
|
+
"types": [
|
|
22
|
+
"gapi",
|
|
23
|
+
"gapi.auth2",
|
|
24
|
+
"gapi.client",
|
|
25
|
+
"gapi.client.chromemanagement-v1"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
14
31
|
## Usage
|
|
15
32
|
|
|
16
33
|
You need to initialize Google API client in your code:
|