@maxim_mazurok/gapi.client.connectors-v1 0.0.20240708 → 0.0.20240729
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 +27 -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://connectors.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240729
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -138,6 +138,8 @@ declare namespace gapi.client {
|
|
|
138
138
|
valueType?: string;
|
|
139
139
|
}
|
|
140
140
|
interface Connection {
|
|
141
|
+
/** Optional. Async operations enabled for the connection. If Async Operations is enabled, Connection allows the customers to initiate async long running operations using the actions API. */
|
|
142
|
+
asyncOperationsEnabled?: boolean;
|
|
141
143
|
/** Optional. Configuration for establishing the connection's authentication with an external system. */
|
|
142
144
|
authConfig?: AuthConfig;
|
|
143
145
|
/** Output only. Billing config for the connection. */
|
|
@@ -258,6 +260,10 @@ declare namespace gapi.client {
|
|
|
258
260
|
hpaConfig?: HPAConfig;
|
|
259
261
|
/** Max QPS supported for internal requests originating from Connd. */
|
|
260
262
|
internalclientRatelimitThreshold?: string;
|
|
263
|
+
/** Max Instance Request Conncurrency for Cloud Run service. */
|
|
264
|
+
maxInstanceRequestConcurrency?: number;
|
|
265
|
+
/** Indicate whether connector is being migrated to cloud run deployment model. */
|
|
266
|
+
migrateDeploymentModel?: boolean;
|
|
261
267
|
/** Max QPS supported by the connector version before throttling of requests. */
|
|
262
268
|
ratelimitThreshold?: string;
|
|
263
269
|
/** System resource limits. */
|
|
@@ -292,6 +298,10 @@ declare namespace gapi.client {
|
|
|
292
298
|
egressControlConfig?: EgressControlConfig;
|
|
293
299
|
/** Output only. Eventing configuration supported by the Connector. */
|
|
294
300
|
eventingConfigTemplate?: EventingConfigTemplate;
|
|
301
|
+
/** Output only. Is custom actions supported. */
|
|
302
|
+
isCustomActionsSupported?: boolean;
|
|
303
|
+
/** Output only. Is custom entities supported. */
|
|
304
|
+
isCustomEntitiesSupported?: boolean;
|
|
295
305
|
/** Output only. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources */
|
|
296
306
|
labels?: {[P in string]: string};
|
|
297
307
|
/** Output only. Flag to mark the version indicating the launch stage. */
|
|
@@ -310,6 +320,10 @@ declare namespace gapi.client {
|
|
|
310
320
|
sslConfigTemplate?: SslConfigTemplate;
|
|
311
321
|
/** Output only. Information about the runtime features supported by the Connector. */
|
|
312
322
|
supportedRuntimeFeatures?: SupportedRuntimeFeatures;
|
|
323
|
+
/** Output only. Supported standard actions. */
|
|
324
|
+
supportedStandardActions?: StandardAction[];
|
|
325
|
+
/** Output only. Supported standard entities. */
|
|
326
|
+
supportedStandardEntities?: StandardEntity[];
|
|
313
327
|
/** Output only. Unsupported connection types. */
|
|
314
328
|
unsupportedConnectionTypes?: string[];
|
|
315
329
|
/** Output only. Updated time. */
|
|
@@ -320,10 +334,14 @@ declare namespace gapi.client {
|
|
|
320
334
|
connectionRatelimitWindowSeconds?: string;
|
|
321
335
|
/** Optional. Indicates whether connector is deployed on GKE/CloudRun */
|
|
322
336
|
deploymentModel?: string;
|
|
337
|
+
/** Output only. Status of the deployment model migration. */
|
|
338
|
+
deploymentModelMigrationState?: string;
|
|
323
339
|
/** Output only. HPA autoscaling config. */
|
|
324
340
|
hpaConfig?: HPAConfig;
|
|
325
341
|
/** Output only. Max QPS supported for internal requests originating from Connd. */
|
|
326
342
|
internalclientRatelimitThreshold?: string;
|
|
343
|
+
/** Output only. Max instance request concurrency. */
|
|
344
|
+
maxInstanceRequestConcurrency?: number;
|
|
327
345
|
/** Output only. Max QPS supported by the connector version before throttling of requests. */
|
|
328
346
|
ratelimitThreshold?: string;
|
|
329
347
|
/** Output only. System resource limits. */
|
|
@@ -1339,6 +1357,14 @@ declare namespace gapi.client {
|
|
|
1339
1357
|
/** Controls the ssl type for the given connector version */
|
|
1340
1358
|
sslType?: string;
|
|
1341
1359
|
}
|
|
1360
|
+
interface StandardAction {
|
|
1361
|
+
/** Name of the standard action. */
|
|
1362
|
+
name?: string;
|
|
1363
|
+
}
|
|
1364
|
+
interface StandardEntity {
|
|
1365
|
+
/** Name of the standard entity. */
|
|
1366
|
+
name?: string;
|
|
1367
|
+
}
|
|
1342
1368
|
interface Status {
|
|
1343
1369
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
1344
1370
|
code?: number;
|