google-apis-redis_v1beta1 0.57.0 → 0.59.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: 11ebc6c7b6e950b55a413b6331ddd1b3a797ea7596cd10143686a9aeea373d4c
4
- data.tar.gz: 5a4ac97338776cbb4f3fd0a07dcd1056dd2301a7dc3199d4ecd8335360fc861b
3
+ metadata.gz: 2ae32d57c5c94ef1c8b857a5a293b778350cbccc9ca61a434c4a38193307c0de
4
+ data.tar.gz: 26b3e95c98dc968ff1d697fd1b21a324dc2e60f754ec9d790f70f6fc018f64be
5
5
  SHA512:
6
- metadata.gz: a56c99ecdda302a5015753522a87fee5c1f865b9fecf14b08a330ed03e1ba41b5f7201a5e83f674f35dca588df449e0a8fdc777caa53d41033ebc9a6bacd3aff
7
- data.tar.gz: 508e929c6a8cf41b7364bfe825ad285f96b3134a1f467cd7f0894bd97855f42aef71a6b27c456e9dab90f756d44113c310d1f5e12d6cb29f82afbf3c7aea8fd2
6
+ metadata.gz: b0165b799024f64b33b01e1818baa10dad91a4f198f3a9f18479eb06a97288b25753dc5aeed88fb4ed19ae428ecc6416e8aa3d82f13083ca83442eab294806ae
7
+ data.tar.gz: 4bf9290acf0cab42883f7c31d0fe80654e88204194a002ed22421b4618a5e8302e1d094963ef7cbff659eb03621f6ed676801f9252c57dfc9b8ca65f4f15843f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.59.0 (2025-03-09)
4
+
5
+ * Regenerated from discovery document revision 20250303
6
+
7
+ ### v0.58.0 (2025-02-26)
8
+
9
+ * Regenerated from discovery document revision 20250213
10
+
3
11
  ### v0.57.0 (2025-01-12)
4
12
 
5
13
  * 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::RedisV1beta1::ClusterEndpoint>]
482
497
  attr_accessor :cluster_endpoints
@@ -524,7 +539,7 @@ module Google
524
539
  # @return [Google::Apis::RedisV1beta1::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::RedisV1beta1::ClusterMaintenanceSchedule]
530
545
  attr_accessor :maintenance_schedule
@@ -547,6 +562,13 @@ module Google
547
562
  # @return [String]
548
563
  attr_accessor :node_type
549
564
 
565
+ # Optional. Input only. Ondemand maintenance for the cluster. This field can be
566
+ # used to trigger ondemand critical update on the cluster.
567
+ # Corresponds to the JSON property `ondemandMaintenance`
568
+ # @return [Boolean]
569
+ attr_accessor :ondemand_maintenance
570
+ alias_method :ondemand_maintenance?, :ondemand_maintenance
571
+
550
572
  # Configuration of the persistence functionality.
551
573
  # Corresponds to the JSON property `persistenceConfig`
552
574
  # @return [Google::Apis::RedisV1beta1::ClusterPersistenceConfig]
@@ -629,6 +651,7 @@ module Google
629
651
 
630
652
  # Update properties of this object
631
653
  def update!(**args)
654
+ @async_cluster_endpoints_deletion_enabled = args[:async_cluster_endpoints_deletion_enabled] if args.key?(:async_cluster_endpoints_deletion_enabled)
632
655
  @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
633
656
  @automated_backup_config = args[:automated_backup_config] if args.key?(:automated_backup_config)
634
657
  @backup_collection = args[:backup_collection] if args.key?(:backup_collection)
@@ -645,6 +668,7 @@ module Google
645
668
  @managed_backup_source = args[:managed_backup_source] if args.key?(:managed_backup_source)
646
669
  @name = args[:name] if args.key?(:name)
647
670
  @node_type = args[:node_type] if args.key?(:node_type)
671
+ @ondemand_maintenance = args[:ondemand_maintenance] if args.key?(:ondemand_maintenance)
648
672
  @persistence_config = args[:persistence_config] if args.key?(:persistence_config)
649
673
  @precise_size_gb = args[:precise_size_gb] if args.key?(:precise_size_gb)
650
674
  @psc_configs = args[:psc_configs] if args.key?(:psc_configs)
@@ -668,8 +692,8 @@ module Google
668
692
  class ClusterEndpoint
669
693
  include Google::Apis::Core::Hashable
670
694
 
671
- # A group of PSC connections. They are created in the same VPC network, one for
672
- # each service attachment in the cluster.
695
+ # Required. A group of PSC connections. They are created in the same VPC network,
696
+ # one for each service attachment in the cluster.
673
697
  # Corresponds to the JSON property `connections`
674
698
  # @return [Array<Google::Apis::RedisV1beta1::ConnectionDetail>]
675
699
  attr_accessor :connections
@@ -719,7 +743,7 @@ module Google
719
743
  end
720
744
  end
721
745
 
722
- # Upcoming maitenance schedule.
746
+ # Upcoming maintenance schedule.
723
747
  class ClusterMaintenanceSchedule
724
748
  include Google::Apis::Core::Hashable
725
749
 
@@ -959,7 +983,7 @@ module Google
959
983
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
960
984
  attr_accessor :resource_id
961
985
 
962
- # Common model for database resource instance metadata. Next ID: 23
986
+ # Common model for database resource instance metadata. Next ID: 25
963
987
  # Corresponds to the JSON property `resourceMetadata`
964
988
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceMetadata]
965
989
  attr_accessor :resource_metadata
@@ -1134,7 +1158,7 @@ module Google
1134
1158
  end
1135
1159
  end
1136
1160
 
1137
- # Common model for database resource instance metadata. Next ID: 23
1161
+ # Common model for database resource instance metadata. Next ID: 25
1138
1162
  class DatabaseResourceMetadata
1139
1163
  include Google::Apis::Core::Hashable
1140
1164
 
@@ -1190,6 +1214,11 @@ module Google
1190
1214
  # @return [String]
1191
1215
  attr_accessor :expected_state
1192
1216
 
1217
+ # GCBDR Configuration for the resource.
1218
+ # Corresponds to the JSON property `gcbdrConfiguration`
1219
+ # @return [Google::Apis::RedisV1beta1::GcbdrConfiguration]
1220
+ attr_accessor :gcbdr_configuration
1221
+
1193
1222
  # DatabaseResourceId will serve as primary key for any resource ingestion event.
1194
1223
  # Corresponds to the JSON property `id`
1195
1224
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
@@ -1243,6 +1272,11 @@ module Google
1243
1272
  # @return [String]
1244
1273
  attr_accessor :resource_name
1245
1274
 
1275
+ # Optional. Suspension reason for the resource.
1276
+ # Corresponds to the JSON property `suspensionReason`
1277
+ # @return [String]
1278
+ attr_accessor :suspension_reason
1279
+
1246
1280
  # Message type for storing tags. Tags provide a way to create annotations for
1247
1281
  # resources, and in some cases conditionally allow or deny policies based on
1248
1282
  # whether a resource has a specific tag.
@@ -1277,6 +1311,7 @@ module Google
1277
1311
  @edition = args[:edition] if args.key?(:edition)
1278
1312
  @entitlements = args[:entitlements] if args.key?(:entitlements)
1279
1313
  @expected_state = args[:expected_state] if args.key?(:expected_state)
1314
+ @gcbdr_configuration = args[:gcbdr_configuration] if args.key?(:gcbdr_configuration)
1280
1315
  @id = args[:id] if args.key?(:id)
1281
1316
  @instance_type = args[:instance_type] if args.key?(:instance_type)
1282
1317
  @location = args[:location] if args.key?(:location)
@@ -1286,6 +1321,7 @@ module Google
1286
1321
  @product = args[:product] if args.key?(:product)
1287
1322
  @resource_container = args[:resource_container] if args.key?(:resource_container)
1288
1323
  @resource_name = args[:resource_name] if args.key?(:resource_name)
1324
+ @suspension_reason = args[:suspension_reason] if args.key?(:suspension_reason)
1289
1325
  @tags_set = args[:tags_set] if args.key?(:tags_set)
1290
1326
  @updation_time = args[:updation_time] if args.key?(:updation_time)
1291
1327
  @user_label_set = args[:user_label_set] if args.key?(:user_label_set)
@@ -1558,13 +1594,33 @@ module Google
1558
1594
  end
1559
1595
  end
1560
1596
 
1597
+ # GCBDR Configuration for the resource.
1598
+ class GcbdrConfiguration
1599
+ include Google::Apis::Core::Hashable
1600
+
1601
+ # Whether the resource is managed by GCBDR.
1602
+ # Corresponds to the JSON property `gcbdrManaged`
1603
+ # @return [Boolean]
1604
+ attr_accessor :gcbdr_managed
1605
+ alias_method :gcbdr_managed?, :gcbdr_managed
1606
+
1607
+ def initialize(**args)
1608
+ update!(**args)
1609
+ end
1610
+
1611
+ # Update properties of this object
1612
+ def update!(**args)
1613
+ @gcbdr_managed = args[:gcbdr_managed] if args.key?(:gcbdr_managed)
1614
+ end
1615
+ end
1616
+
1561
1617
  # Backups stored in Cloud Storage buckets. The Cloud Storage buckets need to be
1562
1618
  # the same region as the clusters.
1563
1619
  class GcsBackupSource
1564
1620
  include Google::Apis::Core::Hashable
1565
1621
 
1566
- # Optional. URIs of the GCS objects to import. Example: gs://bucket1/object1, gs:
1567
- # //bucket2/folder2/object2
1622
+ # Optional. URIs of the Cloud Storage objects to import. Example: gs://bucket1/
1623
+ # object1, gs://bucket2/folder2/object2
1568
1624
  # Corresponds to the JSON property `uris`
1569
1625
  # @return [Array<String>]
1570
1626
  attr_accessor :uris
@@ -2082,6 +2138,12 @@ module Google
2082
2138
  # @return [Google::Apis::RedisV1beta1::BackupRun]
2083
2139
  attr_accessor :backup_run
2084
2140
 
2141
+ # Whether deletion protection is enabled for this internal resource.
2142
+ # Corresponds to the JSON property `isDeletionProtectionEnabled`
2143
+ # @return [Boolean]
2144
+ attr_accessor :is_deletion_protection_enabled
2145
+ alias_method :is_deletion_protection_enabled?, :is_deletion_protection_enabled
2146
+
2085
2147
  # Product specification for Condor resources.
2086
2148
  # Corresponds to the JSON property `product`
2087
2149
  # @return [Google::Apis::RedisV1beta1::Product]
@@ -2106,6 +2168,7 @@ module Google
2106
2168
  def update!(**args)
2107
2169
  @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
2108
2170
  @backup_run = args[:backup_run] if args.key?(:backup_run)
2171
+ @is_deletion_protection_enabled = args[:is_deletion_protection_enabled] if args.key?(:is_deletion_protection_enabled)
2109
2172
  @product = args[:product] if args.key?(:product)
2110
2173
  @resource_id = args[:resource_id] if args.key?(:resource_id)
2111
2174
  @resource_name = args[:resource_name] if args.key?(:resource_name)
@@ -2365,14 +2428,14 @@ module Google
2365
2428
  class MachineConfiguration
2366
2429
  include Google::Apis::Core::Hashable
2367
2430
 
2368
- # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482, b/
2369
- # 342346271) add proto validations again after bug fix.
2431
+ # The number of CPUs. Deprecated. Use vcpu_count instead. TODO(b/342344482) add
2432
+ # proto validations again after bug fix.
2370
2433
  # Corresponds to the JSON property `cpuCount`
2371
2434
  # @return [Fixnum]
2372
2435
  attr_accessor :cpu_count
2373
2436
 
2374
- # Memory size in bytes. TODO(b/342344482, b/342346271) add proto validations
2375
- # again after bug fix.
2437
+ # Memory size in bytes. TODO(b/342344482) add proto validations again after bug
2438
+ # fix.
2376
2439
  # Corresponds to the JSON property `memorySizeInBytes`
2377
2440
  # @return [Fixnum]
2378
2441
  attr_accessor :memory_size_in_bytes
@@ -2382,8 +2445,8 @@ module Google
2382
2445
  # @return [Fixnum]
2383
2446
  attr_accessor :shard_count
2384
2447
 
2385
- # Optional. The number of vCPUs. TODO(b/342344482, b/342346271) add proto
2386
- # validations again after bug fix.
2448
+ # Optional. The number of vCPUs. TODO(b/342344482) add proto validations again
2449
+ # after bug fix.
2387
2450
  # Corresponds to the JSON property `vcpuCount`
2388
2451
  # @return [Float]
2389
2452
  attr_accessor :vcpu_count
@@ -2992,6 +3055,11 @@ module Google
2992
3055
  # @return [String]
2993
3056
  attr_accessor :network
2994
3057
 
3058
+ # Output only. The port number of the exposed discovery endpoint.
3059
+ # Corresponds to the JSON property `port`
3060
+ # @return [Fixnum]
3061
+ attr_accessor :port
3062
+
2995
3063
  # Optional. Project ID of the consumer project where the forwarding rule is
2996
3064
  # created in.
2997
3065
  # Corresponds to the JSON property `projectId`
@@ -3029,6 +3097,7 @@ module Google
3029
3097
  @connection_type = args[:connection_type] if args.key?(:connection_type)
3030
3098
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
3031
3099
  @network = args[:network] if args.key?(:network)
3100
+ @port = args[:port] if args.key?(:port)
3032
3101
  @project_id = args[:project_id] if args.key?(:project_id)
3033
3102
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
3034
3103
  @psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
@@ -3454,6 +3523,11 @@ module Google
3454
3523
  class UpdateInfo
3455
3524
  include Google::Apis::Core::Hashable
3456
3525
 
3526
+ # Target node type for redis cluster.
3527
+ # Corresponds to the JSON property `targetNodeType`
3528
+ # @return [String]
3529
+ attr_accessor :target_node_type
3530
+
3457
3531
  # Target number of replica nodes per shard.
3458
3532
  # Corresponds to the JSON property `targetReplicaCount`
3459
3533
  # @return [Fixnum]
@@ -3470,6 +3544,7 @@ module Google
3470
3544
 
3471
3545
  # Update properties of this object
3472
3546
  def update!(**args)
3547
+ @target_node_type = args[:target_node_type] if args.key?(:target_node_type)
3473
3548
  @target_replica_count = args[:target_replica_count] if args.key?(:target_replica_count)
3474
3549
  @target_shard_count = args[:target_shard_count] if args.key?(:target_shard_count)
3475
3550
  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.57.0"
19
+ GEM_VERSION = "0.59.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 = "20250303"
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::RedisV1beta1::AutomatedBackupConfig, decorator: Google::Apis::RedisV1beta1::AutomatedBackupConfig::Representation
668
676
 
@@ -688,6 +696,7 @@ module Google
688
696
 
689
697
  property :name, as: 'name'
690
698
  property :node_type, as: 'nodeType'
699
+ property :ondemand_maintenance, as: 'ondemandMaintenance'
691
700
  property :persistence_config, as: 'persistenceConfig', class: Google::Apis::RedisV1beta1::ClusterPersistenceConfig, decorator: Google::Apis::RedisV1beta1::ClusterPersistenceConfig::Representation
692
701
 
693
702
  property :precise_size_gb, as: 'preciseSizeGb'
@@ -863,6 +872,8 @@ module Google
863
872
  collection :entitlements, as: 'entitlements', class: Google::Apis::RedisV1beta1::Entitlement, decorator: Google::Apis::RedisV1beta1::Entitlement::Representation
864
873
 
865
874
  property :expected_state, as: 'expectedState'
875
+ property :gcbdr_configuration, as: 'gcbdrConfiguration', class: Google::Apis::RedisV1beta1::GcbdrConfiguration, decorator: Google::Apis::RedisV1beta1::GcbdrConfiguration::Representation
876
+
866
877
  property :id, as: 'id', class: Google::Apis::RedisV1beta1::DatabaseResourceId, decorator: Google::Apis::RedisV1beta1::DatabaseResourceId::Representation
867
878
 
868
879
  property :instance_type, as: 'instanceType'
@@ -876,6 +887,7 @@ module Google
876
887
 
877
888
  property :resource_container, as: 'resourceContainer'
878
889
  property :resource_name, as: 'resourceName'
890
+ property :suspension_reason, as: 'suspensionReason'
879
891
  property :tags_set, as: 'tagsSet', class: Google::Apis::RedisV1beta1::Tags, decorator: Google::Apis::RedisV1beta1::Tags::Representation
880
892
 
881
893
  property :updation_time, as: 'updationTime'
@@ -962,6 +974,13 @@ module Google
962
974
  end
963
975
  end
964
976
 
977
+ class GcbdrConfiguration
978
+ # @private
979
+ class Representation < Google::Apis::Core::JsonRepresentation
980
+ property :gcbdr_managed, as: 'gcbdrManaged'
981
+ end
982
+ end
983
+
965
984
  class GcsBackupSource
966
985
  # @private
967
986
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1088,6 +1107,7 @@ module Google
1088
1107
 
1089
1108
  property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1beta1::BackupRun, decorator: Google::Apis::RedisV1beta1::BackupRun::Representation
1090
1109
 
1110
+ property :is_deletion_protection_enabled, as: 'isDeletionProtectionEnabled'
1091
1111
  property :product, as: 'product', class: Google::Apis::RedisV1beta1::Product, decorator: Google::Apis::RedisV1beta1::Product::Representation
1092
1112
 
1093
1113
  property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1beta1::DatabaseResourceId, decorator: Google::Apis::RedisV1beta1::DatabaseResourceId::Representation
@@ -1330,6 +1350,7 @@ module Google
1330
1350
  property :connection_type, as: 'connectionType'
1331
1351
  property :forwarding_rule, as: 'forwardingRule'
1332
1352
  property :network, as: 'network'
1353
+ property :port, as: 'port'
1333
1354
  property :project_id, as: 'projectId'
1334
1355
  property :psc_connection_id, as: 'pscConnectionId'
1335
1356
  property :psc_connection_status, as: 'pscConnectionStatus'
@@ -1454,6 +1475,7 @@ module Google
1454
1475
  class UpdateInfo
1455
1476
  # @private
1456
1477
  class Representation < Google::Apis::Core::JsonRepresentation
1478
+ property :target_node_type, as: 'targetNodeType'
1457
1479
  property :target_replica_count, as: 'targetReplicaCount'
1458
1480
  property :target_shard_count, as: 'targetShardCount'
1459
1481
  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::RedisV1beta1::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_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.57.0
4
+ version: 0.59.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-09 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.57.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.59.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-redis_v1beta1
63
63
  rdoc_options: []
64
64
  require_paths:
@@ -74,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  requirements: []
77
- rubygems_version: 3.6.2
77
+ rubygems_version: 3.6.5
78
78
  specification_version: 4
79
79
  summary: Simple REST client for Google Cloud Memorystore for Redis API V1beta1
80
80
  test_files: []