Skip to content

Commit 2911bb0

Browse files
1 parent c850c9d commit 2911bb0

File tree

7 files changed

+39
-12
lines changed

7 files changed

+39
-12
lines changed

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

clients/google-api-services-file/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-file</artifactId>
11-
<version>v1-rev20250716-2.0.0</version>
12-
<name>Cloud Filestore API v1-rev20250716-2.0.0</name>
11+
<version>v1-rev20250731-2.0.0</version>
12+
<name>Cloud Filestore API v1-rev20250731-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-file/v1beta1/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-file</artifactId>
25-
<version>v1beta1-rev20250716-2.0.0</version>
25+
<version>v1beta1-rev20250731-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-file:v1beta1-rev20250716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-file:v1beta1-rev20250731-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-file/v1beta1/2.0.0/com/google/api/services/file/v1beta1/model/Instance.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 Instance extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Immutable. Designates the backend type of this instance. Intended to be used by
34+
* internal tests and allowed customers.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String backendType;
39+
3240
/**
3341
* The storage capacity of the instance in gigabytes (GB = 1024^3 bytes). This capacity can be
3442
* increased up to `max_capacity_gb` GB in multipliers of `capacity_step_size_gb` GB.
@@ -245,6 +253,25 @@ public final class Instance extends com.google.api.client.json.GenericJson {
245253
@com.google.api.client.util.Key
246254
private java.lang.String tier;
247255

256+
/**
257+
* Optional. Immutable. Designates the backend type of this instance. Intended to be used by
258+
* internal tests and allowed customers.
259+
* @return value or {@code null} for none
260+
*/
261+
public java.lang.String getBackendType() {
262+
return backendType;
263+
}
264+
265+
/**
266+
* Optional. Immutable. Designates the backend type of this instance. Intended to be used by
267+
* internal tests and allowed customers.
268+
* @param backendType backendType or {@code null} for none
269+
*/
270+
public Instance setBackendType(java.lang.String backendType) {
271+
this.backendType = backendType;
272+
return this;
273+
}
274+
248275
/**
249276
* The storage capacity of the instance in gigabytes (GB = 1024^3 bytes). This capacity can be
250277
* increased up to `max_capacity_gb` GB in multipliers of `capacity_step_size_gb` GB.

clients/google-api-services-file/v1beta1/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-file</artifactId>
11-
<version>v1beta1-rev20250716-2.0.0</version>
12-
<name>Cloud Filestore API v1beta1-rev20250716-2.0.0</name>
11+
<version>v1beta1-rev20250731-2.0.0</version>
12+
<name>Cloud Filestore API v1beta1-rev20250731-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-file/v1beta1/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-file</artifactId>
25-
<version>v1beta1-rev20250716-2.0.0</version>
25+
<version>v1beta1-rev20250731-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-file:v1beta1-rev20250716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-file:v1beta1-rev20250731-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)