qovery-typescript-axios 1.1.838 → 1.1.839
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 +58 -0
- package/dist/api.d.ts +56 -0
- package/dist/esm/api.d.ts +56 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3518,6 +3518,39 @@ export const ClusterDeploymentStatusEnum = {
|
|
|
3518
3518
|
export type ClusterDeploymentStatusEnum = typeof ClusterDeploymentStatusEnum[keyof typeof ClusterDeploymentStatusEnum];
|
|
3519
3519
|
|
|
3520
3520
|
|
|
3521
|
+
/**
|
|
3522
|
+
*
|
|
3523
|
+
* @export
|
|
3524
|
+
* @interface ClusterEksAnywhereGitRepository
|
|
3525
|
+
*/
|
|
3526
|
+
export interface ClusterEksAnywhereGitRepository {
|
|
3527
|
+
/**
|
|
3528
|
+
* EKS Anywhere git repository URL
|
|
3529
|
+
* @type {string}
|
|
3530
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3531
|
+
*/
|
|
3532
|
+
'url': string;
|
|
3533
|
+
/**
|
|
3534
|
+
* Name of the branch to use. This is optional. If not specified, the default branch of the repository is used.
|
|
3535
|
+
* @type {string}
|
|
3536
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3537
|
+
*/
|
|
3538
|
+
'branch'?: string;
|
|
3539
|
+
/**
|
|
3540
|
+
* Qovery git token id used to access the repository
|
|
3541
|
+
* @type {string}
|
|
3542
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3543
|
+
*/
|
|
3544
|
+
'git_token_id': string;
|
|
3545
|
+
/**
|
|
3546
|
+
*
|
|
3547
|
+
* @type {GitProviderEnum}
|
|
3548
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3549
|
+
*/
|
|
3550
|
+
'provider'?: GitProviderEnum;
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3553
|
+
|
|
3521
3554
|
/**
|
|
3522
3555
|
*
|
|
3523
3556
|
* @export
|
|
@@ -4000,6 +4033,31 @@ export interface ClusterInfrastructureChartsParameters {
|
|
|
4000
4033
|
* @memberof ClusterInfrastructureChartsParameters
|
|
4001
4034
|
*/
|
|
4002
4035
|
'metal_lb_parameters'?: ClusterInfrastructureMetalLbChartParameters;
|
|
4036
|
+
/**
|
|
4037
|
+
*
|
|
4038
|
+
* @type {ClusterInfrastructureEksAnywhereParameters}
|
|
4039
|
+
* @memberof ClusterInfrastructureChartsParameters
|
|
4040
|
+
*/
|
|
4041
|
+
'eks_anywhere_parameters'?: ClusterInfrastructureEksAnywhereParameters;
|
|
4042
|
+
}
|
|
4043
|
+
/**
|
|
4044
|
+
*
|
|
4045
|
+
* @export
|
|
4046
|
+
* @interface ClusterInfrastructureEksAnywhereParameters
|
|
4047
|
+
*/
|
|
4048
|
+
export interface ClusterInfrastructureEksAnywhereParameters {
|
|
4049
|
+
/**
|
|
4050
|
+
*
|
|
4051
|
+
* @type {ClusterEksAnywhereGitRepository}
|
|
4052
|
+
* @memberof ClusterInfrastructureEksAnywhereParameters
|
|
4053
|
+
*/
|
|
4054
|
+
'git_repository': ClusterEksAnywhereGitRepository;
|
|
4055
|
+
/**
|
|
4056
|
+
* Path to the EKS Anywhere cluster YAML file in the git repository
|
|
4057
|
+
* @type {string}
|
|
4058
|
+
* @memberof ClusterInfrastructureEksAnywhereParameters
|
|
4059
|
+
*/
|
|
4060
|
+
'yaml_file_path': string;
|
|
4003
4061
|
}
|
|
4004
4062
|
/**
|
|
4005
4063
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -3404,6 +3404,37 @@ export declare const ClusterDeploymentStatusEnum: {
|
|
|
3404
3404
|
readonly UP_TO_DATE: "UP_TO_DATE";
|
|
3405
3405
|
};
|
|
3406
3406
|
export type ClusterDeploymentStatusEnum = typeof ClusterDeploymentStatusEnum[keyof typeof ClusterDeploymentStatusEnum];
|
|
3407
|
+
/**
|
|
3408
|
+
*
|
|
3409
|
+
* @export
|
|
3410
|
+
* @interface ClusterEksAnywhereGitRepository
|
|
3411
|
+
*/
|
|
3412
|
+
export interface ClusterEksAnywhereGitRepository {
|
|
3413
|
+
/**
|
|
3414
|
+
* EKS Anywhere git repository URL
|
|
3415
|
+
* @type {string}
|
|
3416
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3417
|
+
*/
|
|
3418
|
+
'url': string;
|
|
3419
|
+
/**
|
|
3420
|
+
* Name of the branch to use. This is optional. If not specified, the default branch of the repository is used.
|
|
3421
|
+
* @type {string}
|
|
3422
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3423
|
+
*/
|
|
3424
|
+
'branch'?: string;
|
|
3425
|
+
/**
|
|
3426
|
+
* Qovery git token id used to access the repository
|
|
3427
|
+
* @type {string}
|
|
3428
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3429
|
+
*/
|
|
3430
|
+
'git_token_id': string;
|
|
3431
|
+
/**
|
|
3432
|
+
*
|
|
3433
|
+
* @type {GitProviderEnum}
|
|
3434
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3435
|
+
*/
|
|
3436
|
+
'provider'?: GitProviderEnum;
|
|
3437
|
+
}
|
|
3407
3438
|
/**
|
|
3408
3439
|
*
|
|
3409
3440
|
* @export
|
|
@@ -3875,6 +3906,31 @@ export interface ClusterInfrastructureChartsParameters {
|
|
|
3875
3906
|
* @memberof ClusterInfrastructureChartsParameters
|
|
3876
3907
|
*/
|
|
3877
3908
|
'metal_lb_parameters'?: ClusterInfrastructureMetalLbChartParameters;
|
|
3909
|
+
/**
|
|
3910
|
+
*
|
|
3911
|
+
* @type {ClusterInfrastructureEksAnywhereParameters}
|
|
3912
|
+
* @memberof ClusterInfrastructureChartsParameters
|
|
3913
|
+
*/
|
|
3914
|
+
'eks_anywhere_parameters'?: ClusterInfrastructureEksAnywhereParameters;
|
|
3915
|
+
}
|
|
3916
|
+
/**
|
|
3917
|
+
*
|
|
3918
|
+
* @export
|
|
3919
|
+
* @interface ClusterInfrastructureEksAnywhereParameters
|
|
3920
|
+
*/
|
|
3921
|
+
export interface ClusterInfrastructureEksAnywhereParameters {
|
|
3922
|
+
/**
|
|
3923
|
+
*
|
|
3924
|
+
* @type {ClusterEksAnywhereGitRepository}
|
|
3925
|
+
* @memberof ClusterInfrastructureEksAnywhereParameters
|
|
3926
|
+
*/
|
|
3927
|
+
'git_repository': ClusterEksAnywhereGitRepository;
|
|
3928
|
+
/**
|
|
3929
|
+
* Path to the EKS Anywhere cluster YAML file in the git repository
|
|
3930
|
+
* @type {string}
|
|
3931
|
+
* @memberof ClusterInfrastructureEksAnywhereParameters
|
|
3932
|
+
*/
|
|
3933
|
+
'yaml_file_path': string;
|
|
3878
3934
|
}
|
|
3879
3935
|
/**
|
|
3880
3936
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3404,6 +3404,37 @@ export declare const ClusterDeploymentStatusEnum: {
|
|
|
3404
3404
|
readonly UP_TO_DATE: "UP_TO_DATE";
|
|
3405
3405
|
};
|
|
3406
3406
|
export type ClusterDeploymentStatusEnum = typeof ClusterDeploymentStatusEnum[keyof typeof ClusterDeploymentStatusEnum];
|
|
3407
|
+
/**
|
|
3408
|
+
*
|
|
3409
|
+
* @export
|
|
3410
|
+
* @interface ClusterEksAnywhereGitRepository
|
|
3411
|
+
*/
|
|
3412
|
+
export interface ClusterEksAnywhereGitRepository {
|
|
3413
|
+
/**
|
|
3414
|
+
* EKS Anywhere git repository URL
|
|
3415
|
+
* @type {string}
|
|
3416
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3417
|
+
*/
|
|
3418
|
+
'url': string;
|
|
3419
|
+
/**
|
|
3420
|
+
* Name of the branch to use. This is optional. If not specified, the default branch of the repository is used.
|
|
3421
|
+
* @type {string}
|
|
3422
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3423
|
+
*/
|
|
3424
|
+
'branch'?: string;
|
|
3425
|
+
/**
|
|
3426
|
+
* Qovery git token id used to access the repository
|
|
3427
|
+
* @type {string}
|
|
3428
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3429
|
+
*/
|
|
3430
|
+
'git_token_id': string;
|
|
3431
|
+
/**
|
|
3432
|
+
*
|
|
3433
|
+
* @type {GitProviderEnum}
|
|
3434
|
+
* @memberof ClusterEksAnywhereGitRepository
|
|
3435
|
+
*/
|
|
3436
|
+
'provider'?: GitProviderEnum;
|
|
3437
|
+
}
|
|
3407
3438
|
/**
|
|
3408
3439
|
*
|
|
3409
3440
|
* @export
|
|
@@ -3875,6 +3906,31 @@ export interface ClusterInfrastructureChartsParameters {
|
|
|
3875
3906
|
* @memberof ClusterInfrastructureChartsParameters
|
|
3876
3907
|
*/
|
|
3877
3908
|
'metal_lb_parameters'?: ClusterInfrastructureMetalLbChartParameters;
|
|
3909
|
+
/**
|
|
3910
|
+
*
|
|
3911
|
+
* @type {ClusterInfrastructureEksAnywhereParameters}
|
|
3912
|
+
* @memberof ClusterInfrastructureChartsParameters
|
|
3913
|
+
*/
|
|
3914
|
+
'eks_anywhere_parameters'?: ClusterInfrastructureEksAnywhereParameters;
|
|
3915
|
+
}
|
|
3916
|
+
/**
|
|
3917
|
+
*
|
|
3918
|
+
* @export
|
|
3919
|
+
* @interface ClusterInfrastructureEksAnywhereParameters
|
|
3920
|
+
*/
|
|
3921
|
+
export interface ClusterInfrastructureEksAnywhereParameters {
|
|
3922
|
+
/**
|
|
3923
|
+
*
|
|
3924
|
+
* @type {ClusterEksAnywhereGitRepository}
|
|
3925
|
+
* @memberof ClusterInfrastructureEksAnywhereParameters
|
|
3926
|
+
*/
|
|
3927
|
+
'git_repository': ClusterEksAnywhereGitRepository;
|
|
3928
|
+
/**
|
|
3929
|
+
* Path to the EKS Anywhere cluster YAML file in the git repository
|
|
3930
|
+
* @type {string}
|
|
3931
|
+
* @memberof ClusterInfrastructureEksAnywhereParameters
|
|
3932
|
+
*/
|
|
3933
|
+
'yaml_file_path': string;
|
|
3878
3934
|
}
|
|
3879
3935
|
/**
|
|
3880
3936
|
*
|