qovery-typescript-axios 1.1.878 → 1.1.879

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
@@ -1338,6 +1338,30 @@ export interface ApplicationAdvancedSettings {
1338
1338
  * @memberof ApplicationAdvancedSettings
1339
1339
  */
1340
1340
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
1341
+ /**
1342
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
1343
+ * @type {number}
1344
+ * @memberof ApplicationAdvancedSettings
1345
+ */
1346
+ 'network.gateway_api.retry.num_retries'?: number | null;
1347
+ /**
1348
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
1349
+ * @type {string}
1350
+ * @memberof ApplicationAdvancedSettings
1351
+ */
1352
+ 'network.gateway_api.retry.retry_on'?: string | null;
1353
+ /**
1354
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
1355
+ * @type {string}
1356
+ * @memberof ApplicationAdvancedSettings
1357
+ */
1358
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
1359
+ /**
1360
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
1361
+ * @type {number}
1362
+ * @memberof ApplicationAdvancedSettings
1363
+ */
1364
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
1341
1365
  /**
1342
1366
  * Percentage value of cpu usage at which point pods should scale up.
1343
1367
  * @type {number}
@@ -4094,6 +4118,30 @@ export interface ClusterAdvancedSettings {
4094
4118
  * @memberof ClusterAdvancedSettings
4095
4119
  */
4096
4120
  'envoy.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
4121
+ /**
4122
+ * Sets the default number of retry attempts applied to Gateway API routes when the service does not override it.
4123
+ * @type {number}
4124
+ * @memberof ClusterAdvancedSettings
4125
+ */
4126
+ 'envoy.gateway_api.retry.num_retries'?: number | null;
4127
+ /**
4128
+ * Default comma-separated retry triggers applied to Gateway API routes when the service does not override them.
4129
+ * @type {string}
4130
+ * @memberof ClusterAdvancedSettings
4131
+ */
4132
+ 'envoy.gateway_api.retry.retry_on'?: string | null;
4133
+ /**
4134
+ * Default comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
4135
+ * @type {string}
4136
+ * @memberof ClusterAdvancedSettings
4137
+ */
4138
+ 'envoy.gateway_api.retry.http_status_codes'?: string | null;
4139
+ /**
4140
+ * Sets the default timeout (in seconds) applied to each retry attempt when the service does not override it.
4141
+ * @type {number}
4142
+ * @memberof ClusterAdvancedSettings
4143
+ */
4144
+ 'envoy.gateway_api.retry.per_try_timeout_seconds'?: number | null;
4097
4145
  /**
4098
4146
  * hpa cpu threshold in percentage
4099
4147
  * @type {number}
@@ -6221,6 +6269,30 @@ export interface ContainerAdvancedSettings {
6221
6269
  * @memberof ContainerAdvancedSettings
6222
6270
  */
6223
6271
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
6272
+ /**
6273
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
6274
+ * @type {number}
6275
+ * @memberof ContainerAdvancedSettings
6276
+ */
6277
+ 'network.gateway_api.retry.num_retries'?: number | null;
6278
+ /**
6279
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
6280
+ * @type {string}
6281
+ * @memberof ContainerAdvancedSettings
6282
+ */
6283
+ 'network.gateway_api.retry.retry_on'?: string | null;
6284
+ /**
6285
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
6286
+ * @type {string}
6287
+ * @memberof ContainerAdvancedSettings
6288
+ */
6289
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
6290
+ /**
6291
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
6292
+ * @type {number}
6293
+ * @memberof ContainerAdvancedSettings
6294
+ */
6295
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
6224
6296
  /**
6225
6297
  * 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.
6226
6298
  * @type {string}
@@ -12506,6 +12578,30 @@ export interface HelmAdvancedSettings {
12506
12578
  * @memberof HelmAdvancedSettings
12507
12579
  */
12508
12580
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
12581
+ /**
12582
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
12583
+ * @type {number}
12584
+ * @memberof HelmAdvancedSettings
12585
+ */
12586
+ 'network.gateway_api.retry.num_retries'?: number | null;
12587
+ /**
12588
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
12589
+ * @type {string}
12590
+ * @memberof HelmAdvancedSettings
12591
+ */
12592
+ 'network.gateway_api.retry.retry_on'?: string | null;
12593
+ /**
12594
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
12595
+ * @type {string}
12596
+ * @memberof HelmAdvancedSettings
12597
+ */
12598
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
12599
+ /**
12600
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
12601
+ * @type {number}
12602
+ * @memberof HelmAdvancedSettings
12603
+ */
12604
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
12509
12605
  }
12510
12606
  /**
12511
12607
  *
package/dist/api.d.ts CHANGED
@@ -1279,6 +1279,30 @@ export interface ApplicationAdvancedSettings {
1279
1279
  * @memberof ApplicationAdvancedSettings
1280
1280
  */
1281
1281
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
1282
+ /**
1283
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
1284
+ * @type {number}
1285
+ * @memberof ApplicationAdvancedSettings
1286
+ */
1287
+ 'network.gateway_api.retry.num_retries'?: number | null;
1288
+ /**
1289
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
1290
+ * @type {string}
1291
+ * @memberof ApplicationAdvancedSettings
1292
+ */
1293
+ 'network.gateway_api.retry.retry_on'?: string | null;
1294
+ /**
1295
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
1296
+ * @type {string}
1297
+ * @memberof ApplicationAdvancedSettings
1298
+ */
1299
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
1300
+ /**
1301
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
1302
+ * @type {number}
1303
+ * @memberof ApplicationAdvancedSettings
1304
+ */
1305
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
1282
1306
  /**
1283
1307
  * Percentage value of cpu usage at which point pods should scale up.
1284
1308
  * @type {number}
@@ -3957,6 +3981,30 @@ export interface ClusterAdvancedSettings {
3957
3981
  * @memberof ClusterAdvancedSettings
3958
3982
  */
3959
3983
  'envoy.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
3984
+ /**
3985
+ * Sets the default number of retry attempts applied to Gateway API routes when the service does not override it.
3986
+ * @type {number}
3987
+ * @memberof ClusterAdvancedSettings
3988
+ */
3989
+ 'envoy.gateway_api.retry.num_retries'?: number | null;
3990
+ /**
3991
+ * Default comma-separated retry triggers applied to Gateway API routes when the service does not override them.
3992
+ * @type {string}
3993
+ * @memberof ClusterAdvancedSettings
3994
+ */
3995
+ 'envoy.gateway_api.retry.retry_on'?: string | null;
3996
+ /**
3997
+ * Default comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
3998
+ * @type {string}
3999
+ * @memberof ClusterAdvancedSettings
4000
+ */
4001
+ 'envoy.gateway_api.retry.http_status_codes'?: string | null;
4002
+ /**
4003
+ * Sets the default timeout (in seconds) applied to each retry attempt when the service does not override it.
4004
+ * @type {number}
4005
+ * @memberof ClusterAdvancedSettings
4006
+ */
4007
+ 'envoy.gateway_api.retry.per_try_timeout_seconds'?: number | null;
3960
4008
  /**
3961
4009
  * hpa cpu threshold in percentage
3962
4010
  * @type {number}
@@ -6047,6 +6095,30 @@ export interface ContainerAdvancedSettings {
6047
6095
  * @memberof ContainerAdvancedSettings
6048
6096
  */
6049
6097
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
6098
+ /**
6099
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
6100
+ * @type {number}
6101
+ * @memberof ContainerAdvancedSettings
6102
+ */
6103
+ 'network.gateway_api.retry.num_retries'?: number | null;
6104
+ /**
6105
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
6106
+ * @type {string}
6107
+ * @memberof ContainerAdvancedSettings
6108
+ */
6109
+ 'network.gateway_api.retry.retry_on'?: string | null;
6110
+ /**
6111
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
6112
+ * @type {string}
6113
+ * @memberof ContainerAdvancedSettings
6114
+ */
6115
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
6116
+ /**
6117
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
6118
+ * @type {number}
6119
+ * @memberof ContainerAdvancedSettings
6120
+ */
6121
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
6050
6122
  /**
6051
6123
  * 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.
6052
6124
  * @type {string}
@@ -12110,6 +12182,30 @@ export interface HelmAdvancedSettings {
12110
12182
  * @memberof HelmAdvancedSettings
12111
12183
  */
12112
12184
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
12185
+ /**
12186
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
12187
+ * @type {number}
12188
+ * @memberof HelmAdvancedSettings
12189
+ */
12190
+ 'network.gateway_api.retry.num_retries'?: number | null;
12191
+ /**
12192
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
12193
+ * @type {string}
12194
+ * @memberof HelmAdvancedSettings
12195
+ */
12196
+ 'network.gateway_api.retry.retry_on'?: string | null;
12197
+ /**
12198
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
12199
+ * @type {string}
12200
+ * @memberof HelmAdvancedSettings
12201
+ */
12202
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
12203
+ /**
12204
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
12205
+ * @type {number}
12206
+ * @memberof HelmAdvancedSettings
12207
+ */
12208
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
12113
12209
  }
12114
12210
  /**
12115
12211
  *
package/dist/esm/api.d.ts CHANGED
@@ -1279,6 +1279,30 @@ export interface ApplicationAdvancedSettings {
1279
1279
  * @memberof ApplicationAdvancedSettings
1280
1280
  */
1281
1281
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
1282
+ /**
1283
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
1284
+ * @type {number}
1285
+ * @memberof ApplicationAdvancedSettings
1286
+ */
1287
+ 'network.gateway_api.retry.num_retries'?: number | null;
1288
+ /**
1289
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
1290
+ * @type {string}
1291
+ * @memberof ApplicationAdvancedSettings
1292
+ */
1293
+ 'network.gateway_api.retry.retry_on'?: string | null;
1294
+ /**
1295
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
1296
+ * @type {string}
1297
+ * @memberof ApplicationAdvancedSettings
1298
+ */
1299
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
1300
+ /**
1301
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
1302
+ * @type {number}
1303
+ * @memberof ApplicationAdvancedSettings
1304
+ */
1305
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
1282
1306
  /**
1283
1307
  * Percentage value of cpu usage at which point pods should scale up.
1284
1308
  * @type {number}
@@ -3957,6 +3981,30 @@ export interface ClusterAdvancedSettings {
3957
3981
  * @memberof ClusterAdvancedSettings
3958
3982
  */
3959
3983
  'envoy.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
3984
+ /**
3985
+ * Sets the default number of retry attempts applied to Gateway API routes when the service does not override it.
3986
+ * @type {number}
3987
+ * @memberof ClusterAdvancedSettings
3988
+ */
3989
+ 'envoy.gateway_api.retry.num_retries'?: number | null;
3990
+ /**
3991
+ * Default comma-separated retry triggers applied to Gateway API routes when the service does not override them.
3992
+ * @type {string}
3993
+ * @memberof ClusterAdvancedSettings
3994
+ */
3995
+ 'envoy.gateway_api.retry.retry_on'?: string | null;
3996
+ /**
3997
+ * Default comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
3998
+ * @type {string}
3999
+ * @memberof ClusterAdvancedSettings
4000
+ */
4001
+ 'envoy.gateway_api.retry.http_status_codes'?: string | null;
4002
+ /**
4003
+ * Sets the default timeout (in seconds) applied to each retry attempt when the service does not override it.
4004
+ * @type {number}
4005
+ * @memberof ClusterAdvancedSettings
4006
+ */
4007
+ 'envoy.gateway_api.retry.per_try_timeout_seconds'?: number | null;
3960
4008
  /**
3961
4009
  * hpa cpu threshold in percentage
3962
4010
  * @type {number}
@@ -6047,6 +6095,30 @@ export interface ContainerAdvancedSettings {
6047
6095
  * @memberof ContainerAdvancedSettings
6048
6096
  */
6049
6097
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
6098
+ /**
6099
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
6100
+ * @type {number}
6101
+ * @memberof ContainerAdvancedSettings
6102
+ */
6103
+ 'network.gateway_api.retry.num_retries'?: number | null;
6104
+ /**
6105
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
6106
+ * @type {string}
6107
+ * @memberof ContainerAdvancedSettings
6108
+ */
6109
+ 'network.gateway_api.retry.retry_on'?: string | null;
6110
+ /**
6111
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
6112
+ * @type {string}
6113
+ * @memberof ContainerAdvancedSettings
6114
+ */
6115
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
6116
+ /**
6117
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
6118
+ * @type {number}
6119
+ * @memberof ContainerAdvancedSettings
6120
+ */
6121
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
6050
6122
  /**
6051
6123
  * 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.
6052
6124
  * @type {string}
@@ -12110,6 +12182,30 @@ export interface HelmAdvancedSettings {
12110
12182
  * @memberof HelmAdvancedSettings
12111
12183
  */
12112
12184
  'network.gateway_api.http_connection_idle_timeout_seconds'?: number | null;
12185
+ /**
12186
+ * Sets the number of retry attempts for requests proxied through the Gateway API route.
12187
+ * @type {number}
12188
+ * @memberof HelmAdvancedSettings
12189
+ */
12190
+ 'network.gateway_api.retry.num_retries'?: number | null;
12191
+ /**
12192
+ * Comma-separated retry triggers (for example connect-failure,reset,refused-stream,retriable-status-codes) for requests proxied through the Gateway API route.
12193
+ * @type {string}
12194
+ * @memberof HelmAdvancedSettings
12195
+ */
12196
+ 'network.gateway_api.retry.retry_on'?: string | null;
12197
+ /**
12198
+ * Comma-separated HTTP status codes (100..599) retried when retry_on includes retriable-status-codes.
12199
+ * @type {string}
12200
+ * @memberof HelmAdvancedSettings
12201
+ */
12202
+ 'network.gateway_api.retry.http_status_codes'?: string | null;
12203
+ /**
12204
+ * Sets the timeout (in seconds) applied to each retry attempt for requests proxied through the Gateway API route.
12205
+ * @type {number}
12206
+ * @memberof HelmAdvancedSettings
12207
+ */
12208
+ 'network.gateway_api.retry.per_try_timeout_seconds'?: number | null;
12113
12209
  }
12114
12210
  /**
12115
12211
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.878",
3
+ "version": "v1.1.879",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {