Skip to content

Commit db37b02

Browse files
1 parent 2239618 commit db37b02

File tree

4 files changed

+33
-6
lines changed

4 files changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ public final class LabInfo extends com.google.api.client.json.GenericJson {
3636
@com.google.api.client.util.Key
3737
private java.lang.String name;
3838

39+
/**
40+
* The Unicode country/region code (CLDR) of the lab where the device is hosted. E.g. "US" for
41+
* United States, "CH" for Switzerland.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String regionCode;
46+
3947
/**
4048
* Lab name where the device is hosted. If empty, the device is hosted in a Google owned lab.
4149
* @return value or {@code null} for none
@@ -53,6 +61,25 @@ public LabInfo setName(java.lang.String name) {
5361
return this;
5462
}
5563

64+
/**
65+
* The Unicode country/region code (CLDR) of the lab where the device is hosted. E.g. "US" for
66+
* United States, "CH" for Switzerland.
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getRegionCode() {
70+
return regionCode;
71+
}
72+
73+
/**
74+
* The Unicode country/region code (CLDR) of the lab where the device is hosted. E.g. "US" for
75+
* United States, "CH" for Switzerland.
76+
* @param regionCode regionCode or {@code null} for none
77+
*/
78+
public LabInfo setRegionCode(java.lang.String regionCode) {
79+
this.regionCode = regionCode;
80+
return this;
81+
}
82+
5683
@Override
5784
public LabInfo set(String fieldName, Object value) {
5885
return (LabInfo) super.set(fieldName, value);

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

0 commit comments

Comments
 (0)