google-apis-networkmanagement_v1 0.45.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
@@ -2129,6 +2129,55 @@ module Google
|
|
2129
2129
|
end
|
2130
2130
|
end
|
2131
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
|
+
|
2132
2181
|
# Request for the `RerunConnectivityTest` method.
|
2133
2182
|
class RerunConnectivityTestRequest
|
2134
2183
|
include Google::Apis::Core::Hashable
|
@@ -2489,6 +2538,11 @@ module Google
|
|
2489
2538
|
# @return [Google::Apis::NetworkmanagementV1::ProxyConnectionInfo]
|
2490
2539
|
attr_accessor :proxy_connection
|
2491
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
|
+
|
2492
2546
|
# For display only. Metadata associated with a Compute Engine route.
|
2493
2547
|
# Corresponds to the JSON property `route`
|
2494
2548
|
# @return [Google::Apis::NetworkmanagementV1::RouteInfo]
|
@@ -2553,6 +2607,7 @@ module Google
|
|
2553
2607
|
@network = args[:network] if args.key?(:network)
|
2554
2608
|
@project_id = args[:project_id] if args.key?(:project_id)
|
2555
2609
|
@proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
|
2610
|
+
@redis_instance = args[:redis_instance] if args.key?(:redis_instance)
|
2556
2611
|
@route = args[:route] if args.key?(:route)
|
2557
2612
|
@serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
|
2558
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
|
|
@@ -853,6 +859,18 @@ module Google
|
|
853
859
|
end
|
854
860
|
end
|
855
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
|
+
|
856
874
|
class RerunConnectivityTestRequest
|
857
875
|
# @private
|
858
876
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -950,6 +968,8 @@ module Google
|
|
950
968
|
property :project_id, as: 'projectId'
|
951
969
|
property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo::Representation
|
952
970
|
|
971
|
+
property :redis_instance, as: 'redisInstance', class: Google::Apis::NetworkmanagementV1::RedisInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::RedisInstanceInfo::Representation
|
972
|
+
|
953
973
|
property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
|
954
974
|
|
955
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: []
|