qovery-typescript-axios 1.1.879 → 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 +33 -1
- package/dist/api.d.ts +35 -1
- package/dist/esm/api.d.ts +35 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -21503,8 +21503,27 @@ export type TerraformAutoDeployConfigTerraformActionEnum = typeof TerraformAutoD
|
|
|
21503
21503
|
* Configuration for Terraform backend - exactly one backend type must be specified
|
|
21504
21504
|
* @export
|
|
21505
21505
|
*/
|
|
21506
|
-
export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1;
|
|
21506
|
+
export type TerraformBackend = TerraformBackendOneOf | TerraformBackendOneOf1 | TerraformBackendOneOf2;
|
|
21507
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
|
+
}
|
|
21508
21527
|
/**
|
|
21509
21528
|
*
|
|
21510
21529
|
* @export
|
|
@@ -21531,6 +21550,19 @@ export interface TerraformBackendOneOf1 {
|
|
|
21531
21550
|
*/
|
|
21532
21551
|
'user_provided': object;
|
|
21533
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
|
+
}
|
|
21534
21566
|
/**
|
|
21535
21567
|
*
|
|
21536
21568
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -20802,7 +20802,28 @@ export type TerraformAutoDeployConfigTerraformActionEnum = typeof TerraformAutoD
|
|
|
20802
20802
|
* Configuration for Terraform backend - exactly one backend type must be specified
|
|
20803
20803
|
* @export
|
|
20804
20804
|
*/
|
|
20805
|
-
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
|
+
}
|
|
20806
20827
|
/**
|
|
20807
20828
|
*
|
|
20808
20829
|
* @export
|
|
@@ -20829,6 +20850,19 @@ export interface TerraformBackendOneOf1 {
|
|
|
20829
20850
|
*/
|
|
20830
20851
|
'user_provided': object;
|
|
20831
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
|
+
}
|
|
20832
20866
|
/**
|
|
20833
20867
|
*
|
|
20834
20868
|
* @export
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -20802,7 +20802,28 @@ export type TerraformAutoDeployConfigTerraformActionEnum = typeof TerraformAutoD
|
|
|
20802
20802
|
* Configuration for Terraform backend - exactly one backend type must be specified
|
|
20803
20803
|
* @export
|
|
20804
20804
|
*/
|
|
20805
|
-
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
|
+
}
|
|
20806
20827
|
/**
|
|
20807
20828
|
*
|
|
20808
20829
|
* @export
|
|
@@ -20829,6 +20850,19 @@ export interface TerraformBackendOneOf1 {
|
|
|
20829
20850
|
*/
|
|
20830
20851
|
'user_provided': object;
|
|
20831
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
|
+
}
|
|
20832
20866
|
/**
|
|
20833
20867
|
*
|
|
20834
20868
|
* @export
|