google-apis-redis_v1 0.72.0 → 0.73.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: 3f08344d607aff52104f4d2e627596cc20d61ddd51ff754a5097b51f2a50f594
4
- data.tar.gz: a6d38aed2e5528cf6f1622aca197adcc70955e299c9da4bab42f245b2309c609
3
+ metadata.gz: babd04f0850bbc8af09d0f899cdb56ff7d9d68dcbbc5fc7ffeec1305a7dafd66
4
+ data.tar.gz: 9bac6a4e5d28872280579387b7f2b1d630733f153a2acb2e4feaeecad7e4d1da
5
5
  SHA512:
6
- metadata.gz: 173435e22e8da6a4becda3045cf5dcd5a749a02ba3c14c27620f79dbccb74b5f177c5c358dca6023f29b714be71c4be3cc8fb8b6ece5c0a995c16020f541299e
7
- data.tar.gz: a8e9d3f5db3f34c8f09390ee6dd875833b09fc6f9272bf9e95b25f7ff0f5b6db71151e14204e7328ebe4b7b1e5ebd1cc508dabe49e22afb914d7e9fdcf562695
6
+ metadata.gz: 1f5c5bcfa7ca855335f2fd092e26e568323e50e6d88a416417ae4bbfb38677ae6ee84761f13a40e0f533be801bb62081fe29703f775373679ac7d0b8a2708854
7
+ data.tar.gz: f48015162ed015fe4d09f9f691a50fe45cab175df4617764b973bed37088ec2160ff74f995be429e9879aac42820718cf904b6fadabfec4e692311c49222544a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-redis_v1
2
2
 
3
+ ### v0.73.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250701
6
+
3
7
  ### v0.72.0 (2025-06-22)
4
8
 
5
9
  * Regenerated from discovery document revision 20250617
@@ -465,6 +465,15 @@ module Google
465
465
  class Cluster
466
466
  include Google::Apis::Core::Hashable
467
467
 
468
+ # Optional. Immutable. Allows customers to specify if they are okay with
469
+ # deploying a multi-zone cluster in less than 3 zones. Once set, if there is a
470
+ # zonal outage during the cluster creation, the cluster will only be deployed in
471
+ # 2 zones, and stay within the 2 zones for its lifecycle.
472
+ # Corresponds to the JSON property `allowFewerZonesDeployment`
473
+ # @return [Boolean]
474
+ attr_accessor :allow_fewer_zones_deployment
475
+ alias_method :allow_fewer_zones_deployment?, :allow_fewer_zones_deployment
476
+
468
477
  # Optional. If true, cluster endpoints that are created and registered by
469
478
  # customers can be deleted asynchronously. That is, such a cluster endpoint can
470
479
  # be de-registered before the forwarding rules in the cluster endpoint are
@@ -657,6 +666,7 @@ module Google
657
666
 
658
667
  # Update properties of this object
659
668
  def update!(**args)
669
+ @allow_fewer_zones_deployment = args[:allow_fewer_zones_deployment] if args.key?(:allow_fewer_zones_deployment)
660
670
  @async_cluster_endpoints_deletion_enabled = args[:async_cluster_endpoints_deletion_enabled] if args.key?(:async_cluster_endpoints_deletion_enabled)
661
671
  @authorization_mode = args[:authorization_mode] if args.key?(:authorization_mode)
662
672
  @automated_backup_config = args[:automated_backup_config] if args.key?(:automated_backup_config)
@@ -812,7 +822,7 @@ module Google
812
822
  class ClusterWeeklyMaintenanceWindow
813
823
  include Google::Apis::Core::Hashable
814
824
 
815
- # Allows to define schedule that runs specified day of the week.
825
+ # Optional. Allows to define schedule that runs specified day of the week.
816
826
  # Corresponds to the JSON property `day`
817
827
  # @return [String]
818
828
  attr_accessor :day
@@ -861,6 +871,52 @@ module Google
861
871
  end
862
872
  end
863
873
 
874
+ # Config based signal data. This is used to send signals to Condor which are
875
+ # based on the DB level configurations. These will be used to send signals for
876
+ # self managed databases.
877
+ class ConfigBasedSignalData
878
+ include Google::Apis::Core::Hashable
879
+
880
+ # Required. Full Resource name of the source resource.
881
+ # Corresponds to the JSON property `fullResourceName`
882
+ # @return [String]
883
+ attr_accessor :full_resource_name
884
+
885
+ # Required. Last time signal was refreshed
886
+ # Corresponds to the JSON property `lastRefreshTime`
887
+ # @return [String]
888
+ attr_accessor :last_refresh_time
889
+
890
+ # DatabaseResourceId will serve as primary key for any resource ingestion event.
891
+ # Corresponds to the JSON property `resourceId`
892
+ # @return [Google::Apis::RedisV1::DatabaseResourceId]
893
+ attr_accessor :resource_id
894
+
895
+ # Signal data for boolean signals.
896
+ # Corresponds to the JSON property `signalBoolValue`
897
+ # @return [Boolean]
898
+ attr_accessor :signal_bool_value
899
+ alias_method :signal_bool_value?, :signal_bool_value
900
+
901
+ # Required. Signal type of the signal
902
+ # Corresponds to the JSON property `signalType`
903
+ # @return [String]
904
+ attr_accessor :signal_type
905
+
906
+ def initialize(**args)
907
+ update!(**args)
908
+ end
909
+
910
+ # Update properties of this object
911
+ def update!(**args)
912
+ @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
913
+ @last_refresh_time = args[:last_refresh_time] if args.key?(:last_refresh_time)
914
+ @resource_id = args[:resource_id] if args.key?(:resource_id)
915
+ @signal_bool_value = args[:signal_bool_value] if args.key?(:signal_bool_value)
916
+ @signal_type = args[:signal_type] if args.key?(:signal_type)
917
+ end
918
+ end
919
+
864
920
  # Detailed information of each PSC connection.
865
921
  class ConnectionDetail
866
922
  include Google::Apis::Core::Hashable
@@ -891,7 +947,7 @@ module Google
891
947
  class CrossClusterReplicationConfig
892
948
  include Google::Apis::Core::Hashable
893
949
 
894
- # The role of the cluster in cross cluster replication.
950
+ # Output only. The role of the cluster in cross cluster replication.
895
951
  # Corresponds to the JSON property `clusterRole`
896
952
  # @return [String]
897
953
  attr_accessor :cluster_role
@@ -956,10 +1012,17 @@ module Google
956
1012
  end
957
1013
 
958
1014
  # DatabaseResourceFeed is the top level proto to be used to ingest different
959
- # database resource level events into Condor platform. Next ID: 8
1015
+ # database resource level events into Condor platform. Next ID: 9
960
1016
  class DatabaseResourceFeed
961
1017
  include Google::Apis::Core::Hashable
962
1018
 
1019
+ # Config based signal data. This is used to send signals to Condor which are
1020
+ # based on the DB level configurations. These will be used to send signals for
1021
+ # self managed databases.
1022
+ # Corresponds to the JSON property `configBasedSignalData`
1023
+ # @return [Google::Apis::RedisV1::ConfigBasedSignalData]
1024
+ attr_accessor :config_based_signal_data
1025
+
963
1026
  # Required. Timestamp when feed is generated.
964
1027
  # Corresponds to the JSON property `feedTimestamp`
965
1028
  # @return [String]
@@ -1001,6 +1064,7 @@ module Google
1001
1064
 
1002
1065
  # Update properties of this object
1003
1066
  def update!(**args)
1067
+ @config_based_signal_data = args[:config_based_signal_data] if args.key?(:config_based_signal_data)
1004
1068
  @feed_timestamp = args[:feed_timestamp] if args.key?(:feed_timestamp)
1005
1069
  @feed_type = args[:feed_type] if args.key?(:feed_type)
1006
1070
  @observability_metric_data = args[:observability_metric_data] if args.key?(:observability_metric_data)
@@ -2937,6 +3001,13 @@ module Google
2937
3001
  # @return [String]
2938
3002
  attr_accessor :engine
2939
3003
 
3004
+ # Minor version of the underlying database engine. Example values: For MySQL, it
3005
+ # could be "8.0.32", "5.7.32" etc.. For Postgres, it could be "14.3", "15.3" etc.
3006
+ # .
3007
+ # Corresponds to the JSON property `minorVersion`
3008
+ # @return [String]
3009
+ attr_accessor :minor_version
3010
+
2940
3011
  # Type of specific database product. It could be CloudSQL, AlloyDB etc..
2941
3012
  # Corresponds to the JSON property `type`
2942
3013
  # @return [String]
@@ -2955,6 +3026,7 @@ module Google
2955
3026
  # Update properties of this object
2956
3027
  def update!(**args)
2957
3028
  @engine = args[:engine] if args.key?(:engine)
3029
+ @minor_version = args[:minor_version] if args.key?(:minor_version)
2958
3030
  @type = args[:type] if args.key?(:type)
2959
3031
  @version = args[:version] if args.key?(:version)
2960
3032
  end
@@ -3212,8 +3284,8 @@ module Google
3212
3284
  class RemoteCluster
3213
3285
  include Google::Apis::Core::Hashable
3214
3286
 
3215
- # The full resource path of the remote cluster in the format: projects//
3216
- # locations//clusters/
3287
+ # Output only. The full resource path of the remote cluster in the format:
3288
+ # projects//locations//clusters/
3217
3289
  # Corresponds to the JSON property `cluster`
3218
3290
  # @return [String]
3219
3291
  attr_accessor :cluster
@@ -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.72.0"
19
+ GEM_VERSION = "0.73.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 = "20250701"
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 ConfigBasedSignalData
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
133
139
  class ConnectionDetail
134
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
141
 
@@ -670,6 +676,7 @@ module Google
670
676
  class Cluster
671
677
  # @private
672
678
  class Representation < Google::Apis::Core::JsonRepresentation
679
+ property :allow_fewer_zones_deployment, as: 'allowFewerZonesDeployment'
673
680
  property :async_cluster_endpoints_deletion_enabled, as: 'asyncClusterEndpointsDeletionEnabled'
674
681
  property :authorization_mode, as: 'authorizationMode'
675
682
  property :automated_backup_config, as: 'automatedBackupConfig', class: Google::Apis::RedisV1::AutomatedBackupConfig, decorator: Google::Apis::RedisV1::AutomatedBackupConfig::Representation
@@ -775,6 +782,18 @@ module Google
775
782
  end
776
783
  end
777
784
 
785
+ class ConfigBasedSignalData
786
+ # @private
787
+ class Representation < Google::Apis::Core::JsonRepresentation
788
+ property :full_resource_name, as: 'fullResourceName'
789
+ property :last_refresh_time, as: 'lastRefreshTime'
790
+ property :resource_id, as: 'resourceId', class: Google::Apis::RedisV1::DatabaseResourceId, decorator: Google::Apis::RedisV1::DatabaseResourceId::Representation
791
+
792
+ property :signal_bool_value, as: 'signalBoolValue'
793
+ property :signal_type, as: 'signalType'
794
+ end
795
+ end
796
+
778
797
  class ConnectionDetail
779
798
  # @private
780
799
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -810,6 +829,8 @@ module Google
810
829
  class DatabaseResourceFeed
811
830
  # @private
812
831
  class Representation < Google::Apis::Core::JsonRepresentation
832
+ property :config_based_signal_data, as: 'configBasedSignalData', class: Google::Apis::RedisV1::ConfigBasedSignalData, decorator: Google::Apis::RedisV1::ConfigBasedSignalData::Representation
833
+
813
834
  property :feed_timestamp, as: 'feedTimestamp'
814
835
  property :feed_type, as: 'feedType'
815
836
  property :observability_metric_data, as: 'observabilityMetricData', class: Google::Apis::RedisV1::ObservabilityMetricData, decorator: Google::Apis::RedisV1::ObservabilityMetricData::Representation
@@ -1320,6 +1341,7 @@ module Google
1320
1341
  # @private
1321
1342
  class Representation < Google::Apis::Core::JsonRepresentation
1322
1343
  property :engine, as: 'engine'
1344
+ property :minor_version, as: 'minorVersion'
1323
1345
  property :type, as: 'type'
1324
1346
  property :version, as: 'version'
1325
1347
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-redis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.72.0
4
+ version: 0.73.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -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.72.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-redis_v1/v0.73.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: