Skip to content

Commit ff1b166

Browse files
feat(all): auto-regenerate discovery clients (#3121)
1 parent 5b0e60d commit ff1b166

File tree

2 files changed

+59
-3
lines changed

2 files changed

+59
-3
lines changed

file/v1beta1/file-api.json

+24-3
Original file line numberDiff line numberDiff line change
@@ -1080,7 +1080,7 @@
10801080
}
10811081
}
10821082
},
1083-
"revision": "20250404",
1083+
"revision": "20250414",
10841084
"rootUrl": "https://file.googleapis.com/",
10851085
"schemas": {
10861086
"Backup": {
@@ -2135,12 +2135,14 @@
21352135
"enum": [
21362136
"CONNECT_MODE_UNSPECIFIED",
21372137
"DIRECT_PEERING",
2138-
"PRIVATE_SERVICE_ACCESS"
2138+
"PRIVATE_SERVICE_ACCESS",
2139+
"PRIVATE_SERVICE_CONNECT"
21392140
],
21402141
"enumDescriptions": [
21412142
"ConnectMode not set.",
21422143
"Connect via direct peering to the Filestore service.",
2143-
"Connect to your Filestore instance using Private Service Access. Private services access provides an IP address range for multiple Google Cloud services, including Filestore."
2144+
"Connect to your Filestore instance using Private Service Access. Private services access provides an IP address range for multiple Google Cloud services, including Filestore.",
2145+
"Connect to your Filestore instance using Private Service Connect. A connection policy must exist in the region for the VPC network and the google-cloud-filestore service class."
21442146
],
21452147
"type": "string"
21462148
},
@@ -2171,6 +2173,10 @@
21712173
"description": "The name of the Google Compute Engine [VPC network](https://cloud.google.com/vpc/docs/vpc) to which the instance is connected.",
21722174
"type": "string"
21732175
},
2176+
"pscConfig": {
2177+
"$ref": "PscConfig",
2178+
"description": "Optional. Private Service Connect configuration. Should only be set when connect_mode is PRIVATE_SERVICE_CONNECT."
2179+
},
21742180
"reservedIpRange": {
21752181
"description": "Optional, reserved_ip_range can have one of the following two types of values. * CIDR range value when using DIRECT_PEERING connect mode. * [Allocated IP address range](https://cloud.google.com/compute/docs/ip-addresses/reserve-static-internal-ip-address) when using PRIVATE_SERVICE_ACCESS connect mode. When the name of an allocated IP address range is specified, it must be one of the ranges associated with the private service access connection. When specified as a direct CIDR value, it must be a /29 CIDR block for Basic tier, a /24 CIDR block for High Scale tier, or a /26 CIDR block for Enterprise tier in one of the [internal IP address ranges](https://www.arin.net/reference/research/statistics/address_filters/) that identifies the range of IP addresses reserved for this instance. For example, 10.0.0.0/29, 192.168.0.0/24, or 192.168.0.0/26, respectively. The range you specify can't overlap with either existing subnets or assigned IP address ranges for other Filestore instances in the selected VPC network.",
21762182
"type": "string"
@@ -2213,6 +2219,10 @@
22132219
},
22142220
"type": "array"
22152221
},
2222+
"network": {
2223+
"description": "Optional. The source VPC network for ip_ranges. Required for instances using Private Service Connect, optional otherwise. If provided, must be the same network specified in the `NetworkConfig.network` field.",
2224+
"type": "string"
2225+
},
22162226
"securityFlavors": {
22172227
"description": "The security flavors allowed for mount operations. The default is AUTH_SYS.",
22182228
"items": {
@@ -2393,6 +2403,17 @@
23932403
},
23942404
"type": "object"
23952405
},
2406+
"PscConfig": {
2407+
"description": "Private Service Connect configuration.",
2408+
"id": "PscConfig",
2409+
"properties": {
2410+
"endpointProject": {
2411+
"description": "Consumer service project in which the Private Service Connect endpoint would be set up. This is optional, and only relevant in case the network is a shared VPC. If this is not specified, the endpoint would be setup in the VPC host project.",
2412+
"type": "string"
2413+
}
2414+
},
2415+
"type": "object"
2416+
},
23962417
"ReplicaConfig": {
23972418
"description": "Replica configuration for the instance.",
23982419
"id": "ReplicaConfig",

file/v1beta1/file-gen.go

+35
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)