google-apis-redis_v1 0.27.0 → 0.28.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: d54000675ed04206e7fbbb9dfe893b090a5b8e0b43247211374c48d4c4ac6a81
|
|
4
|
+
data.tar.gz: 6a908eba95d12bf4f82d0a0aab3f491450e6ee32b8af48c86d3d76852594d949
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 996a5717da164d0fd642f238ffdee94ef3300532ec963a93794803c12c27ac4414f76111b5fc4ccd89005a17064aabd6dd1f352c14daeb1b597459c5f2932ee9
|
|
7
|
+
data.tar.gz: 1882c8593a9b0ad047d13c2c75e8e52b6757bce8c872e7a8401629cafa5aec3ae57e7be34c1e34a1ad5a9b1a9ffc9ad5a1fe684679c0c985a344794f44274708
|
data/CHANGELOG.md
CHANGED
|
@@ -294,6 +294,12 @@ module Google
|
|
|
294
294
|
# @return [String]
|
|
295
295
|
attr_accessor :current_location_id
|
|
296
296
|
|
|
297
|
+
# Optional. The KMS key reference that the customer provides when trying to
|
|
298
|
+
# create the instance.
|
|
299
|
+
# Corresponds to the JSON property `customerManagedKey`
|
|
300
|
+
# @return [String]
|
|
301
|
+
attr_accessor :customer_managed_key
|
|
302
|
+
|
|
297
303
|
# An arbitrary and optional user-provided name for the instance.
|
|
298
304
|
# Corresponds to the JSON property `displayName`
|
|
299
305
|
# @return [String]
|
|
@@ -330,12 +336,6 @@ module Google
|
|
|
330
336
|
# @return [Google::Apis::RedisV1::MaintenanceSchedule]
|
|
331
337
|
attr_accessor :maintenance_schedule
|
|
332
338
|
|
|
333
|
-
# Optional. The self service update maintenance version. The version is date
|
|
334
|
-
# based such as "20210712_00_00".
|
|
335
|
-
# Corresponds to the JSON property `maintenanceVersion`
|
|
336
|
-
# @return [String]
|
|
337
|
-
attr_accessor :maintenance_version
|
|
338
|
-
|
|
339
339
|
# Required. Redis memory size in GiB.
|
|
340
340
|
# Corresponds to the JSON property `memorySizeGb`
|
|
341
341
|
# @return [Fixnum]
|
|
@@ -457,6 +457,11 @@ module Google
|
|
|
457
457
|
# @return [String]
|
|
458
458
|
attr_accessor :status_message
|
|
459
459
|
|
|
460
|
+
# Optional. reasons that causes instance in "SUSPENDED" state.
|
|
461
|
+
# Corresponds to the JSON property `suspensionReasons`
|
|
462
|
+
# @return [Array<String>]
|
|
463
|
+
attr_accessor :suspension_reasons
|
|
464
|
+
|
|
460
465
|
# Required. The service tier of the instance.
|
|
461
466
|
# Corresponds to the JSON property `tier`
|
|
462
467
|
# @return [String]
|
|
@@ -480,13 +485,13 @@ module Google
|
|
|
480
485
|
@connect_mode = args[:connect_mode] if args.key?(:connect_mode)
|
|
481
486
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
482
487
|
@current_location_id = args[:current_location_id] if args.key?(:current_location_id)
|
|
488
|
+
@customer_managed_key = args[:customer_managed_key] if args.key?(:customer_managed_key)
|
|
483
489
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
484
490
|
@host = args[:host] if args.key?(:host)
|
|
485
491
|
@labels = args[:labels] if args.key?(:labels)
|
|
486
492
|
@location_id = args[:location_id] if args.key?(:location_id)
|
|
487
493
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
|
488
494
|
@maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
|
|
489
|
-
@maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
|
|
490
495
|
@memory_size_gb = args[:memory_size_gb] if args.key?(:memory_size_gb)
|
|
491
496
|
@name = args[:name] if args.key?(:name)
|
|
492
497
|
@nodes = args[:nodes] if args.key?(:nodes)
|
|
@@ -504,6 +509,7 @@ module Google
|
|
|
504
509
|
@server_ca_certs = args[:server_ca_certs] if args.key?(:server_ca_certs)
|
|
505
510
|
@state = args[:state] if args.key?(:state)
|
|
506
511
|
@status_message = args[:status_message] if args.key?(:status_message)
|
|
512
|
+
@suspension_reasons = args[:suspension_reasons] if args.key?(:suspension_reasons)
|
|
507
513
|
@tier = args[:tier] if args.key?(:tier)
|
|
508
514
|
@transit_encryption_mode = args[:transit_encryption_mode] if args.key?(:transit_encryption_mode)
|
|
509
515
|
end
|
|
@@ -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.28.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220518"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -277,6 +277,7 @@ module Google
|
|
|
277
277
|
property :connect_mode, as: 'connectMode'
|
|
278
278
|
property :create_time, as: 'createTime'
|
|
279
279
|
property :current_location_id, as: 'currentLocationId'
|
|
280
|
+
property :customer_managed_key, as: 'customerManagedKey'
|
|
280
281
|
property :display_name, as: 'displayName'
|
|
281
282
|
property :host, as: 'host'
|
|
282
283
|
hash :labels, as: 'labels'
|
|
@@ -285,7 +286,6 @@ module Google
|
|
|
285
286
|
|
|
286
287
|
property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::RedisV1::MaintenanceSchedule, decorator: Google::Apis::RedisV1::MaintenanceSchedule::Representation
|
|
287
288
|
|
|
288
|
-
property :maintenance_version, as: 'maintenanceVersion'
|
|
289
289
|
property :memory_size_gb, as: 'memorySizeGb'
|
|
290
290
|
property :name, as: 'name'
|
|
291
291
|
collection :nodes, as: 'nodes', class: Google::Apis::RedisV1::NodeInfo, decorator: Google::Apis::RedisV1::NodeInfo::Representation
|
|
@@ -306,6 +306,7 @@ module Google
|
|
|
306
306
|
|
|
307
307
|
property :state, as: 'state'
|
|
308
308
|
property :status_message, as: 'statusMessage'
|
|
309
|
+
collection :suspension_reasons, as: 'suspensionReasons'
|
|
309
310
|
property :tier, as: 'tier'
|
|
310
311
|
property :transit_encryption_mode, as: 'transitEncryptionMode'
|
|
311
312
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.28.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: 2022-05-
|
|
11
|
+
date: 2022-05-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -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_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.28.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
75
|
- !ruby/object:Gem::Version
|
|
76
76
|
version: '0'
|
|
77
77
|
requirements: []
|
|
78
|
-
rubygems_version: 3.3.
|
|
78
|
+
rubygems_version: 3.3.14
|
|
79
79
|
signing_key:
|
|
80
80
|
specification_version: 4
|
|
81
81
|
summary: Simple REST client for Google Cloud Memorystore for Redis API V1
|