google-apis-networkmanagement_v1 0.46.0 → 0.47.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc195da5c57487f19965a28423a267fc46970d3b93eee85139f150c40d069644
4
- data.tar.gz: 98f500eb26ebaf76de529377f12b716f5c19b7b17e4f2b829bc41255defa22cb
3
+ metadata.gz: 50e6e24c025ee868f331ea07ccf99defeea0e4b82c02898240545b0f31ede58b
4
+ data.tar.gz: 8c1471db9091935d92fb75d271c968622ac7c940ada3bba0b6616ffe9c2eb057
5
5
  SHA512:
6
- metadata.gz: 9ef8d7bd4bc3997180e511b585383c88e246ad6f2190c5b1e610335c90025d7f2603d77e26a8d610e3ee791e73ea4a8f6d256cf9aa675bb16fca56111199f944
7
- data.tar.gz: 19db8efd01b356b91bd49c6fb42147098bac9fac331a1fd0d4f79a4f2055d8a8f19e6febb0d0a7441103073b680200a219a8b1372e34810139c82a77aec380f3
6
+ metadata.gz: 0ddcd37252f3a2bc113e02e8a6a66086d111729c2f48dbf6fea7e8354c6b1109052f557f28394d34a77380fcbb016a74becb32cc4a5f8e8c562271ebf9437f25
7
+ data.tar.gz: 3295c8bf4cdfb5358574b9689a4d73fef2155afba4ce829641c0445b3f603eb9ccec4111483c0a1ceac3b4110dd216d793eda772559fe0888292abc3736d4f43
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.46.0 (2024-09-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20240821
@@ -2129,6 +2129,58 @@ 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
+
2132
2184
  # For display only. Metadata associated with a Cloud Redis Instance.
2133
2185
  class RedisInstanceInfo
2134
2186
  include Google::Apis::Core::Hashable
@@ -2538,6 +2590,11 @@ module Google
2538
2590
  # @return [Google::Apis::NetworkmanagementV1::ProxyConnectionInfo]
2539
2591
  attr_accessor :proxy_connection
2540
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
+
2541
2598
  # For display only. Metadata associated with a Cloud Redis Instance.
2542
2599
  # Corresponds to the JSON property `redisInstance`
2543
2600
  # @return [Google::Apis::NetworkmanagementV1::RedisInstanceInfo]
@@ -2607,6 +2664,7 @@ module Google
2607
2664
  @network = args[:network] if args.key?(:network)
2608
2665
  @project_id = args[:project_id] if args.key?(:project_id)
2609
2666
  @proxy_connection = args[:proxy_connection] if args.key?(:proxy_connection)
2667
+ @redis_cluster = args[:redis_cluster] if args.key?(:redis_cluster)
2610
2668
  @redis_instance = args[:redis_instance] if args.key?(:redis_instance)
2611
2669
  @route = args[:route] if args.key?(:route)
2612
2670
  @serverless_neg = args[:serverless_neg] if args.key?(:serverless_neg)
@@ -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.46.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 = "20240821"
25
+ REVISION = "20240905"
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 RedisClusterInfo
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
283
289
  class RedisInstanceInfo
284
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
291
 
@@ -859,6 +865,18 @@ module Google
859
865
  end
860
866
  end
861
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
+
862
880
  class RedisInstanceInfo
863
881
  # @private
864
882
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -968,6 +986,8 @@ module Google
968
986
  property :project_id, as: 'projectId'
969
987
  property :proxy_connection, as: 'proxyConnection', class: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo, decorator: Google::Apis::NetworkmanagementV1::ProxyConnectionInfo::Representation
970
988
 
989
+ property :redis_cluster, as: 'redisCluster', class: Google::Apis::NetworkmanagementV1::RedisClusterInfo, decorator: Google::Apis::NetworkmanagementV1::RedisClusterInfo::Representation
990
+
971
991
  property :redis_instance, as: 'redisInstance', class: Google::Apis::NetworkmanagementV1::RedisInstanceInfo, decorator: Google::Apis::NetworkmanagementV1::RedisInstanceInfo::Representation
972
992
 
973
993
  property :route, as: 'route', class: Google::Apis::NetworkmanagementV1::RouteInfo, decorator: Google::Apis::NetworkmanagementV1::RouteInfo::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.46.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-09-01 00:00:00.000000000 Z
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.46.0
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: []