Skip to content

Commit 90e451d

Browse files
1 parent 006bd32 commit 90e451d

File tree

6 files changed

+191
-6
lines changed

6 files changed

+191
-6
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-rev20240923-2.0.0</version>
25+
<version>v1-rev20240924-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-rev20240923-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20240924-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ public final class DeviceConnectivityManagement extends com.google.api.client.js
6363
@com.google.api.client.util.Key
6464
private java.lang.String wifiDirectSettings;
6565

66+
/**
67+
* Optional. Wi-Fi roaming policy.
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key
71+
private WifiRoamingPolicy wifiRoamingPolicy;
72+
6673
/**
6774
* Restrictions on which Wi-Fi SSIDs the device can connect to. Note that this does not affect
6875
* which networks can be configured on the device. Supported on company-owned devices running
@@ -148,6 +155,23 @@ public DeviceConnectivityManagement setWifiDirectSettings(java.lang.String wifiD
148155
return this;
149156
}
150157

158+
/**
159+
* Optional. Wi-Fi roaming policy.
160+
* @return value or {@code null} for none
161+
*/
162+
public WifiRoamingPolicy getWifiRoamingPolicy() {
163+
return wifiRoamingPolicy;
164+
}
165+
166+
/**
167+
* Optional. Wi-Fi roaming policy.
168+
* @param wifiRoamingPolicy wifiRoamingPolicy or {@code null} for none
169+
*/
170+
public DeviceConnectivityManagement setWifiRoamingPolicy(WifiRoamingPolicy wifiRoamingPolicy) {
171+
this.wifiRoamingPolicy = wifiRoamingPolicy;
172+
return this;
173+
}
174+
151175
/**
152176
* Restrictions on which Wi-Fi SSIDs the device can connect to. Note that this does not affect
153177
* which networks can be configured on the device. Supported on company-owned devices running
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.androidmanagement.v1.model;
18+
19+
/**
20+
* Wi-Fi roaming policy.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Android Management API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class WifiRoamingPolicy extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Wi-Fi roaming settings. SSIDs provided in this list must be unique, the policy will
35+
* be rejected otherwise.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<WifiRoamingSetting> wifiRoamingSettings;
40+
41+
/**
42+
* Optional. Wi-Fi roaming settings. SSIDs provided in this list must be unique, the policy will
43+
* be rejected otherwise.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.util.List<WifiRoamingSetting> getWifiRoamingSettings() {
47+
return wifiRoamingSettings;
48+
}
49+
50+
/**
51+
* Optional. Wi-Fi roaming settings. SSIDs provided in this list must be unique, the policy will
52+
* be rejected otherwise.
53+
* @param wifiRoamingSettings wifiRoamingSettings or {@code null} for none
54+
*/
55+
public WifiRoamingPolicy setWifiRoamingSettings(java.util.List<WifiRoamingSetting> wifiRoamingSettings) {
56+
this.wifiRoamingSettings = wifiRoamingSettings;
57+
return this;
58+
}
59+
60+
@Override
61+
public WifiRoamingPolicy set(String fieldName, Object value) {
62+
return (WifiRoamingPolicy) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public WifiRoamingPolicy clone() {
67+
return (WifiRoamingPolicy) super.clone();
68+
}
69+
70+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.androidmanagement.v1.model;
18+
19+
/**
20+
* Wi-Fi roaming setting.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Android Management API. For a detailed explanation
24+
* see:
25+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class WifiRoamingSetting extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Wi-Fi roaming mode for the specified SSID.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String wifiRoamingMode;
39+
40+
/**
41+
* Required. SSID of the Wi-Fi network.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String wifiSsid;
46+
47+
/**
48+
* Required. Wi-Fi roaming mode for the specified SSID.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getWifiRoamingMode() {
52+
return wifiRoamingMode;
53+
}
54+
55+
/**
56+
* Required. Wi-Fi roaming mode for the specified SSID.
57+
* @param wifiRoamingMode wifiRoamingMode or {@code null} for none
58+
*/
59+
public WifiRoamingSetting setWifiRoamingMode(java.lang.String wifiRoamingMode) {
60+
this.wifiRoamingMode = wifiRoamingMode;
61+
return this;
62+
}
63+
64+
/**
65+
* Required. SSID of the Wi-Fi network.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getWifiSsid() {
69+
return wifiSsid;
70+
}
71+
72+
/**
73+
* Required. SSID of the Wi-Fi network.
74+
* @param wifiSsid wifiSsid or {@code null} for none
75+
*/
76+
public WifiRoamingSetting setWifiSsid(java.lang.String wifiSsid) {
77+
this.wifiSsid = wifiSsid;
78+
return this;
79+
}
80+
81+
@Override
82+
public WifiRoamingSetting set(String fieldName, Object value) {
83+
return (WifiRoamingSetting) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public WifiRoamingSetting clone() {
88+
return (WifiRoamingSetting) super.clone();
89+
}
90+
91+
}

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-rev20240923-2.0.0</version>
12-
<name>Android Management API v1-rev20240923-2.0.0</name>
11+
<version>v1-rev20240924-2.0.0</version>
12+
<name>Android Management API v1-rev20240924-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-rev20240923-2.0.0</version>
25+
<version>v1-rev20240924-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-rev20240923-2.0.0'
38+
implementation 'com.google.apis:google-api-services-androidmanagement:v1-rev20240924-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)