google-apis-networkservices_v1 0.58.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/networkservices_v1/classes.rb +35 -4
- data/lib/google/apis/networkservices_v1/gem_version.rb +2 -2
- data/lib/google/apis/networkservices_v1/representations.rb +16 -0
- data/lib/google/apis/networkservices_v1/service.rb +4 -5
- 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: ba405cf83cd41a14d7f8a0cb4837a1e8e28adbf74edcd8d33c8d2053e83dfc9a
|
4
|
+
data.tar.gz: 0f78cecc293784dd71089adf557ffe08f3bfd45a52073b3d2839ee35fe0a42dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a2597253407d9b5dbf559a4e0a1f2e36518e92e97f0074b1a7c171b24b44f569164bc659b13518eb45b668650f02350c8732e32f8b6958f8b29e12734f97a53
|
7
|
+
data.tar.gz: 222a3e7067bd85129c386099ec5e1e745fb3582b58bf6a1c09ba0482873a7890261a490b5d888e4211aabd9195b9d0ea309a1c416b5944288354cfa7b2a18e20
|
data/CHANGELOG.md
CHANGED
@@ -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/`
|
916
|
-
# routeViews/`
|
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
|
@@ -3262,8 +3262,8 @@ module Google
|
|
3262
3262
|
include Google::Apis::Core::Hashable
|
3263
3263
|
|
3264
3264
|
# Output only. Identifier. Full path name of the MeshRouteView resource. Format:
|
3265
|
-
# projects/`project_number`/locations/`location`/meshes/`
|
3266
|
-
#
|
3265
|
+
# projects/`project_number`/locations/`location`/meshes/`mesh`/routeViews/`
|
3266
|
+
# route_view`
|
3267
3267
|
# Corresponds to the JSON property `name`
|
3268
3268
|
# @return [String]
|
3269
3269
|
attr_accessor :name
|
@@ -3630,6 +3630,11 @@ module Google
|
|
3630
3630
|
# @return [Google::Apis::NetworkservicesV1::ServiceLbPolicyFailoverConfig]
|
3631
3631
|
attr_accessor :failover_config
|
3632
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
|
+
|
3633
3638
|
# Optional. Set of label tags associated with the ServiceLbPolicy resource.
|
3634
3639
|
# Corresponds to the JSON property `labels`
|
3635
3640
|
# @return [Hash<String,String>]
|
@@ -3662,6 +3667,7 @@ module Google
|
|
3662
3667
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3663
3668
|
@description = args[:description] if args.key?(:description)
|
3664
3669
|
@failover_config = args[:failover_config] if args.key?(:failover_config)
|
3670
|
+
@isolation_config = args[:isolation_config] if args.key?(:isolation_config)
|
3665
3671
|
@labels = args[:labels] if args.key?(:labels)
|
3666
3672
|
@load_balancing_algorithm = args[:load_balancing_algorithm] if args.key?(:load_balancing_algorithm)
|
3667
3673
|
@name = args[:name] if args.key?(:name)
|
@@ -3718,6 +3724,31 @@ module Google
|
|
3718
3724
|
end
|
3719
3725
|
end
|
3720
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
|
+
|
3721
3752
|
# Request message for `SetIamPolicy` method.
|
3722
3753
|
class SetIamPolicyRequest
|
3723
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.
|
19
|
+
GEM_VERSION = "0.59.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 = "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/`
|
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/`
|
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/`
|
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/`
|
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.
|
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.
|
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:
|