google-apis-redis_v1beta1 0.25.0 → 0.26.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: 40881cd35a0aafde94fc6b6daff1606c110fec7b2d1d2477b5956b21205003d3
|
|
4
|
+
data.tar.gz: 4c8e806d0bbe4b7ed2be94279e1d9bcd048ffc1e5666214b2c77338cfc363a91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5d62b24abaaa0d5f88c77b2b7a0cfecd141d225f2a0403475fe29f6483d097f15b29b8d0461b772e9e7dad62e9bdf07a182325896fed3a75a7a939970a30cac6
|
|
7
|
+
data.tar.gz: d408e55467b17c80eec6443d64be256814ca7f9f96ca30fc22aa1eb4dd2bc151376ef4370833bdccdfd648703857d8e15558c5776b91e81087cb6813e004e55a
|
data/CHANGELOG.md
CHANGED
|
@@ -279,6 +279,11 @@ module Google
|
|
|
279
279
|
# @return [String]
|
|
280
280
|
attr_accessor :authorized_network
|
|
281
281
|
|
|
282
|
+
# Optional. The available maintenance versions that an instance could update to.
|
|
283
|
+
# Corresponds to the JSON property `availableMaintenanceVersions`
|
|
284
|
+
# @return [Array<String>]
|
|
285
|
+
attr_accessor :available_maintenance_versions
|
|
286
|
+
|
|
282
287
|
# Optional. The network connect mode of the Redis instance. If not provided, the
|
|
283
288
|
# connect mode defaults to DIRECT_PEERING.
|
|
284
289
|
# Corresponds to the JSON property `connectMode`
|
|
@@ -297,6 +302,12 @@ module Google
|
|
|
297
302
|
# @return [String]
|
|
298
303
|
attr_accessor :current_location_id
|
|
299
304
|
|
|
305
|
+
# Optional. The KMS key reference that the customer provides when trying to
|
|
306
|
+
# create the instance.
|
|
307
|
+
# Corresponds to the JSON property `customerManagedKey`
|
|
308
|
+
# @return [String]
|
|
309
|
+
attr_accessor :customer_managed_key
|
|
310
|
+
|
|
300
311
|
# An arbitrary and optional user-provided name for the instance.
|
|
301
312
|
# Corresponds to the JSON property `displayName`
|
|
302
313
|
# @return [String]
|
|
@@ -460,6 +471,11 @@ module Google
|
|
|
460
471
|
# @return [String]
|
|
461
472
|
attr_accessor :status_message
|
|
462
473
|
|
|
474
|
+
# Optional. reasons that causes instance in "SUSPENDED" state.
|
|
475
|
+
# Corresponds to the JSON property `suspensionReasons`
|
|
476
|
+
# @return [Array<String>]
|
|
477
|
+
attr_accessor :suspension_reasons
|
|
478
|
+
|
|
463
479
|
# Required. The service tier of the instance.
|
|
464
480
|
# Corresponds to the JSON property `tier`
|
|
465
481
|
# @return [String]
|
|
@@ -480,9 +496,11 @@ module Google
|
|
|
480
496
|
@alternative_location_id = args[:alternative_location_id] if args.key?(:alternative_location_id)
|
|
481
497
|
@auth_enabled = args[:auth_enabled] if args.key?(:auth_enabled)
|
|
482
498
|
@authorized_network = args[:authorized_network] if args.key?(:authorized_network)
|
|
499
|
+
@available_maintenance_versions = args[:available_maintenance_versions] if args.key?(:available_maintenance_versions)
|
|
483
500
|
@connect_mode = args[:connect_mode] if args.key?(:connect_mode)
|
|
484
501
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
485
502
|
@current_location_id = args[:current_location_id] if args.key?(:current_location_id)
|
|
503
|
+
@customer_managed_key = args[:customer_managed_key] if args.key?(:customer_managed_key)
|
|
486
504
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
487
505
|
@host = args[:host] if args.key?(:host)
|
|
488
506
|
@labels = args[:labels] if args.key?(:labels)
|
|
@@ -507,6 +525,7 @@ module Google
|
|
|
507
525
|
@server_ca_certs = args[:server_ca_certs] if args.key?(:server_ca_certs)
|
|
508
526
|
@state = args[:state] if args.key?(:state)
|
|
509
527
|
@status_message = args[:status_message] if args.key?(:status_message)
|
|
528
|
+
@suspension_reasons = args[:suspension_reasons] if args.key?(:suspension_reasons)
|
|
510
529
|
@tier = args[:tier] if args.key?(:tier)
|
|
511
530
|
@transit_encryption_mode = args[:transit_encryption_mode] if args.key?(:transit_encryption_mode)
|
|
512
531
|
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.
|
|
19
|
+
GEM_VERSION = "0.26.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
|
|
@@ -274,9 +274,11 @@ module Google
|
|
|
274
274
|
property :alternative_location_id, as: 'alternativeLocationId'
|
|
275
275
|
property :auth_enabled, as: 'authEnabled'
|
|
276
276
|
property :authorized_network, as: 'authorizedNetwork'
|
|
277
|
+
collection :available_maintenance_versions, as: 'availableMaintenanceVersions'
|
|
277
278
|
property :connect_mode, as: 'connectMode'
|
|
278
279
|
property :create_time, as: 'createTime'
|
|
279
280
|
property :current_location_id, as: 'currentLocationId'
|
|
281
|
+
property :customer_managed_key, as: 'customerManagedKey'
|
|
280
282
|
property :display_name, as: 'displayName'
|
|
281
283
|
property :host, as: 'host'
|
|
282
284
|
hash :labels, as: 'labels'
|
|
@@ -306,6 +308,7 @@ module Google
|
|
|
306
308
|
|
|
307
309
|
property :state, as: 'state'
|
|
308
310
|
property :status_message, as: 'statusMessage'
|
|
311
|
+
collection :suspension_reasons, as: 'suspensionReasons'
|
|
309
312
|
property :tier, as: 'tier'
|
|
310
313
|
property :transit_encryption_mode, as: 'transitEncryptionMode'
|
|
311
314
|
end
|
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.
|
|
4
|
+
version: 0.26.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
|
|
@@ -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.
|
|
62
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.26.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: []
|
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '0'
|
|
78
78
|
requirements: []
|
|
79
|
-
rubygems_version: 3.3.
|
|
79
|
+
rubygems_version: 3.3.14
|
|
80
80
|
signing_key:
|
|
81
81
|
specification_version: 4
|
|
82
82
|
summary: Simple REST client for Google Cloud Memorystore for Redis API V1beta1
|