From 31389583c26dc033b75a332675ce90a21b348380 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Sun, 19 Nov 2023 00:20:15 -0800 Subject: [PATCH] feat(all): auto-regenerate discovery clients (#2269) --- vpcaccess/v1/vpcaccess-api.json | 6 +++--- vpcaccess/v1/vpcaccess-gen.go | 20 ++++++++++++++------ vpcaccess/v1beta1/vpcaccess-api.json | 6 +++--- vpcaccess/v1beta1/vpcaccess-gen.go | 20 ++++++++++++++------ 4 files changed, 34 insertions(+), 18 deletions(-) diff --git a/vpcaccess/v1/vpcaccess-api.json b/vpcaccess/v1/vpcaccess-api.json index a4139584865..385a161375a 100644 --- a/vpcaccess/v1/vpcaccess-api.json +++ b/vpcaccess/v1/vpcaccess-api.json @@ -384,7 +384,7 @@ } } }, - "revision": "20230831", + "revision": "20231110", "rootUrl": "https://vpcaccess.googleapis.com/", "schemas": { "Connector": { @@ -413,7 +413,7 @@ "type": "integer" }, "maxThroughput": { - "description": "Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-throughput and max-instances are provided, max-instances takes precedence over max-throughput.", + "description": "Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by --min-throughput. If both max-throughput and max-instances are provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is discouraged in favor of `max-instances`.", "format": "int32", "type": "integer" }, @@ -423,7 +423,7 @@ "type": "integer" }, "minThroughput": { - "description": "Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and min-instances are provided, min-instances takes precedence over min-throughput.", + "description": "Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by --max-throughput. If both min-throughput and min-instances are provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is discouraged in favor of `min-instances`.", "format": "int32", "type": "integer" }, diff --git a/vpcaccess/v1/vpcaccess-gen.go b/vpcaccess/v1/vpcaccess-gen.go index ef5292598c0..3536501784d 100644 --- a/vpcaccess/v1/vpcaccess-gen.go +++ b/vpcaccess/v1/vpcaccess-gen.go @@ -213,18 +213,26 @@ type Connector struct { // underlying the connector. MaxInstances int64 `json:"maxInstances,omitempty"` - // MaxThroughput: Maximum throughput of the connector in Mbps. Default - // is 300, max is 1000. If both max-throughput and max-instances are - // provided, max-instances takes precedence over max-throughput. + // MaxThroughput: Maximum throughput of the connector in Mbps. Refers to + // the expected throughput when using an `e2-micro` machine type. Value + // must be a multiple of 100 from 300 through 1000. Must be higher than + // the value specified by --min-throughput. If both max-throughput and + // max-instances are provided, max-instances takes precedence over + // max-throughput. The use of `max-throughput` is discouraged in favor + // of `max-instances`. MaxThroughput int64 `json:"maxThroughput,omitempty"` // MinInstances: Minimum value of instances in autoscaling group // underlying the connector. MinInstances int64 `json:"minInstances,omitempty"` - // MinThroughput: Minimum throughput of the connector in Mbps. Default - // and min is 200. If both min-throughput and min-instances are - // provided, min-instances takes precedence over min-throughput. + // MinThroughput: Minimum throughput of the connector in Mbps. Refers to + // the expected throughput when using an `e2-micro` machine type. Value + // must be a multiple of 100 from 200 through 900. Must be lower than + // the value specified by --max-throughput. If both min-throughput and + // min-instances are provided, min-instances takes precedence over + // min-throughput. The use of `min-throughput` is discouraged in favor + // of `min-instances`. MinThroughput int64 `json:"minThroughput,omitempty"` // Name: The resource name in the format diff --git a/vpcaccess/v1beta1/vpcaccess-api.json b/vpcaccess/v1beta1/vpcaccess-api.json index 6ebfa88ee9e..528c654c7cc 100644 --- a/vpcaccess/v1beta1/vpcaccess-api.json +++ b/vpcaccess/v1beta1/vpcaccess-api.json @@ -384,7 +384,7 @@ } } }, - "revision": "20230831", + "revision": "20231110", "rootUrl": "https://vpcaccess.googleapis.com/", "schemas": { "Connector": { @@ -413,7 +413,7 @@ "type": "integer" }, "maxThroughput": { - "description": "Maximum throughput of the connector in Mbps. Default is 300, max is 1000. If both max-throughput and max-instances are provided, max-instances takes precedence over max-throughput.", + "description": "Maximum throughput of the connector in Mbps. Refers to the expected throughput when using an `e2-micro` machine type. Value must be a multiple of 100 from 300 through 1000. Must be higher than the value specified by --min-throughput. If both max-throughput and max-instances are provided, max-instances takes precedence over max-throughput. The use of `max-throughput` is discouraged in favor of `max-instances`.", "format": "int32", "type": "integer" }, @@ -423,7 +423,7 @@ "type": "integer" }, "minThroughput": { - "description": "Minimum throughput of the connector in Mbps. Default and min is 200. If both min-throughput and min-instances are provided, min-instances takes precedence over min-throughput.", + "description": "Minimum throughput of the connector in Mbps. Refers to the expected throughput when using an `e2-micro` machine type. Value must be a multiple of 100 from 200 through 900. Must be lower than the value specified by --max-throughput. If both min-throughput and min-instances are provided, min-instances takes precedence over min-throughput. The use of `min-throughput` is discouraged in favor of `min-instances`.", "format": "int32", "type": "integer" }, diff --git a/vpcaccess/v1beta1/vpcaccess-gen.go b/vpcaccess/v1beta1/vpcaccess-gen.go index d1bdf9dbcf0..12d0743b3ba 100644 --- a/vpcaccess/v1beta1/vpcaccess-gen.go +++ b/vpcaccess/v1beta1/vpcaccess-gen.go @@ -213,18 +213,26 @@ type Connector struct { // underlying the connector. MaxInstances int64 `json:"maxInstances,omitempty"` - // MaxThroughput: Maximum throughput of the connector in Mbps. Default - // is 300, max is 1000. If both max-throughput and max-instances are - // provided, max-instances takes precedence over max-throughput. + // MaxThroughput: Maximum throughput of the connector in Mbps. Refers to + // the expected throughput when using an `e2-micro` machine type. Value + // must be a multiple of 100 from 300 through 1000. Must be higher than + // the value specified by --min-throughput. If both max-throughput and + // max-instances are provided, max-instances takes precedence over + // max-throughput. The use of `max-throughput` is discouraged in favor + // of `max-instances`. MaxThroughput int64 `json:"maxThroughput,omitempty"` // MinInstances: Minimum value of instances in autoscaling group // underlying the connector. MinInstances int64 `json:"minInstances,omitempty"` - // MinThroughput: Minimum throughput of the connector in Mbps. Default - // and min is 200. If both min-throughput and min-instances are - // provided, min-instances takes precedence over min-throughput. + // MinThroughput: Minimum throughput of the connector in Mbps. Refers to + // the expected throughput when using an `e2-micro` machine type. Value + // must be a multiple of 100 from 200 through 900. Must be lower than + // the value specified by --max-throughput. If both min-throughput and + // min-instances are provided, min-instances takes precedence over + // min-throughput. The use of `min-throughput` is discouraged in favor + // of `min-instances`. MinThroughput int64 `json:"minThroughput,omitempty"` // Name: The resource name in the format