google-apis-networkservices_v1beta1 0.31.0 → 0.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a259e01e4ec17f2fa8f9892a7a3346fe9056e810571601bb319ec02ef6a2864
4
- data.tar.gz: '011948a17def549c4bfc01607b789781fa5abd4a5f16e6f28bfbf9a45204fb35'
3
+ metadata.gz: 0cc8e953ed7400e209885a247195c8c206ae7e34a2ef44c180f599f594541ad2
4
+ data.tar.gz: 3f1145012be68b6559cf450812589d3a443641c15b623f848745aa0d7ebdb48d
5
5
  SHA512:
6
- metadata.gz: 6d3ef22799ef23bc7e98c91cb652212b8f72d849f40600b7c23bf2695d3772ccef86a6eeaab424a4fb7752c3ad4e1a598310f53f6f2085ff5d720b266936d329
7
- data.tar.gz: 5d77841ed6b27cf71f9256f4801a52aac3bc16732063d8bf2b6277a7dd079b7d90527289658b2425005e1d4d8025102667442eecbd365a073d75317a1d0f5732
6
+ metadata.gz: 6df46e992fd422c847d7f58c8831cd363b9b343ec90e1906532499cd6c68504a4ab8b69e198d469f7b51fbac47580b2574a8bc093fa3fcbc075d43cdb569a1ab
7
+ data.tar.gz: ae39c6994ed07fec818f0a9d3753c753555dfeed607581f6de097f0f535d6997813c50a4f209a53e10c594aef63de4033e224905e23d8929784ce75c84a1e40f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-networkservices_v1beta1
2
2
 
3
+ ### v0.33.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231211
6
+
7
+ ### v0.32.0 (2023-12-10)
8
+
9
+ * Regenerated from discovery document revision 20231129
10
+
3
11
  ### v0.31.0 (2023-10-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20231018
@@ -447,9 +447,13 @@ module Google
447
447
  # @return [String]
448
448
  attr_accessor :name
449
449
 
450
- # Required. The reference to the service that runs the extension. Must be a
451
- # reference to a [backend service](https://cloud.google.com/compute/docs/
452
- # reference/rest/v1/backendServices).
450
+ # Required. The reference to the service that runs the extension. Currently only
451
+ # Callout extensions are supported here. To configure a Callout extension, `
452
+ # service` must be a fully-qualified reference to a [backend service](https://
453
+ # cloud.google.com/compute/docs/reference/rest/v1/backendServices) in the format:
454
+ # `https://www.googleapis.com/compute/v1/projects/`project`/regions/`region`/
455
+ # backendServices/`backendService`` or `https://www.googleapis.com/compute/v1/
456
+ # projects/`project`/global/backendServices/`backendService``.
453
457
  # Corresponds to the JSON property `service`
454
458
  # @return [String]
455
459
  attr_accessor :service
@@ -488,7 +492,9 @@ module Google
488
492
  include Google::Apis::Core::Hashable
489
493
 
490
494
  # Required. A Common Expression Language (CEL) expression that is used to match
491
- # requests for which the extension chain is executed.
495
+ # requests for which the extension chain is executed. For more information, see [
496
+ # CEL matcher language reference](https://cloud.google.com/service-extensions/
497
+ # docs/cel-matcher-language-reference).
492
498
  # Corresponds to the JSON property `celExpression`
493
499
  # @return [String]
494
500
  attr_accessor :cel_expression
@@ -506,7 +512,7 @@ module Google
506
512
  # Gateway represents the configuration for a proxy, typically a load balancer.
507
513
  # It captures the ip:port over which the services are exposed by the proxy,
508
514
  # along with any policy configurations. Routes have reference to to Gateways to
509
- # dictate how requests should be routed by this Gateway.
515
+ # dictate how requests should be routed by this Gateway. Next id: 29
510
516
  class Gateway
511
517
  include Google::Apis::Core::Hashable
512
518
 
@@ -535,6 +541,13 @@ module Google
535
541
  # @return [String]
536
542
  attr_accessor :description
537
543
 
544
+ # Optional. Determines if envoy will insert internal debug headers into upstream
545
+ # requests. Other Envoy headers may still be injected. By default, envoy will
546
+ # not insert any debug headers.
547
+ # Corresponds to the JSON property `envoyHeaders`
548
+ # @return [String]
549
+ attr_accessor :envoy_headers
550
+
538
551
  # Optional. A fully-qualified GatewaySecurityPolicy URL reference. Defines how a
539
552
  # server should apply security policy to inbound (VM to Proxy) initiated
540
553
  # connections. For example: `projects/*/locations/*/gatewaySecurityPolicies/swg-
@@ -543,6 +556,12 @@ module Google
543
556
  # @return [String]
544
557
  attr_accessor :gateway_security_policy
545
558
 
559
+ # Optional. The IP Version that will be used by this gateway. Valid options are
560
+ # IPV4 or IPV6. Default is IPV4.
561
+ # Corresponds to the JSON property `ipVersion`
562
+ # @return [String]
563
+ attr_accessor :ip_version
564
+
546
565
  # Optional. Set of label tags associated with the Gateway resource.
547
566
  # Corresponds to the JSON property `labels`
548
567
  # @return [Hash<String,String>]
@@ -618,7 +637,9 @@ module Google
618
637
  @certificate_urls = args[:certificate_urls] if args.key?(:certificate_urls)
619
638
  @create_time = args[:create_time] if args.key?(:create_time)
620
639
  @description = args[:description] if args.key?(:description)
640
+ @envoy_headers = args[:envoy_headers] if args.key?(:envoy_headers)
621
641
  @gateway_security_policy = args[:gateway_security_policy] if args.key?(:gateway_security_policy)
642
+ @ip_version = args[:ip_version] if args.key?(:ip_version)
622
643
  @labels = args[:labels] if args.key?(:labels)
623
644
  @name = args[:name] if args.key?(:name)
624
645
  @network = args[:network] if args.key?(:network)
@@ -983,6 +1004,14 @@ module Google
983
1004
  # @return [Google::Apis::NetworkservicesV1beta1::GrpcRouteFaultInjectionPolicy]
984
1005
  attr_accessor :fault_injection_policy
985
1006
 
1007
+ # Optional. Specifies the idle timeout for the selected route. The idle timeout
1008
+ # is defined as the period in which there are no bytes sent or received on
1009
+ # either the upstream or downstream connection. If not set, the default idle
1010
+ # timeout is 1 hour. If set to 0s, the timeout will be disabled.
1011
+ # Corresponds to the JSON property `idleTimeout`
1012
+ # @return [String]
1013
+ attr_accessor :idle_timeout
1014
+
986
1015
  # The specifications for retries.
987
1016
  # Corresponds to the JSON property `retryPolicy`
988
1017
  # @return [Google::Apis::NetworkservicesV1beta1::GrpcRouteRetryPolicy]
@@ -1014,6 +1043,7 @@ module Google
1014
1043
  def update!(**args)
1015
1044
  @destinations = args[:destinations] if args.key?(:destinations)
1016
1045
  @fault_injection_policy = args[:fault_injection_policy] if args.key?(:fault_injection_policy)
1046
+ @idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout)
1017
1047
  @retry_policy = args[:retry_policy] if args.key?(:retry_policy)
1018
1048
  @stateful_session_affinity = args[:stateful_session_affinity] if args.key?(:stateful_session_affinity)
1019
1049
  @timeout = args[:timeout] if args.key?(:timeout)
@@ -1274,6 +1304,16 @@ module Google
1274
1304
  class HttpRouteDestination
1275
1305
  include Google::Apis::Core::Hashable
1276
1306
 
1307
+ # The specification for modifying HTTP header in HTTP request and HTTP response.
1308
+ # Corresponds to the JSON property `requestHeaderModifier`
1309
+ # @return [Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier]
1310
+ attr_accessor :request_header_modifier
1311
+
1312
+ # The specification for modifying HTTP header in HTTP request and HTTP response.
1313
+ # Corresponds to the JSON property `responseHeaderModifier`
1314
+ # @return [Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier]
1315
+ attr_accessor :response_header_modifier
1316
+
1277
1317
  # The URL of a BackendService to route traffic to.
1278
1318
  # Corresponds to the JSON property `serviceName`
1279
1319
  # @return [String]
@@ -1298,6 +1338,8 @@ module Google
1298
1338
 
1299
1339
  # Update properties of this object
1300
1340
  def update!(**args)
1341
+ @request_header_modifier = args[:request_header_modifier] if args.key?(:request_header_modifier)
1342
+ @response_header_modifier = args[:response_header_modifier] if args.key?(:response_header_modifier)
1301
1343
  @service_name = args[:service_name] if args.key?(:service_name)
1302
1344
  @weight = args[:weight] if args.key?(:weight)
1303
1345
  end
@@ -1515,6 +1557,39 @@ module Google
1515
1557
  end
1516
1558
  end
1517
1559
 
1560
+ # Static HTTP response object to be returned.
1561
+ class HttpRouteHttpDirectResponse
1562
+ include Google::Apis::Core::Hashable
1563
+
1564
+ # Optional. Response body as bytes. Maximum body size is 4096B.
1565
+ # Corresponds to the JSON property `bytesBody`
1566
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
1567
+ # @return [String]
1568
+ attr_accessor :bytes_body
1569
+
1570
+ # Required. Status to return as part of HTTP Response. Must be a positive
1571
+ # integer.
1572
+ # Corresponds to the JSON property `status`
1573
+ # @return [Fixnum]
1574
+ attr_accessor :status
1575
+
1576
+ # Optional. Response body as a string. Maximum body length is 1024 characters.
1577
+ # Corresponds to the JSON property `stringBody`
1578
+ # @return [String]
1579
+ attr_accessor :string_body
1580
+
1581
+ def initialize(**args)
1582
+ update!(**args)
1583
+ end
1584
+
1585
+ # Update properties of this object
1586
+ def update!(**args)
1587
+ @bytes_body = args[:bytes_body] if args.key?(:bytes_body)
1588
+ @status = args[:status] if args.key?(:status)
1589
+ @string_body = args[:string_body] if args.key?(:string_body)
1590
+ end
1591
+ end
1592
+
1518
1593
  # Specifications to match a query parameter in the request.
1519
1594
  class HttpRouteQueryParameterMatch
1520
1595
  include Google::Apis::Core::Hashable
@@ -1640,6 +1715,12 @@ module Google
1640
1715
  # @return [Google::Apis::NetworkservicesV1beta1::HttpRouteDestination]
1641
1716
  attr_accessor :destination
1642
1717
 
1718
+ # Optional. The percentage of requests to get mirrored to the desired
1719
+ # destination.
1720
+ # Corresponds to the JSON property `mirrorPercent`
1721
+ # @return [Float]
1722
+ attr_accessor :mirror_percent
1723
+
1643
1724
  def initialize(**args)
1644
1725
  update!(**args)
1645
1726
  end
@@ -1647,6 +1728,7 @@ module Google
1647
1728
  # Update properties of this object
1648
1729
  def update!(**args)
1649
1730
  @destination = args[:destination] if args.key?(:destination)
1731
+ @mirror_percent = args[:mirror_percent] if args.key?(:mirror_percent)
1650
1732
  end
1651
1733
  end
1652
1734
 
@@ -1707,6 +1789,11 @@ module Google
1707
1789
  # @return [Array<Google::Apis::NetworkservicesV1beta1::HttpRouteDestination>]
1708
1790
  attr_accessor :destinations
1709
1791
 
1792
+ # Static HTTP response object to be returned.
1793
+ # Corresponds to the JSON property `directResponse`
1794
+ # @return [Google::Apis::NetworkservicesV1beta1::HttpRouteHttpDirectResponse]
1795
+ attr_accessor :direct_response
1796
+
1710
1797
  # The specification for fault injection introduced into traffic to test the
1711
1798
  # resiliency of clients to destination service failure. As part of fault
1712
1799
  # injection, when clients send requests to a destination, delays can be
@@ -1717,6 +1804,14 @@ module Google
1717
1804
  # @return [Google::Apis::NetworkservicesV1beta1::HttpRouteFaultInjectionPolicy]
1718
1805
  attr_accessor :fault_injection_policy
1719
1806
 
1807
+ # Optional. Specifies the idle timeout for the selected route. The idle timeout
1808
+ # is defined as the period in which there are no bytes sent or received on
1809
+ # either the upstream or downstream connection. If not set, the default idle
1810
+ # timeout is 1 hour. If set to 0s, the timeout will be disabled.
1811
+ # Corresponds to the JSON property `idleTimeout`
1812
+ # @return [String]
1813
+ attr_accessor :idle_timeout
1814
+
1720
1815
  # The specification for redirecting traffic.
1721
1816
  # Corresponds to the JSON property `redirect`
1722
1817
  # @return [Google::Apis::NetworkservicesV1beta1::HttpRouteRedirect]
@@ -1777,7 +1872,9 @@ module Google
1777
1872
  def update!(**args)
1778
1873
  @cors_policy = args[:cors_policy] if args.key?(:cors_policy)
1779
1874
  @destinations = args[:destinations] if args.key?(:destinations)
1875
+ @direct_response = args[:direct_response] if args.key?(:direct_response)
1780
1876
  @fault_injection_policy = args[:fault_injection_policy] if args.key?(:fault_injection_policy)
1877
+ @idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout)
1781
1878
  @redirect = args[:redirect] if args.key?(:redirect)
1782
1879
  @request_header_modifier = args[:request_header_modifier] if args.key?(:request_header_modifier)
1783
1880
  @request_mirror_policy = args[:request_mirror_policy] if args.key?(:request_mirror_policy)
@@ -2514,6 +2611,13 @@ module Google
2514
2611
  # @return [String]
2515
2612
  attr_accessor :description
2516
2613
 
2614
+ # Optional. Determines if envoy will insert internal debug headers into upstream
2615
+ # requests. Other Envoy headers may still be injected. By default, envoy will
2616
+ # not insert any debug headers.
2617
+ # Corresponds to the JSON property `envoyHeaders`
2618
+ # @return [String]
2619
+ attr_accessor :envoy_headers
2620
+
2517
2621
  # Optional. If set to a valid TCP port (1-65535), instructs the SIDECAR proxy to
2518
2622
  # listen on the specified port of localhost (127.0.0.1) address. The SIDECAR
2519
2623
  # proxy will expect all traffic to be redirected to this port regardless of its
@@ -2552,6 +2656,7 @@ module Google
2552
2656
  def update!(**args)
2553
2657
  @create_time = args[:create_time] if args.key?(:create_time)
2554
2658
  @description = args[:description] if args.key?(:description)
2659
+ @envoy_headers = args[:envoy_headers] if args.key?(:envoy_headers)
2555
2660
  @interception_port = args[:interception_port] if args.key?(:interception_port)
2556
2661
  @labels = args[:labels] if args.key?(:labels)
2557
2662
  @name = args[:name] if args.key?(:name)
@@ -3197,6 +3302,14 @@ module Google
3197
3302
  # @return [Array<Google::Apis::NetworkservicesV1beta1::TcpRouteRouteDestination>]
3198
3303
  attr_accessor :destinations
3199
3304
 
3305
+ # Optional. Specifies the idle timeout for the selected route. The idle timeout
3306
+ # is defined as the period in which there are no bytes sent or received on
3307
+ # either the upstream or downstream connection. If not set, the default idle
3308
+ # timeout is 30 seconds. If set to 0s, the timeout will be disabled.
3309
+ # Corresponds to the JSON property `idleTimeout`
3310
+ # @return [String]
3311
+ attr_accessor :idle_timeout
3312
+
3200
3313
  # Optional. If true, Router will use the destination IP and port of the original
3201
3314
  # connection as the destination of the request. Default is false. Only one of
3202
3315
  # route destinations or original destination can be set.
@@ -3212,6 +3325,7 @@ module Google
3212
3325
  # Update properties of this object
3213
3326
  def update!(**args)
3214
3327
  @destinations = args[:destinations] if args.key?(:destinations)
3328
+ @idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout)
3215
3329
  @original_destination = args[:original_destination] if args.key?(:original_destination)
3216
3330
  end
3217
3331
  end
@@ -3436,6 +3550,14 @@ module Google
3436
3550
  # @return [Array<Google::Apis::NetworkservicesV1beta1::TlsRouteRouteDestination>]
3437
3551
  attr_accessor :destinations
3438
3552
 
3553
+ # Optional. Specifies the idle timeout for the selected route. The idle timeout
3554
+ # is defined as the period in which there are no bytes sent or received on
3555
+ # either the upstream or downstream connection. If not set, the default idle
3556
+ # timeout is 1 hour. If set to 0s, the timeout will be disabled.
3557
+ # Corresponds to the JSON property `idleTimeout`
3558
+ # @return [String]
3559
+ attr_accessor :idle_timeout
3560
+
3439
3561
  def initialize(**args)
3440
3562
  update!(**args)
3441
3563
  end
@@ -3443,6 +3565,7 @@ module Google
3443
3565
  # Update properties of this object
3444
3566
  def update!(**args)
3445
3567
  @destinations = args[:destinations] if args.key?(:destinations)
3568
+ @idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout)
3446
3569
  end
3447
3570
  end
3448
3571
 
@@ -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.31.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231018"
25
+ REVISION = "20231211"
26
26
  end
27
27
  end
28
28
  end
@@ -220,6 +220,12 @@ module Google
220
220
  include Google::Apis::Core::JsonObjectSupport
221
221
  end
222
222
 
223
+ class HttpRouteHttpDirectResponse
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
223
229
  class HttpRouteQueryParameterMatch
224
230
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
231
 
@@ -634,7 +640,9 @@ module Google
634
640
  collection :certificate_urls, as: 'certificateUrls'
635
641
  property :create_time, as: 'createTime'
636
642
  property :description, as: 'description'
643
+ property :envoy_headers, as: 'envoyHeaders'
637
644
  property :gateway_security_policy, as: 'gatewaySecurityPolicy'
645
+ property :ip_version, as: 'ipVersion'
638
646
  hash :labels, as: 'labels'
639
647
  property :name, as: 'name'
640
648
  property :network, as: 'network'
@@ -733,6 +741,7 @@ module Google
733
741
 
734
742
  property :fault_injection_policy, as: 'faultInjectionPolicy', class: Google::Apis::NetworkservicesV1beta1::GrpcRouteFaultInjectionPolicy, decorator: Google::Apis::NetworkservicesV1beta1::GrpcRouteFaultInjectionPolicy::Representation
735
743
 
744
+ property :idle_timeout, as: 'idleTimeout'
736
745
  property :retry_policy, as: 'retryPolicy', class: Google::Apis::NetworkservicesV1beta1::GrpcRouteRetryPolicy, decorator: Google::Apis::NetworkservicesV1beta1::GrpcRouteRetryPolicy::Representation
737
746
 
738
747
  property :stateful_session_affinity, as: 'statefulSessionAffinity', class: Google::Apis::NetworkservicesV1beta1::GrpcRouteStatefulSessionAffinityPolicy, decorator: Google::Apis::NetworkservicesV1beta1::GrpcRouteStatefulSessionAffinityPolicy::Representation
@@ -802,6 +811,10 @@ module Google
802
811
  class HttpRouteDestination
803
812
  # @private
804
813
  class Representation < Google::Apis::Core::JsonRepresentation
814
+ property :request_header_modifier, as: 'requestHeaderModifier', class: Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier::Representation
815
+
816
+ property :response_header_modifier, as: 'responseHeaderModifier', class: Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier::Representation
817
+
805
818
  property :service_name, as: 'serviceName'
806
819
  property :weight, as: 'weight'
807
820
  end
@@ -865,6 +878,15 @@ module Google
865
878
  end
866
879
  end
867
880
 
881
+ class HttpRouteHttpDirectResponse
882
+ # @private
883
+ class Representation < Google::Apis::Core::JsonRepresentation
884
+ property :bytes_body, :base64 => true, as: 'bytesBody'
885
+ property :status, as: 'status'
886
+ property :string_body, as: 'stringBody'
887
+ end
888
+ end
889
+
868
890
  class HttpRouteQueryParameterMatch
869
891
  # @private
870
892
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -893,6 +915,7 @@ module Google
893
915
  class Representation < Google::Apis::Core::JsonRepresentation
894
916
  property :destination, as: 'destination', class: Google::Apis::NetworkservicesV1beta1::HttpRouteDestination, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteDestination::Representation
895
917
 
918
+ property :mirror_percent, as: 'mirrorPercent'
896
919
  end
897
920
  end
898
921
 
@@ -912,8 +935,11 @@ module Google
912
935
 
913
936
  collection :destinations, as: 'destinations', class: Google::Apis::NetworkservicesV1beta1::HttpRouteDestination, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteDestination::Representation
914
937
 
938
+ property :direct_response, as: 'directResponse', class: Google::Apis::NetworkservicesV1beta1::HttpRouteHttpDirectResponse, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteHttpDirectResponse::Representation
939
+
915
940
  property :fault_injection_policy, as: 'faultInjectionPolicy', class: Google::Apis::NetworkservicesV1beta1::HttpRouteFaultInjectionPolicy, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteFaultInjectionPolicy::Representation
916
941
 
942
+ property :idle_timeout, as: 'idleTimeout'
917
943
  property :redirect, as: 'redirect', class: Google::Apis::NetworkservicesV1beta1::HttpRouteRedirect, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteRedirect::Representation
918
944
 
919
945
  property :request_header_modifier, as: 'requestHeaderModifier', class: Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier, decorator: Google::Apis::NetworkservicesV1beta1::HttpRouteHeaderModifier::Representation
@@ -1137,6 +1163,7 @@ module Google
1137
1163
  class Representation < Google::Apis::Core::JsonRepresentation
1138
1164
  property :create_time, as: 'createTime'
1139
1165
  property :description, as: 'description'
1166
+ property :envoy_headers, as: 'envoyHeaders'
1140
1167
  property :interception_port, as: 'interceptionPort'
1141
1168
  hash :labels, as: 'labels'
1142
1169
  property :name, as: 'name'
@@ -1281,6 +1308,7 @@ module Google
1281
1308
  class Representation < Google::Apis::Core::JsonRepresentation
1282
1309
  collection :destinations, as: 'destinations', class: Google::Apis::NetworkservicesV1beta1::TcpRouteRouteDestination, decorator: Google::Apis::NetworkservicesV1beta1::TcpRouteRouteDestination::Representation
1283
1310
 
1311
+ property :idle_timeout, as: 'idleTimeout'
1284
1312
  property :original_destination, as: 'originalDestination'
1285
1313
  end
1286
1314
  end
@@ -1346,6 +1374,7 @@ module Google
1346
1374
  class Representation < Google::Apis::Core::JsonRepresentation
1347
1375
  collection :destinations, as: 'destinations', class: Google::Apis::NetworkservicesV1beta1::TlsRouteRouteDestination, decorator: Google::Apis::NetworkservicesV1beta1::TlsRouteRouteDestination::Representation
1348
1376
 
1377
+ property :idle_timeout, as: 'idleTimeout'
1349
1378
  end
1350
1379
  end
1351
1380
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkservices_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.33.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-29 00:00:00.000000000 Z
11
+ date: 2023-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  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.31.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1beta1/v0.33.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []