google-apis-redis_v1beta1 0.58.0 → 0.59.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: 2ae32d57c5c94ef1c8b857a5a293b778350cbccc9ca61a434c4a38193307c0de
|
4
|
+
data.tar.gz: 26b3e95c98dc968ff1d697fd1b21a324dc2e60f754ec9d790f70f6fc018f64be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0165b799024f64b33b01e1818baa10dad91a4f198f3a9f18479eb06a97288b25753dc5aeed88fb4ed19ae428ecc6416e8aa3d82f13083ca83442eab294806ae
|
7
|
+
data.tar.gz: 4bf9290acf0cab42883f7c31d0fe80654e88204194a002ed22421b4618a5e8302e1d094963ef7cbff659eb03621f6ed676801f9252c57dfc9b8ca65f4f15843f
|
data/CHANGELOG.md
CHANGED
@@ -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::RedisV1beta1::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)
|
@@ -2420,14 +2428,14 @@ module Google
|
|
2420
2428
|
class MachineConfiguration
|
2421
2429
|
include Google::Apis::Core::Hashable
|
2422
2430
|
|
2423
|
-
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482
|
2424
|
-
#
|
2431
|
+
# The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
|
2432
|
+
# proto validations again after bug fix.
|
2425
2433
|
# Corresponds to the JSON property `cpuCount`
|
2426
2434
|
# @return [Fixnum]
|
2427
2435
|
attr_accessor :cpu_count
|
2428
2436
|
|
2429
|
-
# Memory size in bytes. TODO(b/342344482
|
2430
|
-
#
|
2437
|
+
# Memory size in bytes. TODO(b/342344482) add proto validations again after bug
|
2438
|
+
# fix.
|
2431
2439
|
# Corresponds to the JSON property `memorySizeInBytes`
|
2432
2440
|
# @return [Fixnum]
|
2433
2441
|
attr_accessor :memory_size_in_bytes
|
@@ -2437,8 +2445,8 @@ module Google
|
|
2437
2445
|
# @return [Fixnum]
|
2438
2446
|
attr_accessor :shard_count
|
2439
2447
|
|
2440
|
-
# Optional. The number of vCPUs. TODO(b/342344482
|
2441
|
-
#
|
2448
|
+
# Optional. The number of vCPUs. TODO(b/342344482) add proto validations again
|
2449
|
+
# after bug fix.
|
2442
2450
|
# Corresponds to the JSON property `vcpuCount`
|
2443
2451
|
# @return [Float]
|
2444
2452
|
attr_accessor :vcpu_count
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.59.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 = "
|
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::RedisV1beta1::ClusterPersistenceConfig, decorator: Google::Apis::RedisV1beta1::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_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.59.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
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
|
@@ -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-redis_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.59.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1
|
63
63
|
rdoc_options: []
|
64
64
|
require_paths:
|