Skip to content

Commit 3acc5bf

Browse files
1 parent ed6ae75 commit 3acc5bf

File tree

12 files changed

+677
-6
lines changed

12 files changed

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

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+
* Information about the application to be set as the default.
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 DefaultApplication extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The package name that should be set as the default application. The policy is
35+
* rejected if the package name is invalid.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String packageName;
40+
41+
/**
42+
* Required. The package name that should be set as the default application. The policy is
43+
* rejected if the package name is invalid.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getPackageName() {
47+
return packageName;
48+
}
49+
50+
/**
51+
* Required. The package name that should be set as the default application. The policy is
52+
* rejected if the package name is invalid.
53+
* @param packageName packageName or {@code null} for none
54+
*/
55+
public DefaultApplication setPackageName(java.lang.String packageName) {
56+
this.packageName = packageName;
57+
return this;
58+
}
59+
60+
@Override
61+
public DefaultApplication set(String fieldName, Object value) {
62+
return (DefaultApplication) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public DefaultApplication clone() {
67+
return (DefaultApplication) super.clone();
68+
}
69+
70+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
* Additional context for non-compliance related to default application settings.
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 DefaultApplicationContext extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The scope of non-compliant default application setting.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String defaultApplicationScope;
39+
40+
/**
41+
* Output only. The scope of non-compliant default application setting.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getDefaultApplicationScope() {
45+
return defaultApplicationScope;
46+
}
47+
48+
/**
49+
* Output only. The scope of non-compliant default application setting.
50+
* @param defaultApplicationScope defaultApplicationScope or {@code null} for none
51+
*/
52+
public DefaultApplicationContext setDefaultApplicationScope(java.lang.String defaultApplicationScope) {
53+
this.defaultApplicationScope = defaultApplicationScope;
54+
return this;
55+
}
56+
57+
@Override
58+
public DefaultApplicationContext set(String fieldName, Object value) {
59+
return (DefaultApplicationContext) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public DefaultApplicationContext clone() {
64+
return (DefaultApplicationContext) super.clone();
65+
}
66+
67+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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+
* The default application information for a specific DefaultApplicationType.
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 DefaultApplicationInfo extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. Details on the default application setting attempts, in the same order as listed
35+
* in defaultApplications.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<DefaultApplicationSettingAttempt> defaultApplicationSettingAttempts;
40+
41+
/**
42+
* Output only. The default application type.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String defaultApplicationType;
47+
48+
/**
49+
* Output only. The package name of the current default application.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String packageName;
54+
55+
/**
56+
* Output only. Details on the default application setting attempts, in the same order as listed
57+
* in defaultApplications.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.util.List<DefaultApplicationSettingAttempt> getDefaultApplicationSettingAttempts() {
61+
return defaultApplicationSettingAttempts;
62+
}
63+
64+
/**
65+
* Output only. Details on the default application setting attempts, in the same order as listed
66+
* in defaultApplications.
67+
* @param defaultApplicationSettingAttempts defaultApplicationSettingAttempts or {@code null} for none
68+
*/
69+
public DefaultApplicationInfo setDefaultApplicationSettingAttempts(java.util.List<DefaultApplicationSettingAttempt> defaultApplicationSettingAttempts) {
70+
this.defaultApplicationSettingAttempts = defaultApplicationSettingAttempts;
71+
return this;
72+
}
73+
74+
/**
75+
* Output only. The default application type.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getDefaultApplicationType() {
79+
return defaultApplicationType;
80+
}
81+
82+
/**
83+
* Output only. The default application type.
84+
* @param defaultApplicationType defaultApplicationType or {@code null} for none
85+
*/
86+
public DefaultApplicationInfo setDefaultApplicationType(java.lang.String defaultApplicationType) {
87+
this.defaultApplicationType = defaultApplicationType;
88+
return this;
89+
}
90+
91+
/**
92+
* Output only. The package name of the current default application.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getPackageName() {
96+
return packageName;
97+
}
98+
99+
/**
100+
* Output only. The package name of the current default application.
101+
* @param packageName packageName or {@code null} for none
102+
*/
103+
public DefaultApplicationInfo setPackageName(java.lang.String packageName) {
104+
this.packageName = packageName;
105+
return this;
106+
}
107+
108+
@Override
109+
public DefaultApplicationInfo set(String fieldName, Object value) {
110+
return (DefaultApplicationInfo) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public DefaultApplicationInfo clone() {
115+
return (DefaultApplicationInfo) super.clone();
116+
}
117+
118+
}

0 commit comments

Comments
 (0)