Skip to content

Commit 5fe137b

Browse files
1 parent 5cafac1 commit 5fe137b

File tree

14 files changed

+79
-55
lines changed

14 files changed

+79
-55
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-rev20240716-2.0.0</version>
25+
<version>v1-rev20240723-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-rev20240716-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workstations:v1-rev20240723-2.0.0'
3939
}
4040
```
4141

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

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

168168
/**
169169
* Optional. Resource manager tags to be bound to this instance. Tag keys and values have the same
170-
* definition as https://cloud.google.com/resource-manager/docs/tags/tags-overview Keys must be in
171-
* the format `tagKeys/{tag_key_id}`, and values are in the format `tagValues/456`.
170+
* definition as [resource manager tags](https://cloud.google.com/resource-manager/docs/tags/tags-
171+
* overview). Keys must be in the format `tagKeys/{tag_key_id}`, and values are in the format
172+
* `tagValues/456`.
172173
* The value may be {@code null}.
173174
*/
174175
@com.google.api.client.util.Key
@@ -473,8 +474,9 @@ public GceInstance setTags(java.util.List<java.lang.String> tags) {
473474

474475
/**
475476
* Optional. Resource manager tags to be bound to this instance. Tag keys and values have the same
476-
* definition as https://cloud.google.com/resource-manager/docs/tags/tags-overview Keys must be in
477-
* the format `tagKeys/{tag_key_id}`, and values are in the format `tagValues/456`.
477+
* definition as [resource manager tags](https://cloud.google.com/resource-manager/docs/tags/tags-
478+
* overview). Keys must be in the format `tagKeys/{tag_key_id}`, and values are in the format
479+
* `tagValues/456`.
478480
* @return value or {@code null} for none
479481
*/
480482
public java.util.Map<String, java.lang.String> getVmTags() {
@@ -483,8 +485,9 @@ public java.util.Map<String, java.lang.String> getVmTags() {
483485

484486
/**
485487
* Optional. Resource manager tags to be bound to this instance. Tag keys and values have the same
486-
* definition as https://cloud.google.com/resource-manager/docs/tags/tags-overview Keys must be in
487-
* the format `tagKeys/{tag_key_id}`, and values are in the format `tagValues/456`.
488+
* definition as [resource manager tags](https://cloud.google.com/resource-manager/docs/tags/tags-
489+
* overview). Keys must be in the format `tagKeys/{tag_key_id}`, and values are in the format
490+
* `tagValues/456`.
488491
* @param vmTags vmTags or {@code null} for none
489492
*/
490493
public GceInstance setVmTags(java.util.Map<String, java.lang.String> vmTags) {

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,29 +32,33 @@
3232
public final class PortRange extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* Required. Starting port number for the current range of ports.
35+
* Required. Starting port number for the current range of ports. Valid ports are 22, 80, and
36+
* ports within the range 1024-65535.
3637
* The value may be {@code null}.
3738
*/
3839
@com.google.api.client.util.Key
3940
private java.lang.Integer first;
4041

4142
/**
42-
* Required. Ending port number for the current range of ports.
43+
* Required. Ending port number for the current range of ports. Valid ports are 22, 80, and ports
44+
* within the range 1024-65535.
4345
* The value may be {@code null}.
4446
*/
4547
@com.google.api.client.util.Key
4648
private java.lang.Integer last;
4749

4850
/**
49-
* Required. Starting port number for the current range of ports.
51+
* Required. Starting port number for the current range of ports. Valid ports are 22, 80, and
52+
* ports within the range 1024-65535.
5053
* @return value or {@code null} for none
5154
*/
5255
public java.lang.Integer getFirst() {
5356
return first;
5457
}
5558

5659
/**
57-
* Required. Starting port number for the current range of ports.
60+
* Required. Starting port number for the current range of ports. Valid ports are 22, 80, and
61+
* ports within the range 1024-65535.
5862
* @param first first or {@code null} for none
5963
*/
6064
public PortRange setFirst(java.lang.Integer first) {
@@ -63,15 +67,17 @@ public PortRange setFirst(java.lang.Integer first) {
6367
}
6468

6569
/**
66-
* Required. Ending port number for the current range of ports.
70+
* Required. Ending port number for the current range of ports. Valid ports are 22, 80, and ports
71+
* within the range 1024-65535.
6772
* @return value or {@code null} for none
6873
*/
6974
public java.lang.Integer getLast() {
7075
return last;
7176
}
7277

7378
/**
74-
* Required. Ending port number for the current range of ports.
79+
* Required. Ending port number for the current range of ports. Valid ports are 22, 80, and ports
80+
* within the range 1024-65535.
7581
* @param last last or {@code null} for none
7682
*/
7783
public PortRange setLast(java.lang.Integer last) {

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

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@
3636
public final class WorkstationConfig extends com.google.api.client.json.GenericJson {
3737

3838
/**
39-
* Optional. A Single or Range of ports externally accessible in the workstation. If not specified
40-
* defaults to ports 22, 80 and ports 1024-65535.
39+
* Optional. A list of PortRanges specifying single ports or ranges of ports that are externally
40+
* accessible in the workstation. Allowed ports must be one of 22, 80, or within range 1024-65535.
41+
* If not specified defaults to ports 22, 80, and ports 1024-65535.
4142
* The value may be {@code null}.
4243
*/
4344
@com.google.api.client.util.Key
@@ -279,17 +280,19 @@ public final class WorkstationConfig extends com.google.api.client.json.GenericJ
279280
private String updateTime;
280281

281282
/**
282-
* Optional. A Single or Range of ports externally accessible in the workstation. If not specified
283-
* defaults to ports 22, 80 and ports 1024-65535.
283+
* Optional. A list of PortRanges specifying single ports or ranges of ports that are externally
284+
* accessible in the workstation. Allowed ports must be one of 22, 80, or within range 1024-65535.
285+
* If not specified defaults to ports 22, 80, and ports 1024-65535.
284286
* @return value or {@code null} for none
285287
*/
286288
public java.util.List<PortRange> getAllowedPorts() {
287289
return allowedPorts;
288290
}
289291

290292
/**
291-
* Optional. A Single or Range of ports externally accessible in the workstation. If not specified
292-
* defaults to ports 22, 80 and ports 1024-65535.
293+
* Optional. A list of PortRanges specifying single ports or ranges of ports that are externally
294+
* accessible in the workstation. Allowed ports must be one of 22, 80, or within range 1024-65535.
295+
* If not specified defaults to ports 22, 80, and ports 1024-65535.
293296
* @param allowedPorts allowedPorts or {@code null} for none
294297
*/
295298
public WorkstationConfig setAllowedPorts(java.util.List<PortRange> allowedPorts) {

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

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

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

182182
/**
183183
* Optional. Resource manager tags to be bound to this instance. Tag keys and values have the same
184-
* definition as https://cloud.google.com/resource-manager/docs/tags/tags-overview Keys must be in
185-
* the format `tagKeys/{tag_key_id}`, and values are in the format `tagValues/456`.
184+
* definition as [resource manager tags](https://cloud.google.com/resource-manager/docs/tags/tags-
185+
* overview). Keys must be in the format `tagKeys/{tag_key_id}`, and values are in the format
186+
* `tagValues/456`.
186187
* The value may be {@code null}.
187188
*/
188189
@com.google.api.client.util.Key
@@ -506,8 +507,9 @@ public GceInstance setTags(java.util.List<java.lang.String> tags) {
506507

507508
/**
508509
* Optional. Resource manager tags to be bound to this instance. Tag keys and values have the same
509-
* definition as https://cloud.google.com/resource-manager/docs/tags/tags-overview Keys must be in
510-
* the format `tagKeys/{tag_key_id}`, and values are in the format `tagValues/456`.
510+
* definition as [resource manager tags](https://cloud.google.com/resource-manager/docs/tags/tags-
511+
* overview). Keys must be in the format `tagKeys/{tag_key_id}`, and values are in the format
512+
* `tagValues/456`.
511513
* @return value or {@code null} for none
512514
*/
513515
public java.util.Map<String, java.lang.String> getVmTags() {
@@ -516,8 +518,9 @@ public java.util.Map<String, java.lang.String> getVmTags() {
516518

517519
/**
518520
* Optional. Resource manager tags to be bound to this instance. Tag keys and values have the same
519-
* definition as https://cloud.google.com/resource-manager/docs/tags/tags-overview Keys must be in
520-
* the format `tagKeys/{tag_key_id}`, and values are in the format `tagValues/456`.
521+
* definition as [resource manager tags](https://cloud.google.com/resource-manager/docs/tags/tags-
522+
* overview). Keys must be in the format `tagKeys/{tag_key_id}`, and values are in the format
523+
* `tagValues/456`.
521524
* @param vmTags vmTags or {@code null} for none
522525
*/
523526
public GceInstance setVmTags(java.util.Map<String, java.lang.String> vmTags) {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.workstations.v1beta.model;
1818

1919
/**
20-
* Http options for the running workstations.
20+
* HTTP options for the running workstations.
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Cloud Workstations API. For a detailed explanation

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,29 +32,33 @@
3232
public final class PortRange extends com.google.api.client.json.GenericJson {
3333

3434
/**
35-
* Required. Starting port number for the current range of ports.
35+
* Required. Starting port number for the current range of ports. Valid ports are 22, 80, and
36+
* ports within the range 1024-65535.
3637
* The value may be {@code null}.
3738
*/
3839
@com.google.api.client.util.Key
3940
private java.lang.Integer first;
4041

4142
/**
42-
* Required. Ending port number for the current range of ports.
43+
* Required. Ending port number for the current range of ports. Valid ports are 22, 80, and ports
44+
* within the range 1024-65535.
4345
* The value may be {@code null}.
4446
*/
4547
@com.google.api.client.util.Key
4648
private java.lang.Integer last;
4749

4850
/**
49-
* Required. Starting port number for the current range of ports.
51+
* Required. Starting port number for the current range of ports. Valid ports are 22, 80, and
52+
* ports within the range 1024-65535.
5053
* @return value or {@code null} for none
5154
*/
5255
public java.lang.Integer getFirst() {
5356
return first;
5457
}
5558

5659
/**
57-
* Required. Starting port number for the current range of ports.
60+
* Required. Starting port number for the current range of ports. Valid ports are 22, 80, and
61+
* ports within the range 1024-65535.
5862
* @param first first or {@code null} for none
5963
*/
6064
public PortRange setFirst(java.lang.Integer first) {
@@ -63,15 +67,17 @@ public PortRange setFirst(java.lang.Integer first) {
6367
}
6468

6569
/**
66-
* Required. Ending port number for the current range of ports.
70+
* Required. Ending port number for the current range of ports. Valid ports are 22, 80, and ports
71+
* within the range 1024-65535.
6772
* @return value or {@code null} for none
6873
*/
6974
public java.lang.Integer getLast() {
7075
return last;
7176
}
7277

7378
/**
74-
* Required. Ending port number for the current range of ports.
79+
* Required. Ending port number for the current range of ports. Valid ports are 22, 80, and ports
80+
* within the range 1024-65535.
7581
* @param last last or {@code null} for none
7682
*/
7783
public PortRange setLast(java.lang.Integer last) {

0 commit comments

Comments
 (0)