google-apis-redis_v1beta1 0.51.0 → 0.52.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: 841fcfff71c1e9c34f478570203d0e91ca6f1d3728444d7d721af2e16bba98eb
4
- data.tar.gz: 714f909f35bdc3364d1a41369e0c9c85600e8707cf0a6ed8ad7a31f16df5877e
3
+ metadata.gz: 0e19b973bfe8586e173b53d0e528f857eed4814500f76601f5421c309c157704
4
+ data.tar.gz: f5c56832bef0ab6c2490c443c07a27e665f07e81bac4ceee88c3998bd2ff4967
5
5
  SHA512:
6
- metadata.gz: 48b907d1bb8e25fec5ed2a1b6d94462fb0b460361f283ac08f98632f01cd2afd02aa9167f92ead891fbf166ee6c287149f56d1ef5b0b1c505234cd2d73b58d38
7
- data.tar.gz: c8e63bb7cf0e1ddec29bbf839dfec42e97796e12fedb0ea769a3e7f89f51025af81950feb1d8380ccab423da3191c90650b9a4923508134ed2be9bbfe8694047
6
+ metadata.gz: 72193ebd759467b5e3c9b679989f6fd01d630ee5e2fcbb73f2e4eac27999c0da2160f7eb0179bd520773b1c4697f21676cd155fa8bc527db2dcc0d02f67b1759
7
+ data.tar.gz: b81d2a99ad33affdc0ed0898fab442617f237fa6a79a114dfe29d4aa9b97a02e7a483478d411c6b648533e1a6b50a9202305153476c17d77c28932eef6b404d6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.52.0 (2024-06-09)
4
+
5
+ * Regenerated from discovery document revision 20240531
6
+
3
7
  ### v0.51.0 (2024-06-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20240528
@@ -309,6 +309,11 @@ module Google
309
309
  # @return [String]
310
310
  attr_accessor :uid
311
311
 
312
+ # Zone distribution config for allocation of cluster resources.
313
+ # Corresponds to the JSON property `zoneDistributionConfig`
314
+ # @return [Google::Apis::RedisV1beta1::ZoneDistributionConfig]
315
+ attr_accessor :zone_distribution_config
316
+
312
317
  def initialize(**args)
313
318
  update!(**args)
314
319
  end
@@ -333,6 +338,7 @@ module Google
333
338
  @state_info = args[:state_info] if args.key?(:state_info)
334
339
  @transit_encryption_mode = args[:transit_encryption_mode] if args.key?(:transit_encryption_mode)
335
340
  @uid = args[:uid] if args.key?(:uid)
341
+ @zone_distribution_config = args[:zone_distribution_config] if args.key?(:zone_distribution_config)
336
342
  end
337
343
  end
338
344
 
@@ -2560,6 +2566,34 @@ module Google
2560
2566
  @start_time = args[:start_time] if args.key?(:start_time)
2561
2567
  end
2562
2568
  end
2569
+
2570
+ # Zone distribution config for allocation of cluster resources.
2571
+ class ZoneDistributionConfig
2572
+ include Google::Apis::Core::Hashable
2573
+
2574
+ # Optional. The mode of zone distribution. Defaults to MULTI_ZONE, when not
2575
+ # specified.
2576
+ # Corresponds to the JSON property `mode`
2577
+ # @return [String]
2578
+ attr_accessor :mode
2579
+
2580
+ # Optional. When SINGLE ZONE distribution is selected, zone field would be used
2581
+ # to allocate all resources in that zone. This is not applicable to MULTI_ZONE,
2582
+ # and would be ignored for MULTI_ZONE clusters.
2583
+ # Corresponds to the JSON property `zone`
2584
+ # @return [String]
2585
+ attr_accessor :zone
2586
+
2587
+ def initialize(**args)
2588
+ update!(**args)
2589
+ end
2590
+
2591
+ # Update properties of this object
2592
+ def update!(**args)
2593
+ @mode = args[:mode] if args.key?(:mode)
2594
+ @zone = args[:zone] if args.key?(:zone)
2595
+ end
2596
+ end
2563
2597
  end
2564
2598
  end
2565
2599
  end
@@ -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.51.0"
19
+ GEM_VERSION = "0.52.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240528"
25
+ REVISION = "20240531"
26
26
  end
27
27
  end
28
28
  end
@@ -394,6 +394,12 @@ module Google
394
394
  include Google::Apis::Core::JsonObjectSupport
395
395
  end
396
396
 
397
+ class ZoneDistributionConfig
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
397
403
  class AofConfig
398
404
  # @private
399
405
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -474,6 +480,8 @@ module Google
474
480
 
475
481
  property :transit_encryption_mode, as: 'transitEncryptionMode'
476
482
  property :uid, as: 'uid'
483
+ property :zone_distribution_config, as: 'zoneDistributionConfig', class: Google::Apis::RedisV1beta1::ZoneDistributionConfig, decorator: Google::Apis::RedisV1beta1::ZoneDistributionConfig::Representation
484
+
477
485
  end
478
486
  end
479
487
 
@@ -1063,6 +1071,14 @@ module Google
1063
1071
 
1064
1072
  end
1065
1073
  end
1074
+
1075
+ class ZoneDistributionConfig
1076
+ # @private
1077
+ class Representation < Google::Apis::Core::JsonRepresentation
1078
+ property :mode, as: 'mode'
1079
+ property :zone, as: 'zone'
1080
+ end
1081
+ end
1066
1082
  end
1067
1083
  end
1068
1084
  end
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.51.0
4
+ version: 0.52.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-06-02 00:00:00.000000000 Z
11
+ date: 2024-06-09 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.51.0
62
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.52.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: []