Skip to content

Commit b70e164

Browse files
1 parent 7ab3020 commit b70e164

File tree

6 files changed

+33
-27
lines changed

6 files changed

+33
-27
lines changed

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

clients/google-api-services-workstations/v1/2.0.0/com/google/api/services/workstations/v1/model/GceRegionalPersistentDisk.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public final class GceRegionalPersistentDisk extends com.google.api.client.json.
7272

7373
/**
7474
* Optional. Name of the snapshot to use as the source for the disk. If set, size_gb and fs_type
75-
* must be empty.
75+
* must be empty. Must be formatted as ext4 file system with no partitions.
7676
* The value may be {@code null}.
7777
*/
7878
@com.google.api.client.util.Key
@@ -162,7 +162,7 @@ public GceRegionalPersistentDisk setSizeGb(java.lang.Integer sizeGb) {
162162

163163
/**
164164
* Optional. Name of the snapshot to use as the source for the disk. If set, size_gb and fs_type
165-
* must be empty.
165+
* must be empty. Must be formatted as ext4 file system with no partitions.
166166
* @return value or {@code null} for none
167167
*/
168168
public java.lang.String getSourceSnapshot() {
@@ -171,7 +171,7 @@ public java.lang.String getSourceSnapshot() {
171171

172172
/**
173173
* Optional. Name of the snapshot to use as the source for the disk. If set, size_gb and fs_type
174-
* must be empty.
174+
* must be empty. Must be formatted as ext4 file system with no partitions.
175175
* @param sourceSnapshot sourceSnapshot or {@code null} for none
176176
*/
177177
public GceRegionalPersistentDisk setSourceSnapshot(java.lang.String sourceSnapshot) {

clients/google-api-services-workstations/v1/2.0.0/com/google/api/services/workstations/v1/model/WorkstationCluster.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ public final class WorkstationCluster extends com.google.api.client.json.Generic
6969

7070
/**
7171
* Output only. Whether this workstation cluster is in degraded mode, in which case it may require
72-
* user action to restore full functionality. Details can be found in conditions.
72+
* user action to restore full functionality. The conditions field contains detailed information
73+
* about the status of the cluster.
7374
* The value may be {@code null}.
7475
*/
7576
@com.google.api.client.util.Key
@@ -153,8 +154,8 @@ public final class WorkstationCluster extends com.google.api.client.json.Generic
153154
private java.lang.String subnetwork;
154155

155156
/**
156-
* Optional. Tag keys/values directly bound to this resource. For example: "123/environment":
157-
* "production", "123/costCenter": "marketing"
157+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
158+
* "123/environment": "production", "123/costCenter": "marketing"
158159
* The value may be {@code null}.
159160
*/
160161
@com.google.api.client.util.Key
@@ -248,7 +249,8 @@ public WorkstationCluster setCreateTime(String createTime) {
248249

249250
/**
250251
* Output only. Whether this workstation cluster is in degraded mode, in which case it may require
251-
* user action to restore full functionality. Details can be found in conditions.
252+
* user action to restore full functionality. The conditions field contains detailed information
253+
* about the status of the cluster.
252254
* @return value or {@code null} for none
253255
*/
254256
public java.lang.Boolean getDegraded() {
@@ -257,7 +259,8 @@ public java.lang.Boolean getDegraded() {
257259

258260
/**
259261
* Output only. Whether this workstation cluster is in degraded mode, in which case it may require
260-
* user action to restore full functionality. Details can be found in conditions.
262+
* user action to restore full functionality. The conditions field contains detailed information
263+
* about the status of the cluster.
261264
* @param degraded degraded or {@code null} for none
262265
*/
263266
public WorkstationCluster setDegraded(java.lang.Boolean degraded) {
@@ -450,17 +453,17 @@ public WorkstationCluster setSubnetwork(java.lang.String subnetwork) {
450453
}
451454

452455
/**
453-
* Optional. Tag keys/values directly bound to this resource. For example: "123/environment":
454-
* "production", "123/costCenter": "marketing"
456+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
457+
* "123/environment": "production", "123/costCenter": "marketing"
455458
* @return value or {@code null} for none
456459
*/
457460
public java.util.Map<String, java.lang.String> getTags() {
458461
return tags;
459462
}
460463

461464
/**
462-
* Optional. Tag keys/values directly bound to this resource. For example: "123/environment":
463-
* "production", "123/costCenter": "marketing"
465+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
466+
* "123/environment": "production", "123/costCenter": "marketing"
464467
* @param tags tags or {@code null} for none
465468
*/
466469
public WorkstationCluster setTags(java.util.Map<String, java.lang.String> tags) {

clients/google-api-services-workstations/v1/2.0.0/com/google/api/services/workstations/v1/model/WorkstationConfig.java

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public final class WorkstationConfig extends com.google.api.client.json.GenericJ
5858
private java.util.Map<String, java.lang.String> annotations;
5959

6060
/**
61-
* Output only. Status conditions describing the current resource state.
61+
* Output only. Status conditions describing the workstation configuration's current state.
6262
* The value may be {@code null}.
6363
*/
6464
@com.google.api.client.util.Key
@@ -86,8 +86,9 @@ public final class WorkstationConfig extends com.google.api.client.json.GenericJ
8686
private String createTime;
8787

8888
/**
89-
* Output only. Whether this resource is degraded, in which case it may require user action to
90-
* restore full functionality. See also the conditions field.
89+
* Output only. Whether this workstation configuration is in degraded mode, in which case it may
90+
* require user action to restore full functionality. The conditions field contains detailed
91+
* information about the status of the configuration.
9192
* The value may be {@code null}.
9293
*/
9394
@com.google.api.client.util.Key
@@ -342,15 +343,15 @@ public WorkstationConfig setAnnotations(java.util.Map<String, java.lang.String>
342343
}
343344

344345
/**
345-
* Output only. Status conditions describing the current resource state.
346+
* Output only. Status conditions describing the workstation configuration's current state.
346347
* @return value or {@code null} for none
347348
*/
348349
public java.util.List<Status> getConditions() {
349350
return conditions;
350351
}
351352

352353
/**
353-
* Output only. Status conditions describing the current resource state.
354+
* Output only. Status conditions describing the workstation configuration's current state.
354355
* @param conditions conditions or {@code null} for none
355356
*/
356357
public WorkstationConfig setConditions(java.util.List<Status> conditions) {
@@ -395,17 +396,19 @@ public WorkstationConfig setCreateTime(String createTime) {
395396
}
396397

397398
/**
398-
* Output only. Whether this resource is degraded, in which case it may require user action to
399-
* restore full functionality. See also the conditions field.
399+
* Output only. Whether this workstation configuration is in degraded mode, in which case it may
400+
* require user action to restore full functionality. The conditions field contains detailed
401+
* information about the status of the configuration.
400402
* @return value or {@code null} for none
401403
*/
402404
public java.lang.Boolean getDegraded() {
403405
return degraded;
404406
}
405407

406408
/**
407-
* Output only. Whether this resource is degraded, in which case it may require user action to
408-
* restore full functionality. See also the conditions field.
409+
* Output only. Whether this workstation configuration is in degraded mode, in which case it may
410+
* require user action to restore full functionality. The conditions field contains detailed
411+
* information about the status of the configuration.
409412
* @param degraded degraded or {@code null} for none
410413
*/
411414
public WorkstationConfig setDegraded(java.lang.Boolean degraded) {

clients/google-api-services-workstations/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-workstations</artifactId>
11-
<version>v1-rev20250219-2.0.0</version>
12-
<name>Cloud Workstations API v1-rev20250219-2.0.0</name>
11+
<version>v1-rev20250311-2.0.0</version>
12+
<name>Cloud Workstations API v1-rev20250311-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)