Skip to content

Commit 944964c

Browse files
1 parent 9f37136 commit 944964c

File tree

8 files changed

+72
-36
lines changed

8 files changed

+72
-36
lines changed

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

clients/google-api-services-vpcaccess/v1/2.0.0/com/google/api/services/vpcaccess/v1/model/Connector.java

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,11 @@ public final class Connector extends com.google.api.client.json.GenericJson {
5959
private java.lang.Integer maxInstances;
6060

6161
/**
62-
* Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-
63-
* throughput and max-instances are provided, max-instances takes precedence over max-throughput.
62+
* Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an
63+
* `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher
64+
* than the value specified by --min-throughput. If both max-throughput and max-instances are
65+
* provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is
66+
* discouraged in favor of `max-instances`.
6467
* The value may be {@code null}.
6568
*/
6669
@com.google.api.client.util.Key
@@ -74,8 +77,11 @@ public final class Connector extends com.google.api.client.json.GenericJson {
7477
private java.lang.Integer minInstances;
7578

7679
/**
77-
* Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and
78-
* min-instances are provided, min-instances takes precedence over min-throughput.
80+
* Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an
81+
* `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower
82+
* than the value specified by --max-throughput. If both min-throughput and min-instances are
83+
* provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is
84+
* discouraged in favor of `min-instances`.
7985
* The value may be {@code null}.
8086
*/
8187
@com.google.api.client.util.Key
@@ -178,17 +184,23 @@ public Connector setMaxInstances(java.lang.Integer maxInstances) {
178184
}
179185

180186
/**
181-
* Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-
182-
* throughput and max-instances are provided, max-instances takes precedence over max-throughput.
187+
* Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an
188+
* `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher
189+
* than the value specified by --min-throughput. If both max-throughput and max-instances are
190+
* provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is
191+
* discouraged in favor of `max-instances`.
183192
* @return value or {@code null} for none
184193
*/
185194
public java.lang.Integer getMaxThroughput() {
186195
return maxThroughput;
187196
}
188197

189198
/**
190-
* Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-
191-
* throughput and max-instances are provided, max-instances takes precedence over max-throughput.
199+
* Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an
200+
* `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher
201+
* than the value specified by --min-throughput. If both max-throughput and max-instances are
202+
* provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is
203+
* discouraged in favor of `max-instances`.
192204
* @param maxThroughput maxThroughput or {@code null} for none
193205
*/
194206
public Connector setMaxThroughput(java.lang.Integer maxThroughput) {
@@ -214,17 +226,23 @@ public Connector setMinInstances(java.lang.Integer minInstances) {
214226
}
215227

216228
/**
217-
* Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and
218-
* min-instances are provided, min-instances takes precedence over min-throughput.
229+
* Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an
230+
* `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower
231+
* than the value specified by --max-throughput. If both min-throughput and min-instances are
232+
* provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is
233+
* discouraged in favor of `min-instances`.
219234
* @return value or {@code null} for none
220235
*/
221236
public java.lang.Integer getMinThroughput() {
222237
return minThroughput;
223238
}
224239

225240
/**
226-
* Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and
227-
* min-instances are provided, min-instances takes precedence over min-throughput.
241+
* Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an
242+
* `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower
243+
* than the value specified by --max-throughput. If both min-throughput and min-instances are
244+
* provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is
245+
* discouraged in favor of `min-instances`.
228246
* @param minThroughput minThroughput or {@code null} for none
229247
*/
230248
public Connector setMinThroughput(java.lang.Integer minThroughput) {

clients/google-api-services-vpcaccess/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-vpcaccess</artifactId>
11-
<version>v1-rev20230831-2.0.0</version>
12-
<name>Serverless VPC Access API v1-rev20230831-2.0.0</name>
11+
<version>v1-rev20231110-2.0.0</version>
12+
<name>Serverless VPC Access API v1-rev20231110-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-vpcaccess/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-vpcaccess</artifactId>
25-
<version>v1beta1-rev20230831-2.0.0</version>
25+
<version>v1beta1-rev20231110-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-vpcaccess:v1beta1-rev20230831-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vpcaccess:v1beta1-rev20231110-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-vpcaccess/v1beta1/2.0.0/com/google/api/services/vpcaccess/v1beta1/model/Connector.java

Lines changed: 30 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,11 @@ public final class Connector extends com.google.api.client.json.GenericJson {
5959
private java.lang.Integer maxInstances;
6060

6161
/**
62-
* Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-
63-
* throughput and max-instances are provided, max-instances takes precedence over max-throughput.
62+
* Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an
63+
* `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher
64+
* than the value specified by --min-throughput. If both max-throughput and max-instances are
65+
* provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is
66+
* discouraged in favor of `max-instances`.
6467
* The value may be {@code null}.
6568
*/
6669
@com.google.api.client.util.Key
@@ -74,8 +77,11 @@ public final class Connector extends com.google.api.client.json.GenericJson {
7477
private java.lang.Integer minInstances;
7578

7679
/**
77-
* Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and
78-
* min-instances are provided, min-instances takes precedence over min-throughput.
80+
* Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an
81+
* `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower
82+
* than the value specified by --max-throughput. If both min-throughput and min-instances are
83+
* provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is
84+
* discouraged in favor of `min-instances`.
7985
* The value may be {@code null}.
8086
*/
8187
@com.google.api.client.util.Key
@@ -178,17 +184,23 @@ public Connector setMaxInstances(java.lang.Integer maxInstances) {
178184
}
179185

180186
/**
181-
* Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-
182-
* throughput and max-instances are provided, max-instances takes precedence over max-throughput.
187+
* Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an
188+
* `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher
189+
* than the value specified by --min-throughput. If both max-throughput and max-instances are
190+
* provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is
191+
* discouraged in favor of `max-instances`.
183192
* @return value or {@code null} for none
184193
*/
185194
public java.lang.Integer getMaxThroughput() {
186195
return maxThroughput;
187196
}
188197

189198
/**
190-
* Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-
191-
* throughput and max-instances are provided, max-instances takes precedence over max-throughput.
199+
* Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an
200+
* `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher
201+
* than the value specified by --min-throughput. If both max-throughput and max-instances are
202+
* provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is
203+
* discouraged in favor of `max-instances`.
192204
* @param maxThroughput maxThroughput or {@code null} for none
193205
*/
194206
public Connector setMaxThroughput(java.lang.Integer maxThroughput) {
@@ -214,17 +226,23 @@ public Connector setMinInstances(java.lang.Integer minInstances) {
214226
}
215227

216228
/**
217-
* Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and
218-
* min-instances are provided, min-instances takes precedence over min-throughput.
229+
* Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an
230+
* `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower
231+
* than the value specified by --max-throughput. If both min-throughput and min-instances are
232+
* provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is
233+
* discouraged in favor of `min-instances`.
219234
* @return value or {@code null} for none
220235
*/
221236
public java.lang.Integer getMinThroughput() {
222237
return minThroughput;
223238
}
224239

225240
/**
226-
* Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and
227-
* min-instances are provided, min-instances takes precedence over min-throughput.
241+
* Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an
242+
* `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower
243+
* than the value specified by --max-throughput. If both min-throughput and min-instances are
244+
* provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is
245+
* discouraged in favor of `min-instances`.
228246
* @param minThroughput minThroughput or {@code null} for none
229247
*/
230248
public Connector setMinThroughput(java.lang.Integer minThroughput) {

clients/google-api-services-vpcaccess/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-vpcaccess</artifactId>
11-
<version>v1beta1-rev20230831-2.0.0</version>
12-
<name>Serverless VPC Access API v1beta1-rev20230831-2.0.0</name>
11+
<version>v1beta1-rev20231110-2.0.0</version>
12+
<name>Serverless VPC Access API v1beta1-rev20231110-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-vpcaccess/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-vpcaccess</artifactId>
25-
<version>v1beta1-rev20230831-2.0.0</version>
25+
<version>v1beta1-rev20231110-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-vpcaccess:v1beta1-rev20230831-2.0.0'
38+
implementation 'com.google.apis:google-api-services-vpcaccess:v1beta1-rev20231110-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)