google-apis-networkmanagement_v1 0.73.0 → 0.75.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 +8 -0
- data/lib/google/apis/networkmanagement_v1/classes.rb +139 -2
- data/lib/google/apis/networkmanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1/representations.rb +53 -0
- data/lib/google/apis/networkmanagement_v1/service.rb +12 -10
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ae96a207de74c35ec99969c7f6f39694b003085493cfdf73dc6802c514a26f5
|
|
4
|
+
data.tar.gz: f7497bfc5bccf88f2d020ccd96d4400bb26f0131280b2cf94cca4c2244b057f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11f103fe2f9cd849e18a629fd8417f5a8348c577d5306e5b3ecb225556328f9cb7dce0a1609e7026999351f70dcba1805a3699fd88212763b67d2befc3df9b25
|
|
7
|
+
data.tar.gz: 2cbce576742994441b40fc1fa55ad54a0b532c82416c794870059964fe4ddae48b4e4c29d7eea2ac7702bb08dba37d9c70682b7516151bd7a3a1e28dba2c93ca
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.75.0 (2026-01-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260110
|
|
6
|
+
|
|
7
|
+
### v0.74.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251203
|
|
10
|
+
|
|
3
11
|
### v0.73.0 (2025-11-16)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251105
|
|
@@ -931,6 +931,11 @@ module Google
|
|
|
931
931
|
# @return [String]
|
|
932
932
|
attr_accessor :gke_master_cluster
|
|
933
933
|
|
|
934
|
+
# A [GKE Pod](https://cloud.google.com/kubernetes-engine/docs/concepts/pod) URI.
|
|
935
|
+
# Corresponds to the JSON property `gkePod`
|
|
936
|
+
# @return [String]
|
|
937
|
+
attr_accessor :gke_pod
|
|
938
|
+
|
|
934
939
|
# A Compute Engine instance URI.
|
|
935
940
|
# Corresponds to the JSON property `instance`
|
|
936
941
|
# @return [String]
|
|
@@ -1006,6 +1011,7 @@ module Google
|
|
|
1006
1011
|
@forwarding_rule_target = args[:forwarding_rule_target] if args.key?(:forwarding_rule_target)
|
|
1007
1012
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
|
1008
1013
|
@gke_master_cluster = args[:gke_master_cluster] if args.key?(:gke_master_cluster)
|
|
1014
|
+
@gke_pod = args[:gke_pod] if args.key?(:gke_pod)
|
|
1009
1015
|
@instance = args[:instance] if args.key?(:instance)
|
|
1010
1016
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1011
1017
|
@load_balancer_id = args[:load_balancer_id] if args.key?(:load_balancer_id)
|
|
@@ -1390,6 +1396,81 @@ module Google
|
|
|
1390
1396
|
end
|
|
1391
1397
|
end
|
|
1392
1398
|
|
|
1399
|
+
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
1400
|
+
# Pod.
|
|
1401
|
+
class GkePodInfo
|
|
1402
|
+
include Google::Apis::Core::Hashable
|
|
1403
|
+
|
|
1404
|
+
# IP address of a GKE Pod. If the Pod is dual-stack, this is the IP address
|
|
1405
|
+
# relevant to the trace.
|
|
1406
|
+
# Corresponds to the JSON property `ipAddress`
|
|
1407
|
+
# @return [String]
|
|
1408
|
+
attr_accessor :ip_address
|
|
1409
|
+
|
|
1410
|
+
# URI of the network containing the GKE Pod.
|
|
1411
|
+
# Corresponds to the JSON property `networkUri`
|
|
1412
|
+
# @return [String]
|
|
1413
|
+
attr_accessor :network_uri
|
|
1414
|
+
|
|
1415
|
+
# URI of a GKE Pod. For Pods in regional Clusters, the URI format is: `projects/`
|
|
1416
|
+
# project`/locations/`location`/clusters/`cluster`/k8s/namespaces/`namespace`/
|
|
1417
|
+
# pods/`pod`` For Pods in zonal Clusters, the URI format is: `projects/`project`/
|
|
1418
|
+
# zones/`zone`/clusters/`cluster`/k8s/namespaces/`namespace`/pods/`pod``
|
|
1419
|
+
# Corresponds to the JSON property `podUri`
|
|
1420
|
+
# @return [String]
|
|
1421
|
+
attr_accessor :pod_uri
|
|
1422
|
+
|
|
1423
|
+
def initialize(**args)
|
|
1424
|
+
update!(**args)
|
|
1425
|
+
end
|
|
1426
|
+
|
|
1427
|
+
# Update properties of this object
|
|
1428
|
+
def update!(**args)
|
|
1429
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1430
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
1431
|
+
@pod_uri = args[:pod_uri] if args.key?(:pod_uri)
|
|
1432
|
+
end
|
|
1433
|
+
end
|
|
1434
|
+
|
|
1435
|
+
# For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
|
|
1436
|
+
# state.
|
|
1437
|
+
class GoogleManagedServiceInfo
|
|
1438
|
+
include Google::Apis::Core::Hashable
|
|
1439
|
+
|
|
1440
|
+
# IP address of the Google-managed service endpoint.
|
|
1441
|
+
# Corresponds to the JSON property `ipAddress`
|
|
1442
|
+
# @return [String]
|
|
1443
|
+
attr_accessor :ip_address
|
|
1444
|
+
|
|
1445
|
+
# URI of the Google-managed service endpoint network, it is empty if the IP
|
|
1446
|
+
# address is a public IP address.
|
|
1447
|
+
# Corresponds to the JSON property `networkUri`
|
|
1448
|
+
# @return [String]
|
|
1449
|
+
attr_accessor :network_uri
|
|
1450
|
+
|
|
1451
|
+
# Type of a Google-managed service.
|
|
1452
|
+
# Corresponds to the JSON property `serviceType`
|
|
1453
|
+
# @return [String]
|
|
1454
|
+
attr_accessor :service_type
|
|
1455
|
+
|
|
1456
|
+
# URI of the Google-managed service.
|
|
1457
|
+
# Corresponds to the JSON property `serviceUri`
|
|
1458
|
+
# @return [String]
|
|
1459
|
+
attr_accessor :service_uri
|
|
1460
|
+
|
|
1461
|
+
def initialize(**args)
|
|
1462
|
+
update!(**args)
|
|
1463
|
+
end
|
|
1464
|
+
|
|
1465
|
+
# Update properties of this object
|
|
1466
|
+
def update!(**args)
|
|
1467
|
+
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
1468
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
1469
|
+
@service_type = args[:service_type] if args.key?(:service_type)
|
|
1470
|
+
@service_uri = args[:service_uri] if args.key?(:service_uri)
|
|
1471
|
+
end
|
|
1472
|
+
end
|
|
1473
|
+
|
|
1393
1474
|
# For display only. Details of a Google Service sending packets to a VPC network.
|
|
1394
1475
|
# Although the source IP might be a publicly routable address, some Google
|
|
1395
1476
|
# Services use special routes within Google production infrastructure to reach
|
|
@@ -1586,6 +1667,34 @@ module Google
|
|
|
1586
1667
|
end
|
|
1587
1668
|
end
|
|
1588
1669
|
|
|
1670
|
+
# For display only. Contains information about why IP masquerading was skipped
|
|
1671
|
+
# for the packet.
|
|
1672
|
+
class IpMasqueradingSkippedInfo
|
|
1673
|
+
include Google::Apis::Core::Hashable
|
|
1674
|
+
|
|
1675
|
+
# The matched non-masquerade IP range. Only set if reason is
|
|
1676
|
+
# DESTINATION_IP_IN_CONFIGURED_NON_MASQUERADE_RANGE or
|
|
1677
|
+
# DESTINATION_IP_IN_DEFAULT_NON_MASQUERADE_RANGE.
|
|
1678
|
+
# Corresponds to the JSON property `nonMasqueradeRange`
|
|
1679
|
+
# @return [String]
|
|
1680
|
+
attr_accessor :non_masquerade_range
|
|
1681
|
+
|
|
1682
|
+
# Reason why IP masquerading was not applied.
|
|
1683
|
+
# Corresponds to the JSON property `reason`
|
|
1684
|
+
# @return [String]
|
|
1685
|
+
attr_accessor :reason
|
|
1686
|
+
|
|
1687
|
+
def initialize(**args)
|
|
1688
|
+
update!(**args)
|
|
1689
|
+
end
|
|
1690
|
+
|
|
1691
|
+
# Update properties of this object
|
|
1692
|
+
def update!(**args)
|
|
1693
|
+
@non_masquerade_range = args[:non_masquerade_range] if args.key?(:non_masquerade_range)
|
|
1694
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
1695
|
+
end
|
|
1696
|
+
end
|
|
1697
|
+
|
|
1589
1698
|
# Describes measured latency distribution.
|
|
1590
1699
|
class LatencyDistribution
|
|
1591
1700
|
include Google::Apis::Core::Hashable
|
|
@@ -1702,8 +1811,9 @@ module Google
|
|
|
1702
1811
|
attr_accessor :operations
|
|
1703
1812
|
|
|
1704
1813
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1705
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
1706
|
-
# when attempting to list all resources across all supported
|
|
1814
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1815
|
+
# For example, when attempting to list all resources across all supported
|
|
1816
|
+
# locations.
|
|
1707
1817
|
# Corresponds to the JSON property `unreachable`
|
|
1708
1818
|
# @return [Array<String>]
|
|
1709
1819
|
attr_accessor :unreachable
|
|
@@ -1971,6 +2081,11 @@ module Google
|
|
|
1971
2081
|
class NatInfo
|
|
1972
2082
|
include Google::Apis::Core::Hashable
|
|
1973
2083
|
|
|
2084
|
+
# Type of Cloud NAT gateway. Only valid when `type` is CLOUD_NAT.
|
|
2085
|
+
# Corresponds to the JSON property `cloudNatGatewayType`
|
|
2086
|
+
# @return [String]
|
|
2087
|
+
attr_accessor :cloud_nat_gateway_type
|
|
2088
|
+
|
|
1974
2089
|
# The name of Cloud NAT Gateway. Only valid when type is CLOUD_NAT.
|
|
1975
2090
|
# Corresponds to the JSON property `natGatewayName`
|
|
1976
2091
|
# @return [String]
|
|
@@ -2043,6 +2158,7 @@ module Google
|
|
|
2043
2158
|
|
|
2044
2159
|
# Update properties of this object
|
|
2045
2160
|
def update!(**args)
|
|
2161
|
+
@cloud_nat_gateway_type = args[:cloud_nat_gateway_type] if args.key?(:cloud_nat_gateway_type)
|
|
2046
2162
|
@nat_gateway_name = args[:nat_gateway_name] if args.key?(:nat_gateway_name)
|
|
2047
2163
|
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
|
2048
2164
|
@new_destination_ip = args[:new_destination_ip] if args.key?(:new_destination_ip)
|
|
@@ -3144,6 +3260,18 @@ module Google
|
|
|
3144
3260
|
# @return [Google::Apis::NetworkmanagementV1::GkeMasterInfo]
|
|
3145
3261
|
attr_accessor :gke_master
|
|
3146
3262
|
|
|
3263
|
+
# For display only. Metadata associated with a Google Kubernetes Engine (GKE)
|
|
3264
|
+
# Pod.
|
|
3265
|
+
# Corresponds to the JSON property `gkePod`
|
|
3266
|
+
# @return [Google::Apis::NetworkmanagementV1::GkePodInfo]
|
|
3267
|
+
attr_accessor :gke_pod
|
|
3268
|
+
|
|
3269
|
+
# For display only. Metadata associated with ARRIVE_AT_GOOGLE_MANAGED_SERVICE
|
|
3270
|
+
# state.
|
|
3271
|
+
# Corresponds to the JSON property `googleManagedService`
|
|
3272
|
+
# @return [Google::Apis::NetworkmanagementV1::GoogleManagedServiceInfo]
|
|
3273
|
+
attr_accessor :google_managed_service
|
|
3274
|
+
|
|
3147
3275
|
# For display only. Details of a Google Service sending packets to a VPC network.
|
|
3148
3276
|
# Although the source IP might be a publicly routable address, some Google
|
|
3149
3277
|
# Services use special routes within Google production infrastructure to reach
|
|
@@ -3168,6 +3296,12 @@ module Google
|
|
|
3168
3296
|
# @return [Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo]
|
|
3169
3297
|
attr_accessor :interconnect_attachment
|
|
3170
3298
|
|
|
3299
|
+
# For display only. Contains information about why IP masquerading was skipped
|
|
3300
|
+
# for the packet.
|
|
3301
|
+
# Corresponds to the JSON property `ipMasqueradingSkipped`
|
|
3302
|
+
# @return [Google::Apis::NetworkmanagementV1::IpMasqueradingSkippedInfo]
|
|
3303
|
+
attr_accessor :ip_masquerading_skipped
|
|
3304
|
+
|
|
3171
3305
|
# For display only. Metadata associated with a load balancer.
|
|
3172
3306
|
# Corresponds to the JSON property `loadBalancer`
|
|
3173
3307
|
# @return [Google::Apis::NetworkmanagementV1::LoadBalancerInfo]
|
|
@@ -3270,10 +3404,13 @@ module Google
|
|
|
3270
3404
|
@forward = args[:forward] if args.key?(:forward)
|
|
3271
3405
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
3272
3406
|
@gke_master = args[:gke_master] if args.key?(:gke_master)
|
|
3407
|
+
@gke_pod = args[:gke_pod] if args.key?(:gke_pod)
|
|
3408
|
+
@google_managed_service = args[:google_managed_service] if args.key?(:google_managed_service)
|
|
3273
3409
|
@google_service = args[:google_service] if args.key?(:google_service)
|
|
3274
3410
|
@hybrid_subnet = args[:hybrid_subnet] if args.key?(:hybrid_subnet)
|
|
3275
3411
|
@instance = args[:instance] if args.key?(:instance)
|
|
3276
3412
|
@interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
|
|
3413
|
+
@ip_masquerading_skipped = args[:ip_masquerading_skipped] if args.key?(:ip_masquerading_skipped)
|
|
3277
3414
|
@load_balancer = args[:load_balancer] if args.key?(:load_balancer)
|
|
3278
3415
|
@load_balancer_backend_info = args[:load_balancer_backend_info] if args.key?(:load_balancer_backend_info)
|
|
3279
3416
|
@nat = args[:nat] if args.key?(:nat)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module NetworkmanagementV1
|
|
18
18
|
# Version of the google-apis-networkmanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.75.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260110"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -178,6 +178,18 @@ module Google
|
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
179
179
|
end
|
|
180
180
|
|
|
181
|
+
class GkePodInfo
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
class GoogleManagedServiceInfo
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
181
193
|
class GoogleServiceInfo
|
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
195
|
|
|
@@ -202,6 +214,12 @@ module Google
|
|
|
202
214
|
include Google::Apis::Core::JsonObjectSupport
|
|
203
215
|
end
|
|
204
216
|
|
|
217
|
+
class IpMasqueradingSkippedInfo
|
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
219
|
+
|
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
221
|
+
end
|
|
222
|
+
|
|
205
223
|
class LatencyDistribution
|
|
206
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
225
|
|
|
@@ -645,6 +663,7 @@ module Google
|
|
|
645
663
|
property :forwarding_rule_target, as: 'forwardingRuleTarget'
|
|
646
664
|
property :fqdn, as: 'fqdn'
|
|
647
665
|
property :gke_master_cluster, as: 'gkeMasterCluster'
|
|
666
|
+
property :gke_pod, as: 'gkePod'
|
|
648
667
|
property :instance, as: 'instance'
|
|
649
668
|
property :ip_address, as: 'ipAddress'
|
|
650
669
|
property :load_balancer_id, as: 'loadBalancerId'
|
|
@@ -738,6 +757,25 @@ module Google
|
|
|
738
757
|
end
|
|
739
758
|
end
|
|
740
759
|
|
|
760
|
+
class GkePodInfo
|
|
761
|
+
# @private
|
|
762
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
763
|
+
property :ip_address, as: 'ipAddress'
|
|
764
|
+
property :network_uri, as: 'networkUri'
|
|
765
|
+
property :pod_uri, as: 'podUri'
|
|
766
|
+
end
|
|
767
|
+
end
|
|
768
|
+
|
|
769
|
+
class GoogleManagedServiceInfo
|
|
770
|
+
# @private
|
|
771
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
772
|
+
property :ip_address, as: 'ipAddress'
|
|
773
|
+
property :network_uri, as: 'networkUri'
|
|
774
|
+
property :service_type, as: 'serviceType'
|
|
775
|
+
property :service_uri, as: 'serviceUri'
|
|
776
|
+
end
|
|
777
|
+
end
|
|
778
|
+
|
|
741
779
|
class GoogleServiceInfo
|
|
742
780
|
# @private
|
|
743
781
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -785,6 +823,14 @@ module Google
|
|
|
785
823
|
end
|
|
786
824
|
end
|
|
787
825
|
|
|
826
|
+
class IpMasqueradingSkippedInfo
|
|
827
|
+
# @private
|
|
828
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
829
|
+
property :non_masquerade_range, as: 'nonMasqueradeRange'
|
|
830
|
+
property :reason, as: 'reason'
|
|
831
|
+
end
|
|
832
|
+
end
|
|
833
|
+
|
|
788
834
|
class LatencyDistribution
|
|
789
835
|
# @private
|
|
790
836
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -893,6 +939,7 @@ module Google
|
|
|
893
939
|
class NatInfo
|
|
894
940
|
# @private
|
|
895
941
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
942
|
+
property :cloud_nat_gateway_type, as: 'cloudNatGatewayType'
|
|
896
943
|
property :nat_gateway_name, as: 'natGatewayName'
|
|
897
944
|
property :network_uri, as: 'networkUri'
|
|
898
945
|
property :new_destination_ip, as: 'newDestinationIp'
|
|
@@ -1165,6 +1212,10 @@ module Google
|
|
|
1165
1212
|
|
|
1166
1213
|
property :gke_master, as: 'gkeMaster', class: Google::Apis::NetworkmanagementV1::GkeMasterInfo, decorator: Google::Apis::NetworkmanagementV1::GkeMasterInfo::Representation
|
|
1167
1214
|
|
|
1215
|
+
property :gke_pod, as: 'gkePod', class: Google::Apis::NetworkmanagementV1::GkePodInfo, decorator: Google::Apis::NetworkmanagementV1::GkePodInfo::Representation
|
|
1216
|
+
|
|
1217
|
+
property :google_managed_service, as: 'googleManagedService', class: Google::Apis::NetworkmanagementV1::GoogleManagedServiceInfo, decorator: Google::Apis::NetworkmanagementV1::GoogleManagedServiceInfo::Representation
|
|
1218
|
+
|
|
1168
1219
|
property :google_service, as: 'googleService', class: Google::Apis::NetworkmanagementV1::GoogleServiceInfo, decorator: Google::Apis::NetworkmanagementV1::GoogleServiceInfo::Representation
|
|
1169
1220
|
|
|
1170
1221
|
property :hybrid_subnet, as: 'hybridSubnet', class: Google::Apis::NetworkmanagementV1::HybridSubnetInfo, decorator: Google::Apis::NetworkmanagementV1::HybridSubnetInfo::Representation
|
|
@@ -1173,6 +1224,8 @@ module Google
|
|
|
1173
1224
|
|
|
1174
1225
|
property :interconnect_attachment, as: 'interconnectAttachment', class: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo, decorator: Google::Apis::NetworkmanagementV1::InterconnectAttachmentInfo::Representation
|
|
1175
1226
|
|
|
1227
|
+
property :ip_masquerading_skipped, as: 'ipMasqueradingSkipped', class: Google::Apis::NetworkmanagementV1::IpMasqueradingSkippedInfo, decorator: Google::Apis::NetworkmanagementV1::IpMasqueradingSkippedInfo::Representation
|
|
1228
|
+
|
|
1176
1229
|
property :load_balancer, as: 'loadBalancer', class: Google::Apis::NetworkmanagementV1::LoadBalancerInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerInfo::Representation
|
|
1177
1230
|
|
|
1178
1231
|
property :load_balancer_backend_info, as: 'loadBalancerBackendInfo', class: Google::Apis::NetworkmanagementV1::LoadBalancerBackendInfo, decorator: Google::Apis::NetworkmanagementV1::LoadBalancerBackendInfo::Representation
|
|
@@ -245,11 +245,12 @@ module Google
|
|
|
245
245
|
# The standard list page token.
|
|
246
246
|
# @param [Boolean] return_partial_success
|
|
247
247
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
248
|
-
# those that are unreachable are returned in the
|
|
249
|
-
# unreachable
|
|
250
|
-
#
|
|
251
|
-
# by default
|
|
252
|
-
# explicitly documented otherwise in service or product specific
|
|
248
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
249
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
250
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
251
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
252
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
253
|
+
# documentation.
|
|
253
254
|
# @param [String] fields
|
|
254
255
|
# Selector specifying which fields to include in a partial response.
|
|
255
256
|
# @param [String] quota_user
|
|
@@ -1054,11 +1055,12 @@ module Google
|
|
|
1054
1055
|
# The standard list page token.
|
|
1055
1056
|
# @param [Boolean] return_partial_success
|
|
1056
1057
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1057
|
-
# those that are unreachable are returned in the
|
|
1058
|
-
# unreachable
|
|
1059
|
-
#
|
|
1060
|
-
# by default
|
|
1061
|
-
# explicitly documented otherwise in service or product specific
|
|
1058
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1059
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1060
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1061
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1062
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1063
|
+
# documentation.
|
|
1062
1064
|
# @param [String] fields
|
|
1063
1065
|
# Selector specifying which fields to include in a partial response.
|
|
1064
1066
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-networkmanagement_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.75.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.75.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|