google-apis-networkservices_v1 0.57.0 → 0.59.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 525c44733913b661574b58588087e61f6e6d312423d409a58e4ea25d68e6e0a5
4
- data.tar.gz: 2853e6497657b906195a01c824c82381350b9f570d89d37e14bca0d4d88f0045
3
+ metadata.gz: ba405cf83cd41a14d7f8a0cb4837a1e8e28adbf74edcd8d33c8d2053e83dfc9a
4
+ data.tar.gz: 0f78cecc293784dd71089adf557ffe08f3bfd45a52073b3d2839ee35fe0a42dd
5
5
  SHA512:
6
- metadata.gz: a15f7bd5d409d93c78842dd4bdde12d7140fe14719364b3ae46b436f5c4b975bde68c09d0d2fb4e6b5bc67f6b7e3f6dd577e4f71661502cf2d005ea4f2193291
7
- data.tar.gz: 2a816e85986e758009867cdc8ff773d852305caadbe79beac4b878a11549ab4d00624e202fee83c475ffa986ce03fe1ca6ecd7c00af69823cf6e94bc5fed7ae4
6
+ metadata.gz: 7a2597253407d9b5dbf559a4e0a1f2e36518e92e97f0074b1a7c171b24b44f569164bc659b13518eb45b668650f02350c8732e32f8b6958f8b29e12734f97a53
7
+ data.tar.gz: 222a3e7067bd85129c386099ec5e1e745fb3582b58bf6a1c09ba0482873a7890261a490b5d888e4211aabd9195b9d0ea309a1c416b5944288354cfa7b2a18e20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-networkservices_v1
2
2
 
3
+ ### v0.59.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250611
6
+
7
+ ### v0.58.0 (2025-06-01)
8
+
9
+ * Regenerated from discovery document revision 20250521
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.57.0 (2025-05-18)
4
13
 
5
14
  * Regenerated from discovery document revision 20250508
@@ -912,8 +912,8 @@ module Google
912
912
  include Google::Apis::Core::Hashable
913
913
 
914
914
  # Output only. Identifier. Full path name of the GatewayRouteView resource.
915
- # Format: projects/`project_number`/locations/`location`/gateways/`gateway_name`/
916
- # routeViews/`route_view_name`
915
+ # Format: projects/`project_number`/locations/`location`/gateways/`gateway`/
916
+ # routeViews/`route_view`
917
917
  # Corresponds to the JSON property `name`
918
918
  # @return [String]
919
919
  attr_accessor :name
@@ -2008,7 +2008,8 @@ module Google
2008
2008
  # Specifies the policy on how requests are shadowed to a separate mirrored
2009
2009
  # destination service. The proxy does not wait for responses from the shadow
2010
2010
  # service. Prior to sending traffic to the shadow service, the host/authority
2011
- # header is suffixed with -shadow.
2011
+ # header is suffixed with -shadow. Mirroring is currently not supported for
2012
+ # Cloud Run destinations.
2012
2013
  class HttpRouteRequestMirrorPolicy
2013
2014
  include Google::Apis::Core::Hashable
2014
2015
 
@@ -2127,7 +2128,8 @@ module Google
2127
2128
  # Specifies the policy on how requests are shadowed to a separate mirrored
2128
2129
  # destination service. The proxy does not wait for responses from the shadow
2129
2130
  # service. Prior to sending traffic to the shadow service, the host/authority
2130
- # header is suffixed with -shadow.
2131
+ # header is suffixed with -shadow. Mirroring is currently not supported for
2132
+ # Cloud Run destinations.
2131
2133
  # Corresponds to the JSON property `requestMirrorPolicy`
2132
2134
  # @return [Google::Apis::NetworkservicesV1::HttpRouteRequestMirrorPolicy]
2133
2135
  attr_accessor :request_mirror_policy
@@ -3260,8 +3262,8 @@ module Google
3260
3262
  include Google::Apis::Core::Hashable
3261
3263
 
3262
3264
  # Output only. Identifier. Full path name of the MeshRouteView resource. Format:
3263
- # projects/`project_number`/locations/`location`/meshes/`mesh_name`/routeViews/`
3264
- # route_view_name`
3265
+ # projects/`project_number`/locations/`location`/meshes/`mesh`/routeViews/`
3266
+ # route_view`
3265
3267
  # Corresponds to the JSON property `name`
3266
3268
  # @return [String]
3267
3269
  attr_accessor :name
@@ -3628,6 +3630,11 @@ module Google
3628
3630
  # @return [Google::Apis::NetworkservicesV1::ServiceLbPolicyFailoverConfig]
3629
3631
  attr_accessor :failover_config
3630
3632
 
3633
+ # Configuration to provide isolation support for the associated Backend Service.
3634
+ # Corresponds to the JSON property `isolationConfig`
3635
+ # @return [Google::Apis::NetworkservicesV1::ServiceLbPolicyIsolationConfig]
3636
+ attr_accessor :isolation_config
3637
+
3631
3638
  # Optional. Set of label tags associated with the ServiceLbPolicy resource.
3632
3639
  # Corresponds to the JSON property `labels`
3633
3640
  # @return [Hash<String,String>]
@@ -3660,6 +3667,7 @@ module Google
3660
3667
  @create_time = args[:create_time] if args.key?(:create_time)
3661
3668
  @description = args[:description] if args.key?(:description)
3662
3669
  @failover_config = args[:failover_config] if args.key?(:failover_config)
3670
+ @isolation_config = args[:isolation_config] if args.key?(:isolation_config)
3663
3671
  @labels = args[:labels] if args.key?(:labels)
3664
3672
  @load_balancing_algorithm = args[:load_balancing_algorithm] if args.key?(:load_balancing_algorithm)
3665
3673
  @name = args[:name] if args.key?(:name)
@@ -3716,6 +3724,31 @@ module Google
3716
3724
  end
3717
3725
  end
3718
3726
 
3727
+ # Configuration to provide isolation support for the associated Backend Service.
3728
+ class ServiceLbPolicyIsolationConfig
3729
+ include Google::Apis::Core::Hashable
3730
+
3731
+ # Optional. The isolation granularity of the load balancer.
3732
+ # Corresponds to the JSON property `isolationGranularity`
3733
+ # @return [String]
3734
+ attr_accessor :isolation_granularity
3735
+
3736
+ # Optional. The isolation mode of the load balancer.
3737
+ # Corresponds to the JSON property `isolationMode`
3738
+ # @return [String]
3739
+ attr_accessor :isolation_mode
3740
+
3741
+ def initialize(**args)
3742
+ update!(**args)
3743
+ end
3744
+
3745
+ # Update properties of this object
3746
+ def update!(**args)
3747
+ @isolation_granularity = args[:isolation_granularity] if args.key?(:isolation_granularity)
3748
+ @isolation_mode = args[:isolation_mode] if args.key?(:isolation_mode)
3749
+ end
3750
+ end
3751
+
3719
3752
  # Request message for `SetIamPolicy` method.
3720
3753
  class SetIamPolicyRequest
3721
3754
  include Google::Apis::Core::Hashable
@@ -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.57.0"
19
+ GEM_VERSION = "0.59.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250508"
25
+ REVISION = "20250611"
26
26
  end
27
27
  end
28
28
  end
@@ -496,6 +496,12 @@ module Google
496
496
  include Google::Apis::Core::JsonObjectSupport
497
497
  end
498
498
 
499
+ class ServiceLbPolicyIsolationConfig
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
499
505
  class SetIamPolicyRequest
500
506
  class Representation < Google::Apis::Core::JsonRepresentation; end
501
507
 
@@ -1455,6 +1461,8 @@ module Google
1455
1461
  property :description, as: 'description'
1456
1462
  property :failover_config, as: 'failoverConfig', class: Google::Apis::NetworkservicesV1::ServiceLbPolicyFailoverConfig, decorator: Google::Apis::NetworkservicesV1::ServiceLbPolicyFailoverConfig::Representation
1457
1463
 
1464
+ property :isolation_config, as: 'isolationConfig', class: Google::Apis::NetworkservicesV1::ServiceLbPolicyIsolationConfig, decorator: Google::Apis::NetworkservicesV1::ServiceLbPolicyIsolationConfig::Representation
1465
+
1458
1466
  hash :labels, as: 'labels'
1459
1467
  property :load_balancing_algorithm, as: 'loadBalancingAlgorithm'
1460
1468
  property :name, as: 'name'
@@ -1476,6 +1484,14 @@ module Google
1476
1484
  end
1477
1485
  end
1478
1486
 
1487
+ class ServiceLbPolicyIsolationConfig
1488
+ # @private
1489
+ class Representation < Google::Apis::Core::JsonRepresentation
1490
+ property :isolation_granularity, as: 'isolationGranularity'
1491
+ property :isolation_mode, as: 'isolationMode'
1492
+ end
1493
+ end
1494
+
1479
1495
  class SetIamPolicyRequest
1480
1496
  # @private
1481
1497
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1078,8 +1078,7 @@ module Google
1078
1078
  # Get a single RouteView of a Gateway.
1079
1079
  # @param [String] name
1080
1080
  # Required. Name of the GatewayRouteView resource. Formats: projects/`
1081
- # project_number`/locations/`location`/gateways/`gateway_name`/routeViews/`
1082
- # route_view_name`
1081
+ # project_number`/locations/`location`/gateways/`gateway`/routeViews/`route_view`
1083
1082
  # @param [String] fields
1084
1083
  # Selector specifying which fields to include in a partial response.
1085
1084
  # @param [String] quota_user
@@ -1110,7 +1109,7 @@ module Google
1110
1109
  # Lists RouteViews
1111
1110
  # @param [String] parent
1112
1111
  # Required. The Gateway to which a Route is associated. Formats: projects/`
1113
- # project_number`/locations/`location`/gateways/`gateway_name`
1112
+ # project_number`/locations/`location`/gateways/`gateway`
1114
1113
  # @param [Fixnum] page_size
1115
1114
  # Maximum number of GatewayRouteViews to return per call.
1116
1115
  # @param [String] page_token
@@ -2143,7 +2142,7 @@ module Google
2143
2142
  # Get a single RouteView of a Mesh.
2144
2143
  # @param [String] name
2145
2144
  # Required. Name of the MeshRouteView resource. Format: projects/`project_number`
2146
- # /locations/`location`/meshes/`mesh_name`/routeViews/`route_view_name`
2145
+ # /locations/`location`/meshes/`mesh`/routeViews/`route_view`
2147
2146
  # @param [String] fields
2148
2147
  # Selector specifying which fields to include in a partial response.
2149
2148
  # @param [String] quota_user
@@ -2174,7 +2173,7 @@ module Google
2174
2173
  # Lists RouteViews
2175
2174
  # @param [String] parent
2176
2175
  # Required. The Mesh to which a Route is associated. Format: projects/`
2177
- # project_number`/locations/`location`/meshes/`mesh_name`
2176
+ # project_number`/locations/`location`/meshes/`mesh`
2178
2177
  # @param [Fixnum] page_size
2179
2178
  # Maximum number of MeshRouteViews to return per call.
2180
2179
  # @param [String] page_token
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networkservices_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.59.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-networkservices_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.57.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networkservices_v1/v0.59.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkservices_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Network Services API V1
79
79
  test_files: []