google-apis-redis_v1beta1 0.23.0 → 0.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df7cde1e44a8245f52ef4b2d85f776f222ca50e2851bd64601bf4bc590e960f3
4
- data.tar.gz: 4146e8952169dadd63e957e9c5c4827083c8e1737497298a2d570048d2c9a74a
3
+ metadata.gz: 40881cd35a0aafde94fc6b6daff1606c110fec7b2d1d2477b5956b21205003d3
4
+ data.tar.gz: 4c8e806d0bbe4b7ed2be94279e1d9bcd048ffc1e5666214b2c77338cfc363a91
5
5
  SHA512:
6
- metadata.gz: 4d8d85a50e0b8dee62854a9d3fc3c34c951732d2a14fb3da692a156ca465c986b38ad866ae5c248e9ee577471becd03642f7f4e1ab4cd0bce7ed1c97240acb6e
7
- data.tar.gz: c316875aa1b0a05df25301292ac52b5d9d78ca2b0cf89037f4c1051a9e1723240ba4ffa4b9979e8b22c6f204496eae962142db1da52219878e68822d1f9c2b99
6
+ metadata.gz: 5d62b24abaaa0d5f88c77b2b7a0cfecd141d225f2a0403475fe29f6483d097f15b29b8d0461b772e9e7dad62e9bdf07a182325896fed3a75a7a939970a30cac6
7
+ data.tar.gz: d408e55467b17c80eec6443d64be256814ca7f9f96ca30fc22aa1eb4dd2bc151376ef4370833bdccdfd648703857d8e15558c5776b91e81087cb6813e004e55a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.26.0 (2022-05-25)
4
+
5
+ * Regenerated from discovery document revision 20220518
6
+
7
+ ### v0.25.0 (2022-05-12)
8
+
9
+ * Regenerated from discovery document revision 20220503
10
+
11
+ ### v0.24.0 (2022-04-27)
12
+
13
+ * Regenerated from discovery document revision 20220331
14
+
3
15
  ### v0.23.0 (2022-04-03)
4
16
 
5
17
  * Regenerated from discovery document revision 20220325
@@ -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]
@@ -333,6 +344,12 @@ module Google
333
344
  # @return [Google::Apis::RedisV1beta1::MaintenanceSchedule]
334
345
  attr_accessor :maintenance_schedule
335
346
 
347
+ # Optional. The self service update maintenance version. The version is date
348
+ # based such as "20210712_00_00".
349
+ # Corresponds to the JSON property `maintenanceVersion`
350
+ # @return [String]
351
+ attr_accessor :maintenance_version
352
+
336
353
  # Required. Redis memory size in GiB.
337
354
  # Corresponds to the JSON property `memorySizeGb`
338
355
  # @return [Fixnum]
@@ -454,6 +471,11 @@ module Google
454
471
  # @return [String]
455
472
  attr_accessor :status_message
456
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
+
457
479
  # Required. The service tier of the instance.
458
480
  # Corresponds to the JSON property `tier`
459
481
  # @return [String]
@@ -474,15 +496,18 @@ module Google
474
496
  @alternative_location_id = args[:alternative_location_id] if args.key?(:alternative_location_id)
475
497
  @auth_enabled = args[:auth_enabled] if args.key?(:auth_enabled)
476
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)
477
500
  @connect_mode = args[:connect_mode] if args.key?(:connect_mode)
478
501
  @create_time = args[:create_time] if args.key?(:create_time)
479
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)
480
504
  @display_name = args[:display_name] if args.key?(:display_name)
481
505
  @host = args[:host] if args.key?(:host)
482
506
  @labels = args[:labels] if args.key?(:labels)
483
507
  @location_id = args[:location_id] if args.key?(:location_id)
484
508
  @maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
485
509
  @maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
510
+ @maintenance_version = args[:maintenance_version] if args.key?(:maintenance_version)
486
511
  @memory_size_gb = args[:memory_size_gb] if args.key?(:memory_size_gb)
487
512
  @name = args[:name] if args.key?(:name)
488
513
  @nodes = args[:nodes] if args.key?(:nodes)
@@ -500,6 +525,7 @@ module Google
500
525
  @server_ca_certs = args[:server_ca_certs] if args.key?(:server_ca_certs)
501
526
  @state = args[:state] if args.key?(:state)
502
527
  @status_message = args[:status_message] if args.key?(:status_message)
528
+ @suspension_reasons = args[:suspension_reasons] if args.key?(:suspension_reasons)
503
529
  @tier = args[:tier] if args.key?(:tier)
504
530
  @transit_encryption_mode = args[:transit_encryption_mode] if args.key?(:transit_encryption_mode)
505
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.23.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 = "20220325"
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'
@@ -285,6 +287,7 @@ module Google
285
287
 
286
288
  property :maintenance_schedule, as: 'maintenanceSchedule', class: Google::Apis::RedisV1beta1::MaintenanceSchedule, decorator: Google::Apis::RedisV1beta1::MaintenanceSchedule::Representation
287
289
 
290
+ property :maintenance_version, as: 'maintenanceVersion'
288
291
  property :memory_size_gb, as: 'memorySizeGb'
289
292
  property :name, as: 'name'
290
293
  collection :nodes, as: 'nodes', class: Google::Apis::RedisV1beta1::NodeInfo, decorator: Google::Apis::RedisV1beta1::NodeInfo::Representation
@@ -305,6 +308,7 @@ module Google
305
308
 
306
309
  property :state, as: 'state'
307
310
  property :status_message, as: 'statusMessage'
311
+ collection :suspension_reasons, as: 'suspensionReasons'
308
312
  property :tier, as: 'tier'
309
313
  property :transit_encryption_mode, as: 'transitEncryptionMode'
310
314
  end
@@ -84,8 +84,8 @@ module Google
84
84
  # The resource that owns the locations collection, if applicable.
85
85
  # @param [String] filter
86
86
  # A filter to narrow down results to a preferred subset. The filtering language
87
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
88
- # AIP-160](https://google.aip.dev/160).
87
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
88
+ # in [AIP-160](https://google.aip.dev/160).
89
89
  # @param [Fixnum] page_size
90
90
  # The maximum number of results to return. If not set, the service selects a
91
91
  # default.
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.23.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-04-04 00:00:00.000000000 Z
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.23.0
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.5
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