Skip to content

Commit 306e2cb

Browse files
1 parent 6aae308 commit 306e2cb

File tree

12 files changed

+52
-34
lines changed

12 files changed

+52
-34
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-rev20241009-2.0.0</version>
25+
<version>v1-rev20241202-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-rev20241009-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workstations:v1-rev20241202-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ public class Operations {
540540
* it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other
541541
* methods to check whether the cancellation succeeded or whether the operation completed despite
542542
* cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an
543-
* operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to
543+
* operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to
544544
* `Code.CANCELLED`.
545545
*
546546
* Create a request for the method "operations.cancel".
@@ -571,7 +571,7 @@ public class Cancel extends CloudWorkstationsRequest<com.google.api.services.wor
571571
* it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other
572572
* methods to check whether the cancellation succeeded or whether the operation completed despite
573573
* cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an
574-
* operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to
574+
* operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to
575575
* `Code.CANCELLED`.
576576
*
577577
* Create a request for the method "operations.cancel".
@@ -3963,7 +3963,8 @@ public Delete set(String parameterName, Object value) {
39633963
}
39643964
/**
39653965
* Returns a short-lived credential that can be used to send authenticated and authorized traffic to
3966-
* a workstation.
3966+
* a workstation. Once generated this token cannot be revoked and is good for the lifetime of the
3967+
* token.
39673968
*
39683969
* Create a request for the method "workstations.generateAccessToken".
39693970
*
@@ -3989,7 +3990,8 @@ public class GenerateAccessToken extends CloudWorkstationsRequest<com.google.api
39893990

39903991
/**
39913992
* Returns a short-lived credential that can be used to send authenticated and authorized traffic
3992-
* to a workstation.
3993+
* to a workstation. Once generated this token cannot be revoked and is good for the lifetime of
3994+
* the token.
39933995
*
39943996
* Create a request for the method "workstations.generateAccessToken".
39953997
*

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

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717
package com.google.api.services.workstations.v1.model;
1818

1919
/**
20-
* A configuration that workstations can boost to.
20+
* A boost configuration is a set of resources that a workstation can use to increase its
21+
* performance. If a boost configuration is specified, when starting a workstation, users can choose
22+
* to use a VM provisioned under the boost config by passing the boost config id in the start
23+
* request. If no boost config id is provided in the start request, the system will choose a VM from
24+
* the pool provisioned under the default config.
2125
*
2226
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2327
* transmitted over HTTP when working with the Cloud Workstations API. For a detailed explanation
@@ -75,7 +79,7 @@ public final class BoostConfig extends com.google.api.client.json.GenericJson {
7579
private java.lang.Boolean enableNestedVirtualization;
7680

7781
/**
78-
* Optional. Required. The id to be used for the boost configuration.
82+
* Required. The id to be used for the boost configuration.
7983
* The value may be {@code null}.
8084
*/
8185
@com.google.api.client.util.Key
@@ -185,15 +189,15 @@ public BoostConfig setEnableNestedVirtualization(java.lang.Boolean enableNestedV
185189
}
186190

187191
/**
188-
* Optional. Required. The id to be used for the boost configuration.
192+
* Required. The id to be used for the boost configuration.
189193
* @return value or {@code null} for none
190194
*/
191195
public java.lang.String getId() {
192196
return id;
193197
}
194198

195199
/**
196-
* Optional. Required. The id to be used for the boost configuration.
200+
* Required. The id to be used for the boost configuration.
197201
* @param id id or {@code null} for none
198202
*/
199203
public BoostConfig setId(java.lang.String id) {

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public final class GceInstance extends com.google.api.client.json.GenericJson {
4545

4646
/**
4747
* Optional. A list of the boost configurations that workstations created using this workstation
48-
* configuration are allowed to use.
48+
* configuration are allowed to use. If specified, users will have the option to choose from the
49+
* list of boost configs when starting a workstation.
4950
* The value may be {@code null}.
5051
*/
5152
@com.google.api.client.util.Key
@@ -208,7 +209,8 @@ public GceInstance setAccelerators(java.util.List<Accelerator> accelerators) {
208209

209210
/**
210211
* Optional. A list of the boost configurations that workstations created using this workstation
211-
* configuration are allowed to use.
212+
* configuration are allowed to use. If specified, users will have the option to choose from the
213+
* list of boost configs when starting a workstation.
212214
* @return value or {@code null} for none
213215
*/
214216
public java.util.List<BoostConfig> getBoostConfigs() {
@@ -217,7 +219,8 @@ public java.util.List<BoostConfig> getBoostConfigs() {
217219

218220
/**
219221
* Optional. A list of the boost configurations that workstations created using this workstation
220-
* configuration are allowed to use.
222+
* configuration are allowed to use. If specified, users will have the option to choose from the
223+
* list of boost configs when starting a workstation.
221224
* @param boostConfigs boostConfigs or {@code null} for none
222225
*/
223226
public GceInstance setBoostConfigs(java.util.List<BoostConfig> boostConfigs) {

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

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

clients/google-api-services-workstations/v1beta/2.0.0/com/google/api/services/workstations/v1beta/CloudWorkstations.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ public class Operations {
199199
* it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other
200200
* methods to check whether the cancellation succeeded or whether the operation completed despite
201201
* cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an
202-
* operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to
202+
* operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to
203203
* `Code.CANCELLED`.
204204
*
205205
* Create a request for the method "operations.cancel".
@@ -230,7 +230,7 @@ public class Cancel extends CloudWorkstationsRequest<com.google.api.services.wor
230230
* it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other
231231
* methods to check whether the cancellation succeeded or whether the operation completed despite
232232
* cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an
233-
* operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to
233+
* operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to
234234
* `Code.CANCELLED`.
235235
*
236236
* Create a request for the method "operations.cancel".
@@ -3622,7 +3622,8 @@ public Delete set(String parameterName, Object value) {
36223622
}
36233623
/**
36243624
* Returns a short-lived credential that can be used to send authenticated and authorized traffic to
3625-
* a workstation.
3625+
* a workstation. Once generated this token cannot be revoked and is good for the lifetime of the
3626+
* token.
36263627
*
36273628
* Create a request for the method "workstations.generateAccessToken".
36283629
*
@@ -3648,7 +3649,8 @@ public class GenerateAccessToken extends CloudWorkstationsRequest<com.google.api
36483649

36493650
/**
36503651
* Returns a short-lived credential that can be used to send authenticated and authorized traffic
3651-
* to a workstation.
3652+
* to a workstation. Once generated this token cannot be revoked and is good for the lifetime of
3653+
* the token.
36523654
*
36533655
* Create a request for the method "workstations.generateAccessToken".
36543656
*

clients/google-api-services-workstations/v1beta/2.0.0/com/google/api/services/workstations/v1beta/model/BoostConfig.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@
1717
package com.google.api.services.workstations.v1beta.model;
1818

1919
/**
20-
* A configuration that workstations can boost to.
20+
* A boost configuration is a set of resources that a workstation can use to increase its
21+
* performance. If a boost configuration is specified, when starting a workstation, users can choose
22+
* to use a VM provisioned under the boost config by passing the boost config id in the start
23+
* request. If no boost config id is provided in the start request, the system will choose a VM from
24+
* the pool provisioned under the default config.
2125
*
2226
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2327
* transmitted over HTTP when working with the Cloud Workstations API. For a detailed explanation
@@ -75,7 +79,7 @@ public final class BoostConfig extends com.google.api.client.json.GenericJson {
7579
private java.lang.Boolean enableNestedVirtualization;
7680

7781
/**
78-
* Optional. Required. The id to be used for the boost configuration.
82+
* Required. The id to be used for the boost configuration.
7983
* The value may be {@code null}.
8084
*/
8185
@com.google.api.client.util.Key
@@ -185,15 +189,15 @@ public BoostConfig setEnableNestedVirtualization(java.lang.Boolean enableNestedV
185189
}
186190

187191
/**
188-
* Optional. Required. The id to be used for the boost configuration.
192+
* Required. The id to be used for the boost configuration.
189193
* @return value or {@code null} for none
190194
*/
191195
public java.lang.String getId() {
192196
return id;
193197
}
194198

195199
/**
196-
* Optional. Required. The id to be used for the boost configuration.
200+
* Required. The id to be used for the boost configuration.
197201
* @param id id or {@code null} for none
198202
*/
199203
public BoostConfig setId(java.lang.String id) {

clients/google-api-services-workstations/v1beta/2.0.0/com/google/api/services/workstations/v1beta/model/GceInstance.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public final class GceInstance extends com.google.api.client.json.GenericJson {
4545

4646
/**
4747
* Optional. A list of the boost configurations that workstations created using this workstation
48-
* configuration are allowed to use.
48+
* configuration are allowed to use. If specified, users will have the option to choose from the
49+
* list of boost configs when starting a workstation.
4950
* The value may be {@code null}.
5051
*/
5152
@com.google.api.client.util.Key
@@ -208,7 +209,8 @@ public GceInstance setAccelerators(java.util.List<Accelerator> accelerators) {
208209

209210
/**
210211
* Optional. A list of the boost configurations that workstations created using this workstation
211-
* configuration are allowed to use.
212+
* configuration are allowed to use. If specified, users will have the option to choose from the
213+
* list of boost configs when starting a workstation.
212214
* @return value or {@code null} for none
213215
*/
214216
public java.util.List<BoostConfig> getBoostConfigs() {
@@ -217,7 +219,8 @@ public java.util.List<BoostConfig> getBoostConfigs() {
217219

218220
/**
219221
* Optional. A list of the boost configurations that workstations created using this workstation
220-
* configuration are allowed to use.
222+
* configuration are allowed to use. If specified, users will have the option to choose from the
223+
* list of boost configs when starting a workstation.
221224
* @param boostConfigs boostConfigs or {@code null} for none
222225
*/
223226
public GceInstance setBoostConfigs(java.util.List<BoostConfig> boostConfigs) {

0 commit comments

Comments
 (0)