@maxim_mazurok/gapi.client.androidmanagement-v1 0.2.20260224 → 0.2.20260225
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 +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://androidmanagement.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260225
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -592,6 +592,8 @@ declare namespace gapi.client {
|
|
|
592
592
|
configureWifi?: string;
|
|
593
593
|
/** Optional. Preferential network service configuration. Setting this field will override preferentialNetworkService. This can be set on both work profiles and fully managed devices on Android 13 and above. See 5G network slicing (https://developers.google.com/android/management/5g-network-slicing) guide for more details. */
|
|
594
594
|
preferentialNetworkServiceSettings?: PreferentialNetworkServiceSettings;
|
|
595
|
+
/** Optional. The global private DNS settings. */
|
|
596
|
+
privateDnsSettings?: PrivateDnsSettings;
|
|
595
597
|
/** Controls tethering settings. Based on the value set, the user is partially or fully disallowed from using different forms of tethering. */
|
|
596
598
|
tetheringSettings?: string;
|
|
597
599
|
/** Controls what files and/or data can be transferred via USB. Supported only on company-owned devices. */
|
|
@@ -1461,6 +1463,12 @@ declare namespace gapi.client {
|
|
|
1461
1463
|
/** Required. Preferential network service configurations which enables having multiple enterprise slices. There must not be multiple configurations with the same preferentialNetworkId. If a configuration is not referenced by any application by setting ApplicationPolicy.preferentialNetworkId or by setting defaultPreferentialNetworkId, it will be ignored. For devices on 4G networks, enterprise APN needs to be configured additionally to set up data call for preferential network service. These APNs can be added using apnPolicy. */
|
|
1462
1464
|
preferentialNetworkServiceConfigs?: PreferentialNetworkServiceConfig[];
|
|
1463
1465
|
}
|
|
1466
|
+
interface PrivateDnsSettings {
|
|
1467
|
+
/** Optional. The hostname of the DNS server. This must be set if and only if private_dns_mode is set to PRIVATE_DNS_SPECIFIED_HOST. Supported on Android 10 and above on fully managed devices. A NonComplianceDetail with MANAGEMENT_MODE is reported on other management modes. A NonComplianceDetail with API_LEVEL is reported if the Android version is less than 10. A NonComplianceDetail with PENDING is reported if the device is not connected to a network. A NonComplianceDetail with nonComplianceReason INVALID_VALUE and specificNonComplianceReason PRIVATE_DNS_HOST_NOT_SERVING is reported if the specified host is not a DNS server or not supported on Android. A NonComplianceReason with nonComplianceReason INVALID_VALUE is reported if applying this setting fails for any other reason. */
|
|
1468
|
+
privateDnsHost?: string;
|
|
1469
|
+
/** Optional. The configuration mode for device's global private DNS settings. If this is set to PRIVATE_DNS_SPECIFIED_HOST, then private_dns_host must be set. */
|
|
1470
|
+
privateDnsMode?: string;
|
|
1471
|
+
}
|
|
1464
1472
|
interface ProvisioningInfo {
|
|
1465
1473
|
/** The API level of the Android platform version running on the device. */
|
|
1466
1474
|
apiLevel?: number;
|