google-apis-redis_v1beta1 0.64.0 → 0.66.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: 6a2459fa6e4f288e0751fb576a2a40b5b78e6ee780a7fc81c6006d57efe442e1
4
- data.tar.gz: 2fc1c848d1aace156797a383865940b000f18246bb2404de3eb7a681b5bcf7ed
3
+ metadata.gz: 5ddd5df3ada247f51794920eb67f27a73896ec574b359defdcf24bfc7cd4e4c4
4
+ data.tar.gz: f9ccdb5ba3622c79d8506b3ae18cb7214130fe963623487c30eaf4fe7485ae28
5
5
  SHA512:
6
- metadata.gz: 282aab0ee6dd7cf283bf2e2705359e1a673fe34a7ef2dc8853c0cc30ebe18649130aaad9d6b2401af7b23ad5a72ab0a91ad85387e307104a79df7fe3e764e407
7
- data.tar.gz: b23680e6d4270a5a20401513660fcea3ba16d6d77efbd573561596d4a7fb2c340e0617ceeabf91a35002a3187347df68bf168c6b06b2bf10d6576c614ba9920a
6
+ metadata.gz: b1f7789eca86773320c8e473bd95e137ebad9d9b6143ce17057dec378fbfd1413f1ff094699ab650ef7ea0a2330ca13300ae5cef9f82ee2cbeb33dfdebec928a
7
+ data.tar.gz: c3f90f370da59a55a31ce9fab3a53a2962a5f0c5b2675ad1aaeb01075dba0ca499d255f414a84c7695acf90c9419f6cd97920153baf7e767e39500753441015c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-redis_v1beta1
2
2
 
3
+ ### v0.66.0 (2025-07-27)
4
+
5
+ * Regenerated from discovery document revision 20250718
6
+
7
+ ### v0.65.0 (2025-07-13)
8
+
9
+ * Regenerated from discovery document revision 20250701
10
+
3
11
  ### v0.64.0 (2025-06-22)
4
12
 
5
13
  * Regenerated from discovery document revision 20250617
@@ -347,6 +347,27 @@ module Google
347
347
  end
348
348
  end
349
349
 
350
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
351
+ # database resource.
352
+ class BackupDrConfiguration
353
+ include Google::Apis::Core::Hashable
354
+
355
+ # Indicates if the resource is managed by BackupDR.
356
+ # Corresponds to the JSON property `backupdrManaged`
357
+ # @return [Boolean]
358
+ attr_accessor :backupdr_managed
359
+ alias_method :backupdr_managed?, :backupdr_managed
360
+
361
+ def initialize(**args)
362
+ update!(**args)
363
+ end
364
+
365
+ # Update properties of this object
366
+ def update!(**args)
367
+ @backupdr_managed = args[:backupdr_managed] if args.key?(:backupdr_managed)
368
+ end
369
+ end
370
+
350
371
  # Backup is consisted of multiple backup files.
351
372
  class BackupFile
352
373
  include Google::Apis::Core::Hashable
@@ -465,6 +486,15 @@ module Google
465
486
  class Cluster
466
487
  include Google::Apis::Core::Hashable
467
488
 
489
+ # Optional. Immutable. Allows customers to specify if they are okay with
490
+ # deploying a multi-zone cluster in less than 3 zones. Once set, if there is a
491
+ # zonal outage during the cluster creation, the cluster will only be deployed in
492
+ # 2 zones, and stay within the 2 zones for its lifecycle.
493
+ # Corresponds to the JSON property `allowFewerZonesDeployment`
494
+ # @return [Boolean]
495
+ attr_accessor :allow_fewer_zones_deployment
496
+ alias_method :allow_fewer_zones_deployment?, :allow_fewer_zones_deployment
497
+
468
498
  # Optional. If true, cluster endpoints that are created and registered by
469
499
  # customers can be deleted asynchronously. That is, such a cluster endpoint can
470
500
  # be de-registered before the forwarding rules in the cluster endpoint are
@@ -607,6 +637,18 @@ module Google
607
637
  # @return [Fixnum]
608
638
  attr_accessor :replica_count
609
639
 
640
+ # Optional. Output only. Reserved for future use.
641
+ # Corresponds to the JSON property `satisfiesPzi`
642
+ # @return [Boolean]
643
+ attr_accessor :satisfies_pzi
644
+ alias_method :satisfies_pzi?, :satisfies_pzi
645
+
646
+ # Optional. Output only. Reserved for future use.
647
+ # Corresponds to the JSON property `satisfiesPzs`
648
+ # @return [Boolean]
649
+ attr_accessor :satisfies_pzs
650
+ alias_method :satisfies_pzs?, :satisfies_pzs
651
+
610
652
  # Optional. Number of shards for the Redis cluster.
611
653
  # Corresponds to the JSON property `shardCount`
612
654
  # @return [Fixnum]
@@ -657,6 +699,7 @@ module Google
657
699
 
658
700
  # Update properties of this object
659
701
  def update!(**args)
702
+ @allow_fewer_zones_deployment = args[:allow_fewer_zones_deployment] if args.key?(:allow_fewer_zones_deployment)
660
703
  @async_cluster_endpoints_deletion_enabled = args[:async_cluster_endpoints_deletion_enabled] if args.key?(:async_cluster_endpoints_deletion_enabled)
661
704
  @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
662
705
  @automated_backup_config = args[:automated_backup_config] if args.key?(:automated_backup_config)
@@ -682,6 +725,8 @@ module Google
682
725
  @psc_service_attachments = args[:psc_service_attachments] if args.key?(:psc_service_attachments)
683
726
  @redis_configs = args[:redis_configs] if args.key?(:redis_configs)
684
727
  @replica_count = args[:replica_count] if args.key?(:replica_count)
728
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
729
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
685
730
  @shard_count = args[:shard_count] if args.key?(:shard_count)
686
731
  @simulate_maintenance_event = args[:simulate_maintenance_event] if args.key?(:simulate_maintenance_event)
687
732
  @size_gb = args[:size_gb] if args.key?(:size_gb)
@@ -812,7 +857,7 @@ module Google
812
857
  class ClusterWeeklyMaintenanceWindow
813
858
  include Google::Apis::Core::Hashable
814
859
 
815
- # Allows to define schedule that runs specified day of the week.
860
+ # Optional. Allows to define schedule that runs specified day of the week.
816
861
  # Corresponds to the JSON property `day`
817
862
  # @return [String]
818
863
  attr_accessor :day
@@ -861,6 +906,52 @@ module Google
861
906
  end
862
907
  end
863
908
 
909
+ # Config based signal data. This is used to send signals to Condor which are
910
+ # based on the DB level configurations. These will be used to send signals for
911
+ # self managed databases.
912
+ class ConfigBasedSignalData
913
+ include Google::Apis::Core::Hashable
914
+
915
+ # Required. Full Resource name of the source resource.
916
+ # Corresponds to the JSON property `fullResourceName`
917
+ # @return [String]
918
+ attr_accessor :full_resource_name
919
+
920
+ # Required. Last time signal was refreshed
921
+ # Corresponds to the JSON property `lastRefreshTime`
922
+ # @return [String]
923
+ attr_accessor :last_refresh_time
924
+
925
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
926
+ # Corresponds to the JSON property `resourceId`
927
+ # @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
928
+ attr_accessor :resource_id
929
+
930
+ # Signal data for boolean signals.
931
+ # Corresponds to the JSON property `signalBoolValue`
932
+ # @return [Boolean]
933
+ attr_accessor :signal_bool_value
934
+ alias_method :signal_bool_value?, :signal_bool_value
935
+
936
+ # Required. Signal type of the signal
937
+ # Corresponds to the JSON property `signalType`
938
+ # @return [String]
939
+ attr_accessor :signal_type
940
+
941
+ def initialize(**args)
942
+ update!(**args)
943
+ end
944
+
945
+ # Update properties of this object
946
+ def update!(**args)
947
+ @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
948
+ @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
949
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
950
+ @signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
951
+ @signal_type = args[:signal_type] if args.key?(:signal_type)
952
+ end
953
+ end
954
+
864
955
  # Detailed information of each PSC connection.
865
956
  class ConnectionDetail
866
957
  include Google::Apis::Core::Hashable
@@ -891,7 +982,7 @@ module Google
891
982
  class CrossClusterReplicationConfig
892
983
  include Google::Apis::Core::Hashable
893
984
 
894
- # The role of the cluster in cross cluster replication.
985
+ # Output only. The role of the cluster in cross cluster replication.
895
986
  # Corresponds to the JSON property `clusterRole`
896
987
  # @return [String]
897
988
  attr_accessor :cluster_role
@@ -956,10 +1047,17 @@ module Google
956
1047
  end
957
1048
 
958
1049
  # DatabaseResourceFeed is the top level proto to be used to ingest different
959
- # database resource level events into Condor platform. Next ID: 8
1050
+ # database resource level events into Condor platform. Next ID: 9
960
1051
  class DatabaseResourceFeed
961
1052
  include Google::Apis::Core::Hashable
962
1053
 
1054
+ # Config based signal data. This is used to send signals to Condor which are
1055
+ # based on the DB level configurations. These will be used to send signals for
1056
+ # self managed databases.
1057
+ # Corresponds to the JSON property `configBasedSignalData`
1058
+ # @return [Google::Apis::RedisV1beta1::ConfigBasedSignalData]
1059
+ attr_accessor :config_based_signal_data
1060
+
963
1061
  # Required. Timestamp when feed is generated.
964
1062
  # Corresponds to the JSON property `feedTimestamp`
965
1063
  # @return [String]
@@ -990,7 +1088,7 @@ module Google
990
1088
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceId]
991
1089
  attr_accessor :resource_id
992
1090
 
993
- # Common model for database resource instance metadata. Next ID: 25
1091
+ # Common model for database resource instance metadata. Next ID: 26
994
1092
  # Corresponds to the JSON property `resourceMetadata`
995
1093
  # @return [Google::Apis::RedisV1beta1::DatabaseResourceMetadata]
996
1094
  attr_accessor :resource_metadata
@@ -1001,6 +1099,7 @@ module Google
1001
1099
 
1002
1100
  # Update properties of this object
1003
1101
  def update!(**args)
1102
+ @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
1004
1103
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
1005
1104
  @feed_type = args[:feed_type] if args.key?(:feed_type)
1006
1105
  @observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
@@ -1174,7 +1273,7 @@ module Google
1174
1273
  end
1175
1274
  end
1176
1275
 
1177
- # Common model for database resource instance metadata. Next ID: 25
1276
+ # Common model for database resource instance metadata. Next ID: 26
1178
1277
  class DatabaseResourceMetadata
1179
1278
  include Google::Apis::Core::Hashable
1180
1279
 
@@ -1193,6 +1292,12 @@ module Google
1193
1292
  # @return [Google::Apis::RedisV1beta1::BackupRun]
1194
1293
  attr_accessor :backup_run
1195
1294
 
1295
+ # BackupDRConfiguration to capture the backup and disaster recovery details of
1296
+ # database resource.
1297
+ # Corresponds to the JSON property `backupdrConfiguration`
1298
+ # @return [Google::Apis::RedisV1beta1::BackupDrConfiguration]
1299
+ attr_accessor :backupdr_configuration
1300
+
1196
1301
  # The creation time of the resource, i.e. the time when resource is created and
1197
1302
  # recorded in partner service.
1198
1303
  # Corresponds to the JSON property `creationTime`
@@ -1321,6 +1426,7 @@ module Google
1321
1426
  @availability_configuration = args[:availability_configuration] if args.key?(:availability_configuration)
1322
1427
  @backup_configuration = args[:backup_configuration] if args.key?(:backup_configuration)
1323
1428
  @backup_run = args[:backup_run] if args.key?(:backup_run)
1429
+ @backupdr_configuration = args[:backupdr_configuration] if args.key?(:backupdr_configuration)
1324
1430
  @creation_time = args[:creation_time] if args.key?(:creation_time)
1325
1431
  @current_state = args[:current_state] if args.key?(:current_state)
1326
1432
  @custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
@@ -2939,6 +3045,13 @@ module Google
2939
3045
  # @return [String]
2940
3046
  attr_accessor :engine
2941
3047
 
3048
+ # Minor version of the underlying database engine. Example values: For MySQL, it
3049
+ # could be "8.0.32", "5.7.32" etc.. For Postgres, it could be "14.3", "15.3" etc.
3050
+ # .
3051
+ # Corresponds to the JSON property `minorVersion`
3052
+ # @return [String]
3053
+ attr_accessor :minor_version
3054
+
2942
3055
  # Type of specific database product. It could be CloudSQL, AlloyDB etc..
2943
3056
  # Corresponds to the JSON property `type`
2944
3057
  # @return [String]
@@ -2957,6 +3070,7 @@ module Google
2957
3070
  # Update properties of this object
2958
3071
  def update!(**args)
2959
3072
  @engine = args[:engine] if args.key?(:engine)
3073
+ @minor_version = args[:minor_version] if args.key?(:minor_version)
2960
3074
  @type = args[:type] if args.key?(:type)
2961
3075
  @version = args[:version] if args.key?(:version)
2962
3076
  end
@@ -3214,8 +3328,8 @@ module Google
3214
3328
  class RemoteCluster
3215
3329
  include Google::Apis::Core::Hashable
3216
3330
 
3217
- # The full resource path of the remote cluster in the format: projects//
3218
- # locations//clusters/
3331
+ # Output only. The full resource path of the remote cluster in the format:
3332
+ # projects//locations//clusters/
3219
3333
  # Corresponds to the JSON property `cluster`
3220
3334
  # @return [String]
3221
3335
  attr_accessor :cluster
@@ -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.64.0"
19
+ GEM_VERSION = "0.66.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250617"
25
+ REVISION = "20250718"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class BackupDrConfiguration
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class BackupFile
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -130,6 +136,12 @@ module Google
130
136
  include Google::Apis::Core::JsonObjectSupport
131
137
  end
132
138
 
139
+ class ConfigBasedSignalData
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
133
145
  class ConnectionDetail
134
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
147
 
@@ -631,6 +643,13 @@ module Google
631
643
  end
632
644
  end
633
645
 
646
+ class BackupDrConfiguration
647
+ # @private
648
+ class Representation < Google::Apis::Core::JsonRepresentation
649
+ property :backupdr_managed, as: 'backupdrManaged'
650
+ end
651
+ end
652
+
634
653
  class BackupFile
635
654
  # @private
636
655
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -670,6 +689,7 @@ module Google
670
689
  class Cluster
671
690
  # @private
672
691
  class Representation < Google::Apis::Core::JsonRepresentation
692
+ property :allow_fewer_zones_deployment, as: 'allowFewerZonesDeployment'
673
693
  property :async_cluster_endpoints_deletion_enabled, as: 'asyncClusterEndpointsDeletionEnabled'
674
694
  property :authorization_mode, as: 'authorizationMode'
675
695
  property :automated_backup_config, as: 'automatedBackupConfig', class: Google::Apis::RedisV1beta1::AutomatedBackupConfig, decorator: Google::Apis::RedisV1beta1::AutomatedBackupConfig::Representation
@@ -708,6 +728,8 @@ module Google
708
728
 
709
729
  hash :redis_configs, as: 'redisConfigs'
710
730
  property :replica_count, as: 'replicaCount'
731
+ property :satisfies_pzi, as: 'satisfiesPzi'
732
+ property :satisfies_pzs, as: 'satisfiesPzs'
711
733
  property :shard_count, as: 'shardCount'
712
734
  property :simulate_maintenance_event, as: 'simulateMaintenanceEvent'
713
735
  property :size_gb, as: 'sizeGb'
@@ -775,6 +797,18 @@ module Google
775
797
  end
776
798
  end
777
799
 
800
+ class ConfigBasedSignalData
801
+ # @private
802
+ class Representation < Google::Apis::Core::JsonRepresentation
803
+ property :full_resource_name, as: 'fullResourceName'
804
+ property :last_refresh_time, as: 'lastRefreshTime'
805
+ property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1beta1::DatabaseResourceId, decorator: Google::Apis::RedisV1beta1::DatabaseResourceId::Representation
806
+
807
+ property :signal_bool_value, as: 'signalBoolValue'
808
+ property :signal_type, as: 'signalType'
809
+ end
810
+ end
811
+
778
812
  class ConnectionDetail
779
813
  # @private
780
814
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -810,6 +844,8 @@ module Google
810
844
  class DatabaseResourceFeed
811
845
  # @private
812
846
  class Representation < Google::Apis::Core::JsonRepresentation
847
+ property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::RedisV1beta1::ConfigBasedSignalData, decorator: Google::Apis::RedisV1beta1::ConfigBasedSignalData::Representation
848
+
813
849
  property :feed_timestamp, as: 'feedTimestamp'
814
850
  property :feed_type, as: 'feedType'
815
851
  property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::RedisV1beta1::ObservabilityMetricData, decorator: Google::Apis::RedisV1beta1::ObservabilityMetricData::Representation
@@ -866,6 +902,8 @@ module Google
866
902
 
867
903
  property :backup_run, as: 'backupRun', class: Google::Apis::RedisV1beta1::BackupRun, decorator: Google::Apis::RedisV1beta1::BackupRun::Representation
868
904
 
905
+ property :backupdr_configuration, as: 'backupdrConfiguration', class: Google::Apis::RedisV1beta1::BackupDrConfiguration, decorator: Google::Apis::RedisV1beta1::BackupDrConfiguration::Representation
906
+
869
907
  property :creation_time, as: 'creationTime'
870
908
  property :current_state, as: 'currentState'
871
909
  property :custom_metadata, as: 'customMetadata', class: Google::Apis::RedisV1beta1::CustomMetadataData, decorator: Google::Apis::RedisV1beta1::CustomMetadataData::Representation
@@ -1320,6 +1358,7 @@ module Google
1320
1358
  # @private
1321
1359
  class Representation < Google::Apis::Core::JsonRepresentation
1322
1360
  property :engine, as: 'engine'
1361
+ property :minor_version, as: 'minorVersion'
1323
1362
  property :type, as: 'type'
1324
1363
  property :version, as: 'version'
1325
1364
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.64.0
4
+ version: 0.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1beta1/v0.66.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: