google-apis-redis_v1beta1 0.68.0 → 0.69.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: 33539a2e245570d7717b2c618d8d4c417617917d4ca32a6fef643974292a47ed
4
- data.tar.gz: 7bc53e46e50ccddebd36a3189cead1cc2349c81f0fe7b9c8466b498b09b459b3
3
+ metadata.gz: 5ebea21dfe32fe37f7855e8b28e2e7dd8e4052e8cc9a196c28460c7ca9edf9d0
4
+ data.tar.gz: 5450f4d2411048b866d8ca6821c803618dba5efb7f26e1e63a4f61499da197af
5
5
  SHA512:
6
- metadata.gz: 5578d80b7ff39f76c23084dc6ab6516b1e7330dadd9161974d50ffb84c525cd2e08d2c87d6967409762525a36ad3598185305fa6a410e942e6198e589bf41f18
7
- data.tar.gz: 465d0a2f221dbe9bb018d4a20d2494b8d4b64267f3dd329bd77721a2776375db9d7ebb478e0b1fa0f795c5358b98c4389c8b0e3acac44e4a95b544d937435ed7
6
+ metadata.gz: d162dba60a8b99dadce7fea25321bf181d6cf84d30aaf08ab9b650075d8657fa92722f6a94d64b7810e729dc827e58ca0b953a20f653a1ac61fd21b81db36605
7
+ data.tar.gz: d3593218d230dbb6bfe4922eb1954fd8cb198a972cf708847102d101300d1fe1045284c146f987c20660f9c991d39ab2dc55d078b8247df2bc073ea7d586320e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.69.0 (2025-08-31)
4
+
5
+ * Regenerated from discovery document revision 20250825
6
+
3
7
  ### v0.68.0 (2025-08-17)
4
8
 
5
9
  * Regenerated from discovery document revision 20250807
@@ -287,11 +287,26 @@ module Google
287
287
  # @return [String]
288
288
  attr_accessor :kms_key
289
289
 
290
+ # Output only. The last time a backup was created in the backup collection.
291
+ # Corresponds to the JSON property `lastBackupTime`
292
+ # @return [String]
293
+ attr_accessor :last_backup_time
294
+
290
295
  # Identifier. Full resource path of the backup collection.
291
296
  # Corresponds to the JSON property `name`
292
297
  # @return [String]
293
298
  attr_accessor :name
294
299
 
300
+ # Output only. Total number of backups in the backup collection.
301
+ # Corresponds to the JSON property `totalBackupCount`
302
+ # @return [Fixnum]
303
+ attr_accessor :total_backup_count
304
+
305
+ # Output only. Total size of all backups in the backup collection.
306
+ # Corresponds to the JSON property `totalBackupSizeBytes`
307
+ # @return [Fixnum]
308
+ attr_accessor :total_backup_size_bytes
309
+
295
310
  # Output only. System assigned unique identifier of the backup collection.
296
311
  # Corresponds to the JSON property `uid`
297
312
  # @return [String]
@@ -307,7 +322,10 @@ module Google
307
322
  @cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
308
323
  @create_time = args[:create_time] if args.key?(:create_time)
309
324
  @kms_key = args[:kms_key] if args.key?(:kms_key)
325
+ @last_backup_time = args[:last_backup_time] if args.key?(:last_backup_time)
310
326
  @name = args[:name] if args.key?(:name)
327
+ @total_backup_count = args[:total_backup_count] if args.key?(:total_backup_count)
328
+ @total_backup_size_bytes = args[:total_backup_size_bytes] if args.key?(:total_backup_size_bytes)
311
329
  @uid = args[:uid] if args.key?(:uid)
312
330
  end
313
331
  end
@@ -537,10 +555,7 @@ module Google
537
555
  class Cluster
538
556
  include Google::Apis::Core::Hashable
539
557
 
540
- # Optional. Immutable. Allows customers to specify if they are okay with
541
- # deploying a multi-zone cluster in less than 3 zones. Once set, if there is a
542
- # zonal outage during the cluster creation, the cluster will only be deployed in
543
- # 2 zones, and stay within the 2 zones for its lifecycle.
558
+ # Optional. Immutable. Deprecated, do not use.
544
559
  # Corresponds to the JSON property `allowFewerZonesDeployment`
545
560
  # @return [Boolean]
546
561
  attr_accessor :allow_fewer_zones_deployment
@@ -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.68.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250807"
25
+ REVISION = "20250825"
26
26
  end
27
27
  end
28
28
  end
@@ -634,7 +634,10 @@ module Google
634
634
  property :cluster_uid, as: 'clusterUid'
635
635
  property :create_time, as: 'createTime'
636
636
  property :kms_key, as: 'kmsKey'
637
+ property :last_backup_time, as: 'lastBackupTime'
637
638
  property :name, as: 'name'
639
+ property :total_backup_count, :numeric_string => true, as: 'totalBackupCount'
640
+ property :total_backup_size_bytes, :numeric_string => true, as: 'totalBackupSizeBytes'
638
641
  property :uid, as: 'uid'
639
642
  end
640
643
  end
@@ -85,8 +85,8 @@ module Google
85
85
  # @param [String] name
86
86
  # The resource that owns the locations collection, if applicable.
87
87
  # @param [Array<String>, String] extra_location_types
88
- # Optional. A list of extra location types that should be used as conditions for
89
- # controlling the visibility of the locations.
88
+ # Optional. Do not use this field. It is unsupported and is ignored unless
89
+ # explicitly documented otherwise. This is primarily for internal usage.
90
90
  # @param [String] filter
91
91
  # A filter to narrow down results to a preferred subset. The filtering language
92
92
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.68.0
4
+ version: 0.69.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.69.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: