google-apis-networkmanagement_v1beta1 0.36.0 → 0.37.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: 5ab7e419678fc6d7d615abfb6376d09f4f4fdb1dd9155e9331d1fac8f5e085d9
|
4
|
+
data.tar.gz: 06c203bc5ffd978833932b8d0b1e839b97446626c956a65ec3e74f58ddd2990c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71327ea6a892202cc27983b7b92445e2f31231b34679904d933c0719f7ac8dfd83467580f11ebf1b11c4c7c90b38b075fdcced96c338a13f63e76d1539fdbf3c
|
7
|
+
data.tar.gz: 2bfe94aaf8eabb74a854b96f52c475564466a5c009cd59c3080523fdb5c0b8f1058b525727a640ae50e17884da2f41b3c24e953b857c799d1d396a1eadfa7f80
|
data/CHANGELOG.md
CHANGED
@@ -875,7 +875,7 @@ module Google
|
|
875
875
|
class FirewallInfo
|
876
876
|
include Google::Apis::Core::Hashable
|
877
877
|
|
878
|
-
# Possible values: ALLOW, DENY
|
878
|
+
# Possible values: ALLOW, DENY, APPLY_SECURITY_PROFILE_GROUP
|
879
879
|
# Corresponds to the JSON property `action`
|
880
880
|
# @return [String]
|
881
881
|
attr_accessor :action
|
@@ -1330,27 +1330,20 @@ module Google
|
|
1330
1330
|
class LoadBalancerBackendInfo
|
1331
1331
|
include Google::Apis::Core::Hashable
|
1332
1332
|
|
1333
|
-
# Display name of the backend. For example, it might be an instance name for the
|
1334
|
-
# instance group backends, or an IP address and port for zonal network endpoint
|
1335
|
-
# group backends.
|
1336
|
-
# Corresponds to the JSON property `backendDisplayName`
|
1337
|
-
# @return [String]
|
1338
|
-
attr_accessor :backend_display_name
|
1339
|
-
|
1340
1333
|
# URI of the backend service this backend belongs to (if applicable).
|
1341
1334
|
# Corresponds to the JSON property `backendServiceUri`
|
1342
1335
|
# @return [String]
|
1343
1336
|
attr_accessor :backend_service_uri
|
1344
1337
|
|
1345
|
-
# Output only. Health check configuration state for the backend. This
|
1346
|
-
# result of the static firewall analysis (verifying that health check
|
1347
|
-
# from required IP ranges to the backend is allowed or not). The backend
|
1348
|
-
# still be unhealthy even if these firewalls are configured. Please refer
|
1349
|
-
# documentation for more information: https://cloud.google.com/load-
|
1350
|
-
# docs/firewall-rules
|
1351
|
-
# Corresponds to the JSON property `
|
1338
|
+
# Output only. Health check firewalls configuration state for the backend. This
|
1339
|
+
# is a result of the static firewall analysis (verifying that health check
|
1340
|
+
# traffic from required IP ranges to the backend is allowed or not). The backend
|
1341
|
+
# might still be unhealthy even if these firewalls are configured. Please refer
|
1342
|
+
# to the documentation for more information: https://cloud.google.com/load-
|
1343
|
+
# balancing/docs/firewall-rules
|
1344
|
+
# Corresponds to the JSON property `healthCheckFirewallsConfigState`
|
1352
1345
|
# @return [String]
|
1353
|
-
attr_accessor :
|
1346
|
+
attr_accessor :health_check_firewalls_config_state
|
1354
1347
|
|
1355
1348
|
# URI of the health check attached to this backend (if applicable).
|
1356
1349
|
# Corresponds to the JSON property `healthCheckUri`
|
@@ -1368,6 +1361,13 @@ module Google
|
|
1368
1361
|
# @return [String]
|
1369
1362
|
attr_accessor :instance_uri
|
1370
1363
|
|
1364
|
+
# Display name of the backend. For example, it might be an instance name for the
|
1365
|
+
# instance group backends, or an IP address and port for zonal network endpoint
|
1366
|
+
# group backends.
|
1367
|
+
# Corresponds to the JSON property `name`
|
1368
|
+
# @return [String]
|
1369
|
+
attr_accessor :name
|
1370
|
+
|
1371
1371
|
# URI of the network endpoint group this backend belongs to (if applicable).
|
1372
1372
|
# Corresponds to the JSON property `networkEndpointGroupUri`
|
1373
1373
|
# @return [String]
|
@@ -1379,12 +1379,12 @@ module Google
|
|
1379
1379
|
|
1380
1380
|
# Update properties of this object
|
1381
1381
|
def update!(**args)
|
1382
|
-
@backend_display_name = args[:backend_display_name] if args.key?(:backend_display_name)
|
1383
1382
|
@backend_service_uri = args[:backend_service_uri] if args.key?(:backend_service_uri)
|
1384
|
-
@
|
1383
|
+
@health_check_firewalls_config_state = args[:health_check_firewalls_config_state] if args.key?(:health_check_firewalls_config_state)
|
1385
1384
|
@health_check_uri = args[:health_check_uri] if args.key?(:health_check_uri)
|
1386
1385
|
@instance_group_uri = args[:instance_group_uri] if args.key?(:instance_group_uri)
|
1387
1386
|
@instance_uri = args[:instance_uri] if args.key?(:instance_uri)
|
1387
|
+
@name = args[:name] if args.key?(:name)
|
1388
1388
|
@network_endpoint_group_uri = args[:network_endpoint_group_uri] if args.key?(:network_endpoint_group_uri)
|
1389
1389
|
end
|
1390
1390
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1beta1
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.37.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
|
@@ -681,12 +681,12 @@ module Google
|
|
681
681
|
class LoadBalancerBackendInfo
|
682
682
|
# @private
|
683
683
|
class Representation < Google::Apis::Core::JsonRepresentation
|
684
|
-
property :backend_display_name, as: 'backendDisplayName'
|
685
684
|
property :backend_service_uri, as: 'backendServiceUri'
|
686
|
-
property :
|
685
|
+
property :health_check_firewalls_config_state, as: 'healthCheckFirewallsConfigState'
|
687
686
|
property :health_check_uri, as: 'healthCheckUri'
|
688
687
|
property :instance_group_uri, as: 'instanceGroupUri'
|
689
688
|
property :instance_uri, as: 'instanceUri'
|
689
|
+
property :name, as: 'name'
|
690
690
|
property :network_endpoint_group_uri, as: 'networkEndpointGroupUri'
|
691
691
|
end
|
692
692
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.37.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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.37.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|