qovery-typescript-axios 1.1.878 → 1.1.880

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
  *
@@ -21407,8 +21503,27 @@ export type TerraformAutoDeployConfigTerraformActionEnum = typeof TerraformAutoD
21407
21503
  * Configuration for Terraform backend - exactly one backend type must be specified
21408
21504
  * @export
21409
21505
  */
21410
- export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1;
21506
+ export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1 | TerraformBackendOneOf2;
21411
21507
 
21508
+ /**
21509
+ * Blueprint-managed backend configuration. The user provides the backend type and config at blueprint creation time. The platform generates and injects backend.tf for the created service.
21510
+ * @export
21511
+ * @interface TerraformBackendBlueprint
21512
+ */
21513
+ export interface TerraformBackendBlueprint {
21514
+ /**
21515
+ * Terraform backend type (e.g. s3, gcs, azurerm)
21516
+ * @type {string}
21517
+ * @memberof TerraformBackendBlueprint
21518
+ */
21519
+ 'type': string;
21520
+ /**
21521
+ * Static backend configuration (bucket, region, etc.). Credentials should be provided via environment variables, not here.
21522
+ * @type {{ [key: string]: string; }}
21523
+ * @memberof TerraformBackendBlueprint
21524
+ */
21525
+ 'config'?: { [key: string]: string; };
21526
+ }
21412
21527
  /**
21413
21528
  *
21414
21529
  * @export
@@ -21435,6 +21550,19 @@ export interface TerraformBackendOneOf1 {
21435
21550
  */
21436
21551
  'user_provided': object;
21437
21552
  }
21553
+ /**
21554
+ *
21555
+ * @export
21556
+ * @interface TerraformBackendOneOf2
21557
+ */
21558
+ export interface TerraformBackendOneOf2 {
21559
+ /**
21560
+ *
21561
+ * @type {TerraformBackendBlueprint}
21562
+ * @memberof TerraformBackendOneOf2
21563
+ */
21564
+ 'blueprint': TerraformBackendBlueprint;
21565
+ }
21438
21566
  /**
21439
21567
  *
21440
21568
  * @export
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
  *
@@ -20706,7 +20802,28 @@ export type TerraformAutoDeployConfigTerraformActionEnum = typeof TerraformAutoD
20706
20802
  * Configuration for Terraform backend - exactly one backend type must be specified
20707
20803
  * @export
20708
20804
  */
20709
- export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1;
20805
+ export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1 | TerraformBackendOneOf2;
20806
+ /**
20807
+ * Blueprint-managed backend configuration. The user provides the backend type and config at blueprint creation time. The platform generates and injects backend.tf for the created service.
20808
+ * @export
20809
+ * @interface TerraformBackendBlueprint
20810
+ */
20811
+ export interface TerraformBackendBlueprint {
20812
+ /**
20813
+ * Terraform backend type (e.g. s3, gcs, azurerm)
20814
+ * @type {string}
20815
+ * @memberof TerraformBackendBlueprint
20816
+ */
20817
+ 'type': string;
20818
+ /**
20819
+ * Static backend configuration (bucket, region, etc.). Credentials should be provided via environment variables, not here.
20820
+ * @type {{ [key: string]: string; }}
20821
+ * @memberof TerraformBackendBlueprint
20822
+ */
20823
+ 'config'?: {
20824
+ [key: string]: string;
20825
+ };
20826
+ }
20710
20827
  /**
20711
20828
  *
20712
20829
  * @export
@@ -20733,6 +20850,19 @@ export interface TerraformBackendOneOf1 {
20733
20850
  */
20734
20851
  'user_provided': object;
20735
20852
  }
20853
+ /**
20854
+ *
20855
+ * @export
20856
+ * @interface TerraformBackendOneOf2
20857
+ */
20858
+ export interface TerraformBackendOneOf2 {
20859
+ /**
20860
+ *
20861
+ * @type {TerraformBackendBlueprint}
20862
+ * @memberof TerraformBackendOneOf2
20863
+ */
20864
+ 'blueprint': TerraformBackendBlueprint;
20865
+ }
20736
20866
  /**
20737
20867
  *
20738
20868
  * @export
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
  *
@@ -20706,7 +20802,28 @@ export type TerraformAutoDeployConfigTerraformActionEnum = typeof TerraformAutoD
20706
20802
  * Configuration for Terraform backend - exactly one backend type must be specified
20707
20803
  * @export
20708
20804
  */
20709
- export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1;
20805
+ export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1 | TerraformBackendOneOf2;
20806
+ /**
20807
+ * Blueprint-managed backend configuration. The user provides the backend type and config at blueprint creation time. The platform generates and injects backend.tf for the created service.
20808
+ * @export
20809
+ * @interface TerraformBackendBlueprint
20810
+ */
20811
+ export interface TerraformBackendBlueprint {
20812
+ /**
20813
+ * Terraform backend type (e.g. s3, gcs, azurerm)
20814
+ * @type {string}
20815
+ * @memberof TerraformBackendBlueprint
20816
+ */
20817
+ 'type': string;
20818
+ /**
20819
+ * Static backend configuration (bucket, region, etc.). Credentials should be provided via environment variables, not here.
20820
+ * @type {{ [key: string]: string; }}
20821
+ * @memberof TerraformBackendBlueprint
20822
+ */
20823
+ 'config'?: {
20824
+ [key: string]: string;
20825
+ };
20826
+ }
20710
20827
  /**
20711
20828
  *
20712
20829
  * @export
@@ -20733,6 +20850,19 @@ export interface TerraformBackendOneOf1 {
20733
20850
  */
20734
20851
  'user_provided': object;
20735
20852
  }
20853
+ /**
20854
+ *
20855
+ * @export
20856
+ * @interface TerraformBackendOneOf2
20857
+ */
20858
+ export interface TerraformBackendOneOf2 {
20859
+ /**
20860
+ *
20861
+ * @type {TerraformBackendBlueprint}
20862
+ * @memberof TerraformBackendOneOf2
20863
+ */
20864
+ 'blueprint': TerraformBackendBlueprint;
20865
+ }
20736
20866
  /**
20737
20867
  *
20738
20868
  * @export
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.880",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {