@maxim_mazurok/gapi.client.sqladmin-v1 0.0.20250502 → 0.0.20250510
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 -5
- 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: 20250510
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -235,7 +235,7 @@ declare namespace gapi.client {
|
|
|
235
235
|
interface ConnectionPoolConfig {
|
|
236
236
|
/** Whether managed connection pooling is enabled. */
|
|
237
237
|
connectionPoolingEnabled?: boolean;
|
|
238
|
-
/** Optional. List of connection pool configuration flags */
|
|
238
|
+
/** Optional. List of connection pool configuration flags. */
|
|
239
239
|
flags?: ConnectionPoolFlags[];
|
|
240
240
|
}
|
|
241
241
|
interface ConnectionPoolFlags {
|
|
@@ -722,7 +722,7 @@ declare namespace gapi.client {
|
|
|
722
722
|
queryInsightsEnabled?: boolean;
|
|
723
723
|
/** Number of query execution plans captured by Insights per minute for all queries combined. Default is 5. */
|
|
724
724
|
queryPlansPerMinute?: number;
|
|
725
|
-
/** Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-4500 bytes. Query
|
|
725
|
+
/** Maximum query length stored in bytes. Default value: 1024 bytes. Range: 256-4500 bytes. Query lengths greater than this field value will be truncated to this value. When unset, query length will be the default value. Changing query length will restart the database. */
|
|
726
726
|
queryStringLength?: number;
|
|
727
727
|
/** Whether Query Insights will record application tags from query when enabled. */
|
|
728
728
|
recordApplicationTags?: boolean;
|
|
@@ -1070,11 +1070,11 @@ declare namespace gapi.client {
|
|
|
1070
1070
|
state?: string;
|
|
1071
1071
|
}
|
|
1072
1072
|
interface PscAutoConnectionConfig {
|
|
1073
|
-
/** The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. For example, `projects/project1/global/networks/network1`. The consumer host project of this network might be different from the consumer service project. */
|
|
1073
|
+
/** Optional. The consumer network of this consumer endpoint. This must be a resource path that includes both the host project and the network name. For example, `projects/project1/global/networks/network1`. The consumer host project of this network might be different from the consumer service project. */
|
|
1074
1074
|
consumerNetwork?: string;
|
|
1075
1075
|
/** The connection policy status of the consumer network. */
|
|
1076
1076
|
consumerNetworkStatus?: string;
|
|
1077
|
-
/** This is the project ID of consumer service project of this consumer endpoint. Optional. This is only applicable if consumer_network is a shared vpc network. */
|
|
1077
|
+
/** Optional. This is the project ID of consumer service project of this consumer endpoint. Optional. This is only applicable if consumer_network is a shared vpc network. */
|
|
1078
1078
|
consumerProject?: string;
|
|
1079
1079
|
/** The IP address of the consumer endpoint. */
|
|
1080
1080
|
ipAddress?: string;
|
|
@@ -1084,6 +1084,8 @@ declare namespace gapi.client {
|
|
|
1084
1084
|
interface PscConfig {
|
|
1085
1085
|
/** Optional. The list of consumer projects that are allow-listed for PSC connections to this instance. This instance can be connected to with PSC from any network in these projects. Each consumer project in this list may be represented by a project number (numeric) or by a project id (alphanumeric). */
|
|
1086
1086
|
allowedConsumerProjects?: string[];
|
|
1087
|
+
/** Optional. The network attachment of the consumer network that the Private Service Connect enabled Cloud SQL instance is authorized to connect via PSC interface. format: projects/PROJECT/regions/REGION/networkAttachments/ID */
|
|
1088
|
+
networkAttachmentUri?: string;
|
|
1087
1089
|
/** Optional. The list of settings for requested Private Service Connect consumer endpoints that can be used to connect to this Cloud SQL instance. */
|
|
1088
1090
|
pscAutoConnections?: PscAutoConnectionConfig[];
|
|
1089
1091
|
/** Whether PSC connectivity is enabled for this instance. */
|