google-apis-sqladmin_v1 0.81.0 → 0.83.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a8aa25f35d9797894d3a41aef2b235355cc4d5032affcb74c2f6b4a1d8e12e9
|
4
|
+
data.tar.gz: 1048086cbf20c54151248ee27be0114a1afd7deaadac6cdcbefbc335f55dd400
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f051679f2a88d155cbf5db982ba6d4f834eec655fdd17306d6f500a5925497e355950646ad545210b6393dbccfc0c25486fc668accab0164ef2de03776f18f4
|
7
|
+
data.tar.gz: 7c9242b551743af91cdd7fa95785c530c9022d3600ba9da69125047e35e1df130f9ba8bf064b9a8fa2b4482d6957dbc61bd9572a9dc585497ab0a9643d12e522
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-sqladmin_v1
|
2
2
|
|
3
|
+
### v0.83.0 (2025-08-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250807
|
6
|
+
|
7
|
+
### v0.82.0 (2025-06-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250613
|
10
|
+
|
3
11
|
### v0.81.0 (2025-06-08)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250526
|
@@ -782,6 +782,12 @@ module Google
|
|
782
782
|
# @return [String]
|
783
783
|
attr_accessor :preferred_zone
|
784
784
|
|
785
|
+
# The timestamp used to identify the time when the source instance is deleted.
|
786
|
+
# If this instance is deleted, then you must set the timestamp.
|
787
|
+
# Corresponds to the JSON property `sourceInstanceDeletionTime`
|
788
|
+
# @return [String]
|
789
|
+
attr_accessor :source_instance_deletion_time
|
790
|
+
|
785
791
|
def initialize(**args)
|
786
792
|
update!(**args)
|
787
793
|
end
|
@@ -797,6 +803,32 @@ module Google
|
|
797
803
|
@point_in_time = args[:point_in_time] if args.key?(:point_in_time)
|
798
804
|
@preferred_secondary_zone = args[:preferred_secondary_zone] if args.key?(:preferred_secondary_zone)
|
799
805
|
@preferred_zone = args[:preferred_zone] if args.key?(:preferred_zone)
|
806
|
+
@source_instance_deletion_time = args[:source_instance_deletion_time] if args.key?(:source_instance_deletion_time)
|
807
|
+
end
|
808
|
+
end
|
809
|
+
|
810
|
+
# Contains the name and datatype of a column.
|
811
|
+
class Column
|
812
|
+
include Google::Apis::Core::Hashable
|
813
|
+
|
814
|
+
# Name of the column.
|
815
|
+
# Corresponds to the JSON property `name`
|
816
|
+
# @return [String]
|
817
|
+
attr_accessor :name
|
818
|
+
|
819
|
+
# Datatype of the column.
|
820
|
+
# Corresponds to the JSON property `type`
|
821
|
+
# @return [String]
|
822
|
+
attr_accessor :type
|
823
|
+
|
824
|
+
def initialize(**args)
|
825
|
+
update!(**args)
|
826
|
+
end
|
827
|
+
|
828
|
+
# Update properties of this object
|
829
|
+
def update!(**args)
|
830
|
+
@name = args[:name] if args.key?(:name)
|
831
|
+
@type = args[:type] if args.key?(:type)
|
800
832
|
end
|
801
833
|
end
|
802
834
|
|
@@ -886,6 +918,15 @@ module Google
|
|
886
918
|
# @return [String]
|
887
919
|
attr_accessor :kind
|
888
920
|
|
921
|
+
# Optional. Output only. mdx_protocol_support controls how the client uses
|
922
|
+
# metadata exchange when connecting to the instance. The values in the list
|
923
|
+
# representing parts of the MDX protocol that are supported by this instance.
|
924
|
+
# When the list is empty, the instance does not support MDX, so the client must
|
925
|
+
# not send an MDX request. The default is empty.
|
926
|
+
# Corresponds to the JSON property `mdxProtocolSupport`
|
927
|
+
# @return [Array<String>]
|
928
|
+
attr_accessor :mdx_protocol_support
|
929
|
+
|
889
930
|
# The number of read pool nodes in a read pool.
|
890
931
|
# Corresponds to the JSON property `nodeCount`
|
891
932
|
# @return [Fixnum]
|
@@ -932,6 +973,7 @@ module Google
|
|
932
973
|
@dns_names = args[:dns_names] if args.key?(:dns_names)
|
933
974
|
@ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
|
934
975
|
@kind = args[:kind] if args.key?(:kind)
|
976
|
+
@mdx_protocol_support = args[:mdx_protocol_support] if args.key?(:mdx_protocol_support)
|
935
977
|
@node_count = args[:node_count] if args.key?(:node_count)
|
936
978
|
@nodes = args[:nodes] if args.key?(:nodes)
|
937
979
|
@psc_enabled = args[:psc_enabled] if args.key?(:psc_enabled)
|
@@ -956,6 +998,11 @@ module Google
|
|
956
998
|
# @return [Array<Google::Apis::SqladminV1::ConnectionPoolFlags>]
|
957
999
|
attr_accessor :flags
|
958
1000
|
|
1001
|
+
# Output only. Number of connection poolers.
|
1002
|
+
# Corresponds to the JSON property `poolerCount`
|
1003
|
+
# @return [Fixnum]
|
1004
|
+
attr_accessor :pooler_count
|
1005
|
+
|
959
1006
|
def initialize(**args)
|
960
1007
|
update!(**args)
|
961
1008
|
end
|
@@ -964,6 +1011,7 @@ module Google
|
|
964
1011
|
def update!(**args)
|
965
1012
|
@connection_pooling_enabled = args[:connection_pooling_enabled] if args.key?(:connection_pooling_enabled)
|
966
1013
|
@flags = args[:flags] if args.key?(:flags)
|
1014
|
+
@pooler_count = args[:pooler_count] if args.key?(:pooler_count)
|
967
1015
|
end
|
968
1016
|
end
|
969
1017
|
|
@@ -1128,12 +1176,6 @@ module Google
|
|
1128
1176
|
# @return [String]
|
1129
1177
|
attr_accessor :backend_type
|
1130
1178
|
|
1131
|
-
# Clears private network settings when the instance is restored.
|
1132
|
-
# Corresponds to the JSON property `clearNetwork`
|
1133
|
-
# @return [Boolean]
|
1134
|
-
attr_accessor :clear_network
|
1135
|
-
alias_method :clear_network?, :clear_network
|
1136
|
-
|
1137
1179
|
# Connection name of the Cloud SQL instance used in connection strings.
|
1138
1180
|
# Corresponds to the JSON property `connectionName`
|
1139
1181
|
# @return [String]
|
@@ -1280,12 +1322,6 @@ module Google
|
|
1280
1322
|
# @return [Google::Apis::SqladminV1::SqlOutOfDiskReport]
|
1281
1323
|
attr_accessor :out_of_disk_report
|
1282
1324
|
|
1283
|
-
# PITR related fields include enablement settings, archiving settings, and the
|
1284
|
-
# bucket name.
|
1285
|
-
# Corresponds to the JSON property `pitrFields`
|
1286
|
-
# @return [Google::Apis::SqladminV1::PitrFields]
|
1287
|
-
attr_accessor :pitr_fields
|
1288
|
-
|
1289
1325
|
# Output only. DEPRECATED: please use write_endpoint instead.
|
1290
1326
|
# Corresponds to the JSON property `primaryDnsName`
|
1291
1327
|
# @return [String]
|
@@ -1432,7 +1468,6 @@ module Google
|
|
1432
1468
|
def update!(**args)
|
1433
1469
|
@available_maintenance_versions = args[:available_maintenance_versions] if args.key?(:available_maintenance_versions)
|
1434
1470
|
@backend_type = args[:backend_type] if args.key?(:backend_type)
|
1435
|
-
@clear_network = args[:clear_network] if args.key?(:clear_network)
|
1436
1471
|
@connection_name = args[:connection_name] if args.key?(:connection_name)
|
1437
1472
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1438
1473
|
@current_disk_size = args[:current_disk_size] if args.key?(:current_disk_size)
|
@@ -1459,7 +1494,6 @@ module Google
|
|
1459
1494
|
@nodes = args[:nodes] if args.key?(:nodes)
|
1460
1495
|
@on_premises_configuration = args[:on_premises_configuration] if args.key?(:on_premises_configuration)
|
1461
1496
|
@out_of_disk_report = args[:out_of_disk_report] if args.key?(:out_of_disk_report)
|
1462
|
-
@pitr_fields = args[:pitr_fields] if args.key?(:pitr_fields)
|
1463
1497
|
@primary_dns_name = args[:primary_dns_name] if args.key?(:primary_dns_name)
|
1464
1498
|
@project = args[:project] if args.key?(:project)
|
1465
1499
|
@psc_service_attachment_link = args[:psc_service_attachment_link] if args.key?(:psc_service_attachment_link)
|
@@ -1831,6 +1865,47 @@ module Google
|
|
1831
1865
|
end
|
1832
1866
|
end
|
1833
1867
|
|
1868
|
+
# The request payload used to execute SQL statements.
|
1869
|
+
class ExecuteSqlPayload
|
1870
|
+
include Google::Apis::Core::Hashable
|
1871
|
+
|
1872
|
+
# Optional. When set to true, the API caller identity associated with the
|
1873
|
+
# request is used for database authentication. The API caller must be an IAM
|
1874
|
+
# user in the database.
|
1875
|
+
# Corresponds to the JSON property `autoIamAuthn`
|
1876
|
+
# @return [Boolean]
|
1877
|
+
attr_accessor :auto_iam_authn
|
1878
|
+
alias_method :auto_iam_authn?, :auto_iam_authn
|
1879
|
+
|
1880
|
+
# Optional. Name of the database on which the statement will be executed.
|
1881
|
+
# Corresponds to the JSON property `database`
|
1882
|
+
# @return [String]
|
1883
|
+
attr_accessor :database
|
1884
|
+
|
1885
|
+
# Optional. The maximum number of rows returned per SQL statement.
|
1886
|
+
# Corresponds to the JSON property `rowLimit`
|
1887
|
+
# @return [Fixnum]
|
1888
|
+
attr_accessor :row_limit
|
1889
|
+
|
1890
|
+
# Required. SQL statements to run on the database. It can be a single statement
|
1891
|
+
# or a sequence of statements separated by semicolons.
|
1892
|
+
# Corresponds to the JSON property `sqlStatement`
|
1893
|
+
# @return [String]
|
1894
|
+
attr_accessor :sql_statement
|
1895
|
+
|
1896
|
+
def initialize(**args)
|
1897
|
+
update!(**args)
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
# Update properties of this object
|
1901
|
+
def update!(**args)
|
1902
|
+
@auto_iam_authn = args[:auto_iam_authn] if args.key?(:auto_iam_authn)
|
1903
|
+
@database = args[:database] if args.key?(:database)
|
1904
|
+
@row_limit = args[:row_limit] if args.key?(:row_limit)
|
1905
|
+
@sql_statement = args[:sql_statement] if args.key?(:sql_statement)
|
1906
|
+
end
|
1907
|
+
end
|
1908
|
+
|
1834
1909
|
# Database instance export context.
|
1835
1910
|
class ExportContext
|
1836
1911
|
include Google::Apis::Core::Hashable
|
@@ -2218,6 +2293,33 @@ module Google
|
|
2218
2293
|
end
|
2219
2294
|
end
|
2220
2295
|
|
2296
|
+
# Config used to determine the final backup settings for the instance.
|
2297
|
+
class FinalBackupConfig
|
2298
|
+
include Google::Apis::Core::Hashable
|
2299
|
+
|
2300
|
+
# Whether the final backup is enabled for the instance.
|
2301
|
+
# Corresponds to the JSON property `enabled`
|
2302
|
+
# @return [Boolean]
|
2303
|
+
attr_accessor :enabled
|
2304
|
+
alias_method :enabled?, :enabled
|
2305
|
+
|
2306
|
+
# The number of days to retain the final backup after the instance deletion. The
|
2307
|
+
# final backup will be purged at (time_of_instance_deletion + retention_days).
|
2308
|
+
# Corresponds to the JSON property `retentionDays`
|
2309
|
+
# @return [Fixnum]
|
2310
|
+
attr_accessor :retention_days
|
2311
|
+
|
2312
|
+
def initialize(**args)
|
2313
|
+
update!(**args)
|
2314
|
+
end
|
2315
|
+
|
2316
|
+
# Update properties of this object
|
2317
|
+
def update!(**args)
|
2318
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
2319
|
+
@retention_days = args[:retention_days] if args.key?(:retention_days)
|
2320
|
+
end
|
2321
|
+
end
|
2322
|
+
|
2221
2323
|
# A flag resource.
|
2222
2324
|
class Flag
|
2223
2325
|
include Google::Apis::Core::Hashable
|
@@ -3169,6 +3271,13 @@ module Google
|
|
3169
3271
|
# @return [Google::Apis::SqladminV1::RestoreBackupContext]
|
3170
3272
|
attr_accessor :restore_backup_context
|
3171
3273
|
|
3274
|
+
# Optional. This field has the same purpose as restore_instance_settings,
|
3275
|
+
# changes any instance settings stored in the backup you are restoring from.
|
3276
|
+
# With the difference that these fields are cleared in the settings.
|
3277
|
+
# Corresponds to the JSON property `restoreInstanceClearOverridesFieldNames`
|
3278
|
+
# @return [Array<String>]
|
3279
|
+
attr_accessor :restore_instance_clear_overrides_field_names
|
3280
|
+
|
3172
3281
|
# A Cloud SQL instance resource.
|
3173
3282
|
# Corresponds to the JSON property `restoreInstanceSettings`
|
3174
3283
|
# @return [Google::Apis::SqladminV1::DatabaseInstance]
|
@@ -3183,6 +3292,7 @@ module Google
|
|
3183
3292
|
@backup = args[:backup] if args.key?(:backup)
|
3184
3293
|
@backupdr_backup = args[:backupdr_backup] if args.key?(:backupdr_backup)
|
3185
3294
|
@restore_backup_context = args[:restore_backup_context] if args.key?(:restore_backup_context)
|
3295
|
+
@restore_instance_clear_overrides_field_names = args[:restore_instance_clear_overrides_field_names] if args.key?(:restore_instance_clear_overrides_field_names)
|
3186
3296
|
@restore_instance_settings = args[:restore_instance_settings] if args.key?(:restore_instance_settings)
|
3187
3297
|
end
|
3188
3298
|
end
|
@@ -3540,6 +3650,26 @@ module Google
|
|
3540
3650
|
end
|
3541
3651
|
end
|
3542
3652
|
|
3653
|
+
# The additional metadata information regarding the execution of the SQL
|
3654
|
+
# statements.
|
3655
|
+
class Metadata
|
3656
|
+
include Google::Apis::Core::Hashable
|
3657
|
+
|
3658
|
+
# The time taken to execute the SQL statements.
|
3659
|
+
# Corresponds to the JSON property `sqlStatementExecutionTime`
|
3660
|
+
# @return [String]
|
3661
|
+
attr_accessor :sql_statement_execution_time
|
3662
|
+
|
3663
|
+
def initialize(**args)
|
3664
|
+
update!(**args)
|
3665
|
+
end
|
3666
|
+
|
3667
|
+
# Update properties of this object
|
3668
|
+
def update!(**args)
|
3669
|
+
@sql_statement_execution_time = args[:sql_statement_execution_time] if args.key?(:sql_statement_execution_time)
|
3670
|
+
end
|
3671
|
+
end
|
3672
|
+
|
3543
3673
|
# Read-replica configuration specific to MySQL databases.
|
3544
3674
|
class MySqlReplicaConfiguration
|
3545
3675
|
include Google::Apis::Core::Hashable
|
@@ -4009,47 +4139,6 @@ module Google
|
|
4009
4139
|
end
|
4010
4140
|
end
|
4011
4141
|
|
4012
|
-
# PITR related fields include enablement settings, archiving settings, and the
|
4013
|
-
# bucket name.
|
4014
|
-
class PitrFields
|
4015
|
-
include Google::Apis::Core::Hashable
|
4016
|
-
|
4017
|
-
# The enablement setting for PITR for MySQL.
|
4018
|
-
# Corresponds to the JSON property `enableBinLog`
|
4019
|
-
# @return [Boolean]
|
4020
|
-
attr_accessor :enable_bin_log
|
4021
|
-
alias_method :enable_bin_log?, :enable_bin_log
|
4022
|
-
|
4023
|
-
# The enablement setting for PITR for PostgreSQL.
|
4024
|
-
# Corresponds to the JSON property `replicationLogArchivingEnabled`
|
4025
|
-
# @return [Boolean]
|
4026
|
-
attr_accessor :replication_log_archiving_enabled
|
4027
|
-
alias_method :replication_log_archiving_enabled?, :replication_log_archiving_enabled
|
4028
|
-
|
4029
|
-
# The enablement setting for PITR for SQL Server.
|
4030
|
-
# Corresponds to the JSON property `sqlserverPitrEnabled`
|
4031
|
-
# @return [Boolean]
|
4032
|
-
attr_accessor :sqlserver_pitr_enabled
|
4033
|
-
alias_method :sqlserver_pitr_enabled?, :sqlserver_pitr_enabled
|
4034
|
-
|
4035
|
-
# The number of transaction log days to retain for PITR
|
4036
|
-
# Corresponds to the JSON property `transactionLogRetentionDays`
|
4037
|
-
# @return [Fixnum]
|
4038
|
-
attr_accessor :transaction_log_retention_days
|
4039
|
-
|
4040
|
-
def initialize(**args)
|
4041
|
-
update!(**args)
|
4042
|
-
end
|
4043
|
-
|
4044
|
-
# Update properties of this object
|
4045
|
-
def update!(**args)
|
4046
|
-
@enable_bin_log = args[:enable_bin_log] if args.key?(:enable_bin_log)
|
4047
|
-
@replication_log_archiving_enabled = args[:replication_log_archiving_enabled] if args.key?(:replication_log_archiving_enabled)
|
4048
|
-
@sqlserver_pitr_enabled = args[:sqlserver_pitr_enabled] if args.key?(:sqlserver_pitr_enabled)
|
4049
|
-
@transaction_log_retention_days = args[:transaction_log_retention_days] if args.key?(:transaction_log_retention_days)
|
4050
|
-
end
|
4051
|
-
end
|
4052
|
-
|
4053
4142
|
# Read-only password status.
|
4054
4143
|
class PasswordStatus
|
4055
4144
|
include Google::Apis::Core::Hashable
|
@@ -4165,7 +4254,7 @@ module Google
|
|
4165
4254
|
# range. This range must comply with [RFC 1035](https://tools.ietf.org/html/
|
4166
4255
|
# rfc1035) standards. Specifically, the name must be 1-63 characters long and
|
4167
4256
|
# match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?. Reserved for future
|
4168
|
-
# use.
|
4257
|
+
# use.
|
4169
4258
|
# Corresponds to the JSON property `allocatedIpRange`
|
4170
4259
|
# @return [String]
|
4171
4260
|
attr_accessor :allocated_ip_range
|
@@ -4367,6 +4456,45 @@ module Google
|
|
4367
4456
|
end
|
4368
4457
|
end
|
4369
4458
|
|
4459
|
+
# QueryResult contains the result of executing a single SQL statement.
|
4460
|
+
class QueryResult
|
4461
|
+
include Google::Apis::Core::Hashable
|
4462
|
+
|
4463
|
+
# List of columns included in the result. This also includes the data type of
|
4464
|
+
# the column.
|
4465
|
+
# Corresponds to the JSON property `columns`
|
4466
|
+
# @return [Array<Google::Apis::SqladminV1::Column>]
|
4467
|
+
attr_accessor :columns
|
4468
|
+
|
4469
|
+
# Message related to the SQL execution result.
|
4470
|
+
# Corresponds to the JSON property `message`
|
4471
|
+
# @return [String]
|
4472
|
+
attr_accessor :message
|
4473
|
+
|
4474
|
+
# Set to true if the SQL execution's result is truncated due to size limits.
|
4475
|
+
# Corresponds to the JSON property `partialResult`
|
4476
|
+
# @return [Boolean]
|
4477
|
+
attr_accessor :partial_result
|
4478
|
+
alias_method :partial_result?, :partial_result
|
4479
|
+
|
4480
|
+
# Rows returned by the SQL statement.
|
4481
|
+
# Corresponds to the JSON property `rows`
|
4482
|
+
# @return [Array<Google::Apis::SqladminV1::Row>]
|
4483
|
+
attr_accessor :rows
|
4484
|
+
|
4485
|
+
def initialize(**args)
|
4486
|
+
update!(**args)
|
4487
|
+
end
|
4488
|
+
|
4489
|
+
# Update properties of this object
|
4490
|
+
def update!(**args)
|
4491
|
+
@columns = args[:columns] if args.key?(:columns)
|
4492
|
+
@message = args[:message] if args.key?(:message)
|
4493
|
+
@partial_result = args[:partial_result] if args.key?(:partial_result)
|
4494
|
+
@rows = args[:rows] if args.key?(:rows)
|
4495
|
+
end
|
4496
|
+
end
|
4497
|
+
|
4370
4498
|
# Read-replica configuration for connecting to the primary instance.
|
4371
4499
|
class ReplicaConfiguration
|
4372
4500
|
include Google::Apis::Core::Hashable
|
@@ -4576,6 +4704,25 @@ module Google
|
|
4576
4704
|
end
|
4577
4705
|
end
|
4578
4706
|
|
4707
|
+
# Contains the values for a row.
|
4708
|
+
class Row
|
4709
|
+
include Google::Apis::Core::Hashable
|
4710
|
+
|
4711
|
+
# The values for the row.
|
4712
|
+
# Corresponds to the JSON property `values`
|
4713
|
+
# @return [Array<Google::Apis::SqladminV1::Value>]
|
4714
|
+
attr_accessor :values
|
4715
|
+
|
4716
|
+
def initialize(**args)
|
4717
|
+
update!(**args)
|
4718
|
+
end
|
4719
|
+
|
4720
|
+
# Update properties of this object
|
4721
|
+
def update!(**args)
|
4722
|
+
@values = args[:values] if args.key?(:values)
|
4723
|
+
end
|
4724
|
+
end
|
4725
|
+
|
4579
4726
|
# A list of objects that the user selects for replication from an external
|
4580
4727
|
# source instance.
|
4581
4728
|
class SelectedObjects
|
@@ -4741,6 +4888,11 @@ module Google
|
|
4741
4888
|
attr_accessor :enable_google_ml_integration
|
4742
4889
|
alias_method :enable_google_ml_integration?, :enable_google_ml_integration
|
4743
4890
|
|
4891
|
+
# Config used to determine the final backup settings for the instance.
|
4892
|
+
# Corresponds to the JSON property `finalBackupConfig`
|
4893
|
+
# @return [Google::Apis::SqladminV1::FinalBackupConfig]
|
4894
|
+
attr_accessor :final_backup_config
|
4895
|
+
|
4744
4896
|
# Insights configuration. This specifies when Cloud SQL Insights feature is
|
4745
4897
|
# enabled and optional configuration.
|
4746
4898
|
# Corresponds to the JSON property `insightsConfig`
|
@@ -4874,6 +5026,7 @@ module Google
|
|
4874
5026
|
@edition = args[:edition] if args.key?(:edition)
|
4875
5027
|
@enable_dataplex_integration = args[:enable_dataplex_integration] if args.key?(:enable_dataplex_integration)
|
4876
5028
|
@enable_google_ml_integration = args[:enable_google_ml_integration] if args.key?(:enable_google_ml_integration)
|
5029
|
+
@final_backup_config = args[:final_backup_config] if args.key?(:final_backup_config)
|
4877
5030
|
@insights_config = args[:insights_config] if args.key?(:insights_config)
|
4878
5031
|
@ip_configuration = args[:ip_configuration] if args.key?(:ip_configuration)
|
4879
5032
|
@kind = args[:kind] if args.key?(:kind)
|
@@ -4898,6 +5051,17 @@ module Google
|
|
4898
5051
|
class SqlActiveDirectoryConfig
|
4899
5052
|
include Google::Apis::Core::Hashable
|
4900
5053
|
|
5054
|
+
# Optional. The secret manager key storing the administrator credential. (e.g.,
|
5055
|
+
# projects/`project`/secrets/`secret`).
|
5056
|
+
# Corresponds to the JSON property `adminCredentialSecretName`
|
5057
|
+
# @return [String]
|
5058
|
+
attr_accessor :admin_credential_secret_name
|
5059
|
+
|
5060
|
+
# Optional. Domain controller IPv4 addresses used to bootstrap Active Directory.
|
5061
|
+
# Corresponds to the JSON property `dnsServers`
|
5062
|
+
# @return [Array<String>]
|
5063
|
+
attr_accessor :dns_servers
|
5064
|
+
|
4901
5065
|
# The name of the domain (e.g., mydomain.com).
|
4902
5066
|
# Corresponds to the JSON property `domain`
|
4903
5067
|
# @return [String]
|
@@ -4908,14 +5072,29 @@ module Google
|
|
4908
5072
|
# @return [String]
|
4909
5073
|
attr_accessor :kind
|
4910
5074
|
|
5075
|
+
# Optional. The mode of the Active Directory configuration.
|
5076
|
+
# Corresponds to the JSON property `mode`
|
5077
|
+
# @return [String]
|
5078
|
+
attr_accessor :mode
|
5079
|
+
|
5080
|
+
# Optional. The organizational unit distinguished name. This is the full
|
5081
|
+
# hierarchical path to the organizational unit.
|
5082
|
+
# Corresponds to the JSON property `organizationalUnit`
|
5083
|
+
# @return [String]
|
5084
|
+
attr_accessor :organizational_unit
|
5085
|
+
|
4911
5086
|
def initialize(**args)
|
4912
5087
|
update!(**args)
|
4913
5088
|
end
|
4914
5089
|
|
4915
5090
|
# Update properties of this object
|
4916
5091
|
def update!(**args)
|
5092
|
+
@admin_credential_secret_name = args[:admin_credential_secret_name] if args.key?(:admin_credential_secret_name)
|
5093
|
+
@dns_servers = args[:dns_servers] if args.key?(:dns_servers)
|
4917
5094
|
@domain = args[:domain] if args.key?(:domain)
|
4918
5095
|
@kind = args[:kind] if args.key?(:kind)
|
5096
|
+
@mode = args[:mode] if args.key?(:mode)
|
5097
|
+
@organizational_unit = args[:organizational_unit] if args.key?(:organizational_unit)
|
4919
5098
|
end
|
4920
5099
|
end
|
4921
5100
|
|
@@ -4969,6 +5148,32 @@ module Google
|
|
4969
5148
|
end
|
4970
5149
|
end
|
4971
5150
|
|
5151
|
+
# Execute SQL statements response.
|
5152
|
+
class SqlInstancesExecuteSqlResponse
|
5153
|
+
include Google::Apis::Core::Hashable
|
5154
|
+
|
5155
|
+
# The additional metadata information regarding the execution of the SQL
|
5156
|
+
# statements.
|
5157
|
+
# Corresponds to the JSON property `metadata`
|
5158
|
+
# @return [Google::Apis::SqladminV1::Metadata]
|
5159
|
+
attr_accessor :metadata
|
5160
|
+
|
5161
|
+
# The list of results after executing all the SQL statements.
|
5162
|
+
# Corresponds to the JSON property `results`
|
5163
|
+
# @return [Array<Google::Apis::SqladminV1::QueryResult>]
|
5164
|
+
attr_accessor :results
|
5165
|
+
|
5166
|
+
def initialize(**args)
|
5167
|
+
update!(**args)
|
5168
|
+
end
|
5169
|
+
|
5170
|
+
# Update properties of this object
|
5171
|
+
def update!(**args)
|
5172
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
5173
|
+
@results = args[:results] if args.key?(:results)
|
5174
|
+
end
|
5175
|
+
end
|
5176
|
+
|
4972
5177
|
# Instance get disk shrink config response.
|
4973
5178
|
class SqlInstancesGetDiskShrinkConfigResponse
|
4974
5179
|
include Google::Apis::Core::Hashable
|
@@ -5092,6 +5297,15 @@ module Google
|
|
5092
5297
|
# @return [Google::Apis::SqladminV1::MySqlSyncConfig]
|
5093
5298
|
attr_accessor :mysql_sync_config
|
5094
5299
|
|
5300
|
+
# Optional. MySQL only. True if end-user has confirmed that this SES call will
|
5301
|
+
# wipe replica databases overlapping with the proposed selected_objects. If this
|
5302
|
+
# field is not set and there are both overlapping and additional databases
|
5303
|
+
# proposed, an error will be returned.
|
5304
|
+
# Corresponds to the JSON property `replicaOverwriteEnabled`
|
5305
|
+
# @return [Boolean]
|
5306
|
+
attr_accessor :replica_overwrite_enabled
|
5307
|
+
alias_method :replica_overwrite_enabled?, :replica_overwrite_enabled
|
5308
|
+
|
5095
5309
|
# Whether to skip the verification step (VESS).
|
5096
5310
|
# Corresponds to the JSON property `skipVerification`
|
5097
5311
|
# @return [Boolean]
|
@@ -5117,6 +5331,7 @@ module Google
|
|
5117
5331
|
def update!(**args)
|
5118
5332
|
@migration_type = args[:migration_type] if args.key?(:migration_type)
|
5119
5333
|
@mysql_sync_config = args[:mysql_sync_config] if args.key?(:mysql_sync_config)
|
5334
|
+
@replica_overwrite_enabled = args[:replica_overwrite_enabled] if args.key?(:replica_overwrite_enabled)
|
5120
5335
|
@skip_verification = args[:skip_verification] if args.key?(:skip_verification)
|
5121
5336
|
@sync_mode = args[:sync_mode] if args.key?(:sync_mode)
|
5122
5337
|
@sync_parallel_level = args[:sync_parallel_level] if args.key?(:sync_parallel_level)
|
@@ -5879,6 +6094,32 @@ module Google
|
|
5879
6094
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
5880
6095
|
end
|
5881
6096
|
end
|
6097
|
+
|
6098
|
+
# The cell value of the table.
|
6099
|
+
class Value
|
6100
|
+
include Google::Apis::Core::Hashable
|
6101
|
+
|
6102
|
+
# If cell value is null, then this flag will be set to true.
|
6103
|
+
# Corresponds to the JSON property `nullValue`
|
6104
|
+
# @return [Boolean]
|
6105
|
+
attr_accessor :null_value
|
6106
|
+
alias_method :null_value?, :null_value
|
6107
|
+
|
6108
|
+
# The cell value in string format.
|
6109
|
+
# Corresponds to the JSON property `value`
|
6110
|
+
# @return [String]
|
6111
|
+
attr_accessor :value
|
6112
|
+
|
6113
|
+
def initialize(**args)
|
6114
|
+
update!(**args)
|
6115
|
+
end
|
6116
|
+
|
6117
|
+
# Update properties of this object
|
6118
|
+
def update!(**args)
|
6119
|
+
@null_value = args[:null_value] if args.key?(:null_value)
|
6120
|
+
@value = args[:value] if args.key?(:value)
|
6121
|
+
end
|
6122
|
+
end
|
5882
6123
|
end
|
5883
6124
|
end
|
5884
6125
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.83.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 = "
|
25
|
+
REVISION = "20250807"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,6 +106,12 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
+
class Column
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
109
115
|
class ConnectPoolNodeConfig
|
110
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
117
|
|
@@ -220,6 +226,12 @@ module Google
|
|
220
226
|
include Google::Apis::Core::JsonObjectSupport
|
221
227
|
end
|
222
228
|
|
229
|
+
class ExecuteSqlPayload
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
223
235
|
class ExportContext
|
224
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
225
237
|
|
@@ -274,6 +286,12 @@ module Google
|
|
274
286
|
include Google::Apis::Core::JsonObjectSupport
|
275
287
|
end
|
276
288
|
|
289
|
+
class FinalBackupConfig
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
277
295
|
class Flag
|
278
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
297
|
|
@@ -484,6 +502,12 @@ module Google
|
|
484
502
|
include Google::Apis::Core::JsonObjectSupport
|
485
503
|
end
|
486
504
|
|
505
|
+
class Metadata
|
506
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
507
|
+
|
508
|
+
include Google::Apis::Core::JsonObjectSupport
|
509
|
+
end
|
510
|
+
|
487
511
|
class MySqlReplicaConfiguration
|
488
512
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
513
|
|
@@ -532,12 +556,6 @@ module Google
|
|
532
556
|
include Google::Apis::Core::JsonObjectSupport
|
533
557
|
end
|
534
558
|
|
535
|
-
class PitrFields
|
536
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
|
-
|
538
|
-
include Google::Apis::Core::JsonObjectSupport
|
539
|
-
end
|
540
|
-
|
541
559
|
class PasswordStatus
|
542
560
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
543
561
|
|
@@ -580,6 +598,12 @@ module Google
|
|
580
598
|
include Google::Apis::Core::JsonObjectSupport
|
581
599
|
end
|
582
600
|
|
601
|
+
class QueryResult
|
602
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
603
|
+
|
604
|
+
include Google::Apis::Core::JsonObjectSupport
|
605
|
+
end
|
606
|
+
|
583
607
|
class ReplicaConfiguration
|
584
608
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
609
|
|
@@ -616,6 +640,12 @@ module Google
|
|
616
640
|
include Google::Apis::Core::JsonObjectSupport
|
617
641
|
end
|
618
642
|
|
643
|
+
class Row
|
644
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
|
+
|
646
|
+
include Google::Apis::Core::JsonObjectSupport
|
647
|
+
end
|
648
|
+
|
619
649
|
class SelectedObjects
|
620
650
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
651
|
|
@@ -646,6 +676,12 @@ module Google
|
|
646
676
|
include Google::Apis::Core::JsonObjectSupport
|
647
677
|
end
|
648
678
|
|
679
|
+
class SqlInstancesExecuteSqlResponse
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
|
+
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
683
|
+
end
|
684
|
+
|
649
685
|
class SqlInstancesGetDiskShrinkConfigResponse
|
650
686
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
687
|
|
@@ -808,6 +844,12 @@ module Google
|
|
808
844
|
include Google::Apis::Core::JsonObjectSupport
|
809
845
|
end
|
810
846
|
|
847
|
+
class Value
|
848
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
849
|
+
|
850
|
+
include Google::Apis::Core::JsonObjectSupport
|
851
|
+
end
|
852
|
+
|
811
853
|
class AclEntry
|
812
854
|
# @private
|
813
855
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -988,6 +1030,15 @@ module Google
|
|
988
1030
|
property :point_in_time, as: 'pointInTime'
|
989
1031
|
property :preferred_secondary_zone, as: 'preferredSecondaryZone'
|
990
1032
|
property :preferred_zone, as: 'preferredZone'
|
1033
|
+
property :source_instance_deletion_time, as: 'sourceInstanceDeletionTime'
|
1034
|
+
end
|
1035
|
+
end
|
1036
|
+
|
1037
|
+
class Column
|
1038
|
+
# @private
|
1039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1040
|
+
property :name, as: 'name'
|
1041
|
+
property :type, as: 'type'
|
991
1042
|
end
|
992
1043
|
end
|
993
1044
|
|
@@ -1015,6 +1066,7 @@ module Google
|
|
1015
1066
|
collection :ip_addresses, as: 'ipAddresses', class: Google::Apis::SqladminV1::IpMapping, decorator: Google::Apis::SqladminV1::IpMapping::Representation
|
1016
1067
|
|
1017
1068
|
property :kind, as: 'kind'
|
1069
|
+
collection :mdx_protocol_support, as: 'mdxProtocolSupport'
|
1018
1070
|
property :node_count, as: 'nodeCount'
|
1019
1071
|
collection :nodes, as: 'nodes', class: Google::Apis::SqladminV1::ConnectPoolNodeConfig, decorator: Google::Apis::SqladminV1::ConnectPoolNodeConfig::Representation
|
1020
1072
|
|
@@ -1032,6 +1084,7 @@ module Google
|
|
1032
1084
|
property :connection_pooling_enabled, as: 'connectionPoolingEnabled'
|
1033
1085
|
collection :flags, as: 'flags', class: Google::Apis::SqladminV1::ConnectionPoolFlags, decorator: Google::Apis::SqladminV1::ConnectionPoolFlags::Representation
|
1034
1086
|
|
1087
|
+
property :pooler_count, as: 'poolerCount'
|
1035
1088
|
end
|
1036
1089
|
end
|
1037
1090
|
|
@@ -1079,7 +1132,6 @@ module Google
|
|
1079
1132
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1080
1133
|
collection :available_maintenance_versions, as: 'availableMaintenanceVersions'
|
1081
1134
|
property :backend_type, as: 'backendType'
|
1082
|
-
property :clear_network, as: 'clearNetwork'
|
1083
1135
|
property :connection_name, as: 'connectionName'
|
1084
1136
|
property :create_time, as: 'createTime'
|
1085
1137
|
property :current_disk_size, :numeric_string => true, as: 'currentDiskSize'
|
@@ -1115,8 +1167,6 @@ module Google
|
|
1115
1167
|
|
1116
1168
|
property :out_of_disk_report, as: 'outOfDiskReport', class: Google::Apis::SqladminV1::SqlOutOfDiskReport, decorator: Google::Apis::SqladminV1::SqlOutOfDiskReport::Representation
|
1117
1169
|
|
1118
|
-
property :pitr_fields, as: 'pitrFields', class: Google::Apis::SqladminV1::PitrFields, decorator: Google::Apis::SqladminV1::PitrFields::Representation
|
1119
|
-
|
1120
1170
|
property :primary_dns_name, as: 'primaryDnsName'
|
1121
1171
|
property :project, as: 'project'
|
1122
1172
|
property :psc_service_attachment_link, as: 'pscServiceAttachmentLink'
|
@@ -1247,6 +1297,16 @@ module Google
|
|
1247
1297
|
end
|
1248
1298
|
end
|
1249
1299
|
|
1300
|
+
class ExecuteSqlPayload
|
1301
|
+
# @private
|
1302
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1303
|
+
property :auto_iam_authn, as: 'autoIamAuthn'
|
1304
|
+
property :database, as: 'database'
|
1305
|
+
property :row_limit, :numeric_string => true, as: 'rowLimit'
|
1306
|
+
property :sql_statement, as: 'sqlStatement'
|
1307
|
+
end
|
1308
|
+
end
|
1309
|
+
|
1250
1310
|
class ExportContext
|
1251
1311
|
# @private
|
1252
1312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1344,6 +1404,14 @@ module Google
|
|
1344
1404
|
end
|
1345
1405
|
end
|
1346
1406
|
|
1407
|
+
class FinalBackupConfig
|
1408
|
+
# @private
|
1409
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1410
|
+
property :enabled, as: 'enabled'
|
1411
|
+
property :retention_days, as: 'retentionDays'
|
1412
|
+
end
|
1413
|
+
end
|
1414
|
+
|
1347
1415
|
class Flag
|
1348
1416
|
# @private
|
1349
1417
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1610,6 +1678,7 @@ module Google
|
|
1610
1678
|
property :backupdr_backup, as: 'backupdrBackup'
|
1611
1679
|
property :restore_backup_context, as: 'restoreBackupContext', class: Google::Apis::SqladminV1::RestoreBackupContext, decorator: Google::Apis::SqladminV1::RestoreBackupContext::Representation
|
1612
1680
|
|
1681
|
+
collection :restore_instance_clear_overrides_field_names, as: 'restoreInstanceClearOverridesFieldNames'
|
1613
1682
|
property :restore_instance_settings, as: 'restoreInstanceSettings', class: Google::Apis::SqladminV1::DatabaseInstance, decorator: Google::Apis::SqladminV1::DatabaseInstance::Representation
|
1614
1683
|
|
1615
1684
|
end
|
@@ -1706,6 +1775,13 @@ module Google
|
|
1706
1775
|
end
|
1707
1776
|
end
|
1708
1777
|
|
1778
|
+
class Metadata
|
1779
|
+
# @private
|
1780
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1781
|
+
property :sql_statement_execution_time, as: 'sqlStatementExecutionTime'
|
1782
|
+
end
|
1783
|
+
end
|
1784
|
+
|
1709
1785
|
class MySqlReplicaConfiguration
|
1710
1786
|
# @private
|
1711
1787
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1823,16 +1899,6 @@ module Google
|
|
1823
1899
|
end
|
1824
1900
|
end
|
1825
1901
|
|
1826
|
-
class PitrFields
|
1827
|
-
# @private
|
1828
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1829
|
-
property :enable_bin_log, as: 'enableBinLog'
|
1830
|
-
property :replication_log_archiving_enabled, as: 'replicationLogArchivingEnabled'
|
1831
|
-
property :sqlserver_pitr_enabled, as: 'sqlserverPitrEnabled'
|
1832
|
-
property :transaction_log_retention_days, as: 'transactionLogRetentionDays'
|
1833
|
-
end
|
1834
|
-
end
|
1835
|
-
|
1836
1902
|
class PasswordStatus
|
1837
1903
|
# @private
|
1838
1904
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1910,6 +1976,18 @@ module Google
|
|
1910
1976
|
end
|
1911
1977
|
end
|
1912
1978
|
|
1979
|
+
class QueryResult
|
1980
|
+
# @private
|
1981
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1982
|
+
collection :columns, as: 'columns', class: Google::Apis::SqladminV1::Column, decorator: Google::Apis::SqladminV1::Column::Representation
|
1983
|
+
|
1984
|
+
property :message, as: 'message'
|
1985
|
+
property :partial_result, as: 'partialResult'
|
1986
|
+
collection :rows, as: 'rows', class: Google::Apis::SqladminV1::Row, decorator: Google::Apis::SqladminV1::Row::Representation
|
1987
|
+
|
1988
|
+
end
|
1989
|
+
end
|
1990
|
+
|
1913
1991
|
class ReplicaConfiguration
|
1914
1992
|
# @private
|
1915
1993
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1964,6 +2042,14 @@ module Google
|
|
1964
2042
|
end
|
1965
2043
|
end
|
1966
2044
|
|
2045
|
+
class Row
|
2046
|
+
# @private
|
2047
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2048
|
+
collection :values, as: 'values', class: Google::Apis::SqladminV1::Value, decorator: Google::Apis::SqladminV1::Value::Representation
|
2049
|
+
|
2050
|
+
end
|
2051
|
+
end
|
2052
|
+
|
1967
2053
|
class SelectedObjects
|
1968
2054
|
# @private
|
1969
2055
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2003,6 +2089,8 @@ module Google
|
|
2003
2089
|
property :edition, as: 'edition'
|
2004
2090
|
property :enable_dataplex_integration, as: 'enableDataplexIntegration'
|
2005
2091
|
property :enable_google_ml_integration, as: 'enableGoogleMlIntegration'
|
2092
|
+
property :final_backup_config, as: 'finalBackupConfig', class: Google::Apis::SqladminV1::FinalBackupConfig, decorator: Google::Apis::SqladminV1::FinalBackupConfig::Representation
|
2093
|
+
|
2006
2094
|
property :insights_config, as: 'insightsConfig', class: Google::Apis::SqladminV1::InsightsConfig, decorator: Google::Apis::SqladminV1::InsightsConfig::Representation
|
2007
2095
|
|
2008
2096
|
property :ip_configuration, as: 'ipConfiguration', class: Google::Apis::SqladminV1::IpConfiguration, decorator: Google::Apis::SqladminV1::IpConfiguration::Representation
|
@@ -2032,8 +2120,12 @@ module Google
|
|
2032
2120
|
class SqlActiveDirectoryConfig
|
2033
2121
|
# @private
|
2034
2122
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2123
|
+
property :admin_credential_secret_name, as: 'adminCredentialSecretName'
|
2124
|
+
collection :dns_servers, as: 'dnsServers'
|
2035
2125
|
property :domain, as: 'domain'
|
2036
2126
|
property :kind, as: 'kind'
|
2127
|
+
property :mode, as: 'mode'
|
2128
|
+
property :organizational_unit, as: 'organizationalUnit'
|
2037
2129
|
end
|
2038
2130
|
end
|
2039
2131
|
|
@@ -2053,6 +2145,16 @@ module Google
|
|
2053
2145
|
end
|
2054
2146
|
end
|
2055
2147
|
|
2148
|
+
class SqlInstancesExecuteSqlResponse
|
2149
|
+
# @private
|
2150
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2151
|
+
property :metadata, as: 'metadata', class: Google::Apis::SqladminV1::Metadata, decorator: Google::Apis::SqladminV1::Metadata::Representation
|
2152
|
+
|
2153
|
+
collection :results, as: 'results', class: Google::Apis::SqladminV1::QueryResult, decorator: Google::Apis::SqladminV1::QueryResult::Representation
|
2154
|
+
|
2155
|
+
end
|
2156
|
+
end
|
2157
|
+
|
2056
2158
|
class SqlInstancesGetDiskShrinkConfigResponse
|
2057
2159
|
# @private
|
2058
2160
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2097,6 +2199,7 @@ module Google
|
|
2097
2199
|
property :migration_type, as: 'migrationType'
|
2098
2200
|
property :mysql_sync_config, as: 'mysqlSyncConfig', class: Google::Apis::SqladminV1::MySqlSyncConfig, decorator: Google::Apis::SqladminV1::MySqlSyncConfig::Representation
|
2099
2201
|
|
2202
|
+
property :replica_overwrite_enabled, as: 'replicaOverwriteEnabled'
|
2100
2203
|
property :skip_verification, as: 'skipVerification'
|
2101
2204
|
property :sync_mode, as: 'syncMode'
|
2102
2205
|
property :sync_parallel_level, as: 'syncParallelLevel'
|
@@ -2317,6 +2420,14 @@ module Google
|
|
2317
2420
|
property :next_page_token, as: 'nextPageToken'
|
2318
2421
|
end
|
2319
2422
|
end
|
2423
|
+
|
2424
|
+
class Value
|
2425
|
+
# @private
|
2426
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2427
|
+
property :null_value, as: 'nullValue'
|
2428
|
+
property :value, as: 'value'
|
2429
|
+
end
|
2430
|
+
end
|
2320
2431
|
end
|
2321
2432
|
end
|
2322
2433
|
end
|
@@ -1068,6 +1068,42 @@ module Google
|
|
1068
1068
|
execute_or_queue_command(command, &block)
|
1069
1069
|
end
|
1070
1070
|
|
1071
|
+
# Execute SQL statements.
|
1072
|
+
# @param [String] project
|
1073
|
+
# Required. Project ID of the project that contains the instance.
|
1074
|
+
# @param [String] instance
|
1075
|
+
# Required. Database instance ID. This does not include the project ID.
|
1076
|
+
# @param [Google::Apis::SqladminV1::ExecuteSqlPayload] execute_sql_payload_object
|
1077
|
+
# @param [String] fields
|
1078
|
+
# Selector specifying which fields to include in a partial response.
|
1079
|
+
# @param [String] quota_user
|
1080
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1081
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1082
|
+
# @param [Google::Apis::RequestOptions] options
|
1083
|
+
# Request-specific options
|
1084
|
+
#
|
1085
|
+
# @yield [result, err] Result & error if block supplied
|
1086
|
+
# @yieldparam result [Google::Apis::SqladminV1::SqlInstancesExecuteSqlResponse] parsed result object
|
1087
|
+
# @yieldparam err [StandardError] error object if request failed
|
1088
|
+
#
|
1089
|
+
# @return [Google::Apis::SqladminV1::SqlInstancesExecuteSqlResponse]
|
1090
|
+
#
|
1091
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1092
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1093
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1094
|
+
def execute_instance_sql(project, instance, execute_sql_payload_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1095
|
+
command = make_simple_command(:post, 'v1/projects/{project}/instances/{instance}/executeSql', options)
|
1096
|
+
command.request_representation = Google::Apis::SqladminV1::ExecuteSqlPayload::Representation
|
1097
|
+
command.request_object = execute_sql_payload_object
|
1098
|
+
command.response_representation = Google::Apis::SqladminV1::SqlInstancesExecuteSqlResponse::Representation
|
1099
|
+
command.response_class = Google::Apis::SqladminV1::SqlInstancesExecuteSqlResponse
|
1100
|
+
command.params['project'] = project unless project.nil?
|
1101
|
+
command.params['instance'] = instance unless instance.nil?
|
1102
|
+
command.query['fields'] = fields unless fields.nil?
|
1103
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1104
|
+
execute_or_queue_command(command, &block)
|
1105
|
+
end
|
1106
|
+
|
1071
1107
|
# Exports data from a Cloud SQL instance to a Cloud Storage bucket as a SQL dump
|
1072
1108
|
# or CSV file.
|
1073
1109
|
# @param [String] project
|
@@ -1984,6 +2020,9 @@ module Google
|
|
1984
2020
|
# Project ID of the project that contains the instance.
|
1985
2021
|
# @param [String] instance
|
1986
2022
|
# Cloud SQL instance ID. This does not include the project ID.
|
2023
|
+
# @param [String] source_instance_deletion_time
|
2024
|
+
# The timestamp used to identify the time when the source instance is deleted.
|
2025
|
+
# If this instance is deleted, then you must set the timestamp.
|
1987
2026
|
# @param [String] fields
|
1988
2027
|
# Selector specifying which fields to include in a partial response.
|
1989
2028
|
# @param [String] quota_user
|
@@ -2001,12 +2040,13 @@ module Google
|
|
2001
2040
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
2002
2041
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
2003
2042
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
2004
|
-
def get_project_instance_latest_recovery_time(project, instance, fields: nil, quota_user: nil, options: nil, &block)
|
2043
|
+
def get_project_instance_latest_recovery_time(project, instance, source_instance_deletion_time: nil, fields: nil, quota_user: nil, options: nil, &block)
|
2005
2044
|
command = make_simple_command(:get, 'v1/projects/{project}/instances/{instance}/getLatestRecoveryTime', options)
|
2006
2045
|
command.response_representation = Google::Apis::SqladminV1::SqlInstancesGetLatestRecoveryTimeResponse::Representation
|
2007
2046
|
command.response_class = Google::Apis::SqladminV1::SqlInstancesGetLatestRecoveryTimeResponse
|
2008
2047
|
command.params['project'] = project unless project.nil?
|
2009
2048
|
command.params['instance'] = instance unless instance.nil?
|
2049
|
+
command.query['sourceInstanceDeletionTime'] = source_instance_deletion_time unless source_instance_deletion_time.nil?
|
2010
2050
|
command.query['fields'] = fields unless fields.nil?
|
2011
2051
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
2012
2052
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-sqladmin_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.83.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-sqladmin_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1/v0.83.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|