google-apis-sqladmin_v1 0.83.0 → 0.84.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: 44c0435ed3349c7a78e1e2ee0831eab507af5e180821060510ff4a4ce2148d4c
|
4
|
+
data.tar.gz: cf63d309200a0e3873913f23b17fdb115e6a31322945f3b27284a1eb27386149
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7951a858c979c48951059343c444810a30b3b303079e306efbc4218d0342bbab78bc4359b006ebbfd8200fee542779bdb60ce9ff8c97f547261df17611462d53
|
7
|
+
data.tar.gz: e8fea62a6db725f0fee45978183e7002222458c80d067e75ec466f139d7be22eee7fe0eca0d4244acbdb3d02d45e77d3c7cd122008f7498f4bee9ae1f49af836
|
data/CHANGELOG.md
CHANGED
@@ -1882,6 +1882,12 @@ module Google
|
|
1882
1882
|
# @return [String]
|
1883
1883
|
attr_accessor :database
|
1884
1884
|
|
1885
|
+
# Optional. Controls how the API should respond when the SQL execution result
|
1886
|
+
# exceeds 10 MB. The default mode is to throw an error.
|
1887
|
+
# Corresponds to the JSON property `partialResultMode`
|
1888
|
+
# @return [String]
|
1889
|
+
attr_accessor :partial_result_mode
|
1890
|
+
|
1885
1891
|
# Optional. The maximum number of rows returned per SQL statement.
|
1886
1892
|
# Corresponds to the JSON property `rowLimit`
|
1887
1893
|
# @return [Fixnum]
|
@@ -1893,6 +1899,13 @@ module Google
|
|
1893
1899
|
# @return [String]
|
1894
1900
|
attr_accessor :sql_statement
|
1895
1901
|
|
1902
|
+
# Optional. The name of an existing database user to connect to the database.
|
1903
|
+
# When `auto_iam_authn` is set to true, this field is ignored and the API caller'
|
1904
|
+
# s IAM user is used.
|
1905
|
+
# Corresponds to the JSON property `user`
|
1906
|
+
# @return [String]
|
1907
|
+
attr_accessor :user
|
1908
|
+
|
1896
1909
|
def initialize(**args)
|
1897
1910
|
update!(**args)
|
1898
1911
|
end
|
@@ -1901,8 +1914,10 @@ module Google
|
|
1901
1914
|
def update!(**args)
|
1902
1915
|
@auto_iam_authn = args[:auto_iam_authn] if args.key?(:auto_iam_authn)
|
1903
1916
|
@database = args[:database] if args.key?(:database)
|
1917
|
+
@partial_result_mode = args[:partial_result_mode] if args.key?(:partial_result_mode)
|
1904
1918
|
@row_limit = args[:row_limit] if args.key?(:row_limit)
|
1905
1919
|
@sql_statement = args[:sql_statement] if args.key?(:sql_statement)
|
1920
|
+
@user = args[:user] if args.key?(:user)
|
1906
1921
|
end
|
1907
1922
|
end
|
1908
1923
|
|
@@ -5209,6 +5224,11 @@ module Google
|
|
5209
5224
|
class SqlInstancesGetLatestRecoveryTimeResponse
|
5210
5225
|
include Google::Apis::Core::Hashable
|
5211
5226
|
|
5227
|
+
# Timestamp, identifies the earliest recovery time of the source instance.
|
5228
|
+
# Corresponds to the JSON property `earliestRecoveryTime`
|
5229
|
+
# @return [String]
|
5230
|
+
attr_accessor :earliest_recovery_time
|
5231
|
+
|
5212
5232
|
# This is always `sql#getLatestRecoveryTime`.
|
5213
5233
|
# Corresponds to the JSON property `kind`
|
5214
5234
|
# @return [String]
|
@@ -5225,6 +5245,7 @@ module Google
|
|
5225
5245
|
|
5226
5246
|
# Update properties of this object
|
5227
5247
|
def update!(**args)
|
5248
|
+
@earliest_recovery_time = args[:earliest_recovery_time] if args.key?(:earliest_recovery_time)
|
5228
5249
|
@kind = args[:kind] if args.key?(:kind)
|
5229
5250
|
@latest_recovery_time = args[:latest_recovery_time] if args.key?(:latest_recovery_time)
|
5230
5251
|
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.84.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 = "20250823"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1302,8 +1302,10 @@ module Google
|
|
1302
1302
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1303
1303
|
property :auto_iam_authn, as: 'autoIamAuthn'
|
1304
1304
|
property :database, as: 'database'
|
1305
|
+
property :partial_result_mode, as: 'partialResultMode'
|
1305
1306
|
property :row_limit, :numeric_string => true, as: 'rowLimit'
|
1306
1307
|
property :sql_statement, as: 'sqlStatement'
|
1308
|
+
property :user, as: 'user'
|
1307
1309
|
end
|
1308
1310
|
end
|
1309
1311
|
|
@@ -2167,6 +2169,7 @@ module Google
|
|
2167
2169
|
class SqlInstancesGetLatestRecoveryTimeResponse
|
2168
2170
|
# @private
|
2169
2171
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2172
|
+
property :earliest_recovery_time, as: 'earliestRecoveryTime'
|
2170
2173
|
property :kind, as: 'kind'
|
2171
2174
|
property :latest_recovery_time, as: 'latestRecoveryTime'
|
2172
2175
|
end
|
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.84.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.84.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:
|