google-apis-networkservices_v1 0.51.0 → 0.52.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_v1/classes.rb +25 -15
- data/lib/google/apis/networkservices_v1/gem_version.rb +3 -3
- data/lib/google/apis/networkservices_v1/representations.rb +1 -0
- data/lib/google/apis/networkservices_v1/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: e65d8edec24727fb40b2ca50b56fca2378c2a8d11fe33111c3e759e5120dd7fb
|
4
|
+
data.tar.gz: 94065b79e151930e5443ed1afe9cef5f32811228d73e54375235712a1bd33cba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '047154989c4134ab1a90946f1a67ba8d49cba1caedebd7d7526ec8bbb85fa5526d9013e1204ceac391158b01108f8217485328a2c3413f77a77b1e7abb451c2e'
|
7
|
+
data.tar.gz: '083d7e6801f1ccf1abc5d440782328d7ed06e704642a4edb956eef12576ef1fc1bc9a6b13b77590fb1a743f3c3e1155eb2823419287bf024b666102d2afa0d5b'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-networkservices_v1
|
2
2
|
|
3
|
+
### v0.52.0 (2025-03-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250224
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
3
8
|
### v0.51.0 (2024-12-08)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20241118
|
@@ -191,7 +191,7 @@ module Google
|
|
191
191
|
attr_accessor :update_time
|
192
192
|
|
193
193
|
# Optional. The format of communication supported by the callout extension. If
|
194
|
-
# not specified, the default
|
194
|
+
# not specified, the default value `EXT_PROC_GRPC` is used.
|
195
195
|
# Corresponds to the JSON property `wireFormat`
|
196
196
|
# @return [String]
|
197
197
|
attr_accessor :wire_format
|
@@ -751,7 +751,7 @@ module Google
|
|
751
751
|
# Gateway represents the configuration for a proxy, typically a load balancer.
|
752
752
|
# It captures the ip:port over which the services are exposed by the proxy,
|
753
753
|
# along with any policy configurations. Routes have reference to to Gateways to
|
754
|
-
# dictate how requests should be routed by this Gateway.
|
754
|
+
# dictate how requests should be routed by this Gateway.
|
755
755
|
class Gateway
|
756
756
|
include Google::Apis::Core::Hashable
|
757
757
|
|
@@ -836,7 +836,7 @@ module Google
|
|
836
836
|
|
837
837
|
# Optional. Scope determines how configuration across multiple Gateway instances
|
838
838
|
# are merged. The configuration for multiple Gateway instances with the same
|
839
|
-
# scope will be merged as presented as a single
|
839
|
+
# scope will be merged as presented as a single configuration to the proxy/load
|
840
840
|
# balancer. Max length 64 characters. Scope should start with a letter and can
|
841
841
|
# only have letters, numbers, hyphens.
|
842
842
|
# Corresponds to the JSON property `scope`
|
@@ -2457,9 +2457,9 @@ module Google
|
|
2457
2457
|
|
2458
2458
|
# Required. All backend services and forwarding rules referenced by this
|
2459
2459
|
# extension must share the same load balancing scheme. Supported values: `
|
2460
|
-
# INTERNAL_MANAGED
|
2461
|
-
# services overview](https://cloud.google.com/load-balancing/docs/
|
2462
|
-
# service).
|
2460
|
+
# INTERNAL_MANAGED` and `EXTERNAL_MANAGED`. For more information, refer to [
|
2461
|
+
# Backend services overview](https://cloud.google.com/load-balancing/docs/
|
2462
|
+
# backend-service).
|
2463
2463
|
# Corresponds to the JSON property `loadBalancingScheme`
|
2464
2464
|
# @return [String]
|
2465
2465
|
attr_accessor :load_balancing_scheme
|
@@ -2804,6 +2804,13 @@ module Google
|
|
2804
2804
|
# @return [String]
|
2805
2805
|
attr_accessor :next_page_token
|
2806
2806
|
|
2807
|
+
# Unreachable resources. Populated when the request opts into `
|
2808
|
+
# return_partial_success` and reading across collections e.g. when attempting to
|
2809
|
+
# list all resources across all supported locations.
|
2810
|
+
# Corresponds to the JSON property `unreachable`
|
2811
|
+
# @return [Array<String>]
|
2812
|
+
attr_accessor :unreachable
|
2813
|
+
|
2807
2814
|
def initialize(**args)
|
2808
2815
|
update!(**args)
|
2809
2816
|
end
|
@@ -2812,6 +2819,7 @@ module Google
|
|
2812
2819
|
def update!(**args)
|
2813
2820
|
@meshes = args[:meshes] if args.key?(:meshes)
|
2814
2821
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2822
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
2815
2823
|
end
|
2816
2824
|
end
|
2817
2825
|
|
@@ -3421,8 +3429,10 @@ module Google
|
|
3421
3429
|
end
|
3422
3430
|
end
|
3423
3431
|
|
3424
|
-
# ServiceBinding
|
3425
|
-
#
|
3432
|
+
# ServiceBinding can be used to: - Bind a Service Directory Service to be used
|
3433
|
+
# in a BackendService resource. - Bind a Private Service Connect producer
|
3434
|
+
# service to be used in consumer Cloud Service Mesh or Application Load
|
3435
|
+
# Balancers.
|
3426
3436
|
class ServiceBinding
|
3427
3437
|
include Google::Apis::Core::Hashable
|
3428
3438
|
|
@@ -3442,19 +3452,19 @@ module Google
|
|
3442
3452
|
attr_accessor :labels
|
3443
3453
|
|
3444
3454
|
# Identifier. Name of the ServiceBinding resource. It matches pattern `projects/*
|
3445
|
-
# /locations
|
3455
|
+
# /locations/*/serviceBindings/`.
|
3446
3456
|
# Corresponds to the JSON property `name`
|
3447
3457
|
# @return [String]
|
3448
3458
|
attr_accessor :name
|
3449
3459
|
|
3450
|
-
#
|
3451
|
-
# locations/*/namespaces/*/services
|
3460
|
+
# Optional. The full Service Directory Service name of the format `projects/*/
|
3461
|
+
# locations/*/namespaces/*/services/*`. This field must be set.
|
3452
3462
|
# Corresponds to the JSON property `service`
|
3453
3463
|
# @return [String]
|
3454
3464
|
attr_accessor :service
|
3455
3465
|
|
3456
3466
|
# Output only. The unique identifier of the Service Directory Service against
|
3457
|
-
# which the
|
3467
|
+
# which the ServiceBinding resource is validated. This is populated when the
|
3458
3468
|
# Service Binding resource is used in another resource (like Backend Service).
|
3459
3469
|
# This is of the UUID4 format.
|
3460
3470
|
# Corresponds to the JSON property `serviceId`
|
@@ -4073,8 +4083,7 @@ module Google
|
|
4073
4083
|
end
|
4074
4084
|
|
4075
4085
|
# RouteMatch defines the predicate used to match requests to a given action.
|
4076
|
-
# Multiple match types are "AND"ed for evaluation.
|
4077
|
-
# specified, this rule will unconditionally match traffic.
|
4086
|
+
# Multiple match types are "AND"ed for evaluation.
|
4078
4087
|
class TlsRouteRouteMatch
|
4079
4088
|
include Google::Apis::Core::Hashable
|
4080
4089
|
|
@@ -4117,7 +4126,8 @@ module Google
|
|
4117
4126
|
attr_accessor :action
|
4118
4127
|
|
4119
4128
|
# Required. RouteMatch defines the predicate used to match requests to a given
|
4120
|
-
# action. Multiple match types are "OR"ed for evaluation.
|
4129
|
+
# action. Multiple match types are "OR"ed for evaluation. Atleast one RouteMatch
|
4130
|
+
# must be supplied.
|
4121
4131
|
# Corresponds to the JSON property `matches`
|
4122
4132
|
# @return [Array<Google::Apis::NetworkservicesV1::TlsRouteRouteMatch>]
|
4123
4133
|
attr_accessor :matches
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkservicesV1
|
18
18
|
# Version of the google-apis-networkservices_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.52.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
|
@@ -1268,6 +1268,7 @@ module Google
|
|
1268
1268
|
collection :meshes, as: 'meshes', class: Google::Apis::NetworkservicesV1::Mesh, decorator: Google::Apis::NetworkservicesV1::Mesh::Representation
|
1269
1269
|
|
1270
1270
|
property :next_page_token, as: 'nextPageToken'
|
1271
|
+
collection :unreachable, as: 'unreachable'
|
1271
1272
|
end
|
1272
1273
|
end
|
1273
1274
|
|
@@ -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
|
@@ -1508,14 +1505,13 @@ module Google
|
|
1508
1505
|
# @param [String] request_id
|
1509
1506
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1510
1507
|
# request ID so that if you must retry your request, the server can ignore the
|
1511
|
-
# request if it has already been completed. The server guarantees that for
|
1512
|
-
#
|
1513
|
-
#
|
1514
|
-
#
|
1515
|
-
#
|
1516
|
-
#
|
1517
|
-
#
|
1518
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1508
|
+
# request if it has already been completed. The server guarantees that for 60
|
1509
|
+
# minutes since the first request. For example, consider a situation where you
|
1510
|
+
# make an initial request and the request times out. If you make the request
|
1511
|
+
# again with the same request ID, the server ignores the second request This
|
1512
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1513
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1514
|
+
# 00000000-0000-0000-0000-000000000000).
|
1519
1515
|
# @param [String] fields
|
1520
1516
|
# Selector specifying which fields to include in a partial response.
|
1521
1517
|
# @param [String] quota_user
|
@@ -1555,14 +1551,13 @@ module Google
|
|
1555
1551
|
# @param [String] request_id
|
1556
1552
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1557
1553
|
# request ID so that if you must retry your request, the server can ignore the
|
1558
|
-
# request if it has already been completed. The server guarantees that for
|
1559
|
-
#
|
1560
|
-
#
|
1561
|
-
#
|
1562
|
-
#
|
1563
|
-
#
|
1564
|
-
#
|
1565
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1554
|
+
# request if it has already been completed. The server guarantees that for 60
|
1555
|
+
# minutes after the first request. For example, consider a situation where you
|
1556
|
+
# make an initial request and the request times out. If you make the request
|
1557
|
+
# again with the same request ID, the server ignores the second request This
|
1558
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1559
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1560
|
+
# 00000000-0000-0000-0000-000000000000).
|
1566
1561
|
# @param [String] fields
|
1567
1562
|
# Selector specifying which fields to include in a partial response.
|
1568
1563
|
# @param [String] quota_user
|
@@ -1626,12 +1621,12 @@ module Google
|
|
1626
1621
|
# Lists `LbRouteExtension` resources in a given project and location.
|
1627
1622
|
# @param [String] parent
|
1628
1623
|
# Required. The project and location from which the `LbRouteExtension` resources
|
1629
|
-
# are listed
|
1630
|
-
# location``.
|
1624
|
+
# are listed. These values are specified in the following format: `projects/`
|
1625
|
+
# project`/locations/`location``.
|
1631
1626
|
# @param [String] filter
|
1632
1627
|
# Optional. Filtering results.
|
1633
1628
|
# @param [String] order_by
|
1634
|
-
# Optional. Hint
|
1629
|
+
# Optional. Hint about how to order the results.
|
1635
1630
|
# @param [Fixnum] page_size
|
1636
1631
|
# Optional. Requested page size. The server might return fewer items than
|
1637
1632
|
# requested. If unspecified, the server picks an appropriate default.
|
@@ -1677,14 +1672,13 @@ module Google
|
|
1677
1672
|
# @param [String] request_id
|
1678
1673
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1679
1674
|
# request ID so that if you must retry your request, the server can ignore the
|
1680
|
-
# request if it has already been completed. The server guarantees that for
|
1681
|
-
#
|
1682
|
-
#
|
1683
|
-
#
|
1684
|
-
#
|
1685
|
-
#
|
1686
|
-
#
|
1687
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1675
|
+
# request if it has already been completed. The server guarantees that for 60
|
1676
|
+
# minutes since the first request. For example, consider a situation where you
|
1677
|
+
# make an initial request and the request times out. If you make the request
|
1678
|
+
# again with the same request ID, the server ignores the second request This
|
1679
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1680
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1681
|
+
# 00000000-0000-0000-0000-000000000000).
|
1688
1682
|
# @param [String] update_mask
|
1689
1683
|
# Optional. Used to specify the fields to be overwritten in the `
|
1690
1684
|
# LbRouteExtension` resource by the update. The fields specified in the `
|
@@ -1732,14 +1726,13 @@ module Google
|
|
1732
1726
|
# @param [String] request_id
|
1733
1727
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1734
1728
|
# request ID so that if you must retry your request, the server can ignore the
|
1735
|
-
# request if it has already been completed. The server guarantees that for
|
1736
|
-
#
|
1737
|
-
#
|
1738
|
-
#
|
1739
|
-
#
|
1740
|
-
#
|
1741
|
-
#
|
1742
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1729
|
+
# request if it has already been completed. The server guarantees that for 60
|
1730
|
+
# minutes since the first request. For example, consider a situation where you
|
1731
|
+
# make an initial request and the request times out. If you make the request
|
1732
|
+
# again with the same request ID, the server ignores the second request This
|
1733
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1734
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1735
|
+
# 00000000-0000-0000-0000-000000000000).
|
1743
1736
|
# @param [String] fields
|
1744
1737
|
# Selector specifying which fields to include in a partial response.
|
1745
1738
|
# @param [String] quota_user
|
@@ -1779,14 +1772,13 @@ module Google
|
|
1779
1772
|
# @param [String] request_id
|
1780
1773
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1781
1774
|
# request ID so that if you must retry your request, the server can ignore the
|
1782
|
-
# request if it has already been completed. The server guarantees that for
|
1783
|
-
#
|
1784
|
-
#
|
1785
|
-
#
|
1786
|
-
#
|
1787
|
-
#
|
1788
|
-
#
|
1789
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1775
|
+
# request if it has already been completed. The server guarantees that for 60
|
1776
|
+
# minutes after the first request. For example, consider a situation where you
|
1777
|
+
# make an initial request and the request times out. If you make the request
|
1778
|
+
# again with the same request ID, the server ignores the second request This
|
1779
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1780
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1781
|
+
# 00000000-0000-0000-0000-000000000000).
|
1790
1782
|
# @param [String] fields
|
1791
1783
|
# Selector specifying which fields to include in a partial response.
|
1792
1784
|
# @param [String] quota_user
|
@@ -1850,12 +1842,12 @@ module Google
|
|
1850
1842
|
# Lists `LbTrafficExtension` resources in a given project and location.
|
1851
1843
|
# @param [String] parent
|
1852
1844
|
# Required. The project and location from which the `LbTrafficExtension`
|
1853
|
-
# resources are listed
|
1854
|
-
# locations/`location``.
|
1845
|
+
# resources are listed. These values are specified in the following format: `
|
1846
|
+
# projects/`project`/locations/`location``.
|
1855
1847
|
# @param [String] filter
|
1856
1848
|
# Optional. Filtering results.
|
1857
1849
|
# @param [String] order_by
|
1858
|
-
# Optional. Hint
|
1850
|
+
# Optional. Hint about how to order the results.
|
1859
1851
|
# @param [Fixnum] page_size
|
1860
1852
|
# Optional. Requested page size. The server might return fewer items than
|
1861
1853
|
# requested. If unspecified, the server picks an appropriate default.
|
@@ -1901,14 +1893,13 @@ module Google
|
|
1901
1893
|
# @param [String] request_id
|
1902
1894
|
# Optional. An optional request ID to identify requests. Specify a unique
|
1903
1895
|
# request ID so that if you must retry your request, the server can ignore the
|
1904
|
-
# request if it has already been completed. The server guarantees that for
|
1905
|
-
#
|
1906
|
-
#
|
1907
|
-
#
|
1908
|
-
#
|
1909
|
-
#
|
1910
|
-
#
|
1911
|
-
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
1896
|
+
# request if it has already been completed. The server guarantees that for 60
|
1897
|
+
# minutes since the first request. For example, consider a situation where you
|
1898
|
+
# make an initial request and the request times out. If you make the request
|
1899
|
+
# again with the same request ID, the server ignores the second request This
|
1900
|
+
# prevents clients from accidentally creating duplicate commitments. The request
|
1901
|
+
# ID must be a valid UUID with the exception that zero UUID is not supported (
|
1902
|
+
# 00000000-0000-0000-0000-000000000000).
|
1912
1903
|
# @param [String] update_mask
|
1913
1904
|
# Optional. Used to specify the fields to be overwritten in the `
|
1914
1905
|
# LbTrafficExtension` resource by the update. The fields specified in the `
|
@@ -2055,6 +2046,10 @@ module Google
|
|
2055
2046
|
# The value returned by the last `ListMeshesResponse` Indicates that this is a
|
2056
2047
|
# continuation of a prior `ListMeshes` call, and that the system should return
|
2057
2048
|
# the next page of data.
|
2049
|
+
# @param [Boolean] return_partial_success
|
2050
|
+
# Optional. If true, allow partial responses for multi-regional Aggregated List
|
2051
|
+
# requests. Otherwise if one of the locations is down or unreachable, the
|
2052
|
+
# Aggregated List request will fail.
|
2058
2053
|
# @param [String] fields
|
2059
2054
|
# Selector specifying which fields to include in a partial response.
|
2060
2055
|
# @param [String] quota_user
|
@@ -2072,13 +2067,14 @@ module Google
|
|
2072
2067
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2073
2068
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2074
2069
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2075
|
-
def list_project_location_meshes(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2070
|
+
def list_project_location_meshes(parent, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2076
2071
|
command = make_simple_command(:get, 'v1/{+parent}/meshes', options)
|
2077
2072
|
command.response_representation = Google::Apis::NetworkservicesV1::ListMeshesResponse::Representation
|
2078
2073
|
command.response_class = Google::Apis::NetworkservicesV1::ListMeshesResponse
|
2079
2074
|
command.params['parent'] = parent unless parent.nil?
|
2080
2075
|
command.query['pageSize'] = page_size unless page_size.nil?
|
2081
2076
|
command.query['pageToken'] = page_token unless page_token.nil?
|
2077
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
2082
2078
|
command.query['fields'] = fields unless fields.nil?
|
2083
2079
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2084
2080
|
execute_or_queue_command(command, &block)
|
@@ -2342,7 +2338,7 @@ module Google
|
|
2342
2338
|
# Creates a new ServiceBinding in a given project and location.
|
2343
2339
|
# @param [String] parent
|
2344
2340
|
# Required. The parent resource of the ServiceBinding. Must be in the format `
|
2345
|
-
# projects/*/locations
|
2341
|
+
# projects/*/locations/*`.
|
2346
2342
|
# @param [Google::Apis::NetworkservicesV1::ServiceBinding] service_binding_object
|
2347
2343
|
# @param [String] service_binding_id
|
2348
2344
|
# Required. Short name of the ServiceBinding resource to be created.
|
@@ -2379,7 +2375,7 @@ module Google
|
|
2379
2375
|
# Deletes a single ServiceBinding.
|
2380
2376
|
# @param [String] name
|
2381
2377
|
# Required. A name of the ServiceBinding to delete. Must be in the format `
|
2382
|
-
# projects/*/locations
|
2378
|
+
# projects/*/locations/*/serviceBindings/*`.
|
2383
2379
|
# @param [String] fields
|
2384
2380
|
# Selector specifying which fields to include in a partial response.
|
2385
2381
|
# @param [String] quota_user
|
@@ -2410,7 +2406,7 @@ module Google
|
|
2410
2406
|
# Gets details of a single ServiceBinding.
|
2411
2407
|
# @param [String] name
|
2412
2408
|
# Required. A name of the ServiceBinding to get. Must be in the format `projects/
|
2413
|
-
# */locations
|
2409
|
+
# */locations/*/serviceBindings/*`.
|
2414
2410
|
# @param [String] fields
|
2415
2411
|
# Selector specifying which fields to include in a partial response.
|
2416
2412
|
# @param [String] quota_user
|
@@ -2441,7 +2437,7 @@ module Google
|
|
2441
2437
|
# Lists ServiceBinding in a given project and location.
|
2442
2438
|
# @param [String] parent
|
2443
2439
|
# Required. The project and location from which the ServiceBindings should be
|
2444
|
-
# listed, specified in the format `projects/*/locations
|
2440
|
+
# listed, specified in the format `projects/*/locations/*`.
|
2445
2441
|
# @param [Fixnum] page_size
|
2446
2442
|
# Maximum number of ServiceBindings to return per call.
|
2447
2443
|
# @param [String] page_token
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkservices_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.52.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.52.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
|
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 V1
|
82
79
|
test_files: []
|