google-apis-networkmanagement_v1 0.44.0 → 0.46.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: dc195da5c57487f19965a28423a267fc46970d3b93eee85139f150c40d069644
|
4
|
+
data.tar.gz: 98f500eb26ebaf76de529377f12b716f5c19b7b17e4f2b829bc41255defa22cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9ef8d7bd4bc3997180e511b585383c88e246ad6f2190c5b1e610335c90025d7f2603d77e26a8d610e3ee791e73ea4a8f6d256cf9aa675bb16fca56111199f944
|
7
|
+
data.tar.gz: 19db8efd01b356b91bd49c6fb42147098bac9fac331a1fd0d4f79a4f2055d8a8f19e6febb0d0a7441103073b680200a219a8b1372e34810139c82a77aec380f3
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
2
2
|
|
3
|
+
### v0.46.0 (2024-09-01)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240821
|
6
|
+
|
7
|
+
### v0.45.0 (2024-08-11)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240725
|
10
|
+
|
3
11
|
### v0.44.0 (2024-08-04)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240718
|
@@ -921,7 +921,7 @@ module Google
|
|
921
921
|
end
|
922
922
|
|
923
923
|
# For display only. Metadata associated with a VPC firewall rule, an implied VPC
|
924
|
-
# firewall rule, or a
|
924
|
+
# firewall rule, or a firewall policy rule.
|
925
925
|
class FirewallInfo
|
926
926
|
include Google::Apis::Core::Hashable
|
927
927
|
|
@@ -935,8 +935,8 @@ module Google
|
|
935
935
|
# @return [String]
|
936
936
|
attr_accessor :direction
|
937
937
|
|
938
|
-
# The display name of the
|
939
|
-
#
|
938
|
+
# The display name of the firewall rule. This field might be empty for firewall
|
939
|
+
# policy rules.
|
940
940
|
# Corresponds to the JSON property `displayName`
|
941
941
|
# @return [String]
|
942
942
|
attr_accessor :display_name
|
@@ -952,12 +952,18 @@ module Google
|
|
952
952
|
# @return [String]
|
953
953
|
attr_accessor :network_uri
|
954
954
|
|
955
|
-
# The
|
956
|
-
# is not applicable to VPC firewall rules.
|
955
|
+
# The name of the firewall policy that this rule is associated with. This field
|
956
|
+
# is not applicable to VPC firewall rules and implied VPC firewall rules.
|
957
957
|
# Corresponds to the JSON property `policy`
|
958
958
|
# @return [String]
|
959
959
|
attr_accessor :policy
|
960
960
|
|
961
|
+
# The URI of the firewall policy that this rule is associated with. This field
|
962
|
+
# is not applicable to VPC firewall rules and implied VPC firewall rules.
|
963
|
+
# Corresponds to the JSON property `policyUri`
|
964
|
+
# @return [String]
|
965
|
+
attr_accessor :policy_uri
|
966
|
+
|
961
967
|
# The priority of the firewall rule.
|
962
968
|
# Corresponds to the JSON property `priority`
|
963
969
|
# @return [Fixnum]
|
@@ -969,13 +975,13 @@ module Google
|
|
969
975
|
attr_accessor :target_service_accounts
|
970
976
|
|
971
977
|
# The target tags defined by the VPC firewall rule. This field is not applicable
|
972
|
-
# to
|
978
|
+
# to firewall policy rules.
|
973
979
|
# Corresponds to the JSON property `targetTags`
|
974
980
|
# @return [Array<String>]
|
975
981
|
attr_accessor :target_tags
|
976
982
|
|
977
|
-
# The URI of the
|
978
|
-
# firewall rules
|
983
|
+
# The URI of the firewall rule. This field is not applicable to implied VPC
|
984
|
+
# firewall rules.
|
979
985
|
# Corresponds to the JSON property `uri`
|
980
986
|
# @return [String]
|
981
987
|
attr_accessor :uri
|
@@ -992,6 +998,7 @@ module Google
|
|
992
998
|
@firewall_rule_type = args[:firewall_rule_type] if args.key?(:firewall_rule_type)
|
993
999
|
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
994
1000
|
@policy = args[:policy] if args.key?(:policy)
|
1001
|
+
@policy_uri = args[:policy_uri] if args.key?(:policy_uri)
|
995
1002
|
@priority = args[:priority] if args.key?(:priority)
|
996
1003
|
@target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
|
997
1004
|
@target_tags = args[:target_tags] if args.key?(:target_tags)
|
@@ -2122,6 +2129,55 @@ module Google
|
|
2122
2129
|
end
|
2123
2130
|
end
|
2124
2131
|
|
2132
|
+
# For display only. Metadata associated with a Cloud Redis Instance.
|
2133
|
+
class RedisInstanceInfo
|
2134
|
+
include Google::Apis::Core::Hashable
|
2135
|
+
|
2136
|
+
# Name of a Cloud Redis Instance.
|
2137
|
+
# Corresponds to the JSON property `displayName`
|
2138
|
+
# @return [String]
|
2139
|
+
attr_accessor :display_name
|
2140
|
+
|
2141
|
+
# URI of a Cloud Redis Instance network.
|
2142
|
+
# Corresponds to the JSON property `networkUri`
|
2143
|
+
# @return [String]
|
2144
|
+
attr_accessor :network_uri
|
2145
|
+
|
2146
|
+
# Primary endpoint IP address of a Cloud Redis Instance.
|
2147
|
+
# Corresponds to the JSON property `primaryEndpointIp`
|
2148
|
+
# @return [String]
|
2149
|
+
attr_accessor :primary_endpoint_ip
|
2150
|
+
|
2151
|
+
# Read endpoint IP address of a Cloud Redis Instance (if applicable).
|
2152
|
+
# Corresponds to the JSON property `readEndpointIp`
|
2153
|
+
# @return [String]
|
2154
|
+
attr_accessor :read_endpoint_ip
|
2155
|
+
|
2156
|
+
# Region in which the Cloud Redis Instance is defined.
|
2157
|
+
# Corresponds to the JSON property `region`
|
2158
|
+
# @return [String]
|
2159
|
+
attr_accessor :region
|
2160
|
+
|
2161
|
+
# URI of a Cloud Redis Instance.
|
2162
|
+
# Corresponds to the JSON property `uri`
|
2163
|
+
# @return [String]
|
2164
|
+
attr_accessor :uri
|
2165
|
+
|
2166
|
+
def initialize(**args)
|
2167
|
+
update!(**args)
|
2168
|
+
end
|
2169
|
+
|
2170
|
+
# Update properties of this object
|
2171
|
+
def update!(**args)
|
2172
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2173
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
2174
|
+
@primary_endpoint_ip = args[:primary_endpoint_ip] if args.key?(:primary_endpoint_ip)
|
2175
|
+
@read_endpoint_ip = args[:read_endpoint_ip] if args.key?(:read_endpoint_ip)
|
2176
|
+
@region = args[:region] if args.key?(:region)
|
2177
|
+
@uri = args[:uri] if args.key?(:uri)
|
2178
|
+
end
|
2179
|
+
end
|
2180
|
+
|
2125
2181
|
# Request for the `RerunConnectivityTest` method.
|
2126
2182
|
class RerunConnectivityTestRequest
|
2127
2183
|
include Google::Apis::Core::Hashable
|
@@ -2417,7 +2473,7 @@ module Google
|
|
2417
2473
|
attr_accessor :endpoint
|
2418
2474
|
|
2419
2475
|
# For display only. Metadata associated with a VPC firewall rule, an implied VPC
|
2420
|
-
# firewall rule, or a
|
2476
|
+
# firewall rule, or a firewall policy rule.
|
2421
2477
|
# Corresponds to the JSON property `firewall`
|
2422
2478
|
# @return [Google::Apis::NetworkmanagementV1::FirewallInfo]
|
2423
2479
|
attr_accessor :firewall
|
@@ -2482,6 +2538,11 @@ module Google
|
|
2482
2538
|
# @return [Google::Apis::NetworkmanagementV1::ProxyConnectionInfo]
|
2483
2539
|
attr_accessor :proxy_connection
|
2484
2540
|
|
2541
|
+
# For display only. Metadata associated with a Cloud Redis Instance.
|
2542
|
+
# Corresponds to the JSON property `redisInstance`
|
2543
|
+
# @return [Google::Apis::NetworkmanagementV1::RedisInstanceInfo]
|
2544
|
+
attr_accessor :redis_instance
|
2545
|
+
|
2485
2546
|
# For display only. Metadata associated with a Compute Engine route.
|
2486
2547
|
# Corresponds to the JSON property `route`
|
2487
2548
|
# @return [Google::Apis::NetworkmanagementV1::RouteInfo]
|
@@ -2546,6 +2607,7 @@ module Google
|
|
2546
2607
|
@network = args[:network] if args.key?(:network)
|
2547
2608
|
@project_id = args[:project_id] if args.key?(:project_id)
|
2548
2609
|
@proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
|
2610
|
+
@redis_instance = args[:redis_instance] if args.key?(:redis_instance)
|
2549
2611
|
@route = args[:route] if args.key?(:route)
|
2550
2612
|
@serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
|
2551
2613
|
@state = args[:state] if args.key?(:state)
|
@@ -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.46.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240821"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,6 +280,12 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
+
class RedisInstanceInfo
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
283
289
|
class RerunConnectivityTestRequest
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
291
|
|
@@ -579,6 +585,7 @@ module Google
|
|
579
585
|
property :firewall_rule_type, as: 'firewallRuleType'
|
580
586
|
property :network_uri, as: 'networkUri'
|
581
587
|
property :policy, as: 'policy'
|
588
|
+
property :policy_uri, as: 'policyUri'
|
582
589
|
property :priority, as: 'priority'
|
583
590
|
collection :target_service_accounts, as: 'targetServiceAccounts'
|
584
591
|
collection :target_tags, as: 'targetTags'
|
@@ -852,6 +859,18 @@ module Google
|
|
852
859
|
end
|
853
860
|
end
|
854
861
|
|
862
|
+
class RedisInstanceInfo
|
863
|
+
# @private
|
864
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
865
|
+
property :display_name, as: 'displayName'
|
866
|
+
property :network_uri, as: 'networkUri'
|
867
|
+
property :primary_endpoint_ip, as: 'primaryEndpointIp'
|
868
|
+
property :read_endpoint_ip, as: 'readEndpointIp'
|
869
|
+
property :region, as: 'region'
|
870
|
+
property :uri, as: 'uri'
|
871
|
+
end
|
872
|
+
end
|
873
|
+
|
855
874
|
class RerunConnectivityTestRequest
|
856
875
|
# @private
|
857
876
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -949,6 +968,8 @@ module Google
|
|
949
968
|
property :project_id, as: 'projectId'
|
950
969
|
property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo::Representation
|
951
970
|
|
971
|
+
property :redis_instance, as: 'redisInstance', class: Google::Apis::NetworkmanagementV1::RedisInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::RedisInstanceInfo::Representation
|
972
|
+
|
952
973
|
property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
|
953
974
|
|
954
975
|
property :serverless_neg, as: 'serverlessNeg', class: Google::Apis::NetworkmanagementV1::ServerlessNegInfo, decorator: Google::Apis::NetworkmanagementV1::ServerlessNegInfo::Representation
|
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.46.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: 2024-
|
11
|
+
date: 2024-09-01 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.46.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: []
|