@maxim_mazurok/gapi.client.sqladmin-v1beta4 0.1.20250807 → 0.1.20250904
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.
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://sqladmin.googleapis.com/$discovery/rest?version=v1beta4
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250904
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -514,10 +514,14 @@ declare namespace gapi.client {
|
|
|
514
514
|
autoIamAuthn?: boolean;
|
|
515
515
|
/** Optional. Name of the database on which the statement will be executed. */
|
|
516
516
|
database?: string;
|
|
517
|
+
/** Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The default mode is to throw an error. */
|
|
518
|
+
partialResultMode?: string;
|
|
517
519
|
/** Optional. The maximum number of rows returned per SQL statement. */
|
|
518
520
|
rowLimit?: string;
|
|
519
521
|
/** Required. SQL statements to run on the database. It can be a single statement or a sequence of statements separated by semicolons. */
|
|
520
522
|
sqlStatement?: string;
|
|
523
|
+
/** Optional. The name of an existing database user to connect to the database. When `auto_iam_authn` is set to true, this field is ignored and the API caller's IAM user is used. */
|
|
524
|
+
user?: string;
|
|
521
525
|
}
|
|
522
526
|
interface ExportContext {
|
|
523
527
|
/** Options for exporting BAK files (SQL Server-only) */
|
|
@@ -1317,6 +1321,8 @@ declare namespace gapi.client {
|
|
|
1317
1321
|
minimalTargetSizeGb?: string;
|
|
1318
1322
|
}
|
|
1319
1323
|
interface SqlInstancesGetLatestRecoveryTimeResponse {
|
|
1324
|
+
/** Timestamp, identifies the earliest recovery time of the source instance. */
|
|
1325
|
+
earliestRecoveryTime?: string;
|
|
1320
1326
|
/** This is always `sql#getLatestRecoveryTime`. */
|
|
1321
1327
|
kind?: string;
|
|
1322
1328
|
/** Timestamp, identifies the latest recovery time of the source instance. */
|