google-apis-redis_v1 0.75.0 → 0.76.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: f66493d5231d6e0d4055d721c59937693e8ca202fba17fb901ead8af20510f4a
|
4
|
+
data.tar.gz: 803f0e72201daff52772c2b94c69389f2a41aebc2439973b08dfe1e588a101ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45961a2a628b821da611ab2ac6fba9f9d16a729784efc79b308ca7fd1e77c09e3c4261339d8d34f18962d64a2082748aec00680a60f508269adcd9632f91c68f
|
7
|
+
data.tar.gz: a1bd394ca60ea772db517d1638583e7701e1e93877525f5435a6e8cc6b9672d8be84934d158d6d59655d39367a6dc1d879526056bebfdec60a2bcd29446f817b
|
data/CHANGELOG.md
CHANGED
@@ -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
|
@@ -1098,7 +1116,7 @@ module Google
|
|
1098
1116
|
end
|
1099
1117
|
|
1100
1118
|
# DatabaseResourceFeed is the top level proto to be used to ingest different
|
1101
|
-
# database resource level events into Condor platform. Next ID:
|
1119
|
+
# database resource level events into Condor platform. Next ID: 11
|
1102
1120
|
class DatabaseResourceFeed
|
1103
1121
|
include Google::Apis::Core::Hashable
|
1104
1122
|
|
@@ -1150,6 +1168,16 @@ module Google
|
|
1150
1168
|
# @return [Google::Apis::RedisV1::DatabaseResourceMetadata]
|
1151
1169
|
attr_accessor :resource_metadata
|
1152
1170
|
|
1171
|
+
# Optional. If true, the feed won't be ingested by DB Center. This indicates
|
1172
|
+
# that the feed is intentionally skipped. For example, BackupDR feeds are only
|
1173
|
+
# needed for resources integrated with DB Center (e.g., CloudSQL, AlloyDB).
|
1174
|
+
# Feeds for non-integrated resources (e.g., Compute Engine, Persistent Disk) can
|
1175
|
+
# be skipped.
|
1176
|
+
# Corresponds to the JSON property `skipIngestion`
|
1177
|
+
# @return [Boolean]
|
1178
|
+
attr_accessor :skip_ingestion
|
1179
|
+
alias_method :skip_ingestion?, :skip_ingestion
|
1180
|
+
|
1153
1181
|
def initialize(**args)
|
1154
1182
|
update!(**args)
|
1155
1183
|
end
|
@@ -1165,6 +1193,7 @@ module Google
|
|
1165
1193
|
@resource_health_signal_data = args[:resource_health_signal_data] if args.key?(:resource_health_signal_data)
|
1166
1194
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
1167
1195
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
1196
|
+
@skip_ingestion = args[:skip_ingestion] if args.key?(:skip_ingestion)
|
1168
1197
|
end
|
1169
1198
|
end
|
1170
1199
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RedisV1
|
18
18
|
# Version of the google-apis-redis_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.76.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 = "20250819"
|
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::RedisV1::DatabaseResourceMetadata, decorator: Google::Apis::RedisV1::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_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.76.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.76.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|