Skip to content

Commit d87587d

Browse files
1 parent d8d730f commit d87587d

File tree

5 files changed

+121
-9
lines changed

5 files changed

+121
-9
lines changed

clients/google-api-services-testing/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-testing</artifactId>
25-
<version>v1-rev20240917-2.0.0</version>
25+
<version>v1-rev20241105-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-testing:v1-rev20240917-2.0.0'
38+
implementation 'com.google.apis:google-api-services-testing:v1-rev20241105-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-testing/v1/2.0.0/com/google/api/services/testing/model/ApkManifest.java

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,18 @@ public final class ApkManifest extends com.google.api.client.json.GenericJson {
9393
private java.util.List<UsesFeature> usesFeature;
9494

9595
/**
96-
* Permissions declared to be used by the application
9796
* The value may be {@code null}.
9897
*/
9998
@com.google.api.client.util.Key
10099
private java.util.List<java.lang.String> usesPermission;
101100

101+
/**
102+
* Permissions declared to be used by the application
103+
* The value may be {@code null}.
104+
*/
105+
@com.google.api.client.util.Key
106+
private java.util.List<UsesPermissionTag> usesPermissionTags;
107+
102108
/**
103109
* Version number used internally by the app.
104110
* The value may be {@code null}.
@@ -265,22 +271,37 @@ public ApkManifest setUsesFeature(java.util.List<UsesFeature> usesFeature) {
265271
}
266272

267273
/**
268-
* Permissions declared to be used by the application
269274
* @return value or {@code null} for none
270275
*/
271276
public java.util.List<java.lang.String> getUsesPermission() {
272277
return usesPermission;
273278
}
274279

275280
/**
276-
* Permissions declared to be used by the application
277281
* @param usesPermission usesPermission or {@code null} for none
278282
*/
279283
public ApkManifest setUsesPermission(java.util.List<java.lang.String> usesPermission) {
280284
this.usesPermission = usesPermission;
281285
return this;
282286
}
283287

288+
/**
289+
* Permissions declared to be used by the application
290+
* @return value or {@code null} for none
291+
*/
292+
public java.util.List<UsesPermissionTag> getUsesPermissionTags() {
293+
return usesPermissionTags;
294+
}
295+
296+
/**
297+
* Permissions declared to be used by the application
298+
* @param usesPermissionTags usesPermissionTags or {@code null} for none
299+
*/
300+
public ApkManifest setUsesPermissionTags(java.util.List<UsesPermissionTag> usesPermissionTags) {
301+
this.usesPermissionTags = usesPermissionTags;
302+
return this;
303+
}
304+
284305
/**
285306
* Version number used internally by the app.
286307
* @return value or {@code null} for none
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.testing.model;
18+
19+
/**
20+
* The tag within a manifest. https://developer.android.com/guide/topics/manifest/uses-permission-
21+
* element.html
22+
*
23+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24+
* transmitted over HTTP when working with the Cloud Testing API. For a detailed explanation 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 UsesPermissionTag extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The android:name value
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Integer maxSdkVersion;
39+
40+
/**
41+
* The android:name value
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String name;
46+
47+
/**
48+
* The android:name value
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.Integer getMaxSdkVersion() {
52+
return maxSdkVersion;
53+
}
54+
55+
/**
56+
* The android:name value
57+
* @param maxSdkVersion maxSdkVersion or {@code null} for none
58+
*/
59+
public UsesPermissionTag setMaxSdkVersion(java.lang.Integer maxSdkVersion) {
60+
this.maxSdkVersion = maxSdkVersion;
61+
return this;
62+
}
63+
64+
/**
65+
* The android:name value
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getName() {
69+
return name;
70+
}
71+
72+
/**
73+
* The android:name value
74+
* @param name name or {@code null} for none
75+
*/
76+
public UsesPermissionTag setName(java.lang.String name) {
77+
this.name = name;
78+
return this;
79+
}
80+
81+
@Override
82+
public UsesPermissionTag set(String fieldName, Object value) {
83+
return (UsesPermissionTag) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public UsesPermissionTag clone() {
88+
return (UsesPermissionTag) super.clone();
89+
}
90+
91+
}

clients/google-api-services-testing/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-testing</artifactId>
11-
<version>v1-rev20240917-2.0.0</version>
12-
<name>Cloud Testing API v1-rev20240917-2.0.0</name>
11+
<version>v1-rev20241105-2.0.0</version>
12+
<name>Cloud Testing API v1-rev20241105-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-testing/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-testing</artifactId>
25-
<version>v1-rev20240917-2.0.0</version>
25+
<version>v1-rev20241105-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-testing:v1-rev20240917-2.0.0'
38+
implementation 'com.google.apis:google-api-services-testing:v1-rev20241105-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)