google-apis-redis_v1 0.14.0 → 0.15.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: 68947ed54637336310cd45608e63e16dfe280191773219b252f2d04eff0f0a64
4
- data.tar.gz: 49dc00c9aad62c9f39b6fc194b8242e1b4329425c8c13cb8ccd8ed034390c85a
3
+ metadata.gz: eb5e89e65b6dd0de1109a52bae13869079ac4745e801c4c70a1e1885358ec81d
4
+ data.tar.gz: 462b0cb42601fe8e56ec7d3c7735d86ab8b57b690a98e0e6966841747d65304e
5
5
  SHA512:
6
- metadata.gz: e6ba42e81e9c9ad815b25fcb06d1fcb80bff098e57d89dc6adb8ef17a9e7344fab06f9b6fea645c204f638335aff932978fb1e628661fe95abdc083fad3c8146
7
- data.tar.gz: 5b30bdd0fa2657e6db07cb3709366884763621a5c73b52dfd02e9ed3a29bf4ff11cad6c7e045299a16a8832de3f7264dbf9034ad7b1588dae994fdab8e30a9be
6
+ metadata.gz: 276b4b6d3f3b7fa15de0a3f08fb2d12054588bd57f31481e64112928ed98e94b3d75f2e5a3787be6af3d1d1f70b3b31fce5cf10a2b65470810caea051d501b48
7
+ data.tar.gz: 13db5b96d8e7c3df39d2f5658c0d609f953b4ed450f95f14575b4b9ea38d39ca8d4779a23c1ebc5b5257685cf6676868fecd73f462b3cdaa05a2fdc174df9fb4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.15.0 (2021-10-10)
4
+
5
+ * Regenerated from discovery document revision 20210930
6
+
3
7
  ### v0.14.0 (2021-09-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20210909
@@ -346,6 +346,11 @@ module Google
346
346
  # @return [String]
347
347
  attr_accessor :name
348
348
 
349
+ # Output only. Info per node.
350
+ # Corresponds to the JSON property `nodes`
351
+ # @return [Array<Google::Apis::RedisV1::NodeInfo>]
352
+ attr_accessor :nodes
353
+
349
354
  # Output only. Cloud IAM identity used by import / export operations to transfer
350
355
  # data to/from Cloud Storage. Format is "serviceAccount:". The value may change
351
356
  # over time for a given instance so should be checked before each import/export
@@ -359,6 +364,25 @@ module Google
359
364
  # @return [Fixnum]
360
365
  attr_accessor :port
361
366
 
367
+ # Output only. Hostname or IP address of the exposed readonly Redis endpoint.
368
+ # Standard tier only. Targets all healthy replica nodes in instance. Replication
369
+ # is asynchronous and replica nodes will exhibit some lag behind the primary.
370
+ # Write requests must target 'host'.
371
+ # Corresponds to the JSON property `readEndpoint`
372
+ # @return [String]
373
+ attr_accessor :read_endpoint
374
+
375
+ # Output only. The port number of the exposed readonly redis endpoint. Standard
376
+ # tier only. Write requests should target 'port'.
377
+ # Corresponds to the JSON property `readEndpointPort`
378
+ # @return [Fixnum]
379
+ attr_accessor :read_endpoint_port
380
+
381
+ # Optional. Read replica mode.
382
+ # Corresponds to the JSON property `readReplicasMode`
383
+ # @return [String]
384
+ attr_accessor :read_replicas_mode
385
+
362
386
  # Optional. Redis configuration parameters, according to http://redis.io/topics/
363
387
  # config. Currently, the only supported parameters are: Redis version 3.2 and
364
388
  # newer: * maxmemory-policy * notify-keyspace-events Redis version 4.0 and newer:
@@ -377,6 +401,12 @@ module Google
377
401
  # @return [String]
378
402
  attr_accessor :redis_version
379
403
 
404
+ # Optional. The number of replica nodes. Valid range for standard tier is [1-5]
405
+ # and defaults to 1. Valid value for basic tier is 0 and defaults to 0.
406
+ # Corresponds to the JSON property `replicaCount`
407
+ # @return [Fixnum]
408
+ attr_accessor :replica_count
409
+
380
410
  # Optional. For DIRECT_PEERING mode, the CIDR range of internal addresses that
381
411
  # are reserved for this instance. Range must be unique and non-overlapping with
382
412
  # existing subnets in an authorized network. For PRIVATE_SERVICE_ACCESS mode,
@@ -434,10 +464,15 @@ module Google
434
464
  @maintenance_schedule = args[:maintenance_schedule] if args.key?(:maintenance_schedule)
435
465
  @memory_size_gb = args[:memory_size_gb] if args.key?(:memory_size_gb)
436
466
  @name = args[:name] if args.key?(:name)
467
+ @nodes = args[:nodes] if args.key?(:nodes)
437
468
  @persistence_iam_identity = args[:persistence_iam_identity] if args.key?(:persistence_iam_identity)
438
469
  @port = args[:port] if args.key?(:port)
470
+ @read_endpoint = args[:read_endpoint] if args.key?(:read_endpoint)
471
+ @read_endpoint_port = args[:read_endpoint_port] if args.key?(:read_endpoint_port)
472
+ @read_replicas_mode = args[:read_replicas_mode] if args.key?(:read_replicas_mode)
439
473
  @redis_configs = args[:redis_configs] if args.key?(:redis_configs)
440
474
  @redis_version = args[:redis_version] if args.key?(:redis_version)
475
+ @replica_count = args[:replica_count] if args.key?(:replica_count)
441
476
  @reserved_ip_range = args[:reserved_ip_range] if args.key?(:reserved_ip_range)
442
477
  @server_ca_certs = args[:server_ca_certs] if args.key?(:server_ca_certs)
443
478
  @state = args[:state] if args.key?(:state)
@@ -686,6 +721,31 @@ module Google
686
721
  end
687
722
  end
688
723
 
724
+ # Node specific properties.
725
+ class NodeInfo
726
+ include Google::Apis::Core::Hashable
727
+
728
+ # Output only. Output Only. Node identifying string. e.g. 'node-0', 'node-1'
729
+ # Corresponds to the JSON property `id`
730
+ # @return [String]
731
+ attr_accessor :id
732
+
733
+ # Output only. Output Only. Location of the node.
734
+ # Corresponds to the JSON property `zone`
735
+ # @return [String]
736
+ attr_accessor :zone
737
+
738
+ def initialize(**args)
739
+ update!(**args)
740
+ end
741
+
742
+ # Update properties of this object
743
+ def update!(**args)
744
+ @id = args[:id] if args.key?(:id)
745
+ @zone = args[:zone] if args.key?(:zone)
746
+ end
747
+ end
748
+
689
749
  # This resource represents a long-running operation that is the result of a
690
750
  # network API call.
691
751
  class Operation
@@ -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.14.0"
19
+ GEM_VERSION = "0.15.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210909"
25
+ REVISION = "20210930"
26
26
  end
27
27
  end
28
28
  end
@@ -130,6 +130,12 @@ module Google
130
130
  include Google::Apis::Core::JsonObjectSupport
131
131
  end
132
132
 
133
+ class NodeInfo
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
133
139
  class Operation
134
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
141
 
@@ -275,10 +281,16 @@ module Google
275
281
 
276
282
  property :memory_size_gb, as: 'memorySizeGb'
277
283
  property :name, as: 'name'
284
+ collection :nodes, as: 'nodes', class: Google::Apis::RedisV1::NodeInfo, decorator: Google::Apis::RedisV1::NodeInfo::Representation
285
+
278
286
  property :persistence_iam_identity, as: 'persistenceIamIdentity'
279
287
  property :port, as: 'port'
288
+ property :read_endpoint, as: 'readEndpoint'
289
+ property :read_endpoint_port, as: 'readEndpointPort'
290
+ property :read_replicas_mode, as: 'readReplicasMode'
280
291
  hash :redis_configs, as: 'redisConfigs'
281
292
  property :redis_version, as: 'redisVersion'
293
+ property :replica_count, as: 'replicaCount'
282
294
  property :reserved_ip_range, as: 'reservedIpRange'
283
295
  collection :server_ca_certs, as: 'serverCaCerts', class: Google::Apis::RedisV1::TlsCertificate, decorator: Google::Apis::RedisV1::TlsCertificate::Representation
284
296
 
@@ -356,6 +368,14 @@ module Google
356
368
  end
357
369
  end
358
370
 
371
+ class NodeInfo
372
+ # @private
373
+ class Representation < Google::Apis::Core::JsonRepresentation
374
+ property :id, as: 'id'
375
+ property :zone, as: 'zone'
376
+ end
377
+ end
378
+
359
379
  class Operation
360
380
  # @private
361
381
  class Representation < Google::Apis::Core::JsonRepresentation
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.14.0
4
+ version: 0.15.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: 2021-09-20 00:00:00.000000000 Z
11
+ date: 2021-10-11 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/master/generated/google-apis-redis_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.15.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-redis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []