qovery-typescript-axios 1.1.837 → 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 +64 -0
- package/dist/api.d.ts +62 -0
- package/dist/esm/api.d.ts +62 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3212,6 +3212,12 @@ export interface ClusterAdvancedSettings {
|
|
|
3212
3212
|
* @memberof ClusterAdvancedSettings
|
|
3213
3213
|
*/
|
|
3214
3214
|
'aws.vpc.flow_logs_retention_days'?: number;
|
|
3215
|
+
/**
|
|
3216
|
+
* Enable a secondary Elastic IP per NAT Gateway, increasing the number of outbound public IPs. Useful for services with IP-based rate limits.
|
|
3217
|
+
* @type {boolean}
|
|
3218
|
+
* @memberof ClusterAdvancedSettings
|
|
3219
|
+
*/
|
|
3220
|
+
'aws.vpc.enable_nat_gateway_secondary_eip'?: boolean;
|
|
3215
3221
|
/**
|
|
3216
3222
|
* For how long in week loki is going to keep logs of your applications
|
|
3217
3223
|
* @type {number}
|
|
@@ -3512,6 +3518,39 @@ export const ClusterDeploymentStatusEnum = {
|
|
|
3512
3518
|
export type ClusterDeploymentStatusEnum = typeof ClusterDeploymentStatusEnum[keyof typeof ClusterDeploymentStatusEnum];
|
|
3513
3519
|
|
|
3514
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
|
+
|
|
3515
3554
|
/**
|
|
3516
3555
|
*
|
|
3517
3556
|
* @export
|
|
@@ -3994,6 +4033,31 @@ export interface ClusterInfrastructureChartsParameters {
|
|
|
3994
4033
|
* @memberof ClusterInfrastructureChartsParameters
|
|
3995
4034
|
*/
|
|
3996
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;
|
|
3997
4061
|
}
|
|
3998
4062
|
/**
|
|
3999
4063
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -3100,6 +3100,12 @@ export interface ClusterAdvancedSettings {
|
|
|
3100
3100
|
* @memberof ClusterAdvancedSettings
|
|
3101
3101
|
*/
|
|
3102
3102
|
'aws.vpc.flow_logs_retention_days'?: number;
|
|
3103
|
+
/**
|
|
3104
|
+
* Enable a secondary Elastic IP per NAT Gateway, increasing the number of outbound public IPs. Useful for services with IP-based rate limits.
|
|
3105
|
+
* @type {boolean}
|
|
3106
|
+
* @memberof ClusterAdvancedSettings
|
|
3107
|
+
*/
|
|
3108
|
+
'aws.vpc.enable_nat_gateway_secondary_eip'?: boolean;
|
|
3103
3109
|
/**
|
|
3104
3110
|
* For how long in week loki is going to keep logs of your applications
|
|
3105
3111
|
* @type {number}
|
|
@@ -3398,6 +3404,37 @@ export declare const ClusterDeploymentStatusEnum: {
|
|
|
3398
3404
|
readonly UP_TO_DATE: "UP_TO_DATE";
|
|
3399
3405
|
};
|
|
3400
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
|
+
}
|
|
3401
3438
|
/**
|
|
3402
3439
|
*
|
|
3403
3440
|
* @export
|
|
@@ -3869,6 +3906,31 @@ export interface ClusterInfrastructureChartsParameters {
|
|
|
3869
3906
|
* @memberof ClusterInfrastructureChartsParameters
|
|
3870
3907
|
*/
|
|
3871
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;
|
|
3872
3934
|
}
|
|
3873
3935
|
/**
|
|
3874
3936
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3100,6 +3100,12 @@ export interface ClusterAdvancedSettings {
|
|
|
3100
3100
|
* @memberof ClusterAdvancedSettings
|
|
3101
3101
|
*/
|
|
3102
3102
|
'aws.vpc.flow_logs_retention_days'?: number;
|
|
3103
|
+
/**
|
|
3104
|
+
* Enable a secondary Elastic IP per NAT Gateway, increasing the number of outbound public IPs. Useful for services with IP-based rate limits.
|
|
3105
|
+
* @type {boolean}
|
|
3106
|
+
* @memberof ClusterAdvancedSettings
|
|
3107
|
+
*/
|
|
3108
|
+
'aws.vpc.enable_nat_gateway_secondary_eip'?: boolean;
|
|
3103
3109
|
/**
|
|
3104
3110
|
* For how long in week loki is going to keep logs of your applications
|
|
3105
3111
|
* @type {number}
|
|
@@ -3398,6 +3404,37 @@ export declare const ClusterDeploymentStatusEnum: {
|
|
|
3398
3404
|
readonly UP_TO_DATE: "UP_TO_DATE";
|
|
3399
3405
|
};
|
|
3400
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
|
+
}
|
|
3401
3438
|
/**
|
|
3402
3439
|
*
|
|
3403
3440
|
* @export
|
|
@@ -3869,6 +3906,31 @@ export interface ClusterInfrastructureChartsParameters {
|
|
|
3869
3906
|
* @memberof ClusterInfrastructureChartsParameters
|
|
3870
3907
|
*/
|
|
3871
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;
|
|
3872
3934
|
}
|
|
3873
3935
|
/**
|
|
3874
3936
|
*
|