google-apis-redis_v1 0.67.0 → 0.68.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: ef2ae1156d2601bc86b8e1ac1232a46917ee2857f652a4c5105d3ef59fd422ad
4
- data.tar.gz: 03f1e07bd9a87957bd3dc452fd30dec46348f41dbed65f441ec3c7f7ab558390
3
+ metadata.gz: 23f742caf97d3f071d0d481ee9edc7f8c815864a4a06788b2403faf8b8fae4fc
4
+ data.tar.gz: 3b8997fb36815752cb9f2a3753d7591d7f5a3846c083f07f63484dca76ac33e7
5
5
  SHA512:
6
- metadata.gz: 53be6c431258f9eccd0c754a91eabcec69ef86152e306a5a839675858dab58d2260d1cc1f82253466cd7e7834bedd322dd44996ef73c99a4ff083c545b2fb5c1
7
- data.tar.gz: c4f07ab7ab08a39f7c61e17f81c54bb271fd65c2bbacef43b814bfb96625892c2493d0452a33b07345bc443ef679aae2d8278aa5f5b67c2c3c4e7f60e242b320
6
+ metadata.gz: 9a8e2ff1ded13a7b26973167955721cf44da7dda60d54c7f19a8389c88fdd2d934134c85b1bd3afd85cd010c003403ffb14273c5f1792222b7c96d70e8651c24
7
+ data.tar.gz: 80d130c6ce705bb7a33df12fc0353a4026fabe4e37d9183b6dd5fb2d711585ed1875ff482df0d44d571d980c054ba2ab02d6ebc18db5d794812e2d1cac808bab
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.68.0 (2025-03-09)
4
+
5
+ * Regenerated from discovery document revision 20250303
6
+
3
7
  ### v0.67.0 (2025-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20250213
@@ -562,6 +562,13 @@ module Google
562
562
  # @return [String]
563
563
  attr_accessor :node_type
564
564
 
565
+ # Optional. Input only. Ondemand maintenance for the cluster. This field can be
566
+ # used to trigger ondemand critical update on the cluster.
567
+ # Corresponds to the JSON property `ondemandMaintenance`
568
+ # @return [Boolean]
569
+ attr_accessor :ondemand_maintenance
570
+ alias_method :ondemand_maintenance?, :ondemand_maintenance
571
+
565
572
  # Configuration of the persistence functionality.
566
573
  # Corresponds to the JSON property `persistenceConfig`
567
574
  # @return [Google::Apis::RedisV1::ClusterPersistenceConfig]
@@ -661,6 +668,7 @@ module Google
661
668
  @managed_backup_source = args[:managed_backup_source] if args.key?(:managed_backup_source)
662
669
  @name = args[:name] if args.key?(:name)
663
670
  @node_type = args[:node_type] if args.key?(:node_type)
671
+ @ondemand_maintenance = args[:ondemand_maintenance] if args.key?(:ondemand_maintenance)
664
672
  @persistence_config = args[:persistence_config] if args.key?(:persistence_config)
665
673
  @precise_size_gb = args[:precise_size_gb] if args.key?(:precise_size_gb)
666
674
  @psc_configs = args[:psc_configs] if args.key?(:psc_configs)
@@ -2418,14 +2426,14 @@ module Google
2418
2426
  class MachineConfiguration
2419
2427
  include Google::Apis::Core::Hashable
2420
2428
 
2421
- # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/
2422
- # 342346271) add proto validations again after bug fix.
2429
+ # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
2430
+ # proto validations again after bug fix.
2423
2431
  # Corresponds to the JSON property `cpuCount`
2424
2432
  # @return [Fixnum]
2425
2433
  attr_accessor :cpu_count
2426
2434
 
2427
- # Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations
2428
- # again after bug fix.
2435
+ # Memory size in bytes. TODO(b/342344482) add proto validations again after bug
2436
+ # fix.
2429
2437
  # Corresponds to the JSON property `memorySizeInBytes`
2430
2438
  # @return [Fixnum]
2431
2439
  attr_accessor :memory_size_in_bytes
@@ -2435,8 +2443,8 @@ module Google
2435
2443
  # @return [Fixnum]
2436
2444
  attr_accessor :shard_count
2437
2445
 
2438
- # Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto
2439
- # validations again after bug fix.
2446
+ # Optional. The number of vCPUs. TODO(b/342344482) add proto validations again
2447
+ # after bug fix.
2440
2448
  # Corresponds to the JSON property `vcpuCount`
2441
2449
  # @return [Float]
2442
2450
  attr_accessor :vcpu_count
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RedisV1
18
18
  # Version of the google-apis-redis_v1 gem
19
- GEM_VERSION = "0.67.0"
19
+ GEM_VERSION = "0.68.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250213"
25
+ REVISION = "20250303"
26
26
  end
27
27
  end
28
28
  end
@@ -696,6 +696,7 @@ module Google
696
696
 
697
697
  property :name, as: 'name'
698
698
  property :node_type, as: 'nodeType'
699
+ property :ondemand_maintenance, as: 'ondemandMaintenance'
699
700
  property :persistence_config, as: 'persistenceConfig', class: Google::Apis::RedisV1::ClusterPersistenceConfig, decorator: Google::Apis::RedisV1::ClusterPersistenceConfig::Representation
700
701
 
701
702
  property :precise_size_gb, as: 'preciseSizeGb'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-09 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.67.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.68.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
62
62
  rdoc_options: []
63
63
  require_paths: