google-api-python-client 2.139.0__py2.py3-none-any.whl → 2.140.0__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. {google_api_python_client-2.139.0.dist-info → google_api_python_client-2.140.0.dist-info}/METADATA +1 -1
  2. {google_api_python_client-2.139.0.dist-info → google_api_python_client-2.140.0.dist-info}/RECORD +46 -46
  3. googleapiclient/discovery_cache/documents/aiplatform.v1.json +83 -31
  4. googleapiclient/discovery_cache/documents/aiplatform.v1beta1.json +360 -16
  5. googleapiclient/discovery_cache/documents/analyticsadmin.v1alpha.json +298 -49
  6. googleapiclient/discovery_cache/documents/analyticsdata.v1beta.json +3 -3
  7. googleapiclient/discovery_cache/documents/chat.v1.json +4 -4
  8. googleapiclient/discovery_cache/documents/chromepolicy.v1.json +2 -2
  9. googleapiclient/discovery_cache/documents/cloudchannel.v1.json +132 -4
  10. googleapiclient/discovery_cache/documents/cloudfunctions.v1.json +14 -2
  11. googleapiclient/discovery_cache/documents/cloudfunctions.v2.json +15 -3
  12. googleapiclient/discovery_cache/documents/cloudfunctions.v2alpha.json +15 -3
  13. googleapiclient/discovery_cache/documents/cloudfunctions.v2beta.json +15 -3
  14. googleapiclient/discovery_cache/documents/cloudkms.v1.json +17 -2
  15. googleapiclient/discovery_cache/documents/compute.alpha.json +328 -39
  16. googleapiclient/discovery_cache/documents/compute.beta.json +112 -39
  17. googleapiclient/discovery_cache/documents/compute.v1.json +38 -17
  18. googleapiclient/discovery_cache/documents/container.v1.json +2 -2
  19. googleapiclient/discovery_cache/documents/container.v1beta1.json +2 -2
  20. googleapiclient/discovery_cache/documents/containeranalysis.v1.json +236 -1
  21. googleapiclient/discovery_cache/documents/containeranalysis.v1beta1.json +236 -1
  22. googleapiclient/discovery_cache/documents/dialogflow.v2.json +11 -18
  23. googleapiclient/discovery_cache/documents/dialogflow.v2beta1.json +11 -18
  24. googleapiclient/discovery_cache/documents/dialogflow.v3.json +27 -23
  25. googleapiclient/discovery_cache/documents/discoveryengine.v1.json +212 -48
  26. googleapiclient/discovery_cache/documents/discoveryengine.v1alpha.json +132 -51
  27. googleapiclient/discovery_cache/documents/discoveryengine.v1beta.json +252 -55
  28. googleapiclient/discovery_cache/documents/docs.v1.json +2 -2
  29. googleapiclient/discovery_cache/documents/firebaseml.v2beta.json +7 -1
  30. googleapiclient/discovery_cache/documents/healthcare.v1.json +106 -1
  31. googleapiclient/discovery_cache/documents/healthcare.v1beta1.json +106 -1
  32. googleapiclient/discovery_cache/documents/iam.v1.json +4 -4
  33. googleapiclient/discovery_cache/documents/logging.v2.json +3 -3
  34. googleapiclient/discovery_cache/documents/merchantapi.accounts_v1beta.json +1 -157
  35. googleapiclient/discovery_cache/documents/networkservices.v1.json +14 -14
  36. googleapiclient/discovery_cache/documents/networkservices.v1beta1.json +313 -14
  37. googleapiclient/discovery_cache/documents/places.v1.json +2 -2
  38. googleapiclient/discovery_cache/documents/prod_tt_sasportal.v1alpha1.json +4 -2
  39. googleapiclient/discovery_cache/documents/realtimebidding.v1.json +5 -3
  40. googleapiclient/discovery_cache/documents/recaptchaenterprise.v1.json +20 -1
  41. googleapiclient/discovery_cache/documents/sqladmin.v1.json +12 -1
  42. googleapiclient/discovery_cache/documents/sqladmin.v1beta4.json +12 -1
  43. googleapiclient/version.py +1 -1
  44. {google_api_python_client-2.139.0.dist-info → google_api_python_client-2.140.0.dist-info}/LICENSE +0 -0
  45. {google_api_python_client-2.139.0.dist-info → google_api_python_client-2.140.0.dist-info}/WHEEL +0 -0
  46. {google_api_python_client-2.139.0.dist-info → google_api_python_client-2.140.0.dist-info}/top_level.txt +0 -0
@@ -177,6 +177,188 @@
177
177
  }
178
178
  },
179
179
  "resources": {
180
+ "authzExtensions": {
181
+ "methods": {
182
+ "create": {
183
+ "description": "Creates a new `AuthzExtension` resource in a given project and location.",
184
+ "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/authzExtensions",
185
+ "httpMethod": "POST",
186
+ "id": "networkservices.projects.locations.authzExtensions.create",
187
+ "parameterOrder": [
188
+ "parent"
189
+ ],
190
+ "parameters": {
191
+ "authzExtensionId": {
192
+ "description": "Required. User-provided ID of the `AuthzExtension` resource to be created.",
193
+ "location": "query",
194
+ "type": "string"
195
+ },
196
+ "parent": {
197
+ "description": "Required. The parent resource of the `AuthzExtension` resource. Must be in the format `projects/{project}/locations/{location}`.",
198
+ "location": "path",
199
+ "pattern": "^projects/[^/]+/locations/[^/]+$",
200
+ "required": true,
201
+ "type": "string"
202
+ },
203
+ "requestId": {
204
+ "description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server can ignore the request if it has already been completed. The server guarantees that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, ignores the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).",
205
+ "location": "query",
206
+ "type": "string"
207
+ }
208
+ },
209
+ "path": "v1beta1/{+parent}/authzExtensions",
210
+ "request": {
211
+ "$ref": "AuthzExtension"
212
+ },
213
+ "response": {
214
+ "$ref": "Operation"
215
+ },
216
+ "scopes": [
217
+ "https://www.googleapis.com/auth/cloud-platform"
218
+ ]
219
+ },
220
+ "delete": {
221
+ "description": "Deletes the specified `AuthzExtension` resource.",
222
+ "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/authzExtensions/{authzExtensionsId}",
223
+ "httpMethod": "DELETE",
224
+ "id": "networkservices.projects.locations.authzExtensions.delete",
225
+ "parameterOrder": [
226
+ "name"
227
+ ],
228
+ "parameters": {
229
+ "name": {
230
+ "description": "Required. The name of the `AuthzExtension` resource to delete. Must be in the format `projects/{project}/locations/{location}/authzExtensions/{authz_extension}`.",
231
+ "location": "path",
232
+ "pattern": "^projects/[^/]+/locations/[^/]+/authzExtensions/[^/]+$",
233
+ "required": true,
234
+ "type": "string"
235
+ },
236
+ "requestId": {
237
+ "description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server can ignore the request if it has already been completed. The server guarantees that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, ignores the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).",
238
+ "location": "query",
239
+ "type": "string"
240
+ }
241
+ },
242
+ "path": "v1beta1/{+name}",
243
+ "response": {
244
+ "$ref": "Operation"
245
+ },
246
+ "scopes": [
247
+ "https://www.googleapis.com/auth/cloud-platform"
248
+ ]
249
+ },
250
+ "get": {
251
+ "description": "Gets details of the specified `AuthzExtension` resource.",
252
+ "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/authzExtensions/{authzExtensionsId}",
253
+ "httpMethod": "GET",
254
+ "id": "networkservices.projects.locations.authzExtensions.get",
255
+ "parameterOrder": [
256
+ "name"
257
+ ],
258
+ "parameters": {
259
+ "name": {
260
+ "description": "Required. A name of the `AuthzExtension` resource to get. Must be in the format `projects/{project}/locations/{location}/authzExtensions/{authz_extension}`.",
261
+ "location": "path",
262
+ "pattern": "^projects/[^/]+/locations/[^/]+/authzExtensions/[^/]+$",
263
+ "required": true,
264
+ "type": "string"
265
+ }
266
+ },
267
+ "path": "v1beta1/{+name}",
268
+ "response": {
269
+ "$ref": "AuthzExtension"
270
+ },
271
+ "scopes": [
272
+ "https://www.googleapis.com/auth/cloud-platform"
273
+ ]
274
+ },
275
+ "list": {
276
+ "description": "Lists `AuthzExtension` resources in a given project and location.",
277
+ "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/authzExtensions",
278
+ "httpMethod": "GET",
279
+ "id": "networkservices.projects.locations.authzExtensions.list",
280
+ "parameterOrder": [
281
+ "parent"
282
+ ],
283
+ "parameters": {
284
+ "filter": {
285
+ "description": "Optional. Filtering results.",
286
+ "location": "query",
287
+ "type": "string"
288
+ },
289
+ "orderBy": {
290
+ "description": "Optional. Hint for how to order the results.",
291
+ "location": "query",
292
+ "type": "string"
293
+ },
294
+ "pageSize": {
295
+ "description": "Optional. Requested page size. The server might return fewer items than requested. If unspecified, the server picks an appropriate default.",
296
+ "format": "int32",
297
+ "location": "query",
298
+ "type": "integer"
299
+ },
300
+ "pageToken": {
301
+ "description": "Optional. A token identifying a page of results that the server returns.",
302
+ "location": "query",
303
+ "type": "string"
304
+ },
305
+ "parent": {
306
+ "description": "Required. The project and location from which the `AuthzExtension` resources are listed, specified in the following format: `projects/{project}/locations/{location}`.",
307
+ "location": "path",
308
+ "pattern": "^projects/[^/]+/locations/[^/]+$",
309
+ "required": true,
310
+ "type": "string"
311
+ }
312
+ },
313
+ "path": "v1beta1/{+parent}/authzExtensions",
314
+ "response": {
315
+ "$ref": "ListAuthzExtensionsResponse"
316
+ },
317
+ "scopes": [
318
+ "https://www.googleapis.com/auth/cloud-platform"
319
+ ]
320
+ },
321
+ "patch": {
322
+ "description": "Updates the parameters of the specified `AuthzExtension` resource.",
323
+ "flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/authzExtensions/{authzExtensionsId}",
324
+ "httpMethod": "PATCH",
325
+ "id": "networkservices.projects.locations.authzExtensions.patch",
326
+ "parameterOrder": [
327
+ "name"
328
+ ],
329
+ "parameters": {
330
+ "name": {
331
+ "description": "Required. Identifier. Name of the `AuthzExtension` resource in the following format: `projects/{project}/locations/{location}/authzExtensions/{authz_extension}`.",
332
+ "location": "path",
333
+ "pattern": "^projects/[^/]+/locations/[^/]+/authzExtensions/[^/]+$",
334
+ "required": true,
335
+ "type": "string"
336
+ },
337
+ "requestId": {
338
+ "description": "Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server can ignore the request if it has already been completed. The server guarantees that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, ignores the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).",
339
+ "location": "query",
340
+ "type": "string"
341
+ },
342
+ "updateMask": {
343
+ "description": "Required. Used to specify the fields to be overwritten in the `AuthzExtension` resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field is overwritten if it is in the mask. If the user does not specify a mask, then all fields are overwritten.",
344
+ "format": "google-fieldmask",
345
+ "location": "query",
346
+ "type": "string"
347
+ }
348
+ },
349
+ "path": "v1beta1/{+name}",
350
+ "request": {
351
+ "$ref": "AuthzExtension"
352
+ },
353
+ "response": {
354
+ "$ref": "Operation"
355
+ },
356
+ "scopes": [
357
+ "https://www.googleapis.com/auth/cloud-platform"
358
+ ]
359
+ }
360
+ }
361
+ },
180
362
  "endpointPolicies": {
181
363
  "methods": {
182
364
  "create": {
@@ -308,7 +490,7 @@
308
490
  ],
309
491
  "parameters": {
310
492
  "name": {
311
- "description": "Required. Name of the EndpointPolicy resource. It matches pattern `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.",
493
+ "description": "Identifier. Name of the EndpointPolicy resource. It matches pattern `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.",
312
494
  "location": "path",
313
495
  "pattern": "^projects/[^/]+/locations/[^/]+/endpointPolicies/[^/]+$",
314
496
  "required": true,
@@ -465,7 +647,7 @@
465
647
  ],
466
648
  "parameters": {
467
649
  "name": {
468
- "description": "Required. Name of the Gateway resource. It matches pattern `projects/*/locations/*/gateways/`.",
650
+ "description": "Identifier. Name of the Gateway resource. It matches pattern `projects/*/locations/*/gateways/`.",
469
651
  "location": "path",
470
652
  "pattern": "^projects/[^/]+/locations/[^/]+/gateways/[^/]+$",
471
653
  "required": true,
@@ -622,7 +804,7 @@
622
804
  ],
623
805
  "parameters": {
624
806
  "name": {
625
- "description": "Required. Name of the GrpcRoute resource. It matches pattern `projects/*/locations/global/grpcRoutes/`",
807
+ "description": "Identifier. Name of the GrpcRoute resource. It matches pattern `projects/*/locations/global/grpcRoutes/`",
626
808
  "location": "path",
627
809
  "pattern": "^projects/[^/]+/locations/[^/]+/grpcRoutes/[^/]+$",
628
810
  "required": true,
@@ -779,7 +961,7 @@
779
961
  ],
780
962
  "parameters": {
781
963
  "name": {
782
- "description": "Required. Name of the HttpRoute resource. It matches pattern `projects/*/locations/global/httpRoutes/http_route_name>`.",
964
+ "description": "Identifier. Name of the HttpRoute resource. It matches pattern `projects/*/locations/global/httpRoutes/http_route_name>`.",
783
965
  "location": "path",
784
966
  "pattern": "^projects/[^/]+/locations/[^/]+/httpRoutes/[^/]+$",
785
967
  "required": true,
@@ -1300,7 +1482,7 @@
1300
1482
  ],
1301
1483
  "parameters": {
1302
1484
  "name": {
1303
- "description": "Required. Name of the Mesh resource. It matches pattern `projects/*/locations/global/meshes/`.",
1485
+ "description": "Identifier. Name of the Mesh resource. It matches pattern `projects/*/locations/global/meshes/`.",
1304
1486
  "location": "path",
1305
1487
  "pattern": "^projects/[^/]+/locations/[^/]+/meshes/[^/]+$",
1306
1488
  "required": true,
@@ -1947,7 +2129,7 @@
1947
2129
  ],
1948
2130
  "parameters": {
1949
2131
  "name": {
1950
- "description": "Required. Name of the TcpRoute resource. It matches pattern `projects/*/locations/global/tcpRoutes/tcp_route_name>`.",
2132
+ "description": "Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/locations/global/tcpRoutes/tcp_route_name>`.",
1951
2133
  "location": "path",
1952
2134
  "pattern": "^projects/[^/]+/locations/[^/]+/tcpRoutes/[^/]+$",
1953
2135
  "required": true,
@@ -2135,7 +2317,7 @@
2135
2317
  }
2136
2318
  }
2137
2319
  },
2138
- "revision": "20240707",
2320
+ "revision": "20240721",
2139
2321
  "rootUrl": "https://networkservices.googleapis.com/",
2140
2322
  "schemas": {
2141
2323
  "AuditConfig": {
@@ -2186,6 +2368,98 @@
2186
2368
  },
2187
2369
  "type": "object"
2188
2370
  },
2371
+ "AuthzExtension": {
2372
+ "description": "`AuthzExtension` is a resource that allows traffic forwarding to a callout backend to make an authorization decision.",
2373
+ "id": "AuthzExtension",
2374
+ "properties": {
2375
+ "authority": {
2376
+ "description": "Required. The `:authority` header in the gRPC request sent from Envoy to the extension service.",
2377
+ "type": "string"
2378
+ },
2379
+ "createTime": {
2380
+ "description": "Output only. The timestamp when the resource was created.",
2381
+ "format": "google-datetime",
2382
+ "readOnly": true,
2383
+ "type": "string"
2384
+ },
2385
+ "description": {
2386
+ "description": "Optional. A human-readable description of the resource.",
2387
+ "type": "string"
2388
+ },
2389
+ "failOpen": {
2390
+ "description": "Optional. Determines how the proxy behaves if the call to the extension fails or times out. When set to `TRUE`, request or response processing continues without error. Any subsequent extensions in the extension chain are also executed. When set to `FALSE` or the default setting of `FALSE` is used, one of the following happens: * If response headers have not been delivered to the downstream client, a generic 500 error is returned to the client. The error response can be tailored by configuring a custom error response in the load balancer. * If response headers have been delivered, then the HTTP stream to the downstream client is reset.",
2391
+ "type": "boolean"
2392
+ },
2393
+ "forwardHeaders": {
2394
+ "description": "Optional. List of the HTTP headers to forward to the extension (from the client). If omitted, all headers are sent. Each element is a string indicating the header name.",
2395
+ "items": {
2396
+ "type": "string"
2397
+ },
2398
+ "type": "array"
2399
+ },
2400
+ "labels": {
2401
+ "additionalProperties": {
2402
+ "type": "string"
2403
+ },
2404
+ "description": "Optional. Set of labels associated with the `AuthzExtension` resource. The format must comply with [the requirements for labels](/compute/docs/labeling-resources#requirements) for Google Cloud resources.",
2405
+ "type": "object"
2406
+ },
2407
+ "loadBalancingScheme": {
2408
+ "description": "Required. All backend services and forwarding rules referenced by this extension must share the same load balancing scheme. Supported values: `INTERNAL_MANAGED`, `EXTERNAL_MANAGED`. For more information, refer to [Choosing a load balancer](https://cloud.google.com/load-balancing/docs/backend-service).",
2409
+ "enum": [
2410
+ "LOAD_BALANCING_SCHEME_UNSPECIFIED",
2411
+ "INTERNAL_MANAGED",
2412
+ "EXTERNAL_MANAGED"
2413
+ ],
2414
+ "enumDescriptions": [
2415
+ "Default value. Do not use.",
2416
+ "Signifies that this is used for Internal HTTP(S) Load Balancing.",
2417
+ "Signifies that this is used for External Managed HTTP(S) Load Balancing."
2418
+ ],
2419
+ "type": "string"
2420
+ },
2421
+ "metadata": {
2422
+ "additionalProperties": {
2423
+ "description": "Properties of the object.",
2424
+ "type": "any"
2425
+ },
2426
+ "description": "Optional. The metadata provided here is included as part of the `metadata_context` (of type `google.protobuf.Struct`) in the `ProcessingRequest` message sent to the extension server. The metadata is available under the namespace `com.google.authz_extension.`. The following variables are supported in the metadata Struct: `{forwarding_rule_id}` - substituted with the forwarding rule's fully qualified resource name.",
2427
+ "type": "object"
2428
+ },
2429
+ "name": {
2430
+ "description": "Required. Identifier. Name of the `AuthzExtension` resource in the following format: `projects/{project}/locations/{location}/authzExtensions/{authz_extension}`.",
2431
+ "type": "string"
2432
+ },
2433
+ "service": {
2434
+ "description": "Required. The reference to the service that runs the extension. Currently only callout extensions are supported here. To configure a callout extension, `service` must be a fully-qualified reference to a [backend service](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices) in the format: `https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/backendServices/{backendService}` or `https://www.googleapis.com/compute/v1/projects/{project}/global/backendServices/{backendService}`.",
2435
+ "type": "string"
2436
+ },
2437
+ "timeout": {
2438
+ "description": "Required. Specifies the timeout for each individual message on the stream. The timeout must be between 10-10000 milliseconds.",
2439
+ "format": "google-duration",
2440
+ "type": "string"
2441
+ },
2442
+ "updateTime": {
2443
+ "description": "Output only. The timestamp when the resource was updated.",
2444
+ "format": "google-datetime",
2445
+ "readOnly": true,
2446
+ "type": "string"
2447
+ },
2448
+ "wireFormat": {
2449
+ "description": "Optional. The format of communication supported by the callout extension. If not specified, the default is `EXT_PROC_GRPC`.",
2450
+ "enum": [
2451
+ "WIRE_FORMAT_UNSPECIFIED",
2452
+ "EXT_PROC_GRPC"
2453
+ ],
2454
+ "enumDescriptions": [
2455
+ "Not specified.",
2456
+ "The extension service uses ExtProc GRPC API."
2457
+ ],
2458
+ "type": "string"
2459
+ }
2460
+ },
2461
+ "type": "object"
2462
+ },
2189
2463
  "Binding": {
2190
2464
  "description": "Associates `members`, or principals, with a `role`.",
2191
2465
  "id": "Binding",
@@ -2265,7 +2539,7 @@
2265
2539
  "type": "object"
2266
2540
  },
2267
2541
  "name": {
2268
- "description": "Required. Name of the EndpointPolicy resource. It matches pattern `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.",
2542
+ "description": "Identifier. Name of the EndpointPolicy resource. It matches pattern `projects/{project}/locations/global/endpointPolicies/{endpoint_policy}`.",
2269
2543
  "type": "string"
2270
2544
  },
2271
2545
  "serverTlsPolicy": {
@@ -2483,7 +2757,7 @@
2483
2757
  "type": "object"
2484
2758
  },
2485
2759
  "name": {
2486
- "description": "Required. Name of the Gateway resource. It matches pattern `projects/*/locations/*/gateways/`.",
2760
+ "description": "Identifier. Name of the Gateway resource. It matches pattern `projects/*/locations/*/gateways/`.",
2487
2761
  "type": "string"
2488
2762
  },
2489
2763
  "network": {
@@ -2581,7 +2855,7 @@
2581
2855
  "type": "array"
2582
2856
  },
2583
2857
  "name": {
2584
- "description": "Required. Name of the GrpcRoute resource. It matches pattern `projects/*/locations/global/grpcRoutes/`",
2858
+ "description": "Identifier. Name of the GrpcRoute resource. It matches pattern `projects/*/locations/global/grpcRoutes/`",
2585
2859
  "type": "string"
2586
2860
  },
2587
2861
  "rules": {
@@ -2878,7 +3152,7 @@
2878
3152
  "type": "array"
2879
3153
  },
2880
3154
  "name": {
2881
- "description": "Required. Name of the HttpRoute resource. It matches pattern `projects/*/locations/global/httpRoutes/http_route_name>`.",
3155
+ "description": "Identifier. Name of the HttpRoute resource. It matches pattern `projects/*/locations/global/httpRoutes/http_route_name>`.",
2882
3156
  "type": "string"
2883
3157
  },
2884
3158
  "rules": {
@@ -3535,6 +3809,31 @@
3535
3809
  },
3536
3810
  "type": "object"
3537
3811
  },
3812
+ "ListAuthzExtensionsResponse": {
3813
+ "description": "Message for response to listing `AuthzExtension` resources.",
3814
+ "id": "ListAuthzExtensionsResponse",
3815
+ "properties": {
3816
+ "authzExtensions": {
3817
+ "description": "The list of `AuthzExtension` resources.",
3818
+ "items": {
3819
+ "$ref": "AuthzExtension"
3820
+ },
3821
+ "type": "array"
3822
+ },
3823
+ "nextPageToken": {
3824
+ "description": "A token identifying a page of results that the server returns.",
3825
+ "type": "string"
3826
+ },
3827
+ "unreachable": {
3828
+ "description": "Locations that could not be reached.",
3829
+ "items": {
3830
+ "type": "string"
3831
+ },
3832
+ "type": "array"
3833
+ }
3834
+ },
3835
+ "type": "object"
3836
+ },
3538
3837
  "ListEndpointPoliciesResponse": {
3539
3838
  "description": "Response returned by the ListEndpointPolicies method.",
3540
3839
  "id": "ListEndpointPoliciesResponse",
@@ -3865,7 +4164,7 @@
3865
4164
  "type": "object"
3866
4165
  },
3867
4166
  "name": {
3868
- "description": "Required. Name of the Mesh resource. It matches pattern `projects/*/locations/global/meshes/`.",
4167
+ "description": "Identifier. Name of the Mesh resource. It matches pattern `projects/*/locations/global/meshes/`.",
3869
4168
  "type": "string"
3870
4169
  },
3871
4170
  "selfLink": {
@@ -4057,7 +4356,7 @@
4057
4356
  "type": "object"
4058
4357
  },
4059
4358
  "name": {
4060
- "description": "Required. Name of the ServiceBinding resource. It matches pattern `projects/*/locations/global/serviceBindings/service_binding_name`.",
4359
+ "description": "Identifier. Name of the ServiceBinding resource. It matches pattern `projects/*/locations/global/serviceBindings/service_binding_name`.",
4061
4360
  "type": "string"
4062
4361
  },
4063
4362
  "service": {
@@ -4240,7 +4539,7 @@
4240
4539
  "type": "array"
4241
4540
  },
4242
4541
  "name": {
4243
- "description": "Required. Name of the TcpRoute resource. It matches pattern `projects/*/locations/global/tcpRoutes/tcp_route_name>`.",
4542
+ "description": "Identifier. Name of the TcpRoute resource. It matches pattern `projects/*/locations/global/tcpRoutes/tcp_route_name>`.",
4244
4543
  "type": "string"
4245
4544
  },
4246
4545
  "rules": {
@@ -276,7 +276,7 @@
276
276
  }
277
277
  }
278
278
  },
279
- "revision": "20240707",
279
+ "revision": "20240729",
280
280
  "rootUrl": "https://places.googleapis.com/",
281
281
  "schemas": {
282
282
  "GoogleGeoTypeViewport": {
@@ -1287,7 +1287,7 @@
1287
1287
  "id": "GoogleMapsPlacesV1PlaceOpeningHours",
1288
1288
  "properties": {
1289
1289
  "openNow": {
1290
- "description": "Is this place open right now? Always present unless we lack time-of-day or timezone data for these opening hours.",
1290
+ "description": "Whether the opening hours period is currently active. For regular opening hours and current opening hours, this field means whether the place is open. For secondary opening hours and current secondary opening hours, this field means whether the secondary hours of this place is active.",
1291
1291
  "type": "boolean"
1292
1292
  },
1293
1293
  "periods": {
@@ -2653,7 +2653,7 @@
2653
2653
  }
2654
2654
  }
2655
2655
  },
2656
- "revision": "20240701",
2656
+ "revision": "20240730",
2657
2657
  "rootUrl": "https://prod-tt-sasportal.googleapis.com/",
2658
2658
  "schemas": {
2659
2659
  "SasPortalAssignment": {
@@ -2862,7 +2862,8 @@
2862
2862
  "DOODLE_CBRS",
2863
2863
  "CW",
2864
2864
  "REDLINE",
2865
- "TARANA_WIRELESS"
2865
+ "TARANA_WIRELESS",
2866
+ "FAROS"
2866
2867
  ],
2867
2868
  "enumDescriptions": [
2868
2869
  "",
@@ -2873,6 +2874,7 @@
2873
2874
  "",
2874
2875
  "",
2875
2876
  "",
2877
+ "",
2876
2878
  ""
2877
2879
  ],
2878
2880
  "type": "string"
@@ -1305,7 +1305,7 @@
1305
1305
  }
1306
1306
  }
1307
1307
  },
1308
- "revision": "20240708",
1308
+ "revision": "20240801",
1309
1309
  "rootUrl": "https://realtimebidding.googleapis.com/",
1310
1310
  "schemas": {
1311
1311
  "ActivatePretargetingConfigRequest": {
@@ -2898,14 +2898,16 @@
2898
2898
  "HOSTED_MATCH_DATA",
2899
2899
  "GOOGLE_COOKIE",
2900
2900
  "DEVICE_ID",
2901
- "PUBLISHER_PROVIDED_ID"
2901
+ "PUBLISHER_PROVIDED_ID",
2902
+ "PUBLISHER_FIRST_PARTY_ID"
2902
2903
  ],
2903
2904
  "enumDescriptions": [
2904
2905
  "Placeholder for unspecified user identifier.",
2905
2906
  "Hosted match data, referring to hosted_match_data in the bid request.",
2906
2907
  "Google cookie, referring to google_user_id in the bid request.",
2907
2908
  "Mobile device advertising ID.",
2908
- "The request has a publisher-provided ID available to the bidder."
2909
+ "The request has a publisher-provided ID available to the bidder.",
2910
+ "Publisher first party ID, scoped to a single site, app or vendor needs to be present on the bid request."
2909
2911
  ],
2910
2912
  "type": "string"
2911
2913
  },
@@ -722,7 +722,7 @@
722
722
  }
723
723
  }
724
724
  },
725
- "revision": "20240721",
725
+ "revision": "20240728",
726
726
  "rootUrl": "https://recaptchaenterprise.googleapis.com/",
727
727
  "schemas": {
728
728
  "GoogleCloudRecaptchaenterpriseV1AccountDefenderAssessment": {
@@ -969,6 +969,10 @@ true
969
969
  "$ref": "GoogleCloudRecaptchaenterpriseV1AccountVerificationInfo",
970
970
  "description": "Optional. Account verification information for identity verification. The assessment event must include a token and site key to use this feature."
971
971
  },
972
+ "assessmentEnvironment": {
973
+ "$ref": "GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment",
974
+ "description": "Optional. The environment creating the assessment. This describes your environment (the system invoking CreateAssessment), NOT the environment of your user."
975
+ },
972
976
  "event": {
973
977
  "$ref": "GoogleCloudRecaptchaenterpriseV1Event",
974
978
  "description": "Optional. The event being assessed."
@@ -1015,6 +1019,21 @@ true
1015
1019
  },
1016
1020
  "type": "object"
1017
1021
  },
1022
+ "GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment": {
1023
+ "description": "The environment creating the assessment. This describes your environment (the system invoking CreateAssessment), NOT the environment of your user.",
1024
+ "id": "GoogleCloudRecaptchaenterpriseV1AssessmentEnvironment",
1025
+ "properties": {
1026
+ "client": {
1027
+ "description": "Optional. Identifies the client module initiating the CreateAssessment request. This can be the link to the client module's project. Examples include: - \"github.com/GoogleCloudPlatform/recaptcha-enterprise-google-tag-manager\" - \"cloud.google.com/recaptcha/docs/implement-waf-akamai\" - \"cloud.google.com/recaptcha/docs/implement-waf-cloudflare\" - \"wordpress.org/plugins/recaptcha-something\"",
1028
+ "type": "string"
1029
+ },
1030
+ "version": {
1031
+ "description": "Optional. The version of the client module. For example, \"1.0.0\".",
1032
+ "type": "string"
1033
+ }
1034
+ },
1035
+ "type": "object"
1036
+ },
1018
1037
  "GoogleCloudRecaptchaenterpriseV1ChallengeMetrics": {
1019
1038
  "description": "Metrics related to challenges.",
1020
1039
  "id": "GoogleCloudRecaptchaenterpriseV1ChallengeMetrics",
@@ -2267,7 +2267,7 @@
2267
2267
  }
2268
2268
  }
2269
2269
  },
2270
- "revision": "20240711",
2270
+ "revision": "20240724",
2271
2271
  "rootUrl": "https://sqladmin.googleapis.com/",
2272
2272
  "schemas": {
2273
2273
  "AclEntry": {
@@ -2572,6 +2572,12 @@
2572
2572
  "description": "Location of the backups.",
2573
2573
  "type": "string"
2574
2574
  },
2575
+ "maxChargeableBytes": {
2576
+ "description": "Output only. The maximum chargeable bytes for the backup.",
2577
+ "format": "int64",
2578
+ "readOnly": true,
2579
+ "type": "string"
2580
+ },
2575
2581
  "selfLink": {
2576
2582
  "description": "The URI of this resource.",
2577
2583
  "type": "string"
@@ -3333,6 +3339,11 @@ false
3333
3339
  "description": "Initial root password. Use only on creation. You must set root passwords before you can connect to PostgreSQL instances.",
3334
3340
  "type": "string"
3335
3341
  },
3342
+ "satisfiesPzi": {
3343
+ "description": "Output only. This status indicates whether the instance satisfies PZI. The status is reserved for future use.",
3344
+ "readOnly": true,
3345
+ "type": "boolean"
3346
+ },
3336
3347
  "satisfiesPzs": {
3337
3348
  "description": "This status indicates whether the instance satisfies PZS. The status is reserved for future use.",
3338
3349
  "type": "boolean"
@@ -2267,7 +2267,7 @@
2267
2267
  }
2268
2268
  }
2269
2269
  },
2270
- "revision": "20240711",
2270
+ "revision": "20240724",
2271
2271
  "rootUrl": "https://sqladmin.googleapis.com/",
2272
2272
  "schemas": {
2273
2273
  "AclEntry": {
@@ -2572,6 +2572,12 @@
2572
2572
  "description": "Location of the backups.",
2573
2573
  "type": "string"
2574
2574
  },
2575
+ "maxChargeableBytes": {
2576
+ "description": "Output only. The maximum chargeable bytes for the backup.",
2577
+ "format": "int64",
2578
+ "readOnly": true,
2579
+ "type": "string"
2580
+ },
2575
2581
  "selfLink": {
2576
2582
  "description": "The URI of this resource.",
2577
2583
  "type": "string"
@@ -3333,6 +3339,11 @@ false
3333
3339
  "description": "Initial root password. Use only on creation. You must set root passwords before you can connect to PostgreSQL instances.",
3334
3340
  "type": "string"
3335
3341
  },
3342
+ "satisfiesPzi": {
3343
+ "description": "Output only. This status indicates whether the instance satisfies PZI. The status is reserved for future use.",
3344
+ "readOnly": true,
3345
+ "type": "boolean"
3346
+ },
3336
3347
  "satisfiesPzs": {
3337
3348
  "description": "This status indicates whether the instance satisfies PZS. The status is reserved for future use.",
3338
3349
  "type": "boolean"
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- __version__ = "2.139.0"
15
+ __version__ = "2.140.0"