Skip to content

Commit 38e0308

Browse files
1 parent 4c3a02e commit 38e0308

File tree

5 files changed

+33
-15
lines changed

5 files changed

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

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

Lines changed: 24 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@ public final class GcePersistentDisk extends com.google.api.client.json.GenericJ
4848
/**
4949
* Optional. Name of the disk image to use as the source for the disk. Must be empty if
5050
* source_snapshot is set. Updating source_image will update content in the ephemeral directory
51-
* after the workstation is restarted. This field is mutable.
51+
* after the workstation is restarted. Only file systems supported by Container-Optimized OS (COS)
52+
* are explicitly supported. For a list of supported file systems, please refer to the [COS
53+
* documentation](https://cloud.google.com/container-optimized-os/docs/concepts/supported-
54+
* filesystems). This field is mutable.
5255
* The value may be {@code null}.
5356
*/
5457
@com.google.api.client.util.Key
@@ -57,7 +60,10 @@ public final class GcePersistentDisk extends com.google.api.client.json.GenericJ
5760
/**
5861
* Optional. Name of the snapshot to use as the source for the disk. Must be empty if source_image
5962
* is set. Must be empty if read_only is false. Updating source_snapshot will update content in
60-
* the ephemeral directory after the workstation is restarted. This field is mutable.
63+
* the ephemeral directory after the workstation is restarted. Only file systems supported by
64+
* Container-Optimized OS (COS) are explicitly supported. For a list of supported file systems,
65+
* please refer to the [COS documentation](https://cloud.google.com/container-optimized-
66+
* os/docs/concepts/supported-filesystems). This field is mutable.
6167
* The value may be {@code null}.
6268
*/
6369
@com.google.api.client.util.Key
@@ -102,7 +108,10 @@ public GcePersistentDisk setReadOnly(java.lang.Boolean readOnly) {
102108
/**
103109
* Optional. Name of the disk image to use as the source for the disk. Must be empty if
104110
* source_snapshot is set. Updating source_image will update content in the ephemeral directory
105-
* after the workstation is restarted. This field is mutable.
111+
* after the workstation is restarted. Only file systems supported by Container-Optimized OS (COS)
112+
* are explicitly supported. For a list of supported file systems, please refer to the [COS
113+
* documentation](https://cloud.google.com/container-optimized-os/docs/concepts/supported-
114+
* filesystems). This field is mutable.
106115
* @return value or {@code null} for none
107116
*/
108117
public java.lang.String getSourceImage() {
@@ -112,7 +121,10 @@ public java.lang.String getSourceImage() {
112121
/**
113122
* Optional. Name of the disk image to use as the source for the disk. Must be empty if
114123
* source_snapshot is set. Updating source_image will update content in the ephemeral directory
115-
* after the workstation is restarted. This field is mutable.
124+
* after the workstation is restarted. Only file systems supported by Container-Optimized OS (COS)
125+
* are explicitly supported. For a list of supported file systems, please refer to the [COS
126+
* documentation](https://cloud.google.com/container-optimized-os/docs/concepts/supported-
127+
* filesystems). This field is mutable.
116128
* @param sourceImage sourceImage or {@code null} for none
117129
*/
118130
public GcePersistentDisk setSourceImage(java.lang.String sourceImage) {
@@ -123,7 +135,10 @@ public GcePersistentDisk setSourceImage(java.lang.String sourceImage) {
123135
/**
124136
* Optional. Name of the snapshot to use as the source for the disk. Must be empty if source_image
125137
* is set. Must be empty if read_only is false. Updating source_snapshot will update content in
126-
* the ephemeral directory after the workstation is restarted. This field is mutable.
138+
* the ephemeral directory after the workstation is restarted. Only file systems supported by
139+
* Container-Optimized OS (COS) are explicitly supported. For a list of supported file systems,
140+
* please refer to the [COS documentation](https://cloud.google.com/container-optimized-
141+
* os/docs/concepts/supported-filesystems). This field is mutable.
127142
* @return value or {@code null} for none
128143
*/
129144
public java.lang.String getSourceSnapshot() {
@@ -133,7 +148,10 @@ public java.lang.String getSourceSnapshot() {
133148
/**
134149
* Optional. Name of the snapshot to use as the source for the disk. Must be empty if source_image
135150
* is set. Must be empty if read_only is false. Updating source_snapshot will update content in
136-
* the ephemeral directory after the workstation is restarted. This field is mutable.
151+
* the ephemeral directory after the workstation is restarted. Only file systems supported by
152+
* Container-Optimized OS (COS) are explicitly supported. For a list of supported file systems,
153+
* please refer to the [COS documentation](https://cloud.google.com/container-optimized-
154+
* os/docs/concepts/supported-filesystems). This field is mutable.
137155
* @param sourceSnapshot sourceSnapshot or {@code null} for none
138156
*/
139157
public GcePersistentDisk setSourceSnapshot(java.lang.String sourceSnapshot) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public final class PrivateClusterConfig extends com.google.api.client.json.Gener
5757
private java.lang.Boolean enablePrivateEndpoint;
5858

5959
/**
60-
* Output only. Service attachment URI for the workstation cluster. The service attachemnt is
60+
* Output only. Service attachment URI for the workstation cluster. The service attachment is
6161
* created when private endpoint is enabled. To access workstations in the workstation cluster,
6262
* configure access to the managed service using [Private Service
6363
* Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-services).
@@ -128,7 +128,7 @@ public PrivateClusterConfig setEnablePrivateEndpoint(java.lang.Boolean enablePri
128128
}
129129

130130
/**
131-
* Output only. Service attachment URI for the workstation cluster. The service attachemnt is
131+
* Output only. Service attachment URI for the workstation cluster. The service attachment is
132132
* created when private endpoint is enabled. To access workstations in the workstation cluster,
133133
* configure access to the managed service using [Private Service
134134
* Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-services).
@@ -139,7 +139,7 @@ public java.lang.String getServiceAttachmentUri() {
139139
}
140140

141141
/**
142-
* Output only. Service attachment URI for the workstation cluster. The service attachemnt is
142+
* Output only. Service attachment URI for the workstation cluster. The service attachment is
143143
* created when private endpoint is enabled. To access workstations in the workstation cluster,
144144
* configure access to the managed service using [Private Service
145145
* Connect](https://cloud.google.com/vpc/docs/configure-private-service-connect-services).

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

0 commit comments

Comments
 (0)