Skip to content

Commit 559853e

Browse files
1 parent f19ec5a commit 559853e

File tree

6 files changed

+24
-21
lines changed

6 files changed

+24
-21
lines changed

clients/google-api-services-androidmanagement/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-androidmanagement</artifactId>
25-
<version>v1-rev20250602-2.0.0</version>
25+
<version>v1-rev20250603-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20250602-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20250603-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-androidmanagement/v1/2.0.0/com/google/api/services/androidmanagement/v1/model/ApplicationPolicy.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ public final class ApplicationPolicy extends com.google.api.client.json.GenericJ
107107
* Configuration to enable this app as an extension app, with the capability of interacting with
108108
* Android Device Policy offline.This field can be set for at most one app.The signing key
109109
* certificate fingerprint of the app on the device must match one of the entries in
110-
* ApplicationPolicy.signingKeyCerts or the signing key certificate fingerprints obtained from
111-
* Play Store for the app to be able to communicate with Android Device Policy. If the app is not
112-
* on Play Store and ApplicationPolicy.signingKeyCerts is not set, a NonComplianceDetail with
110+
* signingKeyFingerprintsSha256 or the signing key certificate fingerprints obtained from Play
111+
* Store for the app to be able to communicate with Android Device Policy. If the app is not on
112+
* Play Store and signingKeyFingerprintsSha256 is not set, a nonComplianceDetail with
113113
* INVALID_VALUE is reported.
114114
* The value may be {@code null}.
115115
*/
@@ -392,9 +392,9 @@ public ApplicationPolicy setDisabled(java.lang.Boolean disabled) {
392392
* Configuration to enable this app as an extension app, with the capability of interacting with
393393
* Android Device Policy offline.This field can be set for at most one app.The signing key
394394
* certificate fingerprint of the app on the device must match one of the entries in
395-
* ApplicationPolicy.signingKeyCerts or the signing key certificate fingerprints obtained from
396-
* Play Store for the app to be able to communicate with Android Device Policy. If the app is not
397-
* on Play Store and ApplicationPolicy.signingKeyCerts is not set, a NonComplianceDetail with
395+
* signingKeyFingerprintsSha256 or the signing key certificate fingerprints obtained from Play
396+
* Store for the app to be able to communicate with Android Device Policy. If the app is not on
397+
* Play Store and signingKeyFingerprintsSha256 is not set, a nonComplianceDetail with
398398
* INVALID_VALUE is reported.
399399
* @return value or {@code null} for none
400400
*/
@@ -406,9 +406,9 @@ public ExtensionConfig getExtensionConfig() {
406406
* Configuration to enable this app as an extension app, with the capability of interacting with
407407
* Android Device Policy offline.This field can be set for at most one app.The signing key
408408
* certificate fingerprint of the app on the device must match one of the entries in
409-
* ApplicationPolicy.signingKeyCerts or the signing key certificate fingerprints obtained from
410-
* Play Store for the app to be able to communicate with Android Device Policy. If the app is not
411-
* on Play Store and ApplicationPolicy.signingKeyCerts is not set, a NonComplianceDetail with
409+
* signingKeyFingerprintsSha256 or the signing key certificate fingerprints obtained from Play
410+
* Store for the app to be able to communicate with Android Device Policy. If the app is not on
411+
* Play Store and signingKeyFingerprintsSha256 is not set, a nonComplianceDetail with
412412
* INVALID_VALUE is reported.
413413
* @param extensionConfig extensionConfig or {@code null} for none
414414
*/

clients/google-api-services-androidmanagement/v1/2.0.0/com/google/api/services/androidmanagement/v1/model/DeviceConnectivityManagement.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ public final class DeviceConnectivityManagement extends com.google.api.client.js
5757
/**
5858
* Optional. Preferential network service configuration. Setting this field will override
5959
* preferentialNetworkService. This can be set on both work profiles and fully managed devices on
60-
* Android 13 and above.
60+
* Android 13 and above. See 5G network slicing
61+
* (https://developers.google.com/android/management/5g-network-slicing) guide for more details.
6162
* The value may be {@code null}.
6263
*/
6364
@com.google.api.client.util.Key
@@ -161,7 +162,8 @@ public DeviceConnectivityManagement setConfigureWifi(java.lang.String configureW
161162
/**
162163
* Optional. Preferential network service configuration. Setting this field will override
163164
* preferentialNetworkService. This can be set on both work profiles and fully managed devices on
164-
* Android 13 and above.
165+
* Android 13 and above. See 5G network slicing
166+
* (https://developers.google.com/android/management/5g-network-slicing) guide for more details.
165167
* @return value or {@code null} for none
166168
*/
167169
public PreferentialNetworkServiceSettings getPreferentialNetworkServiceSettings() {
@@ -171,7 +173,8 @@ public PreferentialNetworkServiceSettings getPreferentialNetworkServiceSettings(
171173
/**
172174
* Optional. Preferential network service configuration. Setting this field will override
173175
* preferentialNetworkService. This can be set on both work profiles and fully managed devices on
174-
* Android 13 and above.
176+
* Android 13 and above. See 5G network slicing
177+
* (https://developers.google.com/android/management/5g-network-slicing) guide for more details.
175178
* @param preferentialNetworkServiceSettings preferentialNetworkServiceSettings or {@code null} for none
176179
*/
177180
public DeviceConnectivityManagement setPreferentialNetworkServiceSettings(PreferentialNetworkServiceSettings preferentialNetworkServiceSettings) {

clients/google-api-services-androidmanagement/v1/2.0.0/com/google/api/services/androidmanagement/v1/model/ExtensionConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public final class ExtensionConfig extends com.google.api.client.json.GenericJso
4949
* hexadecimal string representations of 64 characters are valid.The signing key certificate
5050
* fingerprints are always obtained from the Play Store and this field is used to provide
5151
* additional signing key certificate fingerprints. However, if the application is not available
52-
* on the Play Store, this field needs to be set. A NonComplianceDetail with INVALID_VALUE is
52+
* on the Play Store, this field needs to be set. A nonComplianceDetail with INVALID_VALUE is
5353
* reported if this field is not set when the application is not available on the Play Store.The
5454
* signing key certificate fingerprint of the extension app on the device must match one of the
5555
* signing key certificate fingerprints obtained from the Play Store or the ones provided in this
@@ -84,7 +84,7 @@ public ExtensionConfig setNotificationReceiver(java.lang.String notificationRece
8484
* hexadecimal string representations of 64 characters are valid.The signing key certificate
8585
* fingerprints are always obtained from the Play Store and this field is used to provide
8686
* additional signing key certificate fingerprints. However, if the application is not available
87-
* on the Play Store, this field needs to be set. A NonComplianceDetail with INVALID_VALUE is
87+
* on the Play Store, this field needs to be set. A nonComplianceDetail with INVALID_VALUE is
8888
* reported if this field is not set when the application is not available on the Play Store.The
8989
* signing key certificate fingerprint of the extension app on the device must match one of the
9090
* signing key certificate fingerprints obtained from the Play Store or the ones provided in this
@@ -101,7 +101,7 @@ public java.util.List<java.lang.String> getSigningKeyFingerprintsSha256() {
101101
* hexadecimal string representations of 64 characters are valid.The signing key certificate
102102
* fingerprints are always obtained from the Play Store and this field is used to provide
103103
* additional signing key certificate fingerprints. However, if the application is not available
104-
* on the Play Store, this field needs to be set. A NonComplianceDetail with INVALID_VALUE is
104+
* on the Play Store, this field needs to be set. A nonComplianceDetail with INVALID_VALUE is
105105
* reported if this field is not set when the application is not available on the Play Store.The
106106
* signing key certificate fingerprint of the extension app on the device must match one of the
107107
* signing key certificate fingerprints obtained from the Play Store or the ones provided in this

clients/google-api-services-androidmanagement/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-androidmanagement</artifactId>
11-
<version>v1-rev20250602-2.0.0</version>
12-
<name>Android Management API v1-rev20250602-2.0.0</name>
11+
<version>v1-rev20250603-2.0.0</version>
12+
<name>Android Management API v1-rev20250603-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-androidmanagement/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-androidmanagement</artifactId>
25-
<version>v1-rev20250602-2.0.0</version>
25+
<version>v1-rev20250603-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20250602-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20250603-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)