qovery-typescript-axios 1.1.877 → 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 +108 -0
- package/dist/api.d.ts +108 -0
- package/dist/esm/api.d.ts +108 -0
- package/package.json +1 -1
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}
|
|
@@ -2282,6 +2306,12 @@ export interface ArgocdAppResponse {
|
|
|
2282
2306
|
* @memberof ArgocdAppResponse
|
|
2283
2307
|
*/
|
|
2284
2308
|
'namespace': string;
|
|
2309
|
+
/**
|
|
2310
|
+
*
|
|
2311
|
+
* @type {ReferenceObject}
|
|
2312
|
+
* @memberof ArgocdAppResponse
|
|
2313
|
+
*/
|
|
2314
|
+
'environment': ReferenceObject;
|
|
2285
2315
|
/**
|
|
2286
2316
|
*
|
|
2287
2317
|
* @type {string}
|
|
@@ -2294,6 +2324,12 @@ export interface ArgocdAppResponse {
|
|
|
2294
2324
|
* @memberof ArgocdAppResponse
|
|
2295
2325
|
*/
|
|
2296
2326
|
'cluster_id': string;
|
|
2327
|
+
/**
|
|
2328
|
+
* Icon URI representing the ArgoCD service.
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof ArgocdAppResponse
|
|
2331
|
+
*/
|
|
2332
|
+
'icon_uri': string;
|
|
2297
2333
|
/**
|
|
2298
2334
|
*
|
|
2299
2335
|
* @type {string}
|
|
@@ -4082,6 +4118,30 @@ export interface ClusterAdvancedSettings {
|
|
|
4082
4118
|
* @memberof ClusterAdvancedSettings
|
|
4083
4119
|
*/
|
|
4084
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;
|
|
4085
4145
|
/**
|
|
4086
4146
|
* hpa cpu threshold in percentage
|
|
4087
4147
|
* @type {number}
|
|
@@ -6209,6 +6269,30 @@ export interface ContainerAdvancedSettings {
|
|
|
6209
6269
|
* @memberof ContainerAdvancedSettings
|
|
6210
6270
|
*/
|
|
6211
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;
|
|
6212
6296
|
/**
|
|
6213
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.
|
|
6214
6298
|
* @type {string}
|
|
@@ -12494,6 +12578,30 @@ export interface HelmAdvancedSettings {
|
|
|
12494
12578
|
* @memberof HelmAdvancedSettings
|
|
12495
12579
|
*/
|
|
12496
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;
|
|
12497
12605
|
}
|
|
12498
12606
|
/**
|
|
12499
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}
|
|
@@ -2195,6 +2219,12 @@ export interface ArgocdAppResponse {
|
|
|
2195
2219
|
* @memberof ArgocdAppResponse
|
|
2196
2220
|
*/
|
|
2197
2221
|
'namespace': string;
|
|
2222
|
+
/**
|
|
2223
|
+
*
|
|
2224
|
+
* @type {ReferenceObject}
|
|
2225
|
+
* @memberof ArgocdAppResponse
|
|
2226
|
+
*/
|
|
2227
|
+
'environment': ReferenceObject;
|
|
2198
2228
|
/**
|
|
2199
2229
|
*
|
|
2200
2230
|
* @type {string}
|
|
@@ -2207,6 +2237,12 @@ export interface ArgocdAppResponse {
|
|
|
2207
2237
|
* @memberof ArgocdAppResponse
|
|
2208
2238
|
*/
|
|
2209
2239
|
'cluster_id': string;
|
|
2240
|
+
/**
|
|
2241
|
+
* Icon URI representing the ArgoCD service.
|
|
2242
|
+
* @type {string}
|
|
2243
|
+
* @memberof ArgocdAppResponse
|
|
2244
|
+
*/
|
|
2245
|
+
'icon_uri': string;
|
|
2210
2246
|
/**
|
|
2211
2247
|
*
|
|
2212
2248
|
* @type {string}
|
|
@@ -3945,6 +3981,30 @@ export interface ClusterAdvancedSettings {
|
|
|
3945
3981
|
* @memberof ClusterAdvancedSettings
|
|
3946
3982
|
*/
|
|
3947
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;
|
|
3948
4008
|
/**
|
|
3949
4009
|
* hpa cpu threshold in percentage
|
|
3950
4010
|
* @type {number}
|
|
@@ -6035,6 +6095,30 @@ export interface ContainerAdvancedSettings {
|
|
|
6035
6095
|
* @memberof ContainerAdvancedSettings
|
|
6036
6096
|
*/
|
|
6037
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;
|
|
6038
6122
|
/**
|
|
6039
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.
|
|
6040
6124
|
* @type {string}
|
|
@@ -12098,6 +12182,30 @@ export interface HelmAdvancedSettings {
|
|
|
12098
12182
|
* @memberof HelmAdvancedSettings
|
|
12099
12183
|
*/
|
|
12100
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;
|
|
12101
12209
|
}
|
|
12102
12210
|
/**
|
|
12103
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}
|
|
@@ -2195,6 +2219,12 @@ export interface ArgocdAppResponse {
|
|
|
2195
2219
|
* @memberof ArgocdAppResponse
|
|
2196
2220
|
*/
|
|
2197
2221
|
'namespace': string;
|
|
2222
|
+
/**
|
|
2223
|
+
*
|
|
2224
|
+
* @type {ReferenceObject}
|
|
2225
|
+
* @memberof ArgocdAppResponse
|
|
2226
|
+
*/
|
|
2227
|
+
'environment': ReferenceObject;
|
|
2198
2228
|
/**
|
|
2199
2229
|
*
|
|
2200
2230
|
* @type {string}
|
|
@@ -2207,6 +2237,12 @@ export interface ArgocdAppResponse {
|
|
|
2207
2237
|
* @memberof ArgocdAppResponse
|
|
2208
2238
|
*/
|
|
2209
2239
|
'cluster_id': string;
|
|
2240
|
+
/**
|
|
2241
|
+
* Icon URI representing the ArgoCD service.
|
|
2242
|
+
* @type {string}
|
|
2243
|
+
* @memberof ArgocdAppResponse
|
|
2244
|
+
*/
|
|
2245
|
+
'icon_uri': string;
|
|
2210
2246
|
/**
|
|
2211
2247
|
*
|
|
2212
2248
|
* @type {string}
|
|
@@ -3945,6 +3981,30 @@ export interface ClusterAdvancedSettings {
|
|
|
3945
3981
|
* @memberof ClusterAdvancedSettings
|
|
3946
3982
|
*/
|
|
3947
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;
|
|
3948
4008
|
/**
|
|
3949
4009
|
* hpa cpu threshold in percentage
|
|
3950
4010
|
* @type {number}
|
|
@@ -6035,6 +6095,30 @@ export interface ContainerAdvancedSettings {
|
|
|
6035
6095
|
* @memberof ContainerAdvancedSettings
|
|
6036
6096
|
*/
|
|
6037
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;
|
|
6038
6122
|
/**
|
|
6039
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.
|
|
6040
6124
|
* @type {string}
|
|
@@ -12098,6 +12182,30 @@ export interface HelmAdvancedSettings {
|
|
|
12098
12182
|
* @memberof HelmAdvancedSettings
|
|
12099
12183
|
*/
|
|
12100
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;
|
|
12101
12209
|
}
|
|
12102
12210
|
/**
|
|
12103
12211
|
*
|