Skip to content

Commit 9dd7913

Browse files
1 parent 4971652 commit 9dd7913

File tree

10 files changed

+102
-54
lines changed

10 files changed

+102
-54
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-rev20241204-2.0.0</version>
25+
<version>v1-rev20250106-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-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-file:v1-rev20250106-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-file/v1/2.0.0/com/google/api/services/file/v1/model/Instance.java

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@
3030
public final class Instance extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
34-
* it using the 'performance_config' field.
33+
* Output only. The time when the instance was created.
3534
* The value may be {@code null}.
3635
*/
3736
@com.google.api.client.util.Key
38-
private java.lang.Boolean configurablePerformanceEnabled;
37+
private String createTime;
3938

4039
/**
41-
* Output only. The time when the instance was created.
40+
* Output only. Indicates whether this instance supports configuring its performance. If true, the
41+
* user can configure the instance's performance by using the 'performance_config' field.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
45-
private String createTime;
45+
private java.lang.Boolean customPerformanceSupported;
4646

4747
/**
4848
* Optional. Indicates whether the instance is protected against deletion.
@@ -201,38 +201,38 @@ public final class Instance extends com.google.api.client.json.GenericJson {
201201
private java.lang.String tier;
202202

203203
/**
204-
* Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
205-
* it using the 'performance_config' field.
204+
* Output only. The time when the instance was created.
206205
* @return value or {@code null} for none
207206
*/
208-
public java.lang.Boolean getConfigurablePerformanceEnabled() {
209-
return configurablePerformanceEnabled;
207+
public String getCreateTime() {
208+
return createTime;
210209
}
211210

212211
/**
213-
* Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
214-
* it using the 'performance_config' field.
215-
* @param configurablePerformanceEnabled configurablePerformanceEnabled or {@code null} for none
212+
* Output only. The time when the instance was created.
213+
* @param createTime createTime or {@code null} for none
216214
*/
217-
public Instance setConfigurablePerformanceEnabled(java.lang.Boolean configurablePerformanceEnabled) {
218-
this.configurablePerformanceEnabled = configurablePerformanceEnabled;
215+
public Instance setCreateTime(String createTime) {
216+
this.createTime = createTime;
219217
return this;
220218
}
221219

222220
/**
223-
* Output only. The time when the instance was created.
221+
* Output only. Indicates whether this instance supports configuring its performance. If true, the
222+
* user can configure the instance's performance by using the 'performance_config' field.
224223
* @return value or {@code null} for none
225224
*/
226-
public String getCreateTime() {
227-
return createTime;
225+
public java.lang.Boolean getCustomPerformanceSupported() {
226+
return customPerformanceSupported;
228227
}
229228

230229
/**
231-
* Output only. The time when the instance was created.
232-
* @param createTime createTime or {@code null} for none
230+
* Output only. Indicates whether this instance supports configuring its performance. If true, the
231+
* user can configure the instance's performance by using the 'performance_config' field.
232+
* @param customPerformanceSupported customPerformanceSupported or {@code null} for none
233233
*/
234-
public Instance setCreateTime(String createTime) {
235-
this.createTime = createTime;
234+
public Instance setCustomPerformanceSupported(java.lang.Boolean customPerformanceSupported) {
235+
this.customPerformanceSupported = customPerformanceSupported;
236236
return this;
237237
}
238238

clients/google-api-services-file/v1/2.0.0/com/google/api/services/file/v1/model/PerformanceLimits.java

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

32+
/**
33+
* Output only. The max IOPS.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
37+
private java.lang.Long maxIops;
38+
3239
/**
3340
* Output only. The max read IOPS.
3441
* The value may be {@code null}.
@@ -57,6 +64,23 @@ public final class PerformanceLimits extends com.google.api.client.json.GenericJ
5764
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
5865
private java.lang.Long maxWriteThroughputBps;
5966

67+
/**
68+
* Output only. The max IOPS.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.Long getMaxIops() {
72+
return maxIops;
73+
}
74+
75+
/**
76+
* Output only. The max IOPS.
77+
* @param maxIops maxIops or {@code null} for none
78+
*/
79+
public PerformanceLimits setMaxIops(java.lang.Long maxIops) {
80+
this.maxIops = maxIops;
81+
return this;
82+
}
83+
6084
/**
6185
* Output only. The max read IOPS.
6286
* @return value or {@code null} for none

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-rev20241204-2.0.0</version>
12-
<name>Cloud Filestore API v1-rev20241204-2.0.0</name>
11+
<version>v1-rev20250106-2.0.0</version>
12+
<name>Cloud Filestore API v1-rev20250106-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-rev20241204-2.0.0</version>
25+
<version>v1-rev20250106-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-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-file:v1-rev20250106-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-rev20241204-2.0.0</version>
25+
<version>v1beta1-rev20250106-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-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-file:v1beta1-rev20250106-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: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@ public final class Instance extends com.google.api.client.json.GenericJson {
4545
private java.lang.Long capacityStepSizeGb;
4646

4747
/**
48-
* Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
49-
* it using the 'performance_config' field.
48+
* Output only. The time when the instance was created.
5049
* The value may be {@code null}.
5150
*/
5251
@com.google.api.client.util.Key
53-
private java.lang.Boolean configurablePerformanceEnabled;
52+
private String createTime;
5453

5554
/**
56-
* Output only. The time when the instance was created.
55+
* Output only. Indicates whether this instance supports configuring its performance. If true, the
56+
* user can configure the instance's performance by using the 'performance_config' field.
5757
* The value may be {@code null}.
5858
*/
5959
@com.google.api.client.util.Key
60-
private String createTime;
60+
private java.lang.Boolean customPerformanceSupported;
6161

6262
/**
6363
* Optional. Indicates whether the instance is protected against deletion.
@@ -283,38 +283,38 @@ public Instance setCapacityStepSizeGb(java.lang.Long capacityStepSizeGb) {
283283
}
284284

285285
/**
286-
* Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
287-
* it using the 'performance_config' field.
286+
* Output only. The time when the instance was created.
288287
* @return value or {@code null} for none
289288
*/
290-
public java.lang.Boolean getConfigurablePerformanceEnabled() {
291-
return configurablePerformanceEnabled;
289+
public String getCreateTime() {
290+
return createTime;
292291
}
293292

294293
/**
295-
* Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
296-
* it using the 'performance_config' field.
297-
* @param configurablePerformanceEnabled configurablePerformanceEnabled or {@code null} for none
294+
* Output only. The time when the instance was created.
295+
* @param createTime createTime or {@code null} for none
298296
*/
299-
public Instance setConfigurablePerformanceEnabled(java.lang.Boolean configurablePerformanceEnabled) {
300-
this.configurablePerformanceEnabled = configurablePerformanceEnabled;
297+
public Instance setCreateTime(String createTime) {
298+
this.createTime = createTime;
301299
return this;
302300
}
303301

304302
/**
305-
* Output only. The time when the instance was created.
303+
* Output only. Indicates whether this instance supports configuring its performance. If true, the
304+
* user can configure the instance's performance by using the 'performance_config' field.
306305
* @return value or {@code null} for none
307306
*/
308-
public String getCreateTime() {
309-
return createTime;
307+
public java.lang.Boolean getCustomPerformanceSupported() {
308+
return customPerformanceSupported;
310309
}
311310

312311
/**
313-
* Output only. The time when the instance was created.
314-
* @param createTime createTime or {@code null} for none
312+
* Output only. Indicates whether this instance supports configuring its performance. If true, the
313+
* user can configure the instance's performance by using the 'performance_config' field.
314+
* @param customPerformanceSupported customPerformanceSupported or {@code null} for none
315315
*/
316-
public Instance setCreateTime(String createTime) {
317-
this.createTime = createTime;
316+
public Instance setCustomPerformanceSupported(java.lang.Boolean customPerformanceSupported) {
317+
this.customPerformanceSupported = customPerformanceSupported;
318318
return this;
319319
}
320320

clients/google-api-services-file/v1beta1/2.0.0/com/google/api/services/file/v1beta1/model/PerformanceLimits.java

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

32+
/**
33+
* Output only. The max IOPS.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
37+
private java.lang.Long maxIops;
38+
3239
/**
3340
* Output only. The max read IOPS.
3441
* The value may be {@code null}.
@@ -57,6 +64,23 @@ public final class PerformanceLimits extends com.google.api.client.json.GenericJ
5764
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
5865
private java.lang.Long maxWriteThroughputBps;
5966

67+
/**
68+
* Output only. The max IOPS.
69+
* @return value or {@code null} for none
70+
*/
71+
public java.lang.Long getMaxIops() {
72+
return maxIops;
73+
}
74+
75+
/**
76+
* Output only. The max IOPS.
77+
* @param maxIops maxIops or {@code null} for none
78+
*/
79+
public PerformanceLimits setMaxIops(java.lang.Long maxIops) {
80+
this.maxIops = maxIops;
81+
return this;
82+
}
83+
6084
/**
6185
* Output only. The max read IOPS.
6286
* @return value or {@code null} for none

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-rev20241204-2.0.0</version>
12-
<name>Cloud Filestore API v1beta1-rev20241204-2.0.0</name>
11+
<version>v1beta1-rev20250106-2.0.0</version>
12+
<name>Cloud Filestore API v1beta1-rev20250106-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-rev20241204-2.0.0</version>
25+
<version>v1beta1-rev20250106-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-rev20241204-2.0.0'
38+
implementation 'com.google.apis:google-api-services-file:v1beta1-rev20250106-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)