google-apis-sqladmin_v1beta4 0.88.0 → 0.89.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: 74d2e46f2b8edf2edb3dc87227f8721e2394dfa909772ae026eb17158cd06eb2
|
4
|
+
data.tar.gz: d48035103a2197072ba1af3f47b83abcbeb2bd3e943c64ac858e7d29cd28db62
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 181ce10cf6afc8251079f7f291a5dd0e2125903e13481d4fad7c6dc8f6c43352b23cc7c08cde2272de99aece10e1e6cc6e5de124cf73303486a529cb2ab26bab
|
7
|
+
data.tar.gz: 4b9626be2203062744dc6ac45dcd07f4e3abd5dfe2de5b5e00443a72b118b3605a956310588d4e3469a698edf0cace77a17b238059558d03ba5215816aa2d1c3
|
data/CHANGELOG.md
CHANGED
@@ -1880,6 +1880,12 @@ module Google
|
|
1880
1880
|
# @return [String]
|
1881
1881
|
attr_accessor :database
|
1882
1882
|
|
1883
|
+
# Optional. Controls how the API should respond when the SQL execution result
|
1884
|
+
# exceeds 10 MB. The default mode is to throw an error.
|
1885
|
+
# Corresponds to the JSON property `partialResultMode`
|
1886
|
+
# @return [String]
|
1887
|
+
attr_accessor :partial_result_mode
|
1888
|
+
|
1883
1889
|
# Optional. The maximum number of rows returned per SQL statement.
|
1884
1890
|
# Corresponds to the JSON property `rowLimit`
|
1885
1891
|
# @return [Fixnum]
|
@@ -1891,6 +1897,13 @@ module Google
|
|
1891
1897
|
# @return [String]
|
1892
1898
|
attr_accessor :sql_statement
|
1893
1899
|
|
1900
|
+
# Optional. The name of an existing database user to connect to the database.
|
1901
|
+
# When `auto_iam_authn` is set to true, this field is ignored and the API caller'
|
1902
|
+
# s IAM user is used.
|
1903
|
+
# Corresponds to the JSON property `user`
|
1904
|
+
# @return [String]
|
1905
|
+
attr_accessor :user
|
1906
|
+
|
1894
1907
|
def initialize(**args)
|
1895
1908
|
update!(**args)
|
1896
1909
|
end
|
@@ -1899,8 +1912,10 @@ module Google
|
|
1899
1912
|
def update!(**args)
|
1900
1913
|
@auto_iam_authn = args[:auto_iam_authn] if args.key?(:auto_iam_authn)
|
1901
1914
|
@database = args[:database] if args.key?(:database)
|
1915
|
+
@partial_result_mode = args[:partial_result_mode] if args.key?(:partial_result_mode)
|
1902
1916
|
@row_limit = args[:row_limit] if args.key?(:row_limit)
|
1903
1917
|
@sql_statement = args[:sql_statement] if args.key?(:sql_statement)
|
1918
|
+
@user = args[:user] if args.key?(:user)
|
1904
1919
|
end
|
1905
1920
|
end
|
1906
1921
|
|
@@ -5210,6 +5225,11 @@ module Google
|
|
5210
5225
|
class SqlInstancesGetLatestRecoveryTimeResponse
|
5211
5226
|
include Google::Apis::Core::Hashable
|
5212
5227
|
|
5228
|
+
# Timestamp, identifies the earliest recovery time of the source instance.
|
5229
|
+
# Corresponds to the JSON property `earliestRecoveryTime`
|
5230
|
+
# @return [String]
|
5231
|
+
attr_accessor :earliest_recovery_time
|
5232
|
+
|
5213
5233
|
# This is always `sql#getLatestRecoveryTime`.
|
5214
5234
|
# Corresponds to the JSON property `kind`
|
5215
5235
|
# @return [String]
|
@@ -5226,6 +5246,7 @@ module Google
|
|
5226
5246
|
|
5227
5247
|
# Update properties of this object
|
5228
5248
|
def update!(**args)
|
5249
|
+
@earliest_recovery_time = args[:earliest_recovery_time] if args.key?(:earliest_recovery_time)
|
5229
5250
|
@kind = args[:kind] if args.key?(:kind)
|
5230
5251
|
@latest_recovery_time = args[:latest_recovery_time] if args.key?(:latest_recovery_time)
|
5231
5252
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.89.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_v1beta4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.89.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_v1beta4/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-sqladmin_v1beta4/v0.89.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|