google-apis-networkservices_v1beta1 0.46.0 → 0.47.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/networkservices_v1beta1/classes.rb +25 -15
- data/lib/google/apis/networkservices_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/networkservices_v1beta1/representations.rb +1 -0
- data/lib/google/apis/networkservices_v1beta1/service.rb +82 -86
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55f085fa8ce62e5104350c3d3a732d2d9d44f2c220ad6510e3bc2c40d0cbda60
|
4
|
+
data.tar.gz: 4f14bc24f704f2e101450ceaafe066b04cd11e8e144d69cec895bf9b3e66ba9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 82475c8067887b9d7ec0db013d2a25d8148a7b9ba32e88f84320b6e50054ecc96c4b223ea1b6130e3a98112ad770a5963d0a90877d316eb5c1e8edadf37ab9e1
|
7
|
+
data.tar.gz: 0c3239e24d13dd626e2dbc0f83a3483335f78f7fcd4545b94698418fb393f5b1b3563834f71a9de28c39f70d603838c1b6c61df99b51bb87bb1844621bc9b4e2
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1beta1
|
2
2
|
|
3
|
+
### v0.47.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250224
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.46.0 (2024-12-08)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241118
|
@@ -120,7 +120,7 @@ module Google
|
|
120
120
|
attr_accessor :update_time
|
121
121
|
|
122
122
|
# Optional. The format of communication supported by the callout extension. If
|
123
|
-
# not specified, the default
|
123
|
+
# not specified, the default value `EXT_PROC_GRPC` is used.
|
124
124
|
# Corresponds to the JSON property `wireFormat`
|
125
125
|
# @return [String]
|
126
126
|
attr_accessor :wire_format
|
@@ -460,7 +460,7 @@ module Google
|
|
460
460
|
# Gateway represents the configuration for a proxy, typically a load balancer.
|
461
461
|
# It captures the ip:port over which the services are exposed by the proxy,
|
462
462
|
# along with any policy configurations. Routes have reference to to Gateways to
|
463
|
-
# dictate how requests should be routed by this Gateway.
|
463
|
+
# dictate how requests should be routed by this Gateway.
|
464
464
|
class Gateway
|
465
465
|
include Google::Apis::Core::Hashable
|
466
466
|
|
@@ -545,7 +545,7 @@ module Google
|
|
545
545
|
|
546
546
|
# Optional. Scope determines how configuration across multiple Gateway instances
|
547
547
|
# are merged. The configuration for multiple Gateway instances with the same
|
548
|
-
# scope will be merged as presented as a single
|
548
|
+
# scope will be merged as presented as a single configuration to the proxy/load
|
549
549
|
# balancer. Max length 64 characters. Scope should start with a letter and can
|
550
550
|
# only have letters, numbers, hyphens.
|
551
551
|
# Corresponds to the JSON property `scope`
|
@@ -2166,9 +2166,9 @@ module Google
|
|
2166
2166
|
|
2167
2167
|
# Required. All backend services and forwarding rules referenced by this
|
2168
2168
|
# extension must share the same load balancing scheme. Supported values: `
|
2169
|
-
# INTERNAL_MANAGED
|
2170
|
-
# services overview](https://cloud.google.com/load-balancing/docs/
|
2171
|
-
# service).
|
2169
|
+
# INTERNAL_MANAGED` and `EXTERNAL_MANAGED`. For more information, refer to [
|
2170
|
+
# Backend services overview](https://cloud.google.com/load-balancing/docs/
|
2171
|
+
# backend-service).
|
2172
2172
|
# Corresponds to the JSON property `loadBalancingScheme`
|
2173
2173
|
# @return [String]
|
2174
2174
|
attr_accessor :load_balancing_scheme
|
@@ -2513,6 +2513,13 @@ module Google
|
|
2513
2513
|
# @return [String]
|
2514
2514
|
attr_accessor :next_page_token
|
2515
2515
|
|
2516
|
+
# Unreachable resources. Populated when the request opts into `
|
2517
|
+
# return_partial_success` and reading across collections e.g. when attempting to
|
2518
|
+
# list all resources across all supported locations.
|
2519
|
+
# Corresponds to the JSON property `unreachable`
|
2520
|
+
# @return [Array<String>]
|
2521
|
+
attr_accessor :unreachable
|
2522
|
+
|
2516
2523
|
def initialize(**args)
|
2517
2524
|
update!(**args)
|
2518
2525
|
end
|
@@ -2521,6 +2528,7 @@ module Google
|
|
2521
2528
|
def update!(**args)
|
2522
2529
|
@meshes = args[:meshes] if args.key?(:meshes)
|
2523
2530
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2531
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2524
2532
|
end
|
2525
2533
|
end
|
2526
2534
|
|
@@ -3100,8 +3108,10 @@ module Google
|
|
3100
3108
|
end
|
3101
3109
|
end
|
3102
3110
|
|
3103
|
-
# ServiceBinding
|
3104
|
-
#
|
3111
|
+
# ServiceBinding can be used to: - Bind a Service Directory Service to be used
|
3112
|
+
# in a BackendService resource. - Bind a Private Service Connect producer
|
3113
|
+
# service to be used in consumer Cloud Service Mesh or Application Load
|
3114
|
+
# Balancers.
|
3105
3115
|
class ServiceBinding
|
3106
3116
|
include Google::Apis::Core::Hashable
|
3107
3117
|
|
@@ -3121,19 +3131,19 @@ module Google
|
|
3121
3131
|
attr_accessor :labels
|
3122
3132
|
|
3123
3133
|
# Identifier. Name of the ServiceBinding resource. It matches pattern `projects/*
|
3124
|
-
# /locations
|
3134
|
+
# /locations/*/serviceBindings/`.
|
3125
3135
|
# Corresponds to the JSON property `name`
|
3126
3136
|
# @return [String]
|
3127
3137
|
attr_accessor :name
|
3128
3138
|
|
3129
|
-
#
|
3130
|
-
# locations/*/namespaces/*/services
|
3139
|
+
# Optional. The full Service Directory Service name of the format `projects/*/
|
3140
|
+
# locations/*/namespaces/*/services/*`. This field must be set.
|
3131
3141
|
# Corresponds to the JSON property `service`
|
3132
3142
|
# @return [String]
|
3133
3143
|
attr_accessor :service
|
3134
3144
|
|
3135
3145
|
# Output only. The unique identifier of the Service Directory Service against
|
3136
|
-
# which the
|
3146
|
+
# which the ServiceBinding resource is validated. This is populated when the
|
3137
3147
|
# Service Binding resource is used in another resource (like Backend Service).
|
3138
3148
|
# This is of the UUID4 format.
|
3139
3149
|
# Corresponds to the JSON property `serviceId`
|
@@ -3659,8 +3669,7 @@ module Google
|
|
3659
3669
|
end
|
3660
3670
|
|
3661
3671
|
# RouteMatch defines the predicate used to match requests to a given action.
|
3662
|
-
# Multiple match types are "AND"ed for evaluation.
|
3663
|
-
# specified, this rule will unconditionally match traffic.
|
3672
|
+
# Multiple match types are "AND"ed for evaluation.
|
3664
3673
|
class TlsRouteRouteMatch
|
3665
3674
|
include Google::Apis::Core::Hashable
|
3666
3675
|
|
@@ -3703,7 +3712,8 @@ module Google
|
|
3703
3712
|
attr_accessor :action
|
3704
3713
|
|
3705
3714
|
# Required. RouteMatch defines the predicate used to match requests to a given
|
3706
|
-
# action. Multiple match types are "OR"ed for evaluation.
|
3715
|
+
# action. Multiple match types are "OR"ed for evaluation. Atleast one RouteMatch
|
3716
|
+
# must be supplied.
|
3707
3717
|
# Corresponds to the JSON property `matches`
|
3708
3718
|
# @return [Array<Google::Apis::NetworkservicesV1beta1::TlsRouteRouteMatch>]
|
3709
3719
|
attr_accessor :matches
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1beta1
|
18
18
|
# Version of the google-apis-networkservices_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.47.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250224"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1166,6 +1166,7 @@ module Google
|
|
1166
1166
|
collection :meshes, as: 'meshes', class: Google::Apis::NetworkservicesV1beta1::Mesh, decorator: Google::Apis::NetworkservicesV1beta1::Mesh::Representation
|
1167
1167
|
|
1168
1168
|
property :next_page_token, as: 'nextPageToken'
|
1169
|
+
collection :unreachable, as: 'unreachable'
|
1169
1170
|
end
|
1170
1171
|
end
|
1171
1172
|
|
@@ -134,14 +134,13 @@ module Google
|
|
134
134
|
# @param [String] request_id
|
135
135
|
# Optional. An optional request ID to identify requests. Specify a unique
|
136
136
|
# request ID so that if you must retry your request, the server can ignore the
|
137
|
-
# request if it has already been completed. The server guarantees that for
|
138
|
-
#
|
139
|
-
#
|
140
|
-
#
|
141
|
-
#
|
142
|
-
#
|
143
|
-
#
|
144
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
137
|
+
# request if it has already been completed. The server guarantees that for 60
|
138
|
+
# minutes since the first request. For example, consider a situation where you
|
139
|
+
# make an initial request and the request times out. If you make the request
|
140
|
+
# again with the same request ID, the server ignores the second request This
|
141
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
142
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
143
|
+
# 00000000-0000-0000-0000-000000000000).
|
145
144
|
# @param [String] fields
|
146
145
|
# Selector specifying which fields to include in a partial response.
|
147
146
|
# @param [String] quota_user
|
@@ -181,14 +180,13 @@ module Google
|
|
181
180
|
# @param [String] request_id
|
182
181
|
# Optional. An optional request ID to identify requests. Specify a unique
|
183
182
|
# request ID so that if you must retry your request, the server can ignore the
|
184
|
-
# request if it has already been completed. The server guarantees that for
|
185
|
-
#
|
186
|
-
#
|
187
|
-
#
|
188
|
-
#
|
189
|
-
#
|
190
|
-
#
|
191
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
183
|
+
# request if it has already been completed. The server guarantees that for 60
|
184
|
+
# minutes after the first request. For example, consider a situation where you
|
185
|
+
# make an initial request and the request times out. If you make the request
|
186
|
+
# again with the same request ID, the server ignores the second request This
|
187
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
188
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
189
|
+
# 00000000-0000-0000-0000-000000000000).
|
192
190
|
# @param [String] fields
|
193
191
|
# Selector specifying which fields to include in a partial response.
|
194
192
|
# @param [String] quota_user
|
@@ -252,12 +250,12 @@ module Google
|
|
252
250
|
# Lists `AuthzExtension` resources in a given project and location.
|
253
251
|
# @param [String] parent
|
254
252
|
# Required. The project and location from which the `AuthzExtension` resources
|
255
|
-
# are listed
|
256
|
-
# location``.
|
253
|
+
# are listed. These values are specified in the following format: `projects/`
|
254
|
+
# project`/locations/`location``.
|
257
255
|
# @param [String] filter
|
258
256
|
# Optional. Filtering results.
|
259
257
|
# @param [String] order_by
|
260
|
-
# Optional. Hint
|
258
|
+
# Optional. Hint about how to order the results.
|
261
259
|
# @param [Fixnum] page_size
|
262
260
|
# Optional. Requested page size. The server might return fewer items than
|
263
261
|
# requested. If unspecified, the server picks an appropriate default.
|
@@ -303,14 +301,13 @@ module Google
|
|
303
301
|
# @param [String] request_id
|
304
302
|
# Optional. An optional request ID to identify requests. Specify a unique
|
305
303
|
# request ID so that if you must retry your request, the server can ignore the
|
306
|
-
# request if it has already been completed. The server guarantees that for
|
307
|
-
#
|
308
|
-
#
|
309
|
-
#
|
310
|
-
#
|
311
|
-
#
|
312
|
-
#
|
313
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
304
|
+
# request if it has already been completed. The server guarantees that for 60
|
305
|
+
# minutes since the first request. For example, consider a situation where you
|
306
|
+
# make an initial request and the request times out. If you make the request
|
307
|
+
# again with the same request ID, the server ignores the second request This
|
308
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
309
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
310
|
+
# 00000000-0000-0000-0000-000000000000).
|
314
311
|
# @param [String] update_mask
|
315
312
|
# Required. Used to specify the fields to be overwritten in the `AuthzExtension`
|
316
313
|
# resource by the update. The fields specified in the `update_mask` are relative
|
@@ -1145,14 +1142,13 @@ module Google
|
|
1145
1142
|
# @param [String] request_id
|
1146
1143
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1147
1144
|
# request ID so that if you must retry your request, the server can ignore the
|
1148
|
-
# request if it has already been completed. The server guarantees that for
|
1149
|
-
#
|
1150
|
-
#
|
1151
|
-
#
|
1152
|
-
#
|
1153
|
-
#
|
1154
|
-
#
|
1155
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1145
|
+
# request if it has already been completed. The server guarantees that for 60
|
1146
|
+
# minutes since the first request. For example, consider a situation where you
|
1147
|
+
# make an initial request and the request times out. If you make the request
|
1148
|
+
# again with the same request ID, the server ignores the second request This
|
1149
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1150
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1151
|
+
# 00000000-0000-0000-0000-000000000000).
|
1156
1152
|
# @param [String] fields
|
1157
1153
|
# Selector specifying which fields to include in a partial response.
|
1158
1154
|
# @param [String] quota_user
|
@@ -1192,14 +1188,13 @@ module Google
|
|
1192
1188
|
# @param [String] request_id
|
1193
1189
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1194
1190
|
# request ID so that if you must retry your request, the server can ignore the
|
1195
|
-
# request if it has already been completed. The server guarantees that for
|
1196
|
-
#
|
1197
|
-
#
|
1198
|
-
#
|
1199
|
-
#
|
1200
|
-
#
|
1201
|
-
#
|
1202
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1191
|
+
# request if it has already been completed. The server guarantees that for 60
|
1192
|
+
# minutes after the first request. For example, consider a situation where you
|
1193
|
+
# make an initial request and the request times out. If you make the request
|
1194
|
+
# again with the same request ID, the server ignores the second request This
|
1195
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1196
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1197
|
+
# 00000000-0000-0000-0000-000000000000).
|
1203
1198
|
# @param [String] fields
|
1204
1199
|
# Selector specifying which fields to include in a partial response.
|
1205
1200
|
# @param [String] quota_user
|
@@ -1263,12 +1258,12 @@ module Google
|
|
1263
1258
|
# Lists `LbRouteExtension` resources in a given project and location.
|
1264
1259
|
# @param [String] parent
|
1265
1260
|
# Required. The project and location from which the `LbRouteExtension` resources
|
1266
|
-
# are listed
|
1267
|
-
# location``.
|
1261
|
+
# are listed. These values are specified in the following format: `projects/`
|
1262
|
+
# project`/locations/`location``.
|
1268
1263
|
# @param [String] filter
|
1269
1264
|
# Optional. Filtering results.
|
1270
1265
|
# @param [String] order_by
|
1271
|
-
# Optional. Hint
|
1266
|
+
# Optional. Hint about how to order the results.
|
1272
1267
|
# @param [Fixnum] page_size
|
1273
1268
|
# Optional. Requested page size. The server might return fewer items than
|
1274
1269
|
# requested. If unspecified, the server picks an appropriate default.
|
@@ -1314,14 +1309,13 @@ module Google
|
|
1314
1309
|
# @param [String] request_id
|
1315
1310
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1316
1311
|
# request ID so that if you must retry your request, the server can ignore the
|
1317
|
-
# request if it has already been completed. The server guarantees that for
|
1318
|
-
#
|
1319
|
-
#
|
1320
|
-
#
|
1321
|
-
#
|
1322
|
-
#
|
1323
|
-
#
|
1324
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1312
|
+
# request if it has already been completed. The server guarantees that for 60
|
1313
|
+
# minutes since the first request. For example, consider a situation where you
|
1314
|
+
# make an initial request and the request times out. If you make the request
|
1315
|
+
# again with the same request ID, the server ignores the second request This
|
1316
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1317
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1318
|
+
# 00000000-0000-0000-0000-000000000000).
|
1325
1319
|
# @param [String] update_mask
|
1326
1320
|
# Optional. Used to specify the fields to be overwritten in the `
|
1327
1321
|
# LbRouteExtension` resource by the update. The fields specified in the `
|
@@ -1369,14 +1363,13 @@ module Google
|
|
1369
1363
|
# @param [String] request_id
|
1370
1364
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1371
1365
|
# request ID so that if you must retry your request, the server can ignore the
|
1372
|
-
# request if it has already been completed. The server guarantees that for
|
1373
|
-
#
|
1374
|
-
#
|
1375
|
-
#
|
1376
|
-
#
|
1377
|
-
#
|
1378
|
-
#
|
1379
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1366
|
+
# request if it has already been completed. The server guarantees that for 60
|
1367
|
+
# minutes since the first request. For example, consider a situation where you
|
1368
|
+
# make an initial request and the request times out. If you make the request
|
1369
|
+
# again with the same request ID, the server ignores the second request This
|
1370
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1371
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1372
|
+
# 00000000-0000-0000-0000-000000000000).
|
1380
1373
|
# @param [String] fields
|
1381
1374
|
# Selector specifying which fields to include in a partial response.
|
1382
1375
|
# @param [String] quota_user
|
@@ -1416,14 +1409,13 @@ module Google
|
|
1416
1409
|
# @param [String] request_id
|
1417
1410
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1418
1411
|
# request ID so that if you must retry your request, the server can ignore the
|
1419
|
-
# request if it has already been completed. The server guarantees that for
|
1420
|
-
#
|
1421
|
-
#
|
1422
|
-
#
|
1423
|
-
#
|
1424
|
-
#
|
1425
|
-
#
|
1426
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1412
|
+
# request if it has already been completed. The server guarantees that for 60
|
1413
|
+
# minutes after the first request. For example, consider a situation where you
|
1414
|
+
# make an initial request and the request times out. If you make the request
|
1415
|
+
# again with the same request ID, the server ignores the second request This
|
1416
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1417
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1418
|
+
# 00000000-0000-0000-0000-000000000000).
|
1427
1419
|
# @param [String] fields
|
1428
1420
|
# Selector specifying which fields to include in a partial response.
|
1429
1421
|
# @param [String] quota_user
|
@@ -1487,12 +1479,12 @@ module Google
|
|
1487
1479
|
# Lists `LbTrafficExtension` resources in a given project and location.
|
1488
1480
|
# @param [String] parent
|
1489
1481
|
# Required. The project and location from which the `LbTrafficExtension`
|
1490
|
-
# resources are listed
|
1491
|
-
# locations/`location``.
|
1482
|
+
# resources are listed. These values are specified in the following format: `
|
1483
|
+
# projects/`project`/locations/`location``.
|
1492
1484
|
# @param [String] filter
|
1493
1485
|
# Optional. Filtering results.
|
1494
1486
|
# @param [String] order_by
|
1495
|
-
# Optional. Hint
|
1487
|
+
# Optional. Hint about how to order the results.
|
1496
1488
|
# @param [Fixnum] page_size
|
1497
1489
|
# Optional. Requested page size. The server might return fewer items than
|
1498
1490
|
# requested. If unspecified, the server picks an appropriate default.
|
@@ -1538,14 +1530,13 @@ module Google
|
|
1538
1530
|
# @param [String] request_id
|
1539
1531
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1540
1532
|
# request ID so that if you must retry your request, the server can ignore the
|
1541
|
-
# request if it has already been completed. The server guarantees that for
|
1542
|
-
#
|
1543
|
-
#
|
1544
|
-
#
|
1545
|
-
#
|
1546
|
-
#
|
1547
|
-
#
|
1548
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1533
|
+
# request if it has already been completed. The server guarantees that for 60
|
1534
|
+
# minutes since the first request. For example, consider a situation where you
|
1535
|
+
# make an initial request and the request times out. If you make the request
|
1536
|
+
# again with the same request ID, the server ignores the second request This
|
1537
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1538
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1539
|
+
# 00000000-0000-0000-0000-000000000000).
|
1549
1540
|
# @param [String] update_mask
|
1550
1541
|
# Optional. Used to specify the fields to be overwritten in the `
|
1551
1542
|
# LbTrafficExtension` resource by the update. The fields specified in the `
|
@@ -1692,6 +1683,10 @@ module Google
|
|
1692
1683
|
# The value returned by the last `ListMeshesResponse` Indicates that this is a
|
1693
1684
|
# continuation of a prior `ListMeshes` call, and that the system should return
|
1694
1685
|
# the next page of data.
|
1686
|
+
# @param [Boolean] return_partial_success
|
1687
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
1688
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
1689
|
+
# Aggregated List request will fail.
|
1695
1690
|
# @param [String] fields
|
1696
1691
|
# Selector specifying which fields to include in a partial response.
|
1697
1692
|
# @param [String] quota_user
|
@@ -1709,13 +1704,14 @@ module Google
|
|
1709
1704
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1710
1705
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1711
1706
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1712
|
-
def list_project_location_meshes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1707
|
+
def list_project_location_meshes(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1713
1708
|
command = make_simple_command(:get, 'v1beta1/{+parent}/meshes', options)
|
1714
1709
|
command.response_representation = Google::Apis::NetworkservicesV1beta1::ListMeshesResponse::Representation
|
1715
1710
|
command.response_class = Google::Apis::NetworkservicesV1beta1::ListMeshesResponse
|
1716
1711
|
command.params['parent'] = parent unless parent.nil?
|
1717
1712
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1718
1713
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1714
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1719
1715
|
command.query['fields'] = fields unless fields.nil?
|
1720
1716
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1721
1717
|
execute_or_queue_command(command, &block)
|
@@ -1979,7 +1975,7 @@ module Google
|
|
1979
1975
|
# Creates a new ServiceBinding in a given project and location.
|
1980
1976
|
# @param [String] parent
|
1981
1977
|
# Required. The parent resource of the ServiceBinding. Must be in the format `
|
1982
|
-
# projects/*/locations
|
1978
|
+
# projects/*/locations/*`.
|
1983
1979
|
# @param [Google::Apis::NetworkservicesV1beta1::ServiceBinding] service_binding_object
|
1984
1980
|
# @param [String] service_binding_id
|
1985
1981
|
# Required. Short name of the ServiceBinding resource to be created.
|
@@ -2016,7 +2012,7 @@ module Google
|
|
2016
2012
|
# Deletes a single ServiceBinding.
|
2017
2013
|
# @param [String] name
|
2018
2014
|
# Required. A name of the ServiceBinding to delete. Must be in the format `
|
2019
|
-
# projects/*/locations
|
2015
|
+
# projects/*/locations/*/serviceBindings/*`.
|
2020
2016
|
# @param [String] fields
|
2021
2017
|
# Selector specifying which fields to include in a partial response.
|
2022
2018
|
# @param [String] quota_user
|
@@ -2047,7 +2043,7 @@ module Google
|
|
2047
2043
|
# Gets details of a single ServiceBinding.
|
2048
2044
|
# @param [String] name
|
2049
2045
|
# Required. A name of the ServiceBinding to get. Must be in the format `projects/
|
2050
|
-
# */locations
|
2046
|
+
# */locations/*/serviceBindings/*`.
|
2051
2047
|
# @param [String] fields
|
2052
2048
|
# Selector specifying which fields to include in a partial response.
|
2053
2049
|
# @param [String] quota_user
|
@@ -2078,7 +2074,7 @@ module Google
|
|
2078
2074
|
# Lists ServiceBinding in a given project and location.
|
2079
2075
|
# @param [String] parent
|
2080
2076
|
# Required. The project and location from which the ServiceBindings should be
|
2081
|
-
# listed, specified in the format `projects/*/locations
|
2077
|
+
# listed, specified in the format `projects/*/locations/*`.
|
2082
2078
|
# @param [Fixnum] page_size
|
2083
2079
|
# Maximum number of ServiceBindings to return per call.
|
2084
2080
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.47.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.47.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.5
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.5
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Network Services API V1beta1
|
82
79
|
test_files: []
|