google-apis-networkmanagement_v1 0.45.0 → 0.47.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: 50e6e24c025ee868f331ea07ccf99defeea0e4b82c02898240545b0f31ede58b
|
4
|
+
data.tar.gz: 8c1471db9091935d92fb75d271c968622ac7c940ada3bba0b6616ffe9c2eb057
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ddcd37252f3a2bc113e02e8a6a66086d111729c2f48dbf6fea7e8354c6b1109052f557f28394d34a77380fcbb016a74becb32cc4a5f8e8c562271ebf9437f25
|
7
|
+
data.tar.gz: 3295c8bf4cdfb5358574b9689a4d73fef2155afba4ce829641c0445b3f603eb9ccec4111483c0a1ceac3b4110dd216d793eda772559fe0888292abc3736d4f43
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1
|
2
2
|
|
3
|
+
### v0.47.0 (2024-09-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240905
|
6
|
+
|
7
|
+
### v0.46.0 (2024-09-01)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240821
|
10
|
+
|
3
11
|
### v0.45.0 (2024-08-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240725
|
@@ -2129,6 +2129,107 @@ module Google
|
|
2129
2129
|
end
|
2130
2130
|
end
|
2131
2131
|
|
2132
|
+
# For display only. Metadata associated with a Redis Cluster.
|
2133
|
+
class RedisClusterInfo
|
2134
|
+
include Google::Apis::Core::Hashable
|
2135
|
+
|
2136
|
+
# Discovery endpoint IP address of a Redis Cluster.
|
2137
|
+
# Corresponds to the JSON property `discoveryEndpointIpAddress`
|
2138
|
+
# @return [String]
|
2139
|
+
attr_accessor :discovery_endpoint_ip_address
|
2140
|
+
|
2141
|
+
# Name of a Redis Cluster.
|
2142
|
+
# Corresponds to the JSON property `displayName`
|
2143
|
+
# @return [String]
|
2144
|
+
attr_accessor :display_name
|
2145
|
+
|
2146
|
+
# Name of the region in which the Redis Cluster is defined. For example, "us-
|
2147
|
+
# central1".
|
2148
|
+
# Corresponds to the JSON property `location`
|
2149
|
+
# @return [String]
|
2150
|
+
attr_accessor :location
|
2151
|
+
|
2152
|
+
# URI of a Redis Cluster network in format "projects/`project_id`/global/
|
2153
|
+
# networks/`network_id`".
|
2154
|
+
# Corresponds to the JSON property `networkUri`
|
2155
|
+
# @return [String]
|
2156
|
+
attr_accessor :network_uri
|
2157
|
+
|
2158
|
+
# Secondary endpoint IP address of a Redis Cluster.
|
2159
|
+
# Corresponds to the JSON property `secondaryEndpointIpAddress`
|
2160
|
+
# @return [String]
|
2161
|
+
attr_accessor :secondary_endpoint_ip_address
|
2162
|
+
|
2163
|
+
# URI of a Redis Cluster in format "projects/`project_id`/locations/`location`/
|
2164
|
+
# clusters/`cluster_id`"
|
2165
|
+
# Corresponds to the JSON property `uri`
|
2166
|
+
# @return [String]
|
2167
|
+
attr_accessor :uri
|
2168
|
+
|
2169
|
+
def initialize(**args)
|
2170
|
+
update!(**args)
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
# Update properties of this object
|
2174
|
+
def update!(**args)
|
2175
|
+
@discovery_endpoint_ip_address = args[:discovery_endpoint_ip_address] if args.key?(:discovery_endpoint_ip_address)
|
2176
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2177
|
+
@location = args[:location] if args.key?(:location)
|
2178
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
2179
|
+
@secondary_endpoint_ip_address = args[:secondary_endpoint_ip_address] if args.key?(:secondary_endpoint_ip_address)
|
2180
|
+
@uri = args[:uri] if args.key?(:uri)
|
2181
|
+
end
|
2182
|
+
end
|
2183
|
+
|
2184
|
+
# For display only. Metadata associated with a Cloud Redis Instance.
|
2185
|
+
class RedisInstanceInfo
|
2186
|
+
include Google::Apis::Core::Hashable
|
2187
|
+
|
2188
|
+
# Name of a Cloud Redis Instance.
|
2189
|
+
# Corresponds to the JSON property `displayName`
|
2190
|
+
# @return [String]
|
2191
|
+
attr_accessor :display_name
|
2192
|
+
|
2193
|
+
# URI of a Cloud Redis Instance network.
|
2194
|
+
# Corresponds to the JSON property `networkUri`
|
2195
|
+
# @return [String]
|
2196
|
+
attr_accessor :network_uri
|
2197
|
+
|
2198
|
+
# Primary endpoint IP address of a Cloud Redis Instance.
|
2199
|
+
# Corresponds to the JSON property `primaryEndpointIp`
|
2200
|
+
# @return [String]
|
2201
|
+
attr_accessor :primary_endpoint_ip
|
2202
|
+
|
2203
|
+
# Read endpoint IP address of a Cloud Redis Instance (if applicable).
|
2204
|
+
# Corresponds to the JSON property `readEndpointIp`
|
2205
|
+
# @return [String]
|
2206
|
+
attr_accessor :read_endpoint_ip
|
2207
|
+
|
2208
|
+
# Region in which the Cloud Redis Instance is defined.
|
2209
|
+
# Corresponds to the JSON property `region`
|
2210
|
+
# @return [String]
|
2211
|
+
attr_accessor :region
|
2212
|
+
|
2213
|
+
# URI of a Cloud Redis Instance.
|
2214
|
+
# Corresponds to the JSON property `uri`
|
2215
|
+
# @return [String]
|
2216
|
+
attr_accessor :uri
|
2217
|
+
|
2218
|
+
def initialize(**args)
|
2219
|
+
update!(**args)
|
2220
|
+
end
|
2221
|
+
|
2222
|
+
# Update properties of this object
|
2223
|
+
def update!(**args)
|
2224
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2225
|
+
@network_uri = args[:network_uri] if args.key?(:network_uri)
|
2226
|
+
@primary_endpoint_ip = args[:primary_endpoint_ip] if args.key?(:primary_endpoint_ip)
|
2227
|
+
@read_endpoint_ip = args[:read_endpoint_ip] if args.key?(:read_endpoint_ip)
|
2228
|
+
@region = args[:region] if args.key?(:region)
|
2229
|
+
@uri = args[:uri] if args.key?(:uri)
|
2230
|
+
end
|
2231
|
+
end
|
2232
|
+
|
2132
2233
|
# Request for the `RerunConnectivityTest` method.
|
2133
2234
|
class RerunConnectivityTestRequest
|
2134
2235
|
include Google::Apis::Core::Hashable
|
@@ -2489,6 +2590,16 @@ module Google
|
|
2489
2590
|
# @return [Google::Apis::NetworkmanagementV1::ProxyConnectionInfo]
|
2490
2591
|
attr_accessor :proxy_connection
|
2491
2592
|
|
2593
|
+
# For display only. Metadata associated with a Redis Cluster.
|
2594
|
+
# Corresponds to the JSON property `redisCluster`
|
2595
|
+
# @return [Google::Apis::NetworkmanagementV1::RedisClusterInfo]
|
2596
|
+
attr_accessor :redis_cluster
|
2597
|
+
|
2598
|
+
# For display only. Metadata associated with a Cloud Redis Instance.
|
2599
|
+
# Corresponds to the JSON property `redisInstance`
|
2600
|
+
# @return [Google::Apis::NetworkmanagementV1::RedisInstanceInfo]
|
2601
|
+
attr_accessor :redis_instance
|
2602
|
+
|
2492
2603
|
# For display only. Metadata associated with a Compute Engine route.
|
2493
2604
|
# Corresponds to the JSON property `route`
|
2494
2605
|
# @return [Google::Apis::NetworkmanagementV1::RouteInfo]
|
@@ -2553,6 +2664,8 @@ module Google
|
|
2553
2664
|
@network = args[:network] if args.key?(:network)
|
2554
2665
|
@project_id = args[:project_id] if args.key?(:project_id)
|
2555
2666
|
@proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
|
2667
|
+
@redis_cluster = args[:redis_cluster] if args.key?(:redis_cluster)
|
2668
|
+
@redis_instance = args[:redis_instance] if args.key?(:redis_instance)
|
2556
2669
|
@route = args[:route] if args.key?(:route)
|
2557
2670
|
@serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
|
2558
2671
|
@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.47.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 = "20240905"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,6 +280,18 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
+
class RedisClusterInfo
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
289
|
+
class RedisInstanceInfo
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
283
295
|
class RerunConnectivityTestRequest
|
284
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
297
|
|
@@ -853,6 +865,30 @@ module Google
|
|
853
865
|
end
|
854
866
|
end
|
855
867
|
|
868
|
+
class RedisClusterInfo
|
869
|
+
# @private
|
870
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
871
|
+
property :discovery_endpoint_ip_address, as: 'discoveryEndpointIpAddress'
|
872
|
+
property :display_name, as: 'displayName'
|
873
|
+
property :location, as: 'location'
|
874
|
+
property :network_uri, as: 'networkUri'
|
875
|
+
property :secondary_endpoint_ip_address, as: 'secondaryEndpointIpAddress'
|
876
|
+
property :uri, as: 'uri'
|
877
|
+
end
|
878
|
+
end
|
879
|
+
|
880
|
+
class RedisInstanceInfo
|
881
|
+
# @private
|
882
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
883
|
+
property :display_name, as: 'displayName'
|
884
|
+
property :network_uri, as: 'networkUri'
|
885
|
+
property :primary_endpoint_ip, as: 'primaryEndpointIp'
|
886
|
+
property :read_endpoint_ip, as: 'readEndpointIp'
|
887
|
+
property :region, as: 'region'
|
888
|
+
property :uri, as: 'uri'
|
889
|
+
end
|
890
|
+
end
|
891
|
+
|
856
892
|
class RerunConnectivityTestRequest
|
857
893
|
# @private
|
858
894
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -950,6 +986,10 @@ module Google
|
|
950
986
|
property :project_id, as: 'projectId'
|
951
987
|
property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo::Representation
|
952
988
|
|
989
|
+
property :redis_cluster, as: 'redisCluster', class: Google::Apis::NetworkmanagementV1::RedisClusterInfo, decorator: Google::Apis::NetworkmanagementV1::RedisClusterInfo::Representation
|
990
|
+
|
991
|
+
property :redis_instance, as: 'redisInstance', class: Google::Apis::NetworkmanagementV1::RedisInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::RedisInstanceInfo::Representation
|
992
|
+
|
953
993
|
property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::Representation
|
954
994
|
|
955
995
|
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.47.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-15 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.47.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: []
|