google-apis-sqladmin_v1 0.55.0 → 0.57.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: a2dff1618353323a622628e062b0447d29fb98b05ee88db0149529acdeeebd37
4
- data.tar.gz: 8f9a516a3e2f12691599f004b6497c5a1ea06b9ab745f49da91f90f7ee795558
3
+ metadata.gz: 3bcb28b381631fced4ebf4c2f390e80bf23a261bc39a1587c69354dc8714581e
4
+ data.tar.gz: c440521d9276fe0ee3c90e8bdd8f0c5c3e0fea65aa84bacaa9dc34eface7b016
5
5
  SHA512:
6
- metadata.gz: 966a211ed476993995d064c821498b6800ec4d6bc422b78247fd3b42c6f60edfcb9161a09a5d5e10275a8ff6e56715242d487d80399315323e411dd6d3043b20
7
- data.tar.gz: 849c4d9972baec9b0cdebdd8b07ace0e461fbbabed1a83dfe5e4dfbcf4c5672e19ae170561df91593f78c3a1fd913d5ffa69502b0456e3c30dcdd9568a6ca993
6
+ metadata.gz: c5618aa669d29dfd13540217db055e1db1d7820ec816208fec7d4fc1f015a1ce0cecbf1c79915627cfc1ff173898bca2604971945a6e5b35ba56dda49941819f
7
+ data.tar.gz: 20504be29e7ea2f2a3547b61a69e9cef6db00a6088e2a72da61c94898ea4c0424c53e76e6113b95e5e8e7557db6f04210ca81277aa868d4de65483706aed70be
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-sqladmin_v1
2
2
 
3
+ ### v0.57.0 (2024-03-31)
4
+
5
+ * Regenerated from discovery document revision 20240324
6
+
7
+ ### v0.56.0 (2024-03-24)
8
+
9
+ * Regenerated from discovery document revision 20240317
10
+
3
11
  ### v0.55.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::SqladminV1::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::SqladminV1::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
@@ -1816,6 +1890,11 @@ module Google
1816
1890
  # @return [String]
1817
1891
  attr_accessor :kind
1818
1892
 
1893
+ # Optional. Options for importing data from SQL statements.
1894
+ # Corresponds to the JSON property `sqlImportOptions`
1895
+ # @return [Google::Apis::SqladminV1::ImportContext::SqlImportOptions]
1896
+ attr_accessor :sql_import_options
1897
+
1819
1898
  # Path to the import file in Cloud Storage, in the form `gs://bucketName/
1820
1899
  # fileName`. Compressed gzip files (.gz) are supported when `fileType` is `SQL`.
1821
1900
  # The instance must have write permissions to the bucket and read access to the
@@ -1836,6 +1915,7 @@ module Google
1836
1915
  @file_type = args[:file_type] if args.key?(:file_type)
1837
1916
  @import_user = args[:import_user] if args.key?(:import_user)
1838
1917
  @kind = args[:kind] if args.key?(:kind)
1918
+ @sql_import_options = args[:sql_import_options] if args.key?(:sql_import_options)
1839
1919
  @uri = args[:uri] if args.key?(:uri)
1840
1920
  end
1841
1921
 
@@ -1994,6 +2074,32 @@ module Google
1994
2074
  @table = args[:table] if args.key?(:table)
1995
2075
  end
1996
2076
  end
2077
+
2078
+ # Optional. Options for importing data from SQL statements.
2079
+ class SqlImportOptions
2080
+ include Google::Apis::Core::Hashable
2081
+
2082
+ # Optional. Whether or not the import should be parallel.
2083
+ # Corresponds to the JSON property `parallel`
2084
+ # @return [Boolean]
2085
+ attr_accessor :parallel
2086
+ alias_method :parallel?, :parallel
2087
+
2088
+ # Optional. The number of threads to use for parallel import.
2089
+ # Corresponds to the JSON property `threads`
2090
+ # @return [Fixnum]
2091
+ attr_accessor :threads
2092
+
2093
+ def initialize(**args)
2094
+ update!(**args)
2095
+ end
2096
+
2097
+ # Update properties of this object
2098
+ def update!(**args)
2099
+ @parallel = args[:parallel] if args.key?(:parallel)
2100
+ @threads = args[:threads] if args.key?(:threads)
2101
+ end
2102
+ end
1997
2103
  end
1998
2104
 
1999
2105
  # Insights configuration. This specifies when Cloud SQL Insights feature is
@@ -2407,31 +2513,31 @@ module Google
2407
2513
  # @return [Google::Apis::SqladminV1::PscConfig]
2408
2514
  attr_accessor :psc_config
2409
2515
 
2410
- # Use `ssl_mode` instead for MySQL and PostgreSQL. SQL Server uses this flag.
2411
- # Whether SSL/TLS connections over IP are enforced. If set to false, then allow
2412
- # both non-SSL/non-TLS and SSL/TLS connections. For SSL/TLS connections, the
2413
- # client certificate won't be verified. If set to true, then only allow
2414
- # connections encrypted with SSL/TLS and with valid client certificates. If you
2415
- # want to enforce SSL/TLS without enforcing the requirement for valid client
2416
- # certificates, then use the `ssl_mode` flag instead of the `require_ssl` flag.
2516
+ # Use `ssl_mode` instead. Whether SSL/TLS connections over IP are enforced. If
2517
+ # set to false, then allow both non-SSL/non-TLS and SSL/TLS connections. For SSL/
2518
+ # TLS connections, the client certificate won't be verified. If set to true,
2519
+ # then only allow connections encrypted with SSL/TLS and with valid client
2520
+ # certificates. If you want to enforce SSL/TLS without enforcing the requirement
2521
+ # for valid client certificates, then use the `ssl_mode` flag instead of the `
2522
+ # require_ssl` flag.
2417
2523
  # Corresponds to the JSON property `requireSsl`
2418
2524
  # @return [Boolean]
2419
2525
  attr_accessor :require_ssl
2420
2526
  alias_method :require_ssl?, :require_ssl
2421
2527
 
2422
- # Specify how SSL/TLS is enforced in database connections. MySQL and PostgreSQL
2423
- # use the `ssl_mode` flag. If you must use the `require_ssl` flag for backward
2424
- # compatibility, then only the following value pairs are valid: * `ssl_mode=
2528
+ # Specify how SSL/TLS is enforced in database connections. If you must use the `
2529
+ # require_ssl` flag for backward compatibility, then only the following value
2530
+ # pairs are valid: For PostgreSQL and MySQL: * `ssl_mode=
2425
2531
  # ALLOW_UNENCRYPTED_AND_ENCRYPTED` and `require_ssl=false` * `ssl_mode=
2426
2532
  # ENCRYPTED_ONLY` and `require_ssl=false` * `ssl_mode=
2427
- # TRUSTED_CLIENT_CERTIFICATE_REQUIRED` and `require_ssl=true` The value of `
2428
- # ssl_mode` gets priority over the value of `require_ssl`. For example, for the
2429
- # pair `ssl_mode=ENCRYPTED_ONLY` and `require_ssl=false`, the `ssl_mode=
2430
- # ENCRYPTED_ONLY` means only accept SSL connections, while the `require_ssl=
2431
- # false` means accept both non-SSL and SSL connections. MySQL and PostgreSQL
2432
- # databases respect `ssl_mode` in this case and accept only SSL connections. SQL
2433
- # Server uses the `require_ssl` flag. You can set the value for this flag to `
2434
- # true` or `false`.
2533
+ # TRUSTED_CLIENT_CERTIFICATE_REQUIRED` and `require_ssl=true` For SQL Server: * `
2534
+ # ssl_mode=ALLOW_UNENCRYPTED_AND_ENCRYPTED` and `require_ssl=false` * `ssl_mode=
2535
+ # ENCRYPTED_ONLY` and `require_ssl=true` The value of `ssl_mode` gets priority
2536
+ # over the value of `require_ssl`. For example, for the pair `ssl_mode=
2537
+ # ENCRYPTED_ONLY` and `require_ssl=false`, the `ssl_mode=ENCRYPTED_ONLY` means
2538
+ # only accept SSL connections, while the `require_ssl=false` means accept both
2539
+ # non-SSL and SSL connections. MySQL and PostgreSQL databases respect `ssl_mode`
2540
+ # in this case and accept only SSL connections.
2435
2541
  # Corresponds to the JSON property `sslMode`
2436
2542
  # @return [String]
2437
2543
  attr_accessor :ssl_mode
@@ -3200,6 +3306,37 @@ module Google
3200
3306
  end
3201
3307
  end
3202
3308
 
3309
+ # Primary-DR replica pair
3310
+ class ReplicationCluster
3311
+ include Google::Apis::Core::Hashable
3312
+
3313
+ # Output only. read-only field that indicates if the replica is a dr_replica;
3314
+ # not set for a primary.
3315
+ # Corresponds to the JSON property `drReplica`
3316
+ # @return [Boolean]
3317
+ attr_accessor :dr_replica
3318
+ alias_method :dr_replica?, :dr_replica
3319
+
3320
+ # Optional. If the instance is a primary instance, then this field identifies
3321
+ # the disaster recovery (DR) replica. A DR replica is an optional configuration
3322
+ # for Enterprise Plus edition instances. If the instance is a read replica, then
3323
+ # the field is not set. Users can set this field to set a designated DR replica
3324
+ # for a primary. Removing this field removes the DR replica.
3325
+ # Corresponds to the JSON property `failoverDrReplicaName`
3326
+ # @return [String]
3327
+ attr_accessor :failover_dr_replica_name
3328
+
3329
+ def initialize(**args)
3330
+ update!(**args)
3331
+ end
3332
+
3333
+ # Update properties of this object
3334
+ def update!(**args)
3335
+ @dr_replica = args[:dr_replica] if args.key?(:dr_replica)
3336
+ @failover_dr_replica_name = args[:failover_dr_replica_name] if args.key?(:failover_dr_replica_name)
3337
+ end
3338
+ end
3339
+
3203
3340
  #
3204
3341
  class Reschedule
3205
3342
  include Google::Apis::Core::Hashable
@@ -3402,7 +3539,10 @@ module Google
3402
3539
  # @return [String]
3403
3540
  attr_accessor :edition
3404
3541
 
3405
- # Optional. Configuration to enable Cloud SQL Vertex AI Integration
3542
+ # Optional. When this parameter is set to true, Cloud SQL instances can connect
3543
+ # to Vertex AI to pass requests for real-time predictions and insights to the AI.
3544
+ # The default value is false. This applies only to Cloud SQL for PostgreSQL
3545
+ # instances.
3406
3546
  # Corresponds to the JSON property `enableGoogleMlIntegration`
3407
3547
  # @return [Boolean]
3408
3548
  attr_accessor :enable_google_ml_integration
@@ -3726,6 +3866,12 @@ module Google
3726
3866
  class SqlInstancesStartExternalSyncRequest
3727
3867
  include Google::Apis::Core::Hashable
3728
3868
 
3869
+ # Optional. MigrationType decides if the migration is a physical file based
3870
+ # migration or logical migration.
3871
+ # Corresponds to the JSON property `migrationType`
3872
+ # @return [String]
3873
+ attr_accessor :migration_type
3874
+
3729
3875
  # MySQL-specific external server sync settings.
3730
3876
  # Corresponds to the JSON property `mysqlSyncConfig`
3731
3877
  # @return [Google::Apis::SqladminV1::MySqlSyncConfig]
@@ -3754,6 +3900,7 @@ module Google
3754
3900
 
3755
3901
  # Update properties of this object
3756
3902
  def update!(**args)
3903
+ @migration_type = args[:migration_type] if args.key?(:migration_type)
3757
3904
  @mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
3758
3905
  @skip_verification = args[:skip_verification] if args.key?(:skip_verification)
3759
3906
  @sync_mode = args[:sync_mode] if args.key?(:sync_mode)
@@ -3765,6 +3912,12 @@ module Google
3765
3912
  class SqlInstancesVerifyExternalSyncSettingsRequest
3766
3913
  include Google::Apis::Core::Hashable
3767
3914
 
3915
+ # Optional. MigrationType decides if the migration is a physical file based
3916
+ # migration or logical migration
3917
+ # Corresponds to the JSON property `migrationType`
3918
+ # @return [String]
3919
+ attr_accessor :migration_type
3920
+
3768
3921
  # MySQL-specific external server sync settings.
3769
3922
  # Corresponds to the JSON property `mysqlSyncConfig`
3770
3923
  # @return [Google::Apis::SqladminV1::MySqlSyncConfig]
@@ -3799,6 +3952,7 @@ module Google
3799
3952
 
3800
3953
  # Update properties of this object
3801
3954
  def update!(**args)
3955
+ @migration_type = args[:migration_type] if args.key?(:migration_type)
3802
3956
  @mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
3803
3957
  @sync_mode = args[:sync_mode] if args.key?(:sync_mode)
3804
3958
  @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 SqladminV1
18
18
  # Version of the google-apis-sqladmin_v1 gem
19
- GEM_VERSION = "0.55.0"
19
+ GEM_VERSION = "0.57.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::SqladminV1::DatabaseInstance::FailoverReplica, decorator: Google::Apis::SqladminV1::DatabaseInstance::FailoverReplica::Representation
861
880
 
862
881
  property :gce_zone, as: 'gceZone'
882
+ property :gemini_config, as: 'geminiConfig', class: Google::Apis::SqladminV1::GeminiInstanceConfig, decorator: Google::Apis::SqladminV1::GeminiInstanceConfig::Representation
883
+
863
884
  property :instance_type, as: 'instanceType'
864
885
  collection :ip_addresses, as: 'ipAddresses', class: Google::Apis::SqladminV1::IpMapping, decorator: Google::Apis::SqladminV1::IpMapping::Representation
865
886
 
@@ -880,6 +901,8 @@ module Google
880
901
  property :replica_configuration, as: 'replicaConfiguration', class: Google::Apis::SqladminV1::ReplicaConfiguration, decorator: Google::Apis::SqladminV1::ReplicaConfiguration::Representation
881
902
 
882
903
  collection :replica_names, as: 'replicaNames'
904
+ property :replication_cluster, as: 'replicationCluster', class: Google::Apis::SqladminV1::ReplicationCluster, decorator: Google::Apis::SqladminV1::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::SqladminV1::SqlScheduledMaintenance, decorator: Google::Apis::SqladminV1::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::SqladminV1::ImportContext::SqlImportOptions, decorator: Google::Apis::SqladminV1::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::SqladminV1::MySqlSyncConfig, decorator: Google::Apis::SqladminV1::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::SqladminV1::MySqlSyncConfig, decorator: Google::Apis::SqladminV1::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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.57.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.55.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.57.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
63
63
  post_install_message:
64
64
  rdoc_options: []