qovery-typescript-axios 1.1.846 → 1.1.848

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/api.ts CHANGED
@@ -1319,6 +1319,18 @@ export interface ApplicationAdvancedSettings {
1319
1319
  * @memberof ApplicationAdvancedSettings
1320
1320
  */
1321
1321
  'network.ingress.extra_headers'?: string;
1322
+ /**
1323
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
1324
+ * @type {number}
1325
+ * @memberof ApplicationAdvancedSettings
1326
+ */
1327
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
1328
+ /**
1329
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
1330
+ * @type {number}
1331
+ * @memberof ApplicationAdvancedSettings
1332
+ */
1333
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
1322
1334
  /**
1323
1335
  * Percentage value of cpu usage at which point pods should scale up.
1324
1336
  * @type {number}
@@ -3459,6 +3471,18 @@ export interface ClusterAdvancedSettings {
3459
3471
  * @memberof ClusterAdvancedSettings
3460
3472
  */
3461
3473
  'nginx.memory.limit_in_mib'?: number;
3474
+ /**
3475
+ * Sets the default request timeout (in seconds) applied to Gateway API routes when the service does not override it.
3476
+ * @type {number}
3477
+ * @memberof ClusterAdvancedSettings
3478
+ */
3479
+ 'envoy.gateway_api.http_request_timeout_seconds'?: number | null;
3480
+ /**
3481
+ * Sets the default idle connection timeout (in seconds) applied to Gateway API routes when the service does not override it.
3482
+ * @type {number}
3483
+ * @memberof ClusterAdvancedSettings
3484
+ */
3485
+ 'envoy.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
3462
3486
  /**
3463
3487
  * hpa cpu threshold in percentage
3464
3488
  * @type {number}
@@ -5381,6 +5405,18 @@ export interface ContainerAdvancedSettings {
5381
5405
  * @memberof ContainerAdvancedSettings
5382
5406
  */
5383
5407
  'network.ingress.extra_headers'?: string;
5408
+ /**
5409
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
5410
+ * @type {number}
5411
+ * @memberof ContainerAdvancedSettings
5412
+ */
5413
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
5414
+ /**
5415
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
5416
+ * @type {number}
5417
+ * @memberof ContainerAdvancedSettings
5418
+ */
5419
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
5384
5420
  /**
5385
5421
  * Set the name of an environment variable to use as a basic authentication (`login:crypted_password`) from `htpasswd` command. You can add multiples comma separated values.
5386
5422
  * @type {string}
@@ -11356,6 +11392,18 @@ export interface HelmAdvancedSettings {
11356
11392
  * @memberof HelmAdvancedSettings
11357
11393
  */
11358
11394
  'network.ingress.enable_sticky_session'?: boolean;
11395
+ /**
11396
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
11397
+ * @type {number}
11398
+ * @memberof HelmAdvancedSettings
11399
+ */
11400
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
11401
+ /**
11402
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
11403
+ * @type {number}
11404
+ * @memberof HelmAdvancedSettings
11405
+ */
11406
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
11359
11407
  }
11360
11408
  /**
11361
11409
  *
package/dist/api.d.ts CHANGED
@@ -1260,6 +1260,18 @@ export interface ApplicationAdvancedSettings {
1260
1260
  * @memberof ApplicationAdvancedSettings
1261
1261
  */
1262
1262
  'network.ingress.extra_headers'?: string;
1263
+ /**
1264
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
1265
+ * @type {number}
1266
+ * @memberof ApplicationAdvancedSettings
1267
+ */
1268
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
1269
+ /**
1270
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
1271
+ * @type {number}
1272
+ * @memberof ApplicationAdvancedSettings
1273
+ */
1274
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
1263
1275
  /**
1264
1276
  * Percentage value of cpu usage at which point pods should scale up.
1265
1277
  * @type {number}
@@ -3345,6 +3357,18 @@ export interface ClusterAdvancedSettings {
3345
3357
  * @memberof ClusterAdvancedSettings
3346
3358
  */
3347
3359
  'nginx.memory.limit_in_mib'?: number;
3360
+ /**
3361
+ * Sets the default request timeout (in seconds) applied to Gateway API routes when the service does not override it.
3362
+ * @type {number}
3363
+ * @memberof ClusterAdvancedSettings
3364
+ */
3365
+ 'envoy.gateway_api.http_request_timeout_seconds'?: number | null;
3366
+ /**
3367
+ * Sets the default idle connection timeout (in seconds) applied to Gateway API routes when the service does not override it.
3368
+ * @type {number}
3369
+ * @memberof ClusterAdvancedSettings
3370
+ */
3371
+ 'envoy.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
3348
3372
  /**
3349
3373
  * hpa cpu threshold in percentage
3350
3374
  * @type {number}
@@ -5234,6 +5258,18 @@ export interface ContainerAdvancedSettings {
5234
5258
  * @memberof ContainerAdvancedSettings
5235
5259
  */
5236
5260
  'network.ingress.extra_headers'?: string;
5261
+ /**
5262
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
5263
+ * @type {number}
5264
+ * @memberof ContainerAdvancedSettings
5265
+ */
5266
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
5267
+ /**
5268
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
5269
+ * @type {number}
5270
+ * @memberof ContainerAdvancedSettings
5271
+ */
5272
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
5237
5273
  /**
5238
5274
  * Set the name of an environment variable to use as a basic authentication (`login:crypted_password`) from `htpasswd` command. You can add multiples comma separated values.
5239
5275
  * @type {string}
@@ -11003,6 +11039,18 @@ export interface HelmAdvancedSettings {
11003
11039
  * @memberof HelmAdvancedSettings
11004
11040
  */
11005
11041
  'network.ingress.enable_sticky_session'?: boolean;
11042
+ /**
11043
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
11044
+ * @type {number}
11045
+ * @memberof HelmAdvancedSettings
11046
+ */
11047
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
11048
+ /**
11049
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
11050
+ * @type {number}
11051
+ * @memberof HelmAdvancedSettings
11052
+ */
11053
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
11006
11054
  }
11007
11055
  /**
11008
11056
  *
package/dist/esm/api.d.ts CHANGED
@@ -1260,6 +1260,18 @@ export interface ApplicationAdvancedSettings {
1260
1260
  * @memberof ApplicationAdvancedSettings
1261
1261
  */
1262
1262
  'network.ingress.extra_headers'?: string;
1263
+ /**
1264
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
1265
+ * @type {number}
1266
+ * @memberof ApplicationAdvancedSettings
1267
+ */
1268
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
1269
+ /**
1270
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
1271
+ * @type {number}
1272
+ * @memberof ApplicationAdvancedSettings
1273
+ */
1274
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
1263
1275
  /**
1264
1276
  * Percentage value of cpu usage at which point pods should scale up.
1265
1277
  * @type {number}
@@ -3345,6 +3357,18 @@ export interface ClusterAdvancedSettings {
3345
3357
  * @memberof ClusterAdvancedSettings
3346
3358
  */
3347
3359
  'nginx.memory.limit_in_mib'?: number;
3360
+ /**
3361
+ * Sets the default request timeout (in seconds) applied to Gateway API routes when the service does not override it.
3362
+ * @type {number}
3363
+ * @memberof ClusterAdvancedSettings
3364
+ */
3365
+ 'envoy.gateway_api.http_request_timeout_seconds'?: number | null;
3366
+ /**
3367
+ * Sets the default idle connection timeout (in seconds) applied to Gateway API routes when the service does not override it.
3368
+ * @type {number}
3369
+ * @memberof ClusterAdvancedSettings
3370
+ */
3371
+ 'envoy.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
3348
3372
  /**
3349
3373
  * hpa cpu threshold in percentage
3350
3374
  * @type {number}
@@ -5234,6 +5258,18 @@ export interface ContainerAdvancedSettings {
5234
5258
  * @memberof ContainerAdvancedSettings
5235
5259
  */
5236
5260
  'network.ingress.extra_headers'?: string;
5261
+ /**
5262
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
5263
+ * @type {number}
5264
+ * @memberof ContainerAdvancedSettings
5265
+ */
5266
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
5267
+ /**
5268
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
5269
+ * @type {number}
5270
+ * @memberof ContainerAdvancedSettings
5271
+ */
5272
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
5237
5273
  /**
5238
5274
  * Set the name of an environment variable to use as a basic authentication (`login:crypted_password`) from `htpasswd` command. You can add multiples comma separated values.
5239
5275
  * @type {string}
@@ -11003,6 +11039,18 @@ export interface HelmAdvancedSettings {
11003
11039
  * @memberof HelmAdvancedSettings
11004
11040
  */
11005
11041
  'network.ingress.enable_sticky_session'?: boolean;
11042
+ /**
11043
+ * Sets a timeout (in seconds) for requests proxied through the Gateway API route.
11044
+ * @type {number}
11045
+ * @memberof HelmAdvancedSettings
11046
+ */
11047
+ 'network.gateway_api.http_request_timeout_seconds'?: number | null;
11048
+ /**
11049
+ * Sets the idle timeout (in seconds) for HTTP connections proxied through the Gateway API route.
11050
+ * @type {number}
11051
+ * @memberof HelmAdvancedSettings
11052
+ */
11053
+ 'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
11006
11054
  }
11007
11055
  /**
11008
11056
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.846",
3
+ "version": "v1.1.848",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {