Skip to content

Commit 65809b1

Browse files
1 parent 8156c36 commit 65809b1

File tree

5 files changed

+56
-6
lines changed

5 files changed

+56
-6
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-rev20250304-2.0.0</version>
25+
<version>v1-rev20250327-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-rev20250304-2.0.0'
38+
implementation 'com.google.apis:google-api-services-testing:v1-rev20250327-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1716,6 +1716,29 @@ public Get setEnvironmentType(java.lang.String environmentType) {
17161716
return this;
17171717
}
17181718

1719+
/**
1720+
* Optional. Whether to include viewable only models in the response. This is only applicable
1721+
* for Android models.
1722+
*/
1723+
@com.google.api.client.util.Key
1724+
private java.lang.Boolean includeViewableModels;
1725+
1726+
/** Optional. Whether to include viewable only models in the response. This is only applicable for
1727+
Android models.
1728+
*/
1729+
public java.lang.Boolean getIncludeViewableModels() {
1730+
return includeViewableModels;
1731+
}
1732+
1733+
/**
1734+
* Optional. Whether to include viewable only models in the response. This is only applicable
1735+
* for Android models.
1736+
*/
1737+
public Get setIncludeViewableModels(java.lang.Boolean includeViewableModels) {
1738+
this.includeViewableModels = includeViewableModels;
1739+
return this;
1740+
}
1741+
17191742
/** For authorization, the cloud project requesting the TestEnvironmentCatalog. */
17201743
@com.google.api.client.util.Key
17211744
private java.lang.String projectId;

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@
2929
@SuppressWarnings("javadoc")
3030
public final class AndroidModel extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Reasons for access denial. This model is accessible if this list is empty, otherwise the model
34+
* is viewable only.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.util.List<java.lang.String> accessDeniedReasons;
39+
3240
/**
3341
* The company that this device is branded with. Example: "Google", "Samsung".
3442
* The value may be {@code null}.
@@ -153,6 +161,25 @@ public final class AndroidModel extends com.google.api.client.json.GenericJson {
153161
@com.google.api.client.util.Key
154162
private java.lang.String thumbnailUrl;
155163

164+
/**
165+
* Reasons for access denial. This model is accessible if this list is empty, otherwise the model
166+
* is viewable only.
167+
* @return value or {@code null} for none
168+
*/
169+
public java.util.List<java.lang.String> getAccessDeniedReasons() {
170+
return accessDeniedReasons;
171+
}
172+
173+
/**
174+
* Reasons for access denial. This model is accessible if this list is empty, otherwise the model
175+
* is viewable only.
176+
* @param accessDeniedReasons accessDeniedReasons or {@code null} for none
177+
*/
178+
public AndroidModel setAccessDeniedReasons(java.util.List<java.lang.String> accessDeniedReasons) {
179+
this.accessDeniedReasons = accessDeniedReasons;
180+
return this;
181+
}
182+
156183
/**
157184
* The company that this device is branded with. Example: "Google", "Samsung".
158185
* @return value or {@code null} for none

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-rev20250304-2.0.0</version>
12-
<name>Cloud Testing API v1-rev20250304-2.0.0</name>
11+
<version>v1-rev20250327-2.0.0</version>
12+
<name>Cloud Testing API v1-rev20250327-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-rev20250304-2.0.0</version>
25+
<version>v1-rev20250327-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-rev20250304-2.0.0'
38+
implementation 'com.google.apis:google-api-services-testing:v1-rev20250327-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)