@maxim_mazurok/gapi.client.sqladmin-v1 0.1.20251111 → 0.1.20260106
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 +25 -3
- 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: 20260106
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -500,11 +500,15 @@ declare namespace gapi.client {
|
|
|
500
500
|
connectionType?: string;
|
|
501
501
|
/** Output only. The scope that the DNS name applies to. */
|
|
502
502
|
dnsScope?: string;
|
|
503
|
-
/** The DNS name. */
|
|
503
|
+
/** Output only. The DNS name. */
|
|
504
504
|
name?: string;
|
|
505
|
+
/** Output only. The manager for this DNS record. */
|
|
506
|
+
recordManager?: string;
|
|
505
507
|
}
|
|
506
508
|
interface Empty {}
|
|
507
509
|
interface ExecuteSqlPayload {
|
|
510
|
+
/** Optional. Specifies the name of the application that is making the request. This field is used for telemetry. Only alphanumeric characters, dashes, and underscores are allowed. The maximum length is 32 characters. */
|
|
511
|
+
application?: string;
|
|
508
512
|
/** Optional. When set to true, the API caller identity associated with the request is used for database authentication. The API caller must be an IAM user in the database. */
|
|
509
513
|
autoIamAuthn?: boolean;
|
|
510
514
|
/** Optional. Name of the database on which the statement will be executed. */
|
|
@@ -750,6 +754,8 @@ declare namespace gapi.client {
|
|
|
750
754
|
uri?: string;
|
|
751
755
|
}
|
|
752
756
|
interface InsightsConfig {
|
|
757
|
+
/** Optional. Whether enhanced query insights feature is enabled. */
|
|
758
|
+
enhancedQueryInsightsEnabled?: boolean;
|
|
753
759
|
/** Whether Query Insights feature is enabled. */
|
|
754
760
|
queryInsightsEnabled?: boolean;
|
|
755
761
|
/** Number of query execution plans captured by Insights per minute for all queries combined. Default is 5. */
|
|
@@ -1090,7 +1096,7 @@ declare namespace gapi.client {
|
|
|
1090
1096
|
disallowCompromisedCredentials?: boolean;
|
|
1091
1097
|
/** Disallow username as a part of the password. */
|
|
1092
1098
|
disallowUsernameSubstring?: boolean;
|
|
1093
|
-
/** Whether the password policy
|
|
1099
|
+
/** Whether to enable the password policy or not. When enabled, passwords must meet complexity requirements. Keep this policy enabled to help prevent unauthorized access. Disabling this policy allows weak passwords. */
|
|
1094
1100
|
enablePasswordPolicy?: boolean;
|
|
1095
1101
|
/** Minimum number of characters allowed. */
|
|
1096
1102
|
minLength?: number;
|
|
@@ -1099,6 +1105,20 @@ declare namespace gapi.client {
|
|
|
1099
1105
|
/** Number of previous passwords that cannot be reused. */
|
|
1100
1106
|
reuseInterval?: number;
|
|
1101
1107
|
}
|
|
1108
|
+
interface PerformanceCaptureConfig {
|
|
1109
|
+
/** Optional. Enable or disable the Performance Capture feature. */
|
|
1110
|
+
enabled?: boolean;
|
|
1111
|
+
/** Optional. The minimum number of consecutive readings above threshold that triggers instance state capture. */
|
|
1112
|
+
probeThreshold?: number;
|
|
1113
|
+
/** Optional. The time interval in seconds between any two probes. */
|
|
1114
|
+
probingIntervalSeconds?: number;
|
|
1115
|
+
/** Optional. The minimum number of server threads running to trigger the capture on primary. */
|
|
1116
|
+
runningThreadsThreshold?: number;
|
|
1117
|
+
/** Optional. The minimum number of seconds replica must be lagging behind primary to trigger capture on replica. */
|
|
1118
|
+
secondsBehindSourceThreshold?: number;
|
|
1119
|
+
/** Optional. The amount of time in seconds that a transaction needs to have been open before the watcher starts recording it. */
|
|
1120
|
+
transactionDurationThreshold?: number;
|
|
1121
|
+
}
|
|
1102
1122
|
interface PerformDiskShrinkContext {
|
|
1103
1123
|
/** The target disk shrink size in GigaBytes. */
|
|
1104
1124
|
targetSizeGb?: string;
|
|
@@ -1328,6 +1348,8 @@ declare namespace gapi.client {
|
|
|
1328
1348
|
maintenanceWindow?: MaintenanceWindow;
|
|
1329
1349
|
/** The local user password validation policy of the instance. */
|
|
1330
1350
|
passwordValidationPolicy?: PasswordValidationPolicy;
|
|
1351
|
+
/** Optional. Configuration for Performance Capture, provides diagnostic metrics during high load situations. */
|
|
1352
|
+
performanceCaptureConfig?: PerformanceCaptureConfig;
|
|
1331
1353
|
/** The pricing plan for this instance. This can be either `PER_USE` or `PACKAGE`. Only `PER_USE` is supported for Second Generation instances. */
|
|
1332
1354
|
pricingPlan?: string;
|
|
1333
1355
|
/** Optional. The read pool auto-scale configuration for the instance. */
|