qovery-typescript-axios 1.1.854 → 1.1.856

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
@@ -2151,7 +2151,7 @@ export interface AvailableHelmRepositoryResponseList {
2151
2151
  * @type AwsCredentialsRequest
2152
2152
  * @export
2153
2153
  */
2154
- export type AwsCredentialsRequest = AwsRoleCredentialsRequest | AwsStaticCredentialsRequest;
2154
+ export type AwsCredentialsRequest = { type: 'AWS_ROLE' } & AwsRoleCredentialsRequest | { type: 'AWS_STATIC' } & AwsStaticCredentialsRequest | { type: 'EKS_ANYWHERE_VSPHERE_ROLE' } & EksAnywhereVsphereRoleCredentialsRequest | { type: 'EKS_ANYWHERE_VSPHERE_STATIC' } & EksAnywhereVsphereStaticCredentialsRequest;
2155
2155
 
2156
2156
  /**
2157
2157
  *
@@ -2197,6 +2197,12 @@ export type AwsRoleClusterCredentialsObjectTypeEnum = typeof AwsRoleClusterCrede
2197
2197
  * @interface AwsRoleCredentialsRequest
2198
2198
  */
2199
2199
  export interface AwsRoleCredentialsRequest {
2200
+ /**
2201
+ *
2202
+ * @type {string}
2203
+ * @memberof AwsRoleCredentialsRequest
2204
+ */
2205
+ 'type': AwsRoleCredentialsRequestTypeEnum;
2200
2206
  /**
2201
2207
  *
2202
2208
  * @type {string}
@@ -2210,6 +2216,13 @@ export interface AwsRoleCredentialsRequest {
2210
2216
  */
2211
2217
  'role_arn': string;
2212
2218
  }
2219
+
2220
+ export const AwsRoleCredentialsRequestTypeEnum = {
2221
+ AWS_ROLE: 'AWS_ROLE'
2222
+ } as const;
2223
+
2224
+ export type AwsRoleCredentialsRequestTypeEnum = typeof AwsRoleCredentialsRequestTypeEnum[keyof typeof AwsRoleCredentialsRequestTypeEnum];
2225
+
2213
2226
  /**
2214
2227
  *
2215
2228
  * @export
@@ -2254,6 +2267,12 @@ export type AwsStaticClusterCredentialsObjectTypeEnum = typeof AwsStaticClusterC
2254
2267
  * @interface AwsStaticCredentialsRequest
2255
2268
  */
2256
2269
  export interface AwsStaticCredentialsRequest {
2270
+ /**
2271
+ *
2272
+ * @type {string}
2273
+ * @memberof AwsStaticCredentialsRequest
2274
+ */
2275
+ 'type': AwsStaticCredentialsRequestTypeEnum;
2257
2276
  /**
2258
2277
  *
2259
2278
  * @type {string}
@@ -2273,6 +2292,13 @@ export interface AwsStaticCredentialsRequest {
2273
2292
  */
2274
2293
  'secret_access_key': string;
2275
2294
  }
2295
+
2296
+ export const AwsStaticCredentialsRequestTypeEnum = {
2297
+ AWS_STATIC: 'AWS_STATIC'
2298
+ } as const;
2299
+
2300
+ export type AwsStaticCredentialsRequestTypeEnum = typeof AwsStaticCredentialsRequestTypeEnum[keyof typeof AwsStaticCredentialsRequestTypeEnum];
2301
+
2276
2302
  /**
2277
2303
  *
2278
2304
  * @export
@@ -3375,6 +3401,30 @@ export interface ClusterAdvancedSettings {
3375
3401
  * @memberof ClusterAdvancedSettings
3376
3402
  */
3377
3403
  'aws.eks.enable_alb_controller'?: boolean;
3404
+ /**
3405
+ * Enable the AWS EFS CSI driver EKS add-on to provision EFS-backed persistent volumes on the cluster.
3406
+ * @type {boolean}
3407
+ * @memberof ClusterAdvancedSettings
3408
+ */
3409
+ 'aws.eks.enable_efs_addon'?: boolean;
3410
+ /**
3411
+ * EFS throughput mode. \"elastic\" scales automatically (pay-per-use), \"bursting\" uses burst credits based on file system size, \"provisioned\" requires a fixed throughput value.
3412
+ * @type {string}
3413
+ * @memberof ClusterAdvancedSettings
3414
+ */
3415
+ 'aws.eks.efs.throughput_mode'?: ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum;
3416
+ /**
3417
+ * EFS performance mode. \"generalPurpose\" offers lowest latency (recommended). \"maxIO\" provides higher aggregate throughput for highly parallelized workloads. Cannot be changed after creation.
3418
+ * @type {string}
3419
+ * @memberof ClusterAdvancedSettings
3420
+ */
3421
+ 'aws.eks.efs.performance_mode'?: ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum;
3422
+ /**
3423
+ * Lifecycle policy to transition files to Infrequent Access (IA) storage after the specified period. IA storage costs less but has a per-read charge. Empty string disables the policy.
3424
+ * @type {string}
3425
+ * @memberof ClusterAdvancedSettings
3426
+ */
3427
+ 'aws.eks.efs.transition_to_ia'?: ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum;
3378
3428
  /**
3379
3429
  * Select the size of the main load_balancer (only effective for Scaleway)
3380
3430
  * @type {string}
@@ -3534,6 +3584,30 @@ export interface ClusterAdvancedSettings {
3534
3584
  'k8s.api.allowed_public_access_cidrs'?: Array<string>;
3535
3585
  }
3536
3586
 
3587
+ export const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = {
3588
+ BURSTING: 'bursting',
3589
+ ELASTIC: 'elastic',
3590
+ PROVISIONED: 'provisioned'
3591
+ } as const;
3592
+
3593
+ export type ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = typeof ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum];
3594
+ export const ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = {
3595
+ GENERAL_PURPOSE: 'generalPurpose',
3596
+ MAX_IO: 'maxIO'
3597
+ } as const;
3598
+
3599
+ export type ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = typeof ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum];
3600
+ export const ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = {
3601
+ AFTER_1_DAY: 'AFTER_1_DAY',
3602
+ AFTER_7_DAYS: 'AFTER_7_DAYS',
3603
+ AFTER_14_DAYS: 'AFTER_14_DAYS',
3604
+ AFTER_30_DAYS: 'AFTER_30_DAYS',
3605
+ AFTER_60_DAYS: 'AFTER_60_DAYS',
3606
+ AFTER_90_DAYS: 'AFTER_90_DAYS',
3607
+ EMPTY: ''
3608
+ } as const;
3609
+
3610
+ export type ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = typeof ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum];
3537
3611
  export const ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = {
3538
3612
  OPTIONAL: 'optional',
3539
3613
  REQUIRED: 'required'
@@ -3618,7 +3692,7 @@ export interface ClusterCloudProviderInfoRequest {
3618
3692
  * @type ClusterCredentials
3619
3693
  * @export
3620
3694
  */
3621
- export type ClusterCredentials = { object_type: 'AWS' } & AwsStaticClusterCredentials | { object_type: 'AWS_ROLE' } & AwsRoleClusterCredentials | { object_type: 'AZURE' } & AzureStaticClusterCredentials | { object_type: 'GCP' } & GcpStaticClusterCredentials | { object_type: 'OTHER' } & GenericClusterCredentials | { object_type: 'SCW' } & ScalewayClusterCredentials;
3695
+ export type ClusterCredentials = { object_type: 'AWS' } & AwsStaticClusterCredentials | { object_type: 'AWS_ROLE' } & AwsRoleClusterCredentials | { object_type: 'AZURE' } & AzureStaticClusterCredentials | { object_type: 'EKS_ANYWHERE_VSPHERE' } & EksAnywhereVsphereClusterCredentials | { object_type: 'GCP' } & GcpStaticClusterCredentials | { object_type: 'OTHER' } & GenericClusterCredentials | { object_type: 'SCW' } & ScalewayClusterCredentials;
3622
3696
 
3623
3697
  /**
3624
3698
  *
@@ -9083,6 +9157,150 @@ export interface EksAnywhereCommitResponse {
9083
9157
  */
9084
9158
  'commit_id': string;
9085
9159
  }
9160
+ /**
9161
+ *
9162
+ * @export
9163
+ * @interface EksAnywhereVsphereClusterCredentials
9164
+ */
9165
+ export interface EksAnywhereVsphereClusterCredentials {
9166
+ /**
9167
+ *
9168
+ * @type {string}
9169
+ * @memberof EksAnywhereVsphereClusterCredentials
9170
+ */
9171
+ 'id': string;
9172
+ /**
9173
+ *
9174
+ * @type {string}
9175
+ * @memberof EksAnywhereVsphereClusterCredentials
9176
+ */
9177
+ 'name': string;
9178
+ /**
9179
+ *
9180
+ * @type {string}
9181
+ * @memberof EksAnywhereVsphereClusterCredentials
9182
+ */
9183
+ 'vsphere_user': string;
9184
+ /**
9185
+ *
9186
+ * @type {string}
9187
+ * @memberof EksAnywhereVsphereClusterCredentials
9188
+ */
9189
+ 'access_key_id'?: string | null;
9190
+ /**
9191
+ *
9192
+ * @type {string}
9193
+ * @memberof EksAnywhereVsphereClusterCredentials
9194
+ */
9195
+ 'role_arn'?: string | null;
9196
+ /**
9197
+ *
9198
+ * @type {string}
9199
+ * @memberof EksAnywhereVsphereClusterCredentials
9200
+ */
9201
+ 'object_type': EksAnywhereVsphereClusterCredentialsObjectTypeEnum;
9202
+ }
9203
+
9204
+ export const EksAnywhereVsphereClusterCredentialsObjectTypeEnum = {
9205
+ EKS_ANYWHERE_VSPHERE: 'EKS_ANYWHERE_VSPHERE'
9206
+ } as const;
9207
+
9208
+ export type EksAnywhereVsphereClusterCredentialsObjectTypeEnum = typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum[keyof typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum];
9209
+
9210
+ /**
9211
+ *
9212
+ * @export
9213
+ * @interface EksAnywhereVsphereRoleCredentialsRequest
9214
+ */
9215
+ export interface EksAnywhereVsphereRoleCredentialsRequest {
9216
+ /**
9217
+ *
9218
+ * @type {string}
9219
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
9220
+ */
9221
+ 'type': EksAnywhereVsphereRoleCredentialsRequestTypeEnum;
9222
+ /**
9223
+ *
9224
+ * @type {string}
9225
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
9226
+ */
9227
+ 'name': string;
9228
+ /**
9229
+ *
9230
+ * @type {string}
9231
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
9232
+ */
9233
+ 'vsphere_user': string;
9234
+ /**
9235
+ *
9236
+ * @type {string}
9237
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
9238
+ */
9239
+ 'vsphere_password': string;
9240
+ /**
9241
+ *
9242
+ * @type {string}
9243
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
9244
+ */
9245
+ 'role_arn': string;
9246
+ }
9247
+
9248
+ export const EksAnywhereVsphereRoleCredentialsRequestTypeEnum = {
9249
+ EKS_ANYWHERE_VSPHERE_ROLE: 'EKS_ANYWHERE_VSPHERE_ROLE'
9250
+ } as const;
9251
+
9252
+ export type EksAnywhereVsphereRoleCredentialsRequestTypeEnum = typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum];
9253
+
9254
+ /**
9255
+ *
9256
+ * @export
9257
+ * @interface EksAnywhereVsphereStaticCredentialsRequest
9258
+ */
9259
+ export interface EksAnywhereVsphereStaticCredentialsRequest {
9260
+ /**
9261
+ *
9262
+ * @type {string}
9263
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9264
+ */
9265
+ 'type': EksAnywhereVsphereStaticCredentialsRequestTypeEnum;
9266
+ /**
9267
+ *
9268
+ * @type {string}
9269
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9270
+ */
9271
+ 'name': string;
9272
+ /**
9273
+ *
9274
+ * @type {string}
9275
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9276
+ */
9277
+ 'vsphere_user': string;
9278
+ /**
9279
+ *
9280
+ * @type {string}
9281
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9282
+ */
9283
+ 'vsphere_password': string;
9284
+ /**
9285
+ *
9286
+ * @type {string}
9287
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9288
+ */
9289
+ 'access_key_id': string;
9290
+ /**
9291
+ *
9292
+ * @type {string}
9293
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9294
+ */
9295
+ 'secret_access_key': string;
9296
+ }
9297
+
9298
+ export const EksAnywhereVsphereStaticCredentialsRequestTypeEnum = {
9299
+ EKS_ANYWHERE_VSPHERE_STATIC: 'EKS_ANYWHERE_VSPHERE_STATIC'
9300
+ } as const;
9301
+
9302
+ export type EksAnywhereVsphereStaticCredentialsRequestTypeEnum = typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum];
9303
+
9086
9304
  /**
9087
9305
  *
9088
9306
  * @export
package/dist/api.d.ts CHANGED
@@ -2069,7 +2069,15 @@ export interface AvailableHelmRepositoryResponseList {
2069
2069
  * @type AwsCredentialsRequest
2070
2070
  * @export
2071
2071
  */
2072
- export type AwsCredentialsRequest = AwsRoleCredentialsRequest | AwsStaticCredentialsRequest;
2072
+ export type AwsCredentialsRequest = {
2073
+ type: 'AWS_ROLE';
2074
+ } & AwsRoleCredentialsRequest | {
2075
+ type: 'AWS_STATIC';
2076
+ } & AwsStaticCredentialsRequest | {
2077
+ type: 'EKS_ANYWHERE_VSPHERE_ROLE';
2078
+ } & EksAnywhereVsphereRoleCredentialsRequest | {
2079
+ type: 'EKS_ANYWHERE_VSPHERE_STATIC';
2080
+ } & EksAnywhereVsphereStaticCredentialsRequest;
2073
2081
  /**
2074
2082
  *
2075
2083
  * @export
@@ -2111,6 +2119,12 @@ export type AwsRoleClusterCredentialsObjectTypeEnum = typeof AwsRoleClusterCrede
2111
2119
  * @interface AwsRoleCredentialsRequest
2112
2120
  */
2113
2121
  export interface AwsRoleCredentialsRequest {
2122
+ /**
2123
+ *
2124
+ * @type {string}
2125
+ * @memberof AwsRoleCredentialsRequest
2126
+ */
2127
+ 'type': AwsRoleCredentialsRequestTypeEnum;
2114
2128
  /**
2115
2129
  *
2116
2130
  * @type {string}
@@ -2124,6 +2138,10 @@ export interface AwsRoleCredentialsRequest {
2124
2138
  */
2125
2139
  'role_arn': string;
2126
2140
  }
2141
+ export declare const AwsRoleCredentialsRequestTypeEnum: {
2142
+ readonly AWS_ROLE: "AWS_ROLE";
2143
+ };
2144
+ export type AwsRoleCredentialsRequestTypeEnum = typeof AwsRoleCredentialsRequestTypeEnum[keyof typeof AwsRoleCredentialsRequestTypeEnum];
2127
2145
  /**
2128
2146
  *
2129
2147
  * @export
@@ -2165,6 +2183,12 @@ export type AwsStaticClusterCredentialsObjectTypeEnum = typeof AwsStaticClusterC
2165
2183
  * @interface AwsStaticCredentialsRequest
2166
2184
  */
2167
2185
  export interface AwsStaticCredentialsRequest {
2186
+ /**
2187
+ *
2188
+ * @type {string}
2189
+ * @memberof AwsStaticCredentialsRequest
2190
+ */
2191
+ 'type': AwsStaticCredentialsRequestTypeEnum;
2168
2192
  /**
2169
2193
  *
2170
2194
  * @type {string}
@@ -2184,6 +2208,10 @@ export interface AwsStaticCredentialsRequest {
2184
2208
  */
2185
2209
  'secret_access_key': string;
2186
2210
  }
2211
+ export declare const AwsStaticCredentialsRequestTypeEnum: {
2212
+ readonly AWS_STATIC: "AWS_STATIC";
2213
+ };
2214
+ export type AwsStaticCredentialsRequestTypeEnum = typeof AwsStaticCredentialsRequestTypeEnum[keyof typeof AwsStaticCredentialsRequestTypeEnum];
2187
2215
  /**
2188
2216
  *
2189
2217
  * @export
@@ -3260,6 +3288,30 @@ export interface ClusterAdvancedSettings {
3260
3288
  * @memberof ClusterAdvancedSettings
3261
3289
  */
3262
3290
  'aws.eks.enable_alb_controller'?: boolean;
3291
+ /**
3292
+ * Enable the AWS EFS CSI driver EKS add-on to provision EFS-backed persistent volumes on the cluster.
3293
+ * @type {boolean}
3294
+ * @memberof ClusterAdvancedSettings
3295
+ */
3296
+ 'aws.eks.enable_efs_addon'?: boolean;
3297
+ /**
3298
+ * EFS throughput mode. \"elastic\" scales automatically (pay-per-use), \"bursting\" uses burst credits based on file system size, \"provisioned\" requires a fixed throughput value.
3299
+ * @type {string}
3300
+ * @memberof ClusterAdvancedSettings
3301
+ */
3302
+ 'aws.eks.efs.throughput_mode'?: ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum;
3303
+ /**
3304
+ * EFS performance mode. \"generalPurpose\" offers lowest latency (recommended). \"maxIO\" provides higher aggregate throughput for highly parallelized workloads. Cannot be changed after creation.
3305
+ * @type {string}
3306
+ * @memberof ClusterAdvancedSettings
3307
+ */
3308
+ 'aws.eks.efs.performance_mode'?: ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum;
3309
+ /**
3310
+ * Lifecycle policy to transition files to Infrequent Access (IA) storage after the specified period. IA storage costs less but has a per-read charge. Empty string disables the policy.
3311
+ * @type {string}
3312
+ * @memberof ClusterAdvancedSettings
3313
+ */
3314
+ 'aws.eks.efs.transition_to_ia'?: ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum;
3263
3315
  /**
3264
3316
  * Select the size of the main load_balancer (only effective for Scaleway)
3265
3317
  * @type {string}
@@ -3418,6 +3470,27 @@ export interface ClusterAdvancedSettings {
3418
3470
  */
3419
3471
  'k8s.api.allowed_public_access_cidrs'?: Array<string>;
3420
3472
  }
3473
+ export declare const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum: {
3474
+ readonly BURSTING: "bursting";
3475
+ readonly ELASTIC: "elastic";
3476
+ readonly PROVISIONED: "provisioned";
3477
+ };
3478
+ export type ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = typeof ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum];
3479
+ export declare const ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum: {
3480
+ readonly GENERAL_PURPOSE: "generalPurpose";
3481
+ readonly MAX_IO: "maxIO";
3482
+ };
3483
+ export type ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = typeof ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum];
3484
+ export declare const ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum: {
3485
+ readonly AFTER_1_DAY: "AFTER_1_DAY";
3486
+ readonly AFTER_7_DAYS: "AFTER_7_DAYS";
3487
+ readonly AFTER_14_DAYS: "AFTER_14_DAYS";
3488
+ readonly AFTER_30_DAYS: "AFTER_30_DAYS";
3489
+ readonly AFTER_60_DAYS: "AFTER_60_DAYS";
3490
+ readonly AFTER_90_DAYS: "AFTER_90_DAYS";
3491
+ readonly EMPTY: "";
3492
+ };
3493
+ export type ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = typeof ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum];
3421
3494
  export declare const ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum: {
3422
3495
  readonly OPTIONAL: "optional";
3423
3496
  readonly REQUIRED: "required";
@@ -3503,6 +3576,8 @@ export type ClusterCredentials = {
3503
3576
  } & AwsRoleClusterCredentials | {
3504
3577
  object_type: 'AZURE';
3505
3578
  } & AzureStaticClusterCredentials | {
3579
+ object_type: 'EKS_ANYWHERE_VSPHERE';
3580
+ } & EksAnywhereVsphereClusterCredentials | {
3506
3581
  object_type: 'GCP';
3507
3582
  } & GcpStaticClusterCredentials | {
3508
3583
  object_type: 'OTHER';
@@ -8802,6 +8877,141 @@ export interface EksAnywhereCommitResponse {
8802
8877
  */
8803
8878
  'commit_id': string;
8804
8879
  }
8880
+ /**
8881
+ *
8882
+ * @export
8883
+ * @interface EksAnywhereVsphereClusterCredentials
8884
+ */
8885
+ export interface EksAnywhereVsphereClusterCredentials {
8886
+ /**
8887
+ *
8888
+ * @type {string}
8889
+ * @memberof EksAnywhereVsphereClusterCredentials
8890
+ */
8891
+ 'id': string;
8892
+ /**
8893
+ *
8894
+ * @type {string}
8895
+ * @memberof EksAnywhereVsphereClusterCredentials
8896
+ */
8897
+ 'name': string;
8898
+ /**
8899
+ *
8900
+ * @type {string}
8901
+ * @memberof EksAnywhereVsphereClusterCredentials
8902
+ */
8903
+ 'vsphere_user': string;
8904
+ /**
8905
+ *
8906
+ * @type {string}
8907
+ * @memberof EksAnywhereVsphereClusterCredentials
8908
+ */
8909
+ 'access_key_id'?: string | null;
8910
+ /**
8911
+ *
8912
+ * @type {string}
8913
+ * @memberof EksAnywhereVsphereClusterCredentials
8914
+ */
8915
+ 'role_arn'?: string | null;
8916
+ /**
8917
+ *
8918
+ * @type {string}
8919
+ * @memberof EksAnywhereVsphereClusterCredentials
8920
+ */
8921
+ 'object_type': EksAnywhereVsphereClusterCredentialsObjectTypeEnum;
8922
+ }
8923
+ export declare const EksAnywhereVsphereClusterCredentialsObjectTypeEnum: {
8924
+ readonly EKS_ANYWHERE_VSPHERE: "EKS_ANYWHERE_VSPHERE";
8925
+ };
8926
+ export type EksAnywhereVsphereClusterCredentialsObjectTypeEnum = typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum[keyof typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum];
8927
+ /**
8928
+ *
8929
+ * @export
8930
+ * @interface EksAnywhereVsphereRoleCredentialsRequest
8931
+ */
8932
+ export interface EksAnywhereVsphereRoleCredentialsRequest {
8933
+ /**
8934
+ *
8935
+ * @type {string}
8936
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8937
+ */
8938
+ 'type': EksAnywhereVsphereRoleCredentialsRequestTypeEnum;
8939
+ /**
8940
+ *
8941
+ * @type {string}
8942
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8943
+ */
8944
+ 'name': string;
8945
+ /**
8946
+ *
8947
+ * @type {string}
8948
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8949
+ */
8950
+ 'vsphere_user': string;
8951
+ /**
8952
+ *
8953
+ * @type {string}
8954
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8955
+ */
8956
+ 'vsphere_password': string;
8957
+ /**
8958
+ *
8959
+ * @type {string}
8960
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8961
+ */
8962
+ 'role_arn': string;
8963
+ }
8964
+ export declare const EksAnywhereVsphereRoleCredentialsRequestTypeEnum: {
8965
+ readonly EKS_ANYWHERE_VSPHERE_ROLE: "EKS_ANYWHERE_VSPHERE_ROLE";
8966
+ };
8967
+ export type EksAnywhereVsphereRoleCredentialsRequestTypeEnum = typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum];
8968
+ /**
8969
+ *
8970
+ * @export
8971
+ * @interface EksAnywhereVsphereStaticCredentialsRequest
8972
+ */
8973
+ export interface EksAnywhereVsphereStaticCredentialsRequest {
8974
+ /**
8975
+ *
8976
+ * @type {string}
8977
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8978
+ */
8979
+ 'type': EksAnywhereVsphereStaticCredentialsRequestTypeEnum;
8980
+ /**
8981
+ *
8982
+ * @type {string}
8983
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8984
+ */
8985
+ 'name': string;
8986
+ /**
8987
+ *
8988
+ * @type {string}
8989
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8990
+ */
8991
+ 'vsphere_user': string;
8992
+ /**
8993
+ *
8994
+ * @type {string}
8995
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8996
+ */
8997
+ 'vsphere_password': string;
8998
+ /**
8999
+ *
9000
+ * @type {string}
9001
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9002
+ */
9003
+ 'access_key_id': string;
9004
+ /**
9005
+ *
9006
+ * @type {string}
9007
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9008
+ */
9009
+ 'secret_access_key': string;
9010
+ }
9011
+ export declare const EksAnywhereVsphereStaticCredentialsRequestTypeEnum: {
9012
+ readonly EKS_ANYWHERE_VSPHERE_STATIC: "EKS_ANYWHERE_VSPHERE_STATIC";
9013
+ };
9014
+ export type EksAnywhereVsphereStaticCredentialsRequestTypeEnum = typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum];
8805
9015
  /**
8806
9016
  *
8807
9017
  * @export
package/dist/api.js CHANGED
@@ -22,17 +22,17 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AutoscalingMode = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ArgoCdConnectionCheckResponseStatusEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
26
- exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentHistoryTriggerAction = void 0;
27
- exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = void 0;
28
- exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = void 0;
29
- exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = void 0;
30
- exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = void 0;
31
- exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = void 0;
32
- exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = void 0;
33
- exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = void 0;
34
- exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = void 0;
35
- exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = void 0;
25
+ exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AutoscalingMode = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ArgoCdConnectionCheckResponseStatusEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
26
+ exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = void 0;
27
+ exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = void 0;
28
+ exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = void 0;
29
+ exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = void 0;
30
+ exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = void 0;
31
+ exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = void 0;
32
+ exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = void 0;
33
+ exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = void 0;
34
+ exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = void 0;
35
+ exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = void 0;
36
36
  const axios_1 = require("axios");
37
37
  // Some imports not used depending on template conditions
38
38
  // @ts-ignore
@@ -209,9 +209,15 @@ exports.AutoscalingMode = {
209
209
  exports.AwsRoleClusterCredentialsObjectTypeEnum = {
210
210
  AWS_ROLE: 'AWS_ROLE'
211
211
  };
212
+ exports.AwsRoleCredentialsRequestTypeEnum = {
213
+ AWS_ROLE: 'AWS_ROLE'
214
+ };
212
215
  exports.AwsStaticClusterCredentialsObjectTypeEnum = {
213
216
  AWS: 'AWS'
214
217
  };
218
+ exports.AwsStaticCredentialsRequestTypeEnum = {
219
+ AWS_STATIC: 'AWS_STATIC'
220
+ };
215
221
  exports.AzureStaticClusterCredentialsObjectTypeEnum = {
216
222
  AZURE: 'AZURE'
217
223
  };
@@ -265,6 +271,24 @@ exports.CloudVendorEnum = {
265
271
  IBM: 'IBM',
266
272
  ON_PREMISE: 'ON_PREMISE'
267
273
  };
274
+ exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = {
275
+ BURSTING: 'bursting',
276
+ ELASTIC: 'elastic',
277
+ PROVISIONED: 'provisioned'
278
+ };
279
+ exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = {
280
+ GENERAL_PURPOSE: 'generalPurpose',
281
+ MAX_IO: 'maxIO'
282
+ };
283
+ exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = {
284
+ AFTER_1_DAY: 'AFTER_1_DAY',
285
+ AFTER_7_DAYS: 'AFTER_7_DAYS',
286
+ AFTER_14_DAYS: 'AFTER_14_DAYS',
287
+ AFTER_30_DAYS: 'AFTER_30_DAYS',
288
+ AFTER_60_DAYS: 'AFTER_60_DAYS',
289
+ AFTER_90_DAYS: 'AFTER_90_DAYS',
290
+ EMPTY: ''
291
+ };
268
292
  exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = {
269
293
  OPTIONAL: 'optional',
270
294
  REQUIRED: 'required'
@@ -544,6 +568,15 @@ exports.DockerfileFragmentFileTypeEnum = {
544
568
  exports.DockerfileFragmentInlineTypeEnum = {
545
569
  INLINE: 'inline'
546
570
  };
571
+ exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = {
572
+ EKS_ANYWHERE_VSPHERE: 'EKS_ANYWHERE_VSPHERE'
573
+ };
574
+ exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = {
575
+ EKS_ANYWHERE_VSPHERE_ROLE: 'EKS_ANYWHERE_VSPHERE_ROLE'
576
+ };
577
+ exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = {
578
+ EKS_ANYWHERE_VSPHERE_STATIC: 'EKS_ANYWHERE_VSPHERE_STATIC'
579
+ };
547
580
  exports.EksInfrastructureOutputsKindEnum = {
548
581
  EKS: 'EKS'
549
582
  };
package/dist/esm/api.d.ts CHANGED
@@ -2069,7 +2069,15 @@ export interface AvailableHelmRepositoryResponseList {
2069
2069
  * @type AwsCredentialsRequest
2070
2070
  * @export
2071
2071
  */
2072
- export type AwsCredentialsRequest = AwsRoleCredentialsRequest | AwsStaticCredentialsRequest;
2072
+ export type AwsCredentialsRequest = {
2073
+ type: 'AWS_ROLE';
2074
+ } & AwsRoleCredentialsRequest | {
2075
+ type: 'AWS_STATIC';
2076
+ } & AwsStaticCredentialsRequest | {
2077
+ type: 'EKS_ANYWHERE_VSPHERE_ROLE';
2078
+ } & EksAnywhereVsphereRoleCredentialsRequest | {
2079
+ type: 'EKS_ANYWHERE_VSPHERE_STATIC';
2080
+ } & EksAnywhereVsphereStaticCredentialsRequest;
2073
2081
  /**
2074
2082
  *
2075
2083
  * @export
@@ -2111,6 +2119,12 @@ export type AwsRoleClusterCredentialsObjectTypeEnum = typeof AwsRoleClusterCrede
2111
2119
  * @interface AwsRoleCredentialsRequest
2112
2120
  */
2113
2121
  export interface AwsRoleCredentialsRequest {
2122
+ /**
2123
+ *
2124
+ * @type {string}
2125
+ * @memberof AwsRoleCredentialsRequest
2126
+ */
2127
+ 'type': AwsRoleCredentialsRequestTypeEnum;
2114
2128
  /**
2115
2129
  *
2116
2130
  * @type {string}
@@ -2124,6 +2138,10 @@ export interface AwsRoleCredentialsRequest {
2124
2138
  */
2125
2139
  'role_arn': string;
2126
2140
  }
2141
+ export declare const AwsRoleCredentialsRequestTypeEnum: {
2142
+ readonly AWS_ROLE: "AWS_ROLE";
2143
+ };
2144
+ export type AwsRoleCredentialsRequestTypeEnum = typeof AwsRoleCredentialsRequestTypeEnum[keyof typeof AwsRoleCredentialsRequestTypeEnum];
2127
2145
  /**
2128
2146
  *
2129
2147
  * @export
@@ -2165,6 +2183,12 @@ export type AwsStaticClusterCredentialsObjectTypeEnum = typeof AwsStaticClusterC
2165
2183
  * @interface AwsStaticCredentialsRequest
2166
2184
  */
2167
2185
  export interface AwsStaticCredentialsRequest {
2186
+ /**
2187
+ *
2188
+ * @type {string}
2189
+ * @memberof AwsStaticCredentialsRequest
2190
+ */
2191
+ 'type': AwsStaticCredentialsRequestTypeEnum;
2168
2192
  /**
2169
2193
  *
2170
2194
  * @type {string}
@@ -2184,6 +2208,10 @@ export interface AwsStaticCredentialsRequest {
2184
2208
  */
2185
2209
  'secret_access_key': string;
2186
2210
  }
2211
+ export declare const AwsStaticCredentialsRequestTypeEnum: {
2212
+ readonly AWS_STATIC: "AWS_STATIC";
2213
+ };
2214
+ export type AwsStaticCredentialsRequestTypeEnum = typeof AwsStaticCredentialsRequestTypeEnum[keyof typeof AwsStaticCredentialsRequestTypeEnum];
2187
2215
  /**
2188
2216
  *
2189
2217
  * @export
@@ -3260,6 +3288,30 @@ export interface ClusterAdvancedSettings {
3260
3288
  * @memberof ClusterAdvancedSettings
3261
3289
  */
3262
3290
  'aws.eks.enable_alb_controller'?: boolean;
3291
+ /**
3292
+ * Enable the AWS EFS CSI driver EKS add-on to provision EFS-backed persistent volumes on the cluster.
3293
+ * @type {boolean}
3294
+ * @memberof ClusterAdvancedSettings
3295
+ */
3296
+ 'aws.eks.enable_efs_addon'?: boolean;
3297
+ /**
3298
+ * EFS throughput mode. \"elastic\" scales automatically (pay-per-use), \"bursting\" uses burst credits based on file system size, \"provisioned\" requires a fixed throughput value.
3299
+ * @type {string}
3300
+ * @memberof ClusterAdvancedSettings
3301
+ */
3302
+ 'aws.eks.efs.throughput_mode'?: ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum;
3303
+ /**
3304
+ * EFS performance mode. \"generalPurpose\" offers lowest latency (recommended). \"maxIO\" provides higher aggregate throughput for highly parallelized workloads. Cannot be changed after creation.
3305
+ * @type {string}
3306
+ * @memberof ClusterAdvancedSettings
3307
+ */
3308
+ 'aws.eks.efs.performance_mode'?: ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum;
3309
+ /**
3310
+ * Lifecycle policy to transition files to Infrequent Access (IA) storage after the specified period. IA storage costs less but has a per-read charge. Empty string disables the policy.
3311
+ * @type {string}
3312
+ * @memberof ClusterAdvancedSettings
3313
+ */
3314
+ 'aws.eks.efs.transition_to_ia'?: ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum;
3263
3315
  /**
3264
3316
  * Select the size of the main load_balancer (only effective for Scaleway)
3265
3317
  * @type {string}
@@ -3418,6 +3470,27 @@ export interface ClusterAdvancedSettings {
3418
3470
  */
3419
3471
  'k8s.api.allowed_public_access_cidrs'?: Array<string>;
3420
3472
  }
3473
+ export declare const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum: {
3474
+ readonly BURSTING: "bursting";
3475
+ readonly ELASTIC: "elastic";
3476
+ readonly PROVISIONED: "provisioned";
3477
+ };
3478
+ export type ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = typeof ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum];
3479
+ export declare const ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum: {
3480
+ readonly GENERAL_PURPOSE: "generalPurpose";
3481
+ readonly MAX_IO: "maxIO";
3482
+ };
3483
+ export type ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = typeof ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum];
3484
+ export declare const ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum: {
3485
+ readonly AFTER_1_DAY: "AFTER_1_DAY";
3486
+ readonly AFTER_7_DAYS: "AFTER_7_DAYS";
3487
+ readonly AFTER_14_DAYS: "AFTER_14_DAYS";
3488
+ readonly AFTER_30_DAYS: "AFTER_30_DAYS";
3489
+ readonly AFTER_60_DAYS: "AFTER_60_DAYS";
3490
+ readonly AFTER_90_DAYS: "AFTER_90_DAYS";
3491
+ readonly EMPTY: "";
3492
+ };
3493
+ export type ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = typeof ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum[keyof typeof ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum];
3421
3494
  export declare const ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum: {
3422
3495
  readonly OPTIONAL: "optional";
3423
3496
  readonly REQUIRED: "required";
@@ -3503,6 +3576,8 @@ export type ClusterCredentials = {
3503
3576
  } & AwsRoleClusterCredentials | {
3504
3577
  object_type: 'AZURE';
3505
3578
  } & AzureStaticClusterCredentials | {
3579
+ object_type: 'EKS_ANYWHERE_VSPHERE';
3580
+ } & EksAnywhereVsphereClusterCredentials | {
3506
3581
  object_type: 'GCP';
3507
3582
  } & GcpStaticClusterCredentials | {
3508
3583
  object_type: 'OTHER';
@@ -8802,6 +8877,141 @@ export interface EksAnywhereCommitResponse {
8802
8877
  */
8803
8878
  'commit_id': string;
8804
8879
  }
8880
+ /**
8881
+ *
8882
+ * @export
8883
+ * @interface EksAnywhereVsphereClusterCredentials
8884
+ */
8885
+ export interface EksAnywhereVsphereClusterCredentials {
8886
+ /**
8887
+ *
8888
+ * @type {string}
8889
+ * @memberof EksAnywhereVsphereClusterCredentials
8890
+ */
8891
+ 'id': string;
8892
+ /**
8893
+ *
8894
+ * @type {string}
8895
+ * @memberof EksAnywhereVsphereClusterCredentials
8896
+ */
8897
+ 'name': string;
8898
+ /**
8899
+ *
8900
+ * @type {string}
8901
+ * @memberof EksAnywhereVsphereClusterCredentials
8902
+ */
8903
+ 'vsphere_user': string;
8904
+ /**
8905
+ *
8906
+ * @type {string}
8907
+ * @memberof EksAnywhereVsphereClusterCredentials
8908
+ */
8909
+ 'access_key_id'?: string | null;
8910
+ /**
8911
+ *
8912
+ * @type {string}
8913
+ * @memberof EksAnywhereVsphereClusterCredentials
8914
+ */
8915
+ 'role_arn'?: string | null;
8916
+ /**
8917
+ *
8918
+ * @type {string}
8919
+ * @memberof EksAnywhereVsphereClusterCredentials
8920
+ */
8921
+ 'object_type': EksAnywhereVsphereClusterCredentialsObjectTypeEnum;
8922
+ }
8923
+ export declare const EksAnywhereVsphereClusterCredentialsObjectTypeEnum: {
8924
+ readonly EKS_ANYWHERE_VSPHERE: "EKS_ANYWHERE_VSPHERE";
8925
+ };
8926
+ export type EksAnywhereVsphereClusterCredentialsObjectTypeEnum = typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum[keyof typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum];
8927
+ /**
8928
+ *
8929
+ * @export
8930
+ * @interface EksAnywhereVsphereRoleCredentialsRequest
8931
+ */
8932
+ export interface EksAnywhereVsphereRoleCredentialsRequest {
8933
+ /**
8934
+ *
8935
+ * @type {string}
8936
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8937
+ */
8938
+ 'type': EksAnywhereVsphereRoleCredentialsRequestTypeEnum;
8939
+ /**
8940
+ *
8941
+ * @type {string}
8942
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8943
+ */
8944
+ 'name': string;
8945
+ /**
8946
+ *
8947
+ * @type {string}
8948
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8949
+ */
8950
+ 'vsphere_user': string;
8951
+ /**
8952
+ *
8953
+ * @type {string}
8954
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8955
+ */
8956
+ 'vsphere_password': string;
8957
+ /**
8958
+ *
8959
+ * @type {string}
8960
+ * @memberof EksAnywhereVsphereRoleCredentialsRequest
8961
+ */
8962
+ 'role_arn': string;
8963
+ }
8964
+ export declare const EksAnywhereVsphereRoleCredentialsRequestTypeEnum: {
8965
+ readonly EKS_ANYWHERE_VSPHERE_ROLE: "EKS_ANYWHERE_VSPHERE_ROLE";
8966
+ };
8967
+ export type EksAnywhereVsphereRoleCredentialsRequestTypeEnum = typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum];
8968
+ /**
8969
+ *
8970
+ * @export
8971
+ * @interface EksAnywhereVsphereStaticCredentialsRequest
8972
+ */
8973
+ export interface EksAnywhereVsphereStaticCredentialsRequest {
8974
+ /**
8975
+ *
8976
+ * @type {string}
8977
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8978
+ */
8979
+ 'type': EksAnywhereVsphereStaticCredentialsRequestTypeEnum;
8980
+ /**
8981
+ *
8982
+ * @type {string}
8983
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8984
+ */
8985
+ 'name': string;
8986
+ /**
8987
+ *
8988
+ * @type {string}
8989
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8990
+ */
8991
+ 'vsphere_user': string;
8992
+ /**
8993
+ *
8994
+ * @type {string}
8995
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
8996
+ */
8997
+ 'vsphere_password': string;
8998
+ /**
8999
+ *
9000
+ * @type {string}
9001
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9002
+ */
9003
+ 'access_key_id': string;
9004
+ /**
9005
+ *
9006
+ * @type {string}
9007
+ * @memberof EksAnywhereVsphereStaticCredentialsRequest
9008
+ */
9009
+ 'secret_access_key': string;
9010
+ }
9011
+ export declare const EksAnywhereVsphereStaticCredentialsRequestTypeEnum: {
9012
+ readonly EKS_ANYWHERE_VSPHERE_STATIC: "EKS_ANYWHERE_VSPHERE_STATIC";
9013
+ };
9014
+ export type EksAnywhereVsphereStaticCredentialsRequestTypeEnum = typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum];
8805
9015
  /**
8806
9016
  *
8807
9017
  * @export
package/dist/esm/api.js CHANGED
@@ -196,9 +196,15 @@ export const AutoscalingMode = {
196
196
  export const AwsRoleClusterCredentialsObjectTypeEnum = {
197
197
  AWS_ROLE: 'AWS_ROLE'
198
198
  };
199
+ export const AwsRoleCredentialsRequestTypeEnum = {
200
+ AWS_ROLE: 'AWS_ROLE'
201
+ };
199
202
  export const AwsStaticClusterCredentialsObjectTypeEnum = {
200
203
  AWS: 'AWS'
201
204
  };
205
+ export const AwsStaticCredentialsRequestTypeEnum = {
206
+ AWS_STATIC: 'AWS_STATIC'
207
+ };
202
208
  export const AzureStaticClusterCredentialsObjectTypeEnum = {
203
209
  AZURE: 'AZURE'
204
210
  };
@@ -252,6 +258,24 @@ export const CloudVendorEnum = {
252
258
  IBM: 'IBM',
253
259
  ON_PREMISE: 'ON_PREMISE'
254
260
  };
261
+ export const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = {
262
+ BURSTING: 'bursting',
263
+ ELASTIC: 'elastic',
264
+ PROVISIONED: 'provisioned'
265
+ };
266
+ export const ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = {
267
+ GENERAL_PURPOSE: 'generalPurpose',
268
+ MAX_IO: 'maxIO'
269
+ };
270
+ export const ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = {
271
+ AFTER_1_DAY: 'AFTER_1_DAY',
272
+ AFTER_7_DAYS: 'AFTER_7_DAYS',
273
+ AFTER_14_DAYS: 'AFTER_14_DAYS',
274
+ AFTER_30_DAYS: 'AFTER_30_DAYS',
275
+ AFTER_60_DAYS: 'AFTER_60_DAYS',
276
+ AFTER_90_DAYS: 'AFTER_90_DAYS',
277
+ EMPTY: ''
278
+ };
255
279
  export const ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = {
256
280
  OPTIONAL: 'optional',
257
281
  REQUIRED: 'required'
@@ -531,6 +555,15 @@ export const DockerfileFragmentFileTypeEnum = {
531
555
  export const DockerfileFragmentInlineTypeEnum = {
532
556
  INLINE: 'inline'
533
557
  };
558
+ export const EksAnywhereVsphereClusterCredentialsObjectTypeEnum = {
559
+ EKS_ANYWHERE_VSPHERE: 'EKS_ANYWHERE_VSPHERE'
560
+ };
561
+ export const EksAnywhereVsphereRoleCredentialsRequestTypeEnum = {
562
+ EKS_ANYWHERE_VSPHERE_ROLE: 'EKS_ANYWHERE_VSPHERE_ROLE'
563
+ };
564
+ export const EksAnywhereVsphereStaticCredentialsRequestTypeEnum = {
565
+ EKS_ANYWHERE_VSPHERE_STATIC: 'EKS_ANYWHERE_VSPHERE_STATIC'
566
+ };
534
567
  export const EksInfrastructureOutputsKindEnum = {
535
568
  EKS: 'EKS'
536
569
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.854",
3
+ "version": "v1.1.856",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {