google-apis-redis_v1beta1 0.51.0 → 0.53.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: 841fcfff71c1e9c34f478570203d0e91ca6f1d3728444d7d721af2e16bba98eb
4
- data.tar.gz: 714f909f35bdc3364d1a41369e0c9c85600e8707cf0a6ed8ad7a31f16df5877e
3
+ metadata.gz: 906c0172f7bedd43a3176ce2327ddc28d2b6238def4fcc4ded61fb21116dea74
4
+ data.tar.gz: b61526437f6c611f27cf79d1f44d9f1f21561b1b41512b4bf222d58a331c966f
5
5
  SHA512:
6
- metadata.gz: 48b907d1bb8e25fec5ed2a1b6d94462fb0b460361f283ac08f98632f01cd2afd02aa9167f92ead891fbf166ee6c287149f56d1ef5b0b1c505234cd2d73b58d38
7
- data.tar.gz: c8e63bb7cf0e1ddec29bbf839dfec42e97796e12fedb0ea769a3e7f89f51025af81950feb1d8380ccab423da3191c90650b9a4923508134ed2be9bbfe8694047
6
+ metadata.gz: 6b487cdaaf707e2c17428c10b6940ba3239ce7240dab0f5ad963f7632ccf84269d38f89eb464110c3c64dc7a43f1308c4cd23d5a229fca5f46737cafa4f6f341
7
+ data.tar.gz: 7c3915b5a6a84823565d8c680ca58c5fcfbd965a96d76e0e8077ad9f412d088701930923def668d1e12af7b861df0966d40736d73b3d645f183cf21cf3ef93b0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.53.0 (2024-06-23)
4
+
5
+ * Regenerated from discovery document revision 20240613
6
+
7
+ ### v0.52.0 (2024-06-09)
8
+
9
+ * Regenerated from discovery document revision 20240531
10
+
3
11
  ### v0.51.0 (2024-06-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20240528
@@ -230,9 +230,9 @@ module Google
230
230
  # @return [Array<Google::Apis::RedisV1beta1::DiscoveryEndpoint>]
231
231
  attr_accessor :discovery_endpoints
232
232
 
233
- # Required. Unique name of the resource in this scope including project and
234
- # location using the form: `projects/`project_id`/locations/`location_id`/
235
- # clusters/`cluster_id``
233
+ # Required. Identifier. Unique name of the resource in this scope including
234
+ # project and location using the form: `projects/`project_id`/locations/`
235
+ # location_id`/clusters/`cluster_id``
236
236
  # Corresponds to the JSON property `name`
237
237
  # @return [String]
238
238
  attr_accessor :name
@@ -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.53.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 = "20240613"
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
@@ -324,9 +324,9 @@ module Google
324
324
  # field. The returned operation is automatically deleted after a few hours, so
325
325
  # there is no need to call DeleteOperation.
326
326
  # @param [String] name
327
- # Required. Unique name of the resource in this scope including project and
328
- # location using the form: `projects/`project_id`/locations/`location_id`/
329
- # clusters/`cluster_id``
327
+ # Required. Identifier. Unique name of the resource in this scope including
328
+ # project and location using the form: `projects/`project_id`/locations/`
329
+ # location_id`/clusters/`cluster_id``
330
330
  # @param [Google::Apis::RedisV1beta1::Cluster] cluster_object
331
331
  # @param [String] request_id
332
332
  # Idempotent request UUID.
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.53.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-23 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.53.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: []