google-apis-redis_v1 0.66.0 → 0.67.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: 73150ad16a2a6ddd60c8ebcd2c5b6156cfc4f922269d6e4a57b33a4ac42db5f4
4
- data.tar.gz: e38f54d2791d1b2bc3f491f5b40bf01ef84e07f2e9a886afc05c78ac3b509e45
3
+ metadata.gz: ef2ae1156d2601bc86b8e1ac1232a46917ee2857f652a4c5105d3ef59fd422ad
4
+ data.tar.gz: 03f1e07bd9a87957bd3dc452fd30dec46348f41dbed65f441ec3c7f7ab558390
5
5
  SHA512:
6
- metadata.gz: 150960bbea1083042a950c60a0977b5f766cd8601d6a76a64fd5e274acabc3baa8cbbe9313fd5c8758c55964b879cf685a965dc42d73b77840e6e18e8d95d36d
7
- data.tar.gz: 89fa7b3d0c3c8d7a07509f606633e3c32d992fce4cb9a4eafd5e63ff1fc7e7c2d9d103d48fb9e2abf1dc17f34007070e0d6d1db732ca656459fb72f712fab2a8
6
+ metadata.gz: 53be6c431258f9eccd0c754a91eabcec69ef86152e306a5a839675858dab58d2260d1cc1f82253466cd7e7834bedd322dd44996ef73c99a4ff083c545b2fb5c1
7
+ data.tar.gz: c4f07ab7ab08a39f7c61e17f81c54bb271fd65c2bbacef43b814bfb96625892c2493d0452a33b07345bc443ef679aae2d8278aa5f5b67c2c3c4e7f60e242b320
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.67.0 (2025-02-26)
4
+
5
+ * Regenerated from discovery document revision 20250213
6
+
3
7
  ### v0.66.0 (2025-01-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20250104
@@ -276,6 +276,11 @@ module Google
276
276
  # @return [String]
277
277
  attr_accessor :cluster_uid
278
278
 
279
+ # Output only. The time when the backup collection was created.
280
+ # Corresponds to the JSON property `createTime`
281
+ # @return [String]
282
+ attr_accessor :create_time
283
+
279
284
  # Output only. The KMS key used to encrypt the backups under this backup
280
285
  # collection.
281
286
  # Corresponds to the JSON property `kmsKey`
@@ -300,6 +305,7 @@ module Google
300
305
  def update!(**args)
301
306
  @cluster = args[:cluster] if args.key?(:cluster)
302
307
  @cluster_uid = args[:cluster_uid] if args.key?(:cluster_uid)
308
+ @create_time = args[:create_time] if args.key?(:create_time)
303
309
  @kms_key = args[:kms_key] if args.key?(:kms_key)
304
310
  @name = args[:name] if args.key?(:name)
305
311
  @uid = args[:uid] if args.key?(:uid)
@@ -459,6 +465,15 @@ module Google
459
465
  class Cluster
460
466
  include Google::Apis::Core::Hashable
461
467
 
468
+ # Optional. If true, cluster endpoints that are created and registered by
469
+ # customers can be deleted asynchronously. That is, such a cluster endpoint can
470
+ # be de-registered before the forwarding rules in the cluster endpoint are
471
+ # deleted.
472
+ # Corresponds to the JSON property `asyncClusterEndpointsDeletionEnabled`
473
+ # @return [Boolean]
474
+ attr_accessor :async_cluster_endpoints_deletion_enabled
475
+ alias_method :async_cluster_endpoints_deletion_enabled?, :async_cluster_endpoints_deletion_enabled
476
+
462
477
  # Optional. The authorization mode of the Redis cluster. If not provided, auth
463
478
  # feature is disabled for the cluster.
464
479
  # Corresponds to the JSON property `authorizationMode`
@@ -476,7 +491,7 @@ module Google
476
491
  # @return [String]
477
492
  attr_accessor :backup_collection
478
493
 
479
- # Optional. A list of cluster enpoints.
494
+ # Optional. A list of cluster endpoints.
480
495
  # Corresponds to the JSON property `clusterEndpoints`
481
496
  # @return [Array<Google::Apis::RedisV1::ClusterEndpoint>]
482
497
  attr_accessor :cluster_endpoints
@@ -524,7 +539,7 @@ module Google
524
539
  # @return [Google::Apis::RedisV1::ClusterMaintenancePolicy]
525
540
  attr_accessor :maintenance_policy
526
541
 
527
- # Upcoming maitenance schedule.
542
+ # Upcoming maintenance schedule.
528
543
  # Corresponds to the JSON property `maintenanceSchedule`
529
544
  # @return [Google::Apis::RedisV1::ClusterMaintenanceSchedule]
530
545
  attr_accessor :maintenance_schedule
@@ -629,6 +644,7 @@ module Google
629
644
 
630
645
  # Update properties of this object
631
646
  def update!(**args)
647
+ @async_cluster_endpoints_deletion_enabled = args[:async_cluster_endpoints_deletion_enabled] if args.key?(:async_cluster_endpoints_deletion_enabled)
632
648
  @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
633
649
  @automated_backup_config = args[:automated_backup_config] if args.key?(:automated_backup_config)
634
650
  @backup_collection = args[:backup_collection] if args.key?(:backup_collection)
@@ -668,8 +684,8 @@ module Google
668
684
  class ClusterEndpoint
669
685
  include Google::Apis::Core::Hashable
670
686
 
671
- # A group of PSC connections. They are created in the same VPC network, one for
672
- # each service attachment in the cluster.
687
+ # Required. A group of PSC connections. They are created in the same VPC network,
688
+ # one for each service attachment in the cluster.
673
689
  # Corresponds to the JSON property `connections`
674
690
  # @return [Array<Google::Apis::RedisV1::ConnectionDetail>]
675
691
  attr_accessor :connections
@@ -719,7 +735,7 @@ module Google
719
735
  end
720
736
  end
721
737
 
722
- # Upcoming maitenance schedule.
738
+ # Upcoming maintenance schedule.
723
739
  class ClusterMaintenanceSchedule
724
740
  include Google::Apis::Core::Hashable
725
741
 
@@ -959,7 +975,7 @@ module Google
959
975
  # @return [Google::Apis::RedisV1::DatabaseResourceId]
960
976
  attr_accessor :resource_id
961
977
 
962
- # Common model for database resource instance metadata. Next ID: 23
978
+ # Common model for database resource instance metadata. Next ID: 25
963
979
  # Corresponds to the JSON property `resourceMetadata`
964
980
  # @return [Google::Apis::RedisV1::DatabaseResourceMetadata]
965
981
  attr_accessor :resource_metadata
@@ -1134,7 +1150,7 @@ module Google
1134
1150
  end
1135
1151
  end
1136
1152
 
1137
- # Common model for database resource instance metadata. Next ID: 23
1153
+ # Common model for database resource instance metadata. Next ID: 25
1138
1154
  class DatabaseResourceMetadata
1139
1155
  include Google::Apis::Core::Hashable
1140
1156
 
@@ -1190,6 +1206,11 @@ module Google
1190
1206
  # @return [String]
1191
1207
  attr_accessor :expected_state
1192
1208
 
1209
+ # GCBDR Configuration for the resource.
1210
+ # Corresponds to the JSON property `gcbdrConfiguration`
1211
+ # @return [Google::Apis::RedisV1::GcbdrConfiguration]
1212
+ attr_accessor :gcbdr_configuration
1213
+
1193
1214
  # DatabaseResourceId will serve as primary key for any resource ingestion event.
1194
1215
  # Corresponds to the JSON property `id`
1195
1216
  # @return [Google::Apis::RedisV1::DatabaseResourceId]
@@ -1243,6 +1264,11 @@ module Google
1243
1264
  # @return [String]
1244
1265
  attr_accessor :resource_name
1245
1266
 
1267
+ # Optional. Suspension reason for the resource.
1268
+ # Corresponds to the JSON property `suspensionReason`
1269
+ # @return [String]
1270
+ attr_accessor :suspension_reason
1271
+
1246
1272
  # Message type for storing tags. Tags provide a way to create annotations for
1247
1273
  # resources, and in some cases conditionally allow or deny policies based on
1248
1274
  # whether a resource has a specific tag.
@@ -1277,6 +1303,7 @@ module Google
1277
1303
  @edition = args[:edition] if args.key?(:edition)
1278
1304
  @entitlements = args[:entitlements] if args.key?(:entitlements)
1279
1305
  @expected_state = args[:expected_state] if args.key?(:expected_state)
1306
+ @gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
1280
1307
  @id = args[:id] if args.key?(:id)
1281
1308
  @instance_type = args[:instance_type] if args.key?(:instance_type)
1282
1309
  @location = args[:location] if args.key?(:location)
@@ -1286,6 +1313,7 @@ module Google
1286
1313
  @product = args[:product] if args.key?(:product)
1287
1314
  @resource_container = args[:resource_container] if args.key?(:resource_container)
1288
1315
  @resource_name = args[:resource_name] if args.key?(:resource_name)
1316
+ @suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
1289
1317
  @tags_set = args[:tags_set] if args.key?(:tags_set)
1290
1318
  @updation_time = args[:updation_time] if args.key?(:updation_time)
1291
1319
  @user_label_set = args[:user_label_set] if args.key?(:user_label_set)
@@ -1558,13 +1586,33 @@ module Google
1558
1586
  end
1559
1587
  end
1560
1588
 
1589
+ # GCBDR Configuration for the resource.
1590
+ class GcbdrConfiguration
1591
+ include Google::Apis::Core::Hashable
1592
+
1593
+ # Whether the resource is managed by GCBDR.
1594
+ # Corresponds to the JSON property `gcbdrManaged`
1595
+ # @return [Boolean]
1596
+ attr_accessor :gcbdr_managed
1597
+ alias_method :gcbdr_managed?, :gcbdr_managed
1598
+
1599
+ def initialize(**args)
1600
+ update!(**args)
1601
+ end
1602
+
1603
+ # Update properties of this object
1604
+ def update!(**args)
1605
+ @gcbdr_managed = args[:gcbdr_managed] if args.key?(:gcbdr_managed)
1606
+ end
1607
+ end
1608
+
1561
1609
  # Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be
1562
1610
  # the same region as the clusters.
1563
1611
  class GcsBackupSource
1564
1612
  include Google::Apis::Core::Hashable
1565
1613
 
1566
- # Optional. URIs of the GCS objects to import. Example: gs://bucket1/object1, gs:
1567
- # //bucket2/folder2/object2
1614
+ # Optional. URIs of the Cloud Storage objects to import. Example: gs://bucket1/
1615
+ # object1, gs://bucket2/folder2/object2
1568
1616
  # Corresponds to the JSON property `uris`
1569
1617
  # @return [Array<String>]
1570
1618
  attr_accessor :uris
@@ -1917,11 +1965,12 @@ module Google
1917
1965
  # @return [Hash<String,String>]
1918
1966
  attr_accessor :redis_configs
1919
1967
 
1920
- # Optional. The version of Redis software. If not provided, latest supported
1921
- # version will be used. Currently, the supported values are: * `REDIS_3_2` for
1922
- # Redis 3.2 compatibility * `REDIS_4_0` for Redis 4.0 compatibility (default) * `
1923
- # REDIS_5_0` for Redis 5.0 compatibility * `REDIS_6_X` for Redis 6.x
1924
- # compatibility * `REDIS_7_0` for Redis 7.0 compatibility
1968
+ # Optional. The version of Redis software. If not provided, the default version
1969
+ # will be used. Currently, the supported values are: * `REDIS_3_2` for Redis 3.2
1970
+ # compatibility * `REDIS_4_0` for Redis 4.0 compatibility * `REDIS_5_0` for
1971
+ # Redis 5.0 compatibility * `REDIS_6_X` for Redis 6.x compatibility * `REDIS_7_0`
1972
+ # for Redis 7.0 compatibility (default) * `REDIS_7_2` for Redis 7.2
1973
+ # compatibility
1925
1974
  # Corresponds to the JSON property `redisVersion`
1926
1975
  # @return [String]
1927
1976
  attr_accessor :redis_version
@@ -2079,6 +2128,12 @@ module Google
2079
2128
  # @return [Google::Apis::RedisV1::BackupRun]
2080
2129
  attr_accessor :backup_run
2081
2130
 
2131
+ # Whether deletion protection is enabled for this internal resource.
2132
+ # Corresponds to the JSON property `isDeletionProtectionEnabled`
2133
+ # @return [Boolean]
2134
+ attr_accessor :is_deletion_protection_enabled
2135
+ alias_method :is_deletion_protection_enabled?, :is_deletion_protection_enabled
2136
+
2082
2137
  # Product specification for Condor resources.
2083
2138
  # Corresponds to the JSON property `product`
2084
2139
  # @return [Google::Apis::RedisV1::Product]
@@ -2103,6 +2158,7 @@ module Google
2103
2158
  def update!(**args)
2104
2159
  @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
2105
2160
  @backup_run = args[:backup_run] if args.key?(:backup_run)
2161
+ @is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
2106
2162
  @product = args[:product] if args.key?(:product)
2107
2163
  @resource_id = args[:resource_id] if args.key?(:resource_id)
2108
2164
  @resource_name = args[:resource_name] if args.key?(:resource_name)
@@ -2989,6 +3045,11 @@ module Google
2989
3045
  # @return [String]
2990
3046
  attr_accessor :network
2991
3047
 
3048
+ # Output only. The port number of the exposed discovery endpoint.
3049
+ # Corresponds to the JSON property `port`
3050
+ # @return [Fixnum]
3051
+ attr_accessor :port
3052
+
2992
3053
  # Optional. Project ID of the consumer project where the forwarding rule is
2993
3054
  # created in.
2994
3055
  # Corresponds to the JSON property `projectId`
@@ -3026,6 +3087,7 @@ module Google
3026
3087
  @connection_type = args[:connection_type] if args.key?(:connection_type)
3027
3088
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
3028
3089
  @network = args[:network] if args.key?(:network)
3090
+ @port = args[:port] if args.key?(:port)
3029
3091
  @project_id = args[:project_id] if args.key?(:project_id)
3030
3092
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
3031
3093
  @psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
@@ -3451,6 +3513,11 @@ module Google
3451
3513
  class UpdateInfo
3452
3514
  include Google::Apis::Core::Hashable
3453
3515
 
3516
+ # Target node type for redis cluster.
3517
+ # Corresponds to the JSON property `targetNodeType`
3518
+ # @return [String]
3519
+ attr_accessor :target_node_type
3520
+
3454
3521
  # Target number of replica nodes per shard.
3455
3522
  # Corresponds to the JSON property `targetReplicaCount`
3456
3523
  # @return [Fixnum]
@@ -3467,6 +3534,7 @@ module Google
3467
3534
 
3468
3535
  # Update properties of this object
3469
3536
  def update!(**args)
3537
+ @target_node_type = args[:target_node_type] if args.key?(:target_node_type)
3470
3538
  @target_replica_count = args[:target_replica_count] if args.key?(:target_replica_count)
3471
3539
  @target_shard_count = args[:target_shard_count] if args.key?(:target_shard_count)
3472
3540
  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.66.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250104"
25
+ REVISION = "20250213"
26
26
  end
27
27
  end
28
28
  end
@@ -226,6 +226,12 @@ module Google
226
226
  include Google::Apis::Core::JsonObjectSupport
227
227
  end
228
228
 
229
+ class GcbdrConfiguration
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
229
235
  class GcsBackupSource
230
236
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
237
 
@@ -608,6 +614,7 @@ module Google
608
614
  class Representation < Google::Apis::Core::JsonRepresentation
609
615
  property :cluster, as: 'cluster'
610
616
  property :cluster_uid, as: 'clusterUid'
617
+ property :create_time, as: 'createTime'
611
618
  property :kms_key, as: 'kmsKey'
612
619
  property :name, as: 'name'
613
620
  property :uid, as: 'uid'
@@ -663,6 +670,7 @@ module Google
663
670
  class Cluster
664
671
  # @private
665
672
  class Representation < Google::Apis::Core::JsonRepresentation
673
+ property :async_cluster_endpoints_deletion_enabled, as: 'asyncClusterEndpointsDeletionEnabled'
666
674
  property :authorization_mode, as: 'authorizationMode'
667
675
  property :automated_backup_config, as: 'automatedBackupConfig', class: Google::Apis::RedisV1::AutomatedBackupConfig, decorator: Google::Apis::RedisV1::AutomatedBackupConfig::Representation
668
676
 
@@ -863,6 +871,8 @@ module Google
863
871
  collection :entitlements, as: 'entitlements', class: Google::Apis::RedisV1::Entitlement, decorator: Google::Apis::RedisV1::Entitlement::Representation
864
872
 
865
873
  property :expected_state, as: 'expectedState'
874
+ property :gcbdr_configuration, as: 'gcbdrConfiguration', class: Google::Apis::RedisV1::GcbdrConfiguration, decorator: Google::Apis::RedisV1::GcbdrConfiguration::Representation
875
+
866
876
  property :id, as: 'id', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
867
877
 
868
878
  property :instance_type, as: 'instanceType'
@@ -876,6 +886,7 @@ module Google
876
886
 
877
887
  property :resource_container, as: 'resourceContainer'
878
888
  property :resource_name, as: 'resourceName'
889
+ property :suspension_reason, as: 'suspensionReason'
879
890
  property :tags_set, as: 'tagsSet', class: Google::Apis::RedisV1::Tags, decorator: Google::Apis::RedisV1::Tags::Representation
880
891
 
881
892
  property :updation_time, as: 'updationTime'
@@ -962,6 +973,13 @@ module Google
962
973
  end
963
974
  end
964
975
 
976
+ class GcbdrConfiguration
977
+ # @private
978
+ class Representation < Google::Apis::Core::JsonRepresentation
979
+ property :gcbdr_managed, as: 'gcbdrManaged'
980
+ end
981
+ end
982
+
965
983
  class GcsBackupSource
966
984
  # @private
967
985
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1088,6 +1106,7 @@ module Google
1088
1106
 
1089
1107
  property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1::BackupRun, decorator: Google::Apis::RedisV1::BackupRun::Representation
1090
1108
 
1109
+ property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
1091
1110
  property :product, as: 'product', class: Google::Apis::RedisV1::Product, decorator: Google::Apis::RedisV1::Product::Representation
1092
1111
 
1093
1112
  property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
@@ -1330,6 +1349,7 @@ module Google
1330
1349
  property :connection_type, as: 'connectionType'
1331
1350
  property :forwarding_rule, as: 'forwardingRule'
1332
1351
  property :network, as: 'network'
1352
+ property :port, as: 'port'
1333
1353
  property :project_id, as: 'projectId'
1334
1354
  property :psc_connection_id, as: 'pscConnectionId'
1335
1355
  property :psc_connection_status, as: 'pscConnectionStatus'
@@ -1454,6 +1474,7 @@ module Google
1454
1474
  class UpdateInfo
1455
1475
  # @private
1456
1476
  class Representation < Google::Apis::Core::JsonRepresentation
1477
+ property :target_node_type, as: 'targetNodeType'
1457
1478
  property :target_replica_count, as: 'targetReplicaCount'
1458
1479
  property :target_shard_count, as: 'targetShardCount'
1459
1480
  end
@@ -409,7 +409,7 @@ module Google
409
409
  # Must end with a number or a letter. * Must be unique within the customer
410
410
  # project / location
411
411
  # @param [String] request_id
412
- # Idempotent request UUID.
412
+ # Optional. Idempotent request UUID.
413
413
  # @param [String] fields
414
414
  # Selector specifying which fields to include in a partial response.
415
415
  # @param [String] quota_user
@@ -447,7 +447,7 @@ module Google
447
447
  # locations/`location_id`/clusters/`cluster_id`` where `location_id` refers to a
448
448
  # GCP region.
449
449
  # @param [String] request_id
450
- # Idempotent request UUID.
450
+ # Optional. Idempotent request UUID.
451
451
  # @param [String] fields
452
452
  # Selector specifying which fields to include in a partial response.
453
453
  # @param [String] quota_user
@@ -596,11 +596,11 @@ module Google
596
596
  # location_id`/clusters/`cluster_id``
597
597
  # @param [Google::Apis::RedisV1::Cluster] cluster_object
598
598
  # @param [String] request_id
599
- # Idempotent request UUID.
599
+ # Optional. Idempotent request UUID.
600
600
  # @param [String] update_mask
601
601
  # Required. Mask of fields to update. At least one path must be supplied in this
602
602
  # field. The elements of the repeated paths field may only include these fields
603
- # from Cluster: * `size_gb` * `replica_count`
603
+ # from Cluster: * `size_gb` * `replica_count` * `cluster_endpoints`
604
604
  # @param [String] fields
605
605
  # Selector specifying which fields to include in a partial response.
606
606
  # @param [String] quota_user
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.66.0
4
+ version: 0.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-01-12 00:00:00.000000000 Z
10
+ date: 2025-03-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.66.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.67.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:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.2
76
+ rubygems_version: 3.6.5
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Google Cloud Memorystore for Redis API V1
79
79
  test_files: []