google-apis-redis_v1beta1 0.67.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ebea21dfe32fe37f7855e8b28e2e7dd8e4052e8cc9a196c28460c7ca9edf9d0
|
4
|
+
data.tar.gz: 5450f4d2411048b866d8ca6821c803618dba5efb7f26e1e63a4f61499da197af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d162dba60a8b99dadce7fea25321bf181d6cf84d30aaf08ab9b650075d8657fa92722f6a94d64b7810e729dc827e58ca0b953a20f653a1ac61fd21b81db36605
|
7
|
+
data.tar.gz: d3593218d230dbb6bfe4922eb1954fd8cb198a972cf708847102d101300d1fe1045284c146f987c20660f9c991d39ab2dc55d078b8247df2bc073ea7d586320e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.68.0 (2025-08-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250807
|
10
|
+
|
3
11
|
### v0.67.0 (2025-08-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250729
|
@@ -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.
|
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
|
@@ -1098,7 +1113,7 @@ module Google
|
|
1098
1113
|
end
|
1099
1114
|
|
1100
1115
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
1101
|
-
# database resource level events into Condor platform. Next ID:
|
1116
|
+
# database resource level events into Condor platform. Next ID: 11
|
1102
1117
|
class DatabaseResourceFeed
|
1103
1118
|
include Google::Apis::Core::Hashable
|
1104
1119
|
|
@@ -1150,6 +1165,16 @@ module Google
|
|
1150
1165
|
# @return [Google::Apis::RedisV1beta1::DatabaseResourceMetadata]
|
1151
1166
|
attr_accessor :resource_metadata
|
1152
1167
|
|
1168
|
+
# Optional. If true, the feed won't be ingested by DB Center. This indicates
|
1169
|
+
# that the feed is intentionally skipped. For example, BackupDR feeds are only
|
1170
|
+
# needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB).
|
1171
|
+
# Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can
|
1172
|
+
# be skipped.
|
1173
|
+
# Corresponds to the JSON property `skipIngestion`
|
1174
|
+
# @return [Boolean]
|
1175
|
+
attr_accessor :skip_ingestion
|
1176
|
+
alias_method :skip_ingestion?, :skip_ingestion
|
1177
|
+
|
1153
1178
|
def initialize(**args)
|
1154
1179
|
update!(**args)
|
1155
1180
|
end
|
@@ -1165,6 +1190,7 @@ module Google
|
|
1165
1190
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
1166
1191
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
1167
1192
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
1193
|
+
@skip_ingestion = args[:skip_ingestion] if args.key?(:skip_ingestion)
|
1168
1194
|
end
|
1169
1195
|
end
|
1170
1196
|
|
@@ -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.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 = "
|
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
|
@@ -882,6 +885,7 @@ module Google
|
|
882
885
|
|
883
886
|
property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::RedisV1beta1::DatabaseResourceMetadata, decorator: Google::Apis::RedisV1beta1::DatabaseResourceMetadata::Representation
|
884
887
|
|
888
|
+
property :skip_ingestion, as: 'skipIngestion'
|
885
889
|
end
|
886
890
|
end
|
887
891
|
|
@@ -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.
|
89
|
-
#
|
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.
|
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.
|
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:
|