google-apis-networkmanagement_v1 0.35.0 → 0.36.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9865b9fbabf449192ff69f8a35ad1c23cd3c6e04e8e23b870274c61c2d9a3931
|
4
|
+
data.tar.gz: cbf3ddf53fc5afbeb6061e0af99f70b83e2cb6d2a3851e052ab2f5eb03fe5eb7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42ae73693c9a60836e00eeb815a01d2dec43ab6a9698473a1dbf4a936668d357facd603d575c2cf9dd5b874d8301a2c7378612ab247e1247dca2e8928b805497
|
7
|
+
data.tar.gz: 2af83a72969449ebd4f7e2108549d94e70be1b7d49347116341a7f0ef1b3f6162c6af5d3579082b623f8436d5501f5f970dc8f6babb5b1a488bb44a23b410abc
|
data/CHANGELOG.md
CHANGED
@@ -869,7 +869,7 @@ module Google
|
|
869
869
|
class FirewallInfo
|
870
870
|
include Google::Apis::Core::Hashable
|
871
871
|
|
872
|
-
# Possible values: ALLOW, DENY
|
872
|
+
# Possible values: ALLOW, DENY, APPLY_SECURITY_PROFILE_GROUP
|
873
873
|
# Corresponds to the JSON property `action`
|
874
874
|
# @return [String]
|
875
875
|
attr_accessor :action
|
@@ -1324,27 +1324,20 @@ module Google
|
|
1324
1324
|
class LoadBalancerBackendInfo
|
1325
1325
|
include Google::Apis::Core::Hashable
|
1326
1326
|
|
1327
|
-
# Display name of the backend. For example, it might be an instance name for the
|
1328
|
-
# instance group backends, or an IP address and port for zonal network endpoint
|
1329
|
-
# group backends.
|
1330
|
-
# Corresponds to the JSON property `backendDisplayName`
|
1331
|
-
# @return [String]
|
1332
|
-
attr_accessor :backend_display_name
|
1333
|
-
|
1334
1327
|
# URI of the backend service this backend belongs to (if applicable).
|
1335
1328
|
# Corresponds to the JSON property `backendServiceUri`
|
1336
1329
|
# @return [String]
|
1337
1330
|
attr_accessor :backend_service_uri
|
1338
1331
|
|
1339
|
-
# Output only. Health check configuration state for the backend. This
|
1340
|
-
# result of the static firewall analysis (verifying that health check
|
1341
|
-
# from required IP ranges to the backend is allowed or not). The backend
|
1342
|
-
# still be unhealthy even if these firewalls are configured. Please refer
|
1343
|
-
# documentation for more information: https://cloud.google.com/load-
|
1344
|
-
# docs/firewall-rules
|
1345
|
-
# Corresponds to the JSON property `
|
1332
|
+
# Output only. Health check firewalls configuration state for the backend. This
|
1333
|
+
# is a result of the static firewall analysis (verifying that health check
|
1334
|
+
# traffic from required IP ranges to the backend is allowed or not). The backend
|
1335
|
+
# might still be unhealthy even if these firewalls are configured. Please refer
|
1336
|
+
# to the documentation for more information: https://cloud.google.com/load-
|
1337
|
+
# balancing/docs/firewall-rules
|
1338
|
+
# Corresponds to the JSON property `healthCheckFirewallsConfigState`
|
1346
1339
|
# @return [String]
|
1347
|
-
attr_accessor :
|
1340
|
+
attr_accessor :health_check_firewalls_config_state
|
1348
1341
|
|
1349
1342
|
# URI of the health check attached to this backend (if applicable).
|
1350
1343
|
# Corresponds to the JSON property `healthCheckUri`
|
@@ -1362,6 +1355,13 @@ module Google
|
|
1362
1355
|
# @return [String]
|
1363
1356
|
attr_accessor :instance_uri
|
1364
1357
|
|
1358
|
+
# Display name of the backend. For example, it might be an instance name for the
|
1359
|
+
# instance group backends, or an IP address and port for zonal network endpoint
|
1360
|
+
# group backends.
|
1361
|
+
# Corresponds to the JSON property `name`
|
1362
|
+
# @return [String]
|
1363
|
+
attr_accessor :name
|
1364
|
+
|
1365
1365
|
# URI of the network endpoint group this backend belongs to (if applicable).
|
1366
1366
|
# Corresponds to the JSON property `networkEndpointGroupUri`
|
1367
1367
|
# @return [String]
|
@@ -1373,12 +1373,12 @@ module Google
|
|
1373
1373
|
|
1374
1374
|
# Update properties of this object
|
1375
1375
|
def update!(**args)
|
1376
|
-
@backend_display_name = args[:backend_display_name] if args.key?(:backend_display_name)
|
1377
1376
|
@backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
|
1378
|
-
@
|
1377
|
+
@health_check_firewalls_config_state = args[:health_check_firewalls_config_state] if args.key?(:health_check_firewalls_config_state)
|
1379
1378
|
@health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
|
1380
1379
|
@instance_group_uri = args[:instance_group_uri] if args.key?(:instance_group_uri)
|
1381
1380
|
@instance_uri = args[:instance_uri] if args.key?(:instance_uri)
|
1381
|
+
@name = args[:name] if args.key?(:name)
|
1382
1382
|
@network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
|
1383
1383
|
end
|
1384
1384
|
end
|
@@ -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.36.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 = "
|
25
|
+
REVISION = "20231207"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -680,12 +680,12 @@ module Google
|
|
680
680
|
class LoadBalancerBackendInfo
|
681
681
|
# @private
|
682
682
|
class Representation < Google::Apis::Core::JsonRepresentation
|
683
|
-
property :backend_display_name, as: 'backendDisplayName'
|
684
683
|
property :backend_service_uri, as: 'backendServiceUri'
|
685
|
-
property :
|
684
|
+
property :health_check_firewalls_config_state, as: 'healthCheckFirewallsConfigState'
|
686
685
|
property :health_check_uri, as: 'healthCheckUri'
|
687
686
|
property :instance_group_uri, as: 'instanceGroupUri'
|
688
687
|
property :instance_uri, as: 'instanceUri'
|
688
|
+
property :name, as: 'name'
|
689
689
|
property :network_endpoint_group_uri, as: 'networkEndpointGroupUri'
|
690
690
|
end
|
691
691
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.36.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-12-
|
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-networkmanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1/v0.36.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|