@maxim_mazurok/gapi.client.sqladmin-v1 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250904
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -509,10 +509,14 @@ declare namespace gapi.client {
|
|
|
509
509
|
autoIamAuthn?: boolean;
|
|
510
510
|
/** Optional. Name of the database on which the statement will be executed. */
|
|
511
511
|
database?: string;
|
|
512
|
+
/** Optional. Controls how the API should respond when the SQL execution result exceeds 10 MB. The default mode is to throw an error. */
|
|
513
|
+
partialResultMode?: string;
|
|
512
514
|
/** Optional. The maximum number of rows returned per SQL statement. */
|
|
513
515
|
rowLimit?: string;
|
|
514
516
|
/** Required. SQL statements to run on the database. It can be a single statement or a sequence of statements separated by semicolons. */
|
|
515
517
|
sqlStatement?: string;
|
|
518
|
+
/** 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. */
|
|
519
|
+
user?: string;
|
|
516
520
|
}
|
|
517
521
|
interface ExportContext {
|
|
518
522
|
/** Options for exporting BAK files (SQL Server-only) */
|
|
@@ -1312,6 +1316,8 @@ declare namespace gapi.client {
|
|
|
1312
1316
|
minimalTargetSizeGb?: string;
|
|
1313
1317
|
}
|
|
1314
1318
|
interface SqlInstancesGetLatestRecoveryTimeResponse {
|
|
1319
|
+
/** Timestamp, identifies the earliest recovery time of the source instance. */
|
|
1320
|
+
earliestRecoveryTime?: string;
|
|
1315
1321
|
/** This is always `sql#getLatestRecoveryTime`. */
|
|
1316
1322
|
kind?: string;
|
|
1317
1323
|
/** Timestamp, identifies the latest recovery time of the source instance. */
|