google-apis-redis_v1beta1 0.46.0 → 0.48.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: 687cfd76024c8369b70f93afbb5df284e46af085b6932eb35aa8310457ee635b
4
- data.tar.gz: 6e596eddcd882077d5778bb46db4c0f365739c1cbaccffa2a2df19ad06b50a91
3
+ metadata.gz: a13a3a2a573a0a71b5ece3bb26424ccc2731c8a4ab2977cc2a3a9c3b61570878
4
+ data.tar.gz: 87ea6fb8befddcb28d8e488df0bb7f0237dc0178ca6fee2efe3d7c784e43d1e4
5
5
  SHA512:
6
- metadata.gz: ac979279bf165bf6938d04fc58345123144b918a4d79ed7f07476a3179e772a57c42c5f784bda308512205b150ffbe5ff90ed50d2d203441e90b40f11be96f5f
7
- data.tar.gz: 131b763cbeb712e9d53fbde3a887a667f8cb91b48c9f9cdecc4f883887b246ac255e0b88fcc561382396217228337a88577b791e3d4e3719a5be2fb6a506bff7
6
+ metadata.gz: 967d9476977724fa05cfaa0dab0cb25ab02a8dc3f057278569f41c26f09da329bccecdc945207ea68faec34e9892ec8f96ed3e2475823d7b1a29dc63e9db377c
7
+ data.tar.gz: 4b410cbbdfcca28bd4f95d6bcbae9610a157e581ab1ba5476b8e858584123e9d360a72b1ada3a0053bc2d867f501cc09288b83fcf2fb33b57430bcf45471b498
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.48.0 (2024-04-21)
4
+
5
+ * Regenerated from discovery document revision 20240411
6
+
7
+ ### v0.47.0 (2024-03-31)
8
+
9
+ * Regenerated from discovery document revision 20240327
10
+
3
11
  ### v0.46.0 (2024-03-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20240319
@@ -210,6 +210,12 @@ module Google
210
210
  # @return [String]
211
211
  attr_accessor :create_time
212
212
 
213
+ # Optional. The delete operation will fail when the value is set to true.
214
+ # Corresponds to the JSON property `deletionProtectionEnabled`
215
+ # @return [Boolean]
216
+ attr_accessor :deletion_protection_enabled
217
+ alias_method :deletion_protection_enabled?, :deletion_protection_enabled
218
+
213
219
  # Output only. Endpoints created on each given network, for Redis clients to
214
220
  # connect to the cluster. Currently only one discovery endpoint is supported.
215
221
  # Corresponds to the JSON property `discoveryEndpoints`
@@ -223,11 +229,22 @@ module Google
223
229
  # @return [String]
224
230
  attr_accessor :name
225
231
 
232
+ # Optional. The type of a redis node in the cluster. NodeType determines the
233
+ # underlying machine-type of a redis node.
234
+ # Corresponds to the JSON property `nodeType`
235
+ # @return [String]
236
+ attr_accessor :node_type
237
+
226
238
  # Configuration of the persistence functionality.
227
239
  # Corresponds to the JSON property `persistenceConfig`
228
240
  # @return [Google::Apis::RedisV1beta1::ClusterPersistenceConfig]
229
241
  attr_accessor :persistence_config
230
242
 
243
+ # Output only. Precise value of redis memory size in GB for the entire cluster.
244
+ # Corresponds to the JSON property `preciseSizeGb`
245
+ # @return [Float]
246
+ attr_accessor :precise_size_gb
247
+
231
248
  # Required. Each PscConfig configures the consumer network where IPs will be
232
249
  # designated to the cluster for client access through Private Service Connect
233
250
  # Automation. Currently, only one PscConfig is supported.
@@ -292,9 +309,12 @@ module Google
292
309
  def update!(**args)
293
310
  @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
294
311
  @create_time = args[:create_time] if args.key?(:create_time)
312
+ @deletion_protection_enabled = args[:deletion_protection_enabled] if args.key?(:deletion_protection_enabled)
295
313
  @discovery_endpoints = args[:discovery_endpoints] if args.key?(:discovery_endpoints)
296
314
  @name = args[:name] if args.key?(:name)
315
+ @node_type = args[:node_type] if args.key?(:node_type)
297
316
  @persistence_config = args[:persistence_config] if args.key?(:persistence_config)
317
+ @precise_size_gb = args[:precise_size_gb] if args.key?(:precise_size_gb)
298
318
  @psc_configs = args[:psc_configs] if args.key?(:psc_configs)
299
319
  @psc_connections = args[:psc_connections] if args.key?(:psc_connections)
300
320
  @redis_configs = args[:redis_configs] if args.key?(:redis_configs)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RedisV1beta1
18
18
  # Version of the google-apis-redis_v1beta1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240319"
25
+ REVISION = "20240411"
26
26
  end
27
27
  end
28
28
  end
@@ -434,11 +434,14 @@ module Google
434
434
  class Representation < Google::Apis::Core::JsonRepresentation
435
435
  property :authorization_mode, as: 'authorizationMode'
436
436
  property :create_time, as: 'createTime'
437
+ property :deletion_protection_enabled, as: 'deletionProtectionEnabled'
437
438
  collection :discovery_endpoints, as: 'discoveryEndpoints', class: Google::Apis::RedisV1beta1::DiscoveryEndpoint, decorator: Google::Apis::RedisV1beta1::DiscoveryEndpoint::Representation
438
439
 
439
440
  property :name, as: 'name'
441
+ property :node_type, as: 'nodeType'
440
442
  property :persistence_config, as: 'persistenceConfig', class: Google::Apis::RedisV1beta1::ClusterPersistenceConfig, decorator: Google::Apis::RedisV1beta1::ClusterPersistenceConfig::Representation
441
443
 
444
+ property :precise_size_gb, as: 'preciseSizeGb'
442
445
  collection :psc_configs, as: 'pscConfigs', class: Google::Apis::RedisV1beta1::PscConfig, decorator: Google::Apis::RedisV1beta1::PscConfig::Representation
443
446
 
444
447
  collection :psc_connections, as: 'pscConnections', class: Google::Apis::RedisV1beta1::PscConnection, decorator: Google::Apis::RedisV1beta1::PscConnection::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.48.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-03-24 00:00:00.000000000 Z
11
+ date: 2024-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -59,7 +59,7 @@ licenses:
59
59
  metadata:
60
60
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
61
61
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1/CHANGELOG.md
62
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.46.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.48.0
63
63
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1
64
64
  post_install_message:
65
65
  rdoc_options: []