google-apis-sqladmin_v1beta4 0.67.0 → 0.69.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6273868748e9d67ddb632e4c3f6e3675e1373a86e72111fad68f3caeade1fd07
4
- data.tar.gz: 34ba134ba4ac903cfb8284af18146372a217987d45fa522ad551275110a2a326
3
+ metadata.gz: fb6b099a75987926998a939edd8e1c313ec1fcf8a4dcc2db429ab65fbc104dab
4
+ data.tar.gz: 58b99dec46ef9c3c6b275f94964b746a2edcfdca95369e15edd493b67b4d8a8a
5
5
  SHA512:
6
- metadata.gz: '08f01eba814e28bdc73835d8531426a0667e66ff830938b5ac8f211c78d25ae1bd6ed7f48b8d6b784286494900dd8283b8bae014308889da2ec0ae101f4281af'
7
- data.tar.gz: 66e83a06cd8b901f1ee2ee97228621a59d04b48e37193ebaf51b73f4a15092614f35b992783befbdfc3db4fbc4d1faf9c4285a30df3e829bd96358eff994cea4
6
+ metadata.gz: eec7acef090b3d6033260fc28cd4245218cb00e573152172299714bd614f34d6b791db37dc51551cf0c9e879b9bcb1bfe9f0691e9bc47c882d5c6df68cd717d6
7
+ data.tar.gz: 1026d3fa6dba9b9971e9acf847952d318f22eed08c8d6fcaf5e0e702bb8e6288c4ab9ccc37c56f1a929ab1f48f0a99dbe69d39cb6f18803755a3ce15259a2ed1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-sqladmin_v1beta4
2
2
 
3
+ ### v0.69.0 (2024-03-31)
4
+
5
+ * Regenerated from discovery document revision 20240324
6
+
7
+ ### v0.68.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240317
10
+
3
11
  ### v0.67.0 (2024-03-10)
4
12
 
5
13
  * Regenerated from discovery document revision 20240304
@@ -206,6 +206,12 @@ module Google
206
206
  # @return [Fixnum]
207
207
  attr_accessor :transaction_log_retention_days
208
208
 
209
+ # Output only. This value contains the storage location of transactional logs
210
+ # for the database for point-in-time recovery.
211
+ # Corresponds to the JSON property `transactionalLogStorageState`
212
+ # @return [String]
213
+ attr_accessor :transactional_log_storage_state
214
+
209
215
  def initialize(**args)
210
216
  update!(**args)
211
217
  end
@@ -221,6 +227,7 @@ module Google
221
227
  @replication_log_archiving_enabled = args[:replication_log_archiving_enabled] if args.key?(:replication_log_archiving_enabled)
222
228
  @start_time = args[:start_time] if args.key?(:start_time)
223
229
  @transaction_log_retention_days = args[:transaction_log_retention_days] if args.key?(:transaction_log_retention_days)
230
+ @transactional_log_storage_state = args[:transactional_log_storage_state] if args.key?(:transactional_log_storage_state)
224
231
  end
225
232
  end
226
233
 
@@ -832,6 +839,11 @@ module Google
832
839
  # @return [String]
833
840
  attr_accessor :gce_zone
834
841
 
842
+ # Gemini configuration.
843
+ # Corresponds to the JSON property `geminiConfig`
844
+ # @return [Google::Apis::SqladminV1beta4::GeminiInstanceConfig]
845
+ attr_accessor :gemini_config
846
+
835
847
  # The instance type.
836
848
  # Corresponds to the JSON property `instanceType`
837
849
  # @return [String]
@@ -917,6 +929,11 @@ module Google
917
929
  # @return [Array<String>]
918
930
  attr_accessor :replica_names
919
931
 
932
+ # Primary-DR replica pair
933
+ # Corresponds to the JSON property `replicationCluster`
934
+ # @return [Google::Apis::SqladminV1beta4::ReplicationCluster]
935
+ attr_accessor :replication_cluster
936
+
920
937
  # Initial root password. Use only on creation. You must set root passwords
921
938
  # before you can connect to PostgreSQL instances.
922
939
  # Corresponds to the JSON property `rootPassword`
@@ -1002,6 +1019,7 @@ module Google
1002
1019
  @etag = args[:etag] if args.key?(:etag)
1003
1020
  @failover_replica = args[:failover_replica] if args.key?(:failover_replica)
1004
1021
  @gce_zone = args[:gce_zone] if args.key?(:gce_zone)
1022
+ @gemini_config = args[:gemini_config] if args.key?(:gemini_config)
1005
1023
  @instance_type = args[:instance_type] if args.key?(:instance_type)
1006
1024
  @ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
1007
1025
  @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
@@ -1018,6 +1036,7 @@ module Google
1018
1036
  @region = args[:region] if args.key?(:region)
1019
1037
  @replica_configuration = args[:replica_configuration] if args.key?(:replica_configuration)
1020
1038
  @replica_names = args[:replica_names] if args.key?(:replica_names)
1039
+ @replication_cluster = args[:replication_cluster] if args.key?(:replication_cluster)
1021
1040
  @root_password = args[:root_password] if args.key?(:root_password)
1022
1041
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1023
1042
  @scheduled_maintenance = args[:scheduled_maintenance] if args.key?(:scheduled_maintenance)
@@ -1722,6 +1741,61 @@ module Google
1722
1741
  end
1723
1742
  end
1724
1743
 
1744
+ # Gemini configuration.
1745
+ class GeminiInstanceConfig
1746
+ include Google::Apis::Core::Hashable
1747
+
1748
+ # Output only. Whether active query is enabled.
1749
+ # Corresponds to the JSON property `activeQueryEnabled`
1750
+ # @return [Boolean]
1751
+ attr_accessor :active_query_enabled
1752
+ alias_method :active_query_enabled?, :active_query_enabled
1753
+
1754
+ # Output only. Whether Gemini is enabled.
1755
+ # Corresponds to the JSON property `entitled`
1756
+ # @return [Boolean]
1757
+ attr_accessor :entitled
1758
+ alias_method :entitled?, :entitled
1759
+
1760
+ # Output only. Whether flag recommender is enabled.
1761
+ # Corresponds to the JSON property `flagRecommenderEnabled`
1762
+ # @return [Boolean]
1763
+ attr_accessor :flag_recommender_enabled
1764
+ alias_method :flag_recommender_enabled?, :flag_recommender_enabled
1765
+
1766
+ # Output only. Whether vacuum management is enabled.
1767
+ # Corresponds to the JSON property `googleVacuumMgmtEnabled`
1768
+ # @return [Boolean]
1769
+ attr_accessor :google_vacuum_mgmt_enabled
1770
+ alias_method :google_vacuum_mgmt_enabled?, :google_vacuum_mgmt_enabled
1771
+
1772
+ # Output only. Whether index advisor is enabled.
1773
+ # Corresponds to the JSON property `indexAdvisorEnabled`
1774
+ # @return [Boolean]
1775
+ attr_accessor :index_advisor_enabled
1776
+ alias_method :index_advisor_enabled?, :index_advisor_enabled
1777
+
1778
+ # Output only. Whether oom session cancel is enabled.
1779
+ # Corresponds to the JSON property `oomSessionCancelEnabled`
1780
+ # @return [Boolean]
1781
+ attr_accessor :oom_session_cancel_enabled
1782
+ alias_method :oom_session_cancel_enabled?, :oom_session_cancel_enabled
1783
+
1784
+ def initialize(**args)
1785
+ update!(**args)
1786
+ end
1787
+
1788
+ # Update properties of this object
1789
+ def update!(**args)
1790
+ @active_query_enabled = args[:active_query_enabled] if args.key?(:active_query_enabled)
1791
+ @entitled = args[:entitled] if args.key?(:entitled)
1792
+ @flag_recommender_enabled = args[:flag_recommender_enabled] if args.key?(:flag_recommender_enabled)
1793
+ @google_vacuum_mgmt_enabled = args[:google_vacuum_mgmt_enabled] if args.key?(:google_vacuum_mgmt_enabled)
1794
+ @index_advisor_enabled = args[:index_advisor_enabled] if args.key?(:index_advisor_enabled)
1795
+ @oom_session_cancel_enabled = args[:oom_session_cancel_enabled] if args.key?(:oom_session_cancel_enabled)
1796
+ end
1797
+ end
1798
+
1725
1799
  # Ephemeral certificate creation request.
1726
1800
  class GenerateEphemeralCertRequest
1727
1801
  include Google::Apis::Core::Hashable
@@ -1817,6 +1891,11 @@ module Google
1817
1891
  # @return [String]
1818
1892
  attr_accessor :kind
1819
1893
 
1894
+ # Optional. Options for importing data from SQL statements.
1895
+ # Corresponds to the JSON property `sqlImportOptions`
1896
+ # @return [Google::Apis::SqladminV1beta4::ImportContext::SqlImportOptions]
1897
+ attr_accessor :sql_import_options
1898
+
1820
1899
  # Path to the import file in Cloud Storage, in the form `gs://bucketName/
1821
1900
  # fileName`. Compressed gzip files (.gz) are supported when `fileType` is `SQL`.
1822
1901
  # The instance must have write permissions to the bucket and read access to the
@@ -1837,6 +1916,7 @@ module Google
1837
1916
  @file_type = args[:file_type] if args.key?(:file_type)
1838
1917
  @import_user = args[:import_user] if args.key?(:import_user)
1839
1918
  @kind = args[:kind] if args.key?(:kind)
1919
+ @sql_import_options = args[:sql_import_options] if args.key?(:sql_import_options)
1840
1920
  @uri = args[:uri] if args.key?(:uri)
1841
1921
  end
1842
1922
 
@@ -1995,6 +2075,32 @@ module Google
1995
2075
  @table = args[:table] if args.key?(:table)
1996
2076
  end
1997
2077
  end
2078
+
2079
+ # Optional. Options for importing data from SQL statements.
2080
+ class SqlImportOptions
2081
+ include Google::Apis::Core::Hashable
2082
+
2083
+ # Optional. Whether or not the import should be parallel.
2084
+ # Corresponds to the JSON property `parallel`
2085
+ # @return [Boolean]
2086
+ attr_accessor :parallel
2087
+ alias_method :parallel?, :parallel
2088
+
2089
+ # Optional. The number of threads to use for parallel import.
2090
+ # Corresponds to the JSON property `threads`
2091
+ # @return [Fixnum]
2092
+ attr_accessor :threads
2093
+
2094
+ def initialize(**args)
2095
+ update!(**args)
2096
+ end
2097
+
2098
+ # Update properties of this object
2099
+ def update!(**args)
2100
+ @parallel = args[:parallel] if args.key?(:parallel)
2101
+ @threads = args[:threads] if args.key?(:threads)
2102
+ end
2103
+ end
1998
2104
  end
1999
2105
 
2000
2106
  # Insights configuration. This specifies when Cloud SQL Insights feature is
@@ -2408,32 +2514,31 @@ module Google
2408
2514
  # @return [Google::Apis::SqladminV1beta4::PscConfig]
2409
2515
  attr_accessor :psc_config
2410
2516
 
2411
- # Use `ssl_mode` instead for MySQL and PostgreSQL. SQL Server uses this flag.
2412
- # Whether SSL/TLS connections over IP are enforced. If set to false, then allow
2413
- # both non-SSL/non-TLS and SSL/TLS connections. For SSL/TLS connections, the
2414
- # client certificate won't be verified. If set to true, then only allow
2415
- # connections encrypted with SSL/TLS and with valid client certificates. If you
2416
- # want to enforce SSL/TLS without enforcing the requirement for valid client
2417
- # certificates, then use the `ssl_mode` flag instead of the legacy `require_ssl`
2418
- # flag.
2517
+ # Use `ssl_mode` instead. Whether SSL/TLS connections over IP are enforced. If
2518
+ # set to false, then allow both non-SSL/non-TLS and SSL/TLS connections. For SSL/
2519
+ # TLS connections, the client certificate won't be verified. If set to true,
2520
+ # then only allow connections encrypted with SSL/TLS and with valid client
2521
+ # certificates. If you want to enforce SSL/TLS without enforcing the requirement
2522
+ # for valid client certificates, then use the `ssl_mode` flag instead of the
2523
+ # legacy `require_ssl` flag.
2419
2524
  # Corresponds to the JSON property `requireSsl`
2420
2525
  # @return [Boolean]
2421
2526
  attr_accessor :require_ssl
2422
2527
  alias_method :require_ssl?, :require_ssl
2423
2528
 
2424
- # Specify how SSL/TLS is enforced in database connections. MySQL and PostgreSQL
2425
- # use the `ssl_mode` flag. If you must use the `require_ssl` flag for backward
2426
- # compatibility, then only the following value pairs are valid: * `ssl_mode=
2529
+ # Specify how SSL/TLS is enforced in database connections. If you must use the `
2530
+ # require_ssl` flag for backward compatibility, then only the following value
2531
+ # pairs are valid: For PostgreSQL and MySQL: * `ssl_mode=
2427
2532
  # ALLOW_UNENCRYPTED_AND_ENCRYPTED` and `require_ssl=false` * `ssl_mode=
2428
2533
  # ENCRYPTED_ONLY` and `require_ssl=false` * `ssl_mode=
2429
- # TRUSTED_CLIENT_CERTIFICATE_REQUIRED` and `require_ssl=true` The value of `
2430
- # ssl_mode` gets priority over the value of `require_ssl`. For example, for the
2431
- # pair `ssl_mode=ENCRYPTED_ONLY` and `require_ssl=false`, the `ssl_mode=
2432
- # ENCRYPTED_ONLY` means only accept SSL connections, while the `require_ssl=
2433
- # false` means accept both non-SSL and SSL connections. MySQL and PostgreSQL
2434
- # databases respect `ssl_mode` in this case and accept only SSL connections. SQL
2435
- # Server uses the `require_ssl` flag. You can set the value for this flag to `
2436
- # true` or `false`.
2534
+ # TRUSTED_CLIENT_CERTIFICATE_REQUIRED` and `require_ssl=true` For SQL Server: * `
2535
+ # ssl_mode=ALLOW_UNENCRYPTED_AND_ENCRYPTED` and `require_ssl=false` * `ssl_mode=
2536
+ # ENCRYPTED_ONLY` and `require_ssl=true` The value of `ssl_mode` gets priority
2537
+ # over the value of `require_ssl`. For example, for the pair `ssl_mode=
2538
+ # ENCRYPTED_ONLY` and `require_ssl=false`, the `ssl_mode=ENCRYPTED_ONLY` means
2539
+ # only accept SSL connections, while the `require_ssl=false` means accept both
2540
+ # non-SSL and SSL connections. MySQL and PostgreSQL databases respect `ssl_mode`
2541
+ # in this case and accept only SSL connections.
2437
2542
  # Corresponds to the JSON property `sslMode`
2438
2543
  # @return [String]
2439
2544
  attr_accessor :ssl_mode
@@ -3202,6 +3307,37 @@ module Google
3202
3307
  end
3203
3308
  end
3204
3309
 
3310
+ # Primary-DR replica pair
3311
+ class ReplicationCluster
3312
+ include Google::Apis::Core::Hashable
3313
+
3314
+ # Output only. read-only field that indicates if the replica is a dr_replica;
3315
+ # not set for a primary.
3316
+ # Corresponds to the JSON property `drReplica`
3317
+ # @return [Boolean]
3318
+ attr_accessor :dr_replica
3319
+ alias_method :dr_replica?, :dr_replica
3320
+
3321
+ # Optional. If the instance is a primary instance, then this field identifies
3322
+ # the disaster recovery (DR) replica. A DR replica is an optional configuration
3323
+ # for Enterprise Plus edition instances. If the instance is a read replica, then
3324
+ # the field is not set. Users can set this field to set a designated DR replica
3325
+ # for a primary. Removing this field removes the DR replica.
3326
+ # Corresponds to the JSON property `failoverDrReplicaName`
3327
+ # @return [String]
3328
+ attr_accessor :failover_dr_replica_name
3329
+
3330
+ def initialize(**args)
3331
+ update!(**args)
3332
+ end
3333
+
3334
+ # Update properties of this object
3335
+ def update!(**args)
3336
+ @dr_replica = args[:dr_replica] if args.key?(:dr_replica)
3337
+ @failover_dr_replica_name = args[:failover_dr_replica_name] if args.key?(:failover_dr_replica_name)
3338
+ end
3339
+ end
3340
+
3205
3341
  #
3206
3342
  class Reschedule
3207
3343
  include Google::Apis::Core::Hashable
@@ -3404,7 +3540,10 @@ module Google
3404
3540
  # @return [String]
3405
3541
  attr_accessor :edition
3406
3542
 
3407
- # Optional. Configuration to enable Cloud SQL Vertex AI Integration
3543
+ # Optional. When this parameter is set to true, Cloud SQL instances can connect
3544
+ # to Vertex AI to pass requests for real-time predictions and insights to the AI.
3545
+ # The default value is false. This applies only to Cloud SQL for PostgreSQL
3546
+ # instances.
3408
3547
  # Corresponds to the JSON property `enableGoogleMlIntegration`
3409
3548
  # @return [Boolean]
3410
3549
  attr_accessor :enable_google_ml_integration
@@ -3728,6 +3867,12 @@ module Google
3728
3867
  class SqlInstancesStartExternalSyncRequest
3729
3868
  include Google::Apis::Core::Hashable
3730
3869
 
3870
+ # Optional. MigrationType decides if the migration is a physical file based
3871
+ # migration or logical migration.
3872
+ # Corresponds to the JSON property `migrationType`
3873
+ # @return [String]
3874
+ attr_accessor :migration_type
3875
+
3731
3876
  # MySQL-specific external server sync settings.
3732
3877
  # Corresponds to the JSON property `mysqlSyncConfig`
3733
3878
  # @return [Google::Apis::SqladminV1beta4::MySqlSyncConfig]
@@ -3756,6 +3901,7 @@ module Google
3756
3901
 
3757
3902
  # Update properties of this object
3758
3903
  def update!(**args)
3904
+ @migration_type = args[:migration_type] if args.key?(:migration_type)
3759
3905
  @mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
3760
3906
  @skip_verification = args[:skip_verification] if args.key?(:skip_verification)
3761
3907
  @sync_mode = args[:sync_mode] if args.key?(:sync_mode)
@@ -3767,6 +3913,12 @@ module Google
3767
3913
  class SqlInstancesVerifyExternalSyncSettingsRequest
3768
3914
  include Google::Apis::Core::Hashable
3769
3915
 
3916
+ # Optional. MigrationType field decides if the migration is a physical file
3917
+ # based migration or logical migration
3918
+ # Corresponds to the JSON property `migrationType`
3919
+ # @return [String]
3920
+ attr_accessor :migration_type
3921
+
3770
3922
  # MySQL-specific external server sync settings.
3771
3923
  # Corresponds to the JSON property `mysqlSyncConfig`
3772
3924
  # @return [Google::Apis::SqladminV1beta4::MySqlSyncConfig]
@@ -3801,6 +3953,7 @@ module Google
3801
3953
 
3802
3954
  # Update properties of this object
3803
3955
  def update!(**args)
3956
+ @migration_type = args[:migration_type] if args.key?(:migration_type)
3804
3957
  @mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
3805
3958
  @sync_mode = args[:sync_mode] if args.key?(:sync_mode)
3806
3959
  @sync_parallel_level = args[:sync_parallel_level] if args.key?(:sync_parallel_level)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SqladminV1beta4
18
18
  # Version of the google-apis-sqladmin_v1beta4 gem
19
- GEM_VERSION = "0.67.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240304"
25
+ REVISION = "20240324"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,12 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class GeminiInstanceConfig
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
235
241
  class GenerateEphemeralCertRequest
236
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
243
 
@@ -264,6 +270,12 @@ module Google
264
270
 
265
271
  include Google::Apis::Core::JsonObjectSupport
266
272
  end
273
+
274
+ class SqlImportOptions
275
+ class Representation < Google::Apis::Core::JsonRepresentation; end
276
+
277
+ include Google::Apis::Core::JsonObjectSupport
278
+ end
267
279
 
268
280
  include Google::Apis::Core::JsonObjectSupport
269
281
  end
@@ -460,6 +472,12 @@ module Google
460
472
  include Google::Apis::Core::JsonObjectSupport
461
473
  end
462
474
 
475
+ class ReplicationCluster
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
463
481
  class Reschedule
464
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
483
 
@@ -707,6 +725,7 @@ module Google
707
725
  property :replication_log_archiving_enabled, as: 'replicationLogArchivingEnabled'
708
726
  property :start_time, as: 'startTime'
709
727
  property :transaction_log_retention_days, as: 'transactionLogRetentionDays'
728
+ property :transactional_log_storage_state, as: 'transactionalLogStorageState'
710
729
  end
711
730
  end
712
731
 
@@ -860,6 +879,8 @@ module Google
860
879
  property :failover_replica, as: 'failoverReplica', class: Google::Apis::SqladminV1beta4::DatabaseInstance::FailoverReplica, decorator: Google::Apis::SqladminV1beta4::DatabaseInstance::FailoverReplica::Representation
861
880
 
862
881
  property :gce_zone, as: 'gceZone'
882
+ property :gemini_config, as: 'geminiConfig', class: Google::Apis::SqladminV1beta4::GeminiInstanceConfig, decorator: Google::Apis::SqladminV1beta4::GeminiInstanceConfig::Representation
883
+
863
884
  property :instance_type, as: 'instanceType'
864
885
  collection :ip_addresses, as: 'ipAddresses', class: Google::Apis::SqladminV1beta4::IpMapping, decorator: Google::Apis::SqladminV1beta4::IpMapping::Representation
865
886
 
@@ -880,6 +901,8 @@ module Google
880
901
  property :replica_configuration, as: 'replicaConfiguration', class: Google::Apis::SqladminV1beta4::ReplicaConfiguration, decorator: Google::Apis::SqladminV1beta4::ReplicaConfiguration::Representation
881
902
 
882
903
  collection :replica_names, as: 'replicaNames'
904
+ property :replication_cluster, as: 'replicationCluster', class: Google::Apis::SqladminV1beta4::ReplicationCluster, decorator: Google::Apis::SqladminV1beta4::ReplicationCluster::Representation
905
+
883
906
  property :root_password, as: 'rootPassword'
884
907
  property :satisfies_pzs, as: 'satisfiesPzs'
885
908
  property :scheduled_maintenance, as: 'scheduledMaintenance', class: Google::Apis::SqladminV1beta4::SqlScheduledMaintenance, decorator: Google::Apis::SqladminV1beta4::SqlScheduledMaintenance::Representation
@@ -1078,6 +1101,18 @@ module Google
1078
1101
  end
1079
1102
  end
1080
1103
 
1104
+ class GeminiInstanceConfig
1105
+ # @private
1106
+ class Representation < Google::Apis::Core::JsonRepresentation
1107
+ property :active_query_enabled, as: 'activeQueryEnabled'
1108
+ property :entitled, as: 'entitled'
1109
+ property :flag_recommender_enabled, as: 'flagRecommenderEnabled'
1110
+ property :google_vacuum_mgmt_enabled, as: 'googleVacuumMgmtEnabled'
1111
+ property :index_advisor_enabled, as: 'indexAdvisorEnabled'
1112
+ property :oom_session_cancel_enabled, as: 'oomSessionCancelEnabled'
1113
+ end
1114
+ end
1115
+
1081
1116
  class GenerateEphemeralCertRequest
1082
1117
  # @private
1083
1118
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1107,6 +1142,8 @@ module Google
1107
1142
  property :file_type, as: 'fileType'
1108
1143
  property :import_user, as: 'importUser'
1109
1144
  property :kind, as: 'kind'
1145
+ property :sql_import_options, as: 'sqlImportOptions', class: Google::Apis::SqladminV1beta4::ImportContext::SqlImportOptions, decorator: Google::Apis::SqladminV1beta4::ImportContext::SqlImportOptions::Representation
1146
+
1110
1147
  property :uri, as: 'uri'
1111
1148
  end
1112
1149
 
@@ -1144,6 +1181,14 @@ module Google
1144
1181
  property :table, as: 'table'
1145
1182
  end
1146
1183
  end
1184
+
1185
+ class SqlImportOptions
1186
+ # @private
1187
+ class Representation < Google::Apis::Core::JsonRepresentation
1188
+ property :parallel, as: 'parallel'
1189
+ property :threads, as: 'threads'
1190
+ end
1191
+ end
1147
1192
  end
1148
1193
 
1149
1194
  class InsightsConfig
@@ -1480,6 +1525,14 @@ module Google
1480
1525
  end
1481
1526
  end
1482
1527
 
1528
+ class ReplicationCluster
1529
+ # @private
1530
+ class Representation < Google::Apis::Core::JsonRepresentation
1531
+ property :dr_replica, as: 'drReplica'
1532
+ property :failover_dr_replica_name, as: 'failoverDrReplicaName'
1533
+ end
1534
+ end
1535
+
1483
1536
  class Reschedule
1484
1537
  # @private
1485
1538
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1622,6 +1675,7 @@ module Google
1622
1675
  class SqlInstancesStartExternalSyncRequest
1623
1676
  # @private
1624
1677
  class Representation < Google::Apis::Core::JsonRepresentation
1678
+ property :migration_type, as: 'migrationType'
1625
1679
  property :mysql_sync_config, as: 'mysqlSyncConfig', class: Google::Apis::SqladminV1beta4::MySqlSyncConfig, decorator: Google::Apis::SqladminV1beta4::MySqlSyncConfig::Representation
1626
1680
 
1627
1681
  property :skip_verification, as: 'skipVerification'
@@ -1633,6 +1687,7 @@ module Google
1633
1687
  class SqlInstancesVerifyExternalSyncSettingsRequest
1634
1688
  # @private
1635
1689
  class Representation < Google::Apis::Core::JsonRepresentation
1690
+ property :migration_type, as: 'migrationType'
1636
1691
  property :mysql_sync_config, as: 'mysqlSyncConfig', class: Google::Apis::SqladminV1beta4::MySqlSyncConfig, decorator: Google::Apis::SqladminV1beta4::MySqlSyncConfig::Representation
1637
1692
 
1638
1693
  property :sync_mode, as: 'syncMode'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-sqladmin_v1beta4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.69.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: 2024-03-10 00:00:00.000000000 Z
11
+ date: 2024-03-31 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/main/generated/google-apis-sqladmin_v1beta4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.67.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.69.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
63
63
  post_install_message:
64
64
  rdoc_options: []