qovery-typescript-axios 1.1.867 → 1.1.869
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 +108 -0
- package/dist/api.d.ts +107 -0
- package/dist/api.js +15 -11
- package/dist/esm/api.d.ts +107 -0
- package/dist/esm/api.js +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3428,6 +3428,108 @@ export interface ClusterAdvancedSettings {
|
|
|
3428
3428
|
* @memberof ClusterAdvancedSettings
|
|
3429
3429
|
*/
|
|
3430
3430
|
'loki.log_retention_in_week'?: number;
|
|
3431
|
+
/**
|
|
3432
|
+
* Loki deployment topology. \"single_binary\" runs Loki as one pod; \"simple_scalable\" splits it into separate write, read, and backend components for larger clusters.
|
|
3433
|
+
* @type {string}
|
|
3434
|
+
* @memberof ClusterAdvancedSettings
|
|
3435
|
+
*/
|
|
3436
|
+
'loki.deployment_mode'?: ClusterAdvancedSettingsLokiDeploymentModeEnum;
|
|
3437
|
+
/**
|
|
3438
|
+
* CPU request (in milli-CPU) for the Loki pod when running in single_binary mode.
|
|
3439
|
+
* @type {number}
|
|
3440
|
+
* @memberof ClusterAdvancedSettings
|
|
3441
|
+
*/
|
|
3442
|
+
'loki.single_binary.cpu_request_m'?: number;
|
|
3443
|
+
/**
|
|
3444
|
+
* CPU limit (in milli-CPU) for the Loki pod when running in single_binary mode.
|
|
3445
|
+
* @type {number}
|
|
3446
|
+
* @memberof ClusterAdvancedSettings
|
|
3447
|
+
*/
|
|
3448
|
+
'loki.single_binary.cpu_limit_m'?: number;
|
|
3449
|
+
/**
|
|
3450
|
+
* Memory request (in MiB) for the Loki pod when running in single_binary mode.
|
|
3451
|
+
* @type {number}
|
|
3452
|
+
* @memberof ClusterAdvancedSettings
|
|
3453
|
+
*/
|
|
3454
|
+
'loki.single_binary.memory_request_mib'?: number;
|
|
3455
|
+
/**
|
|
3456
|
+
* Memory limit (in MiB) for the Loki pod when running in single_binary mode.
|
|
3457
|
+
* @type {number}
|
|
3458
|
+
* @memberof ClusterAdvancedSettings
|
|
3459
|
+
*/
|
|
3460
|
+
'loki.single_binary.memory_limit_mib'?: number;
|
|
3461
|
+
/**
|
|
3462
|
+
* CPU request (in milli-CPU) for the Loki write component when running in simple_scalable mode.
|
|
3463
|
+
* @type {number}
|
|
3464
|
+
* @memberof ClusterAdvancedSettings
|
|
3465
|
+
*/
|
|
3466
|
+
'loki.write.cpu_request_m'?: number;
|
|
3467
|
+
/**
|
|
3468
|
+
* CPU limit (in milli-CPU) for the Loki write component when running in simple_scalable mode.
|
|
3469
|
+
* @type {number}
|
|
3470
|
+
* @memberof ClusterAdvancedSettings
|
|
3471
|
+
*/
|
|
3472
|
+
'loki.write.cpu_limit_m'?: number;
|
|
3473
|
+
/**
|
|
3474
|
+
* Memory request (in MiB) for the Loki write component when running in simple_scalable mode.
|
|
3475
|
+
* @type {number}
|
|
3476
|
+
* @memberof ClusterAdvancedSettings
|
|
3477
|
+
*/
|
|
3478
|
+
'loki.write.memory_request_mib'?: number;
|
|
3479
|
+
/**
|
|
3480
|
+
* Memory limit (in MiB) for the Loki write component when running in simple_scalable mode.
|
|
3481
|
+
* @type {number}
|
|
3482
|
+
* @memberof ClusterAdvancedSettings
|
|
3483
|
+
*/
|
|
3484
|
+
'loki.write.memory_limit_mib'?: number;
|
|
3485
|
+
/**
|
|
3486
|
+
* CPU request (in milli-CPU) for the Loki read component when running in simple_scalable mode.
|
|
3487
|
+
* @type {number}
|
|
3488
|
+
* @memberof ClusterAdvancedSettings
|
|
3489
|
+
*/
|
|
3490
|
+
'loki.read.cpu_request_m'?: number;
|
|
3491
|
+
/**
|
|
3492
|
+
* CPU limit (in milli-CPU) for the Loki read component when running in simple_scalable mode.
|
|
3493
|
+
* @type {number}
|
|
3494
|
+
* @memberof ClusterAdvancedSettings
|
|
3495
|
+
*/
|
|
3496
|
+
'loki.read.cpu_limit_m'?: number;
|
|
3497
|
+
/**
|
|
3498
|
+
* Memory request (in MiB) for the Loki read component when running in simple_scalable mode.
|
|
3499
|
+
* @type {number}
|
|
3500
|
+
* @memberof ClusterAdvancedSettings
|
|
3501
|
+
*/
|
|
3502
|
+
'loki.read.memory_request_mib'?: number;
|
|
3503
|
+
/**
|
|
3504
|
+
* Memory limit (in MiB) for the Loki read component when running in simple_scalable mode.
|
|
3505
|
+
* @type {number}
|
|
3506
|
+
* @memberof ClusterAdvancedSettings
|
|
3507
|
+
*/
|
|
3508
|
+
'loki.read.memory_limit_mib'?: number;
|
|
3509
|
+
/**
|
|
3510
|
+
* CPU request (in milli-CPU) for the Loki backend component when running in simple_scalable mode.
|
|
3511
|
+
* @type {number}
|
|
3512
|
+
* @memberof ClusterAdvancedSettings
|
|
3513
|
+
*/
|
|
3514
|
+
'loki.backend.cpu_request_m'?: number;
|
|
3515
|
+
/**
|
|
3516
|
+
* CPU limit (in milli-CPU) for the Loki backend component when running in simple_scalable mode.
|
|
3517
|
+
* @type {number}
|
|
3518
|
+
* @memberof ClusterAdvancedSettings
|
|
3519
|
+
*/
|
|
3520
|
+
'loki.backend.cpu_limit_m'?: number;
|
|
3521
|
+
/**
|
|
3522
|
+
* Memory request (in MiB) for the Loki backend component when running in simple_scalable mode.
|
|
3523
|
+
* @type {number}
|
|
3524
|
+
* @memberof ClusterAdvancedSettings
|
|
3525
|
+
*/
|
|
3526
|
+
'loki.backend.memory_request_mib'?: number;
|
|
3527
|
+
/**
|
|
3528
|
+
* Memory limit (in MiB) for the Loki backend component when running in simple_scalable mode.
|
|
3529
|
+
* @type {number}
|
|
3530
|
+
* @memberof ClusterAdvancedSettings
|
|
3531
|
+
*/
|
|
3532
|
+
'loki.backend.memory_limit_mib'?: number;
|
|
3431
3533
|
/**
|
|
3432
3534
|
* Configure the number of seconds before cleaning images in the registry
|
|
3433
3535
|
* @type {number}
|
|
@@ -3629,6 +3731,12 @@ export interface ClusterAdvancedSettings {
|
|
|
3629
3731
|
'k8s.api.allowed_public_access_cidrs'?: Array<string>;
|
|
3630
3732
|
}
|
|
3631
3733
|
|
|
3734
|
+
export const ClusterAdvancedSettingsLokiDeploymentModeEnum = {
|
|
3735
|
+
SINGLE_BINARY: 'single_binary',
|
|
3736
|
+
SIMPLE_SCALABLE: 'simple_scalable'
|
|
3737
|
+
} as const;
|
|
3738
|
+
|
|
3739
|
+
export type ClusterAdvancedSettingsLokiDeploymentModeEnum = typeof ClusterAdvancedSettingsLokiDeploymentModeEnum[keyof typeof ClusterAdvancedSettingsLokiDeploymentModeEnum];
|
|
3632
3740
|
export const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = {
|
|
3633
3741
|
BURSTING: 'bursting',
|
|
3634
3742
|
ELASTIC: 'elastic',
|
package/dist/api.d.ts
CHANGED
|
@@ -3311,6 +3311,108 @@ export interface ClusterAdvancedSettings {
|
|
|
3311
3311
|
* @memberof ClusterAdvancedSettings
|
|
3312
3312
|
*/
|
|
3313
3313
|
'loki.log_retention_in_week'?: number;
|
|
3314
|
+
/**
|
|
3315
|
+
* Loki deployment topology. \"single_binary\" runs Loki as one pod; \"simple_scalable\" splits it into separate write, read, and backend components for larger clusters.
|
|
3316
|
+
* @type {string}
|
|
3317
|
+
* @memberof ClusterAdvancedSettings
|
|
3318
|
+
*/
|
|
3319
|
+
'loki.deployment_mode'?: ClusterAdvancedSettingsLokiDeploymentModeEnum;
|
|
3320
|
+
/**
|
|
3321
|
+
* CPU request (in milli-CPU) for the Loki pod when running in single_binary mode.
|
|
3322
|
+
* @type {number}
|
|
3323
|
+
* @memberof ClusterAdvancedSettings
|
|
3324
|
+
*/
|
|
3325
|
+
'loki.single_binary.cpu_request_m'?: number;
|
|
3326
|
+
/**
|
|
3327
|
+
* CPU limit (in milli-CPU) for the Loki pod when running in single_binary mode.
|
|
3328
|
+
* @type {number}
|
|
3329
|
+
* @memberof ClusterAdvancedSettings
|
|
3330
|
+
*/
|
|
3331
|
+
'loki.single_binary.cpu_limit_m'?: number;
|
|
3332
|
+
/**
|
|
3333
|
+
* Memory request (in MiB) for the Loki pod when running in single_binary mode.
|
|
3334
|
+
* @type {number}
|
|
3335
|
+
* @memberof ClusterAdvancedSettings
|
|
3336
|
+
*/
|
|
3337
|
+
'loki.single_binary.memory_request_mib'?: number;
|
|
3338
|
+
/**
|
|
3339
|
+
* Memory limit (in MiB) for the Loki pod when running in single_binary mode.
|
|
3340
|
+
* @type {number}
|
|
3341
|
+
* @memberof ClusterAdvancedSettings
|
|
3342
|
+
*/
|
|
3343
|
+
'loki.single_binary.memory_limit_mib'?: number;
|
|
3344
|
+
/**
|
|
3345
|
+
* CPU request (in milli-CPU) for the Loki write component when running in simple_scalable mode.
|
|
3346
|
+
* @type {number}
|
|
3347
|
+
* @memberof ClusterAdvancedSettings
|
|
3348
|
+
*/
|
|
3349
|
+
'loki.write.cpu_request_m'?: number;
|
|
3350
|
+
/**
|
|
3351
|
+
* CPU limit (in milli-CPU) for the Loki write component when running in simple_scalable mode.
|
|
3352
|
+
* @type {number}
|
|
3353
|
+
* @memberof ClusterAdvancedSettings
|
|
3354
|
+
*/
|
|
3355
|
+
'loki.write.cpu_limit_m'?: number;
|
|
3356
|
+
/**
|
|
3357
|
+
* Memory request (in MiB) for the Loki write component when running in simple_scalable mode.
|
|
3358
|
+
* @type {number}
|
|
3359
|
+
* @memberof ClusterAdvancedSettings
|
|
3360
|
+
*/
|
|
3361
|
+
'loki.write.memory_request_mib'?: number;
|
|
3362
|
+
/**
|
|
3363
|
+
* Memory limit (in MiB) for the Loki write component when running in simple_scalable mode.
|
|
3364
|
+
* @type {number}
|
|
3365
|
+
* @memberof ClusterAdvancedSettings
|
|
3366
|
+
*/
|
|
3367
|
+
'loki.write.memory_limit_mib'?: number;
|
|
3368
|
+
/**
|
|
3369
|
+
* CPU request (in milli-CPU) for the Loki read component when running in simple_scalable mode.
|
|
3370
|
+
* @type {number}
|
|
3371
|
+
* @memberof ClusterAdvancedSettings
|
|
3372
|
+
*/
|
|
3373
|
+
'loki.read.cpu_request_m'?: number;
|
|
3374
|
+
/**
|
|
3375
|
+
* CPU limit (in milli-CPU) for the Loki read component when running in simple_scalable mode.
|
|
3376
|
+
* @type {number}
|
|
3377
|
+
* @memberof ClusterAdvancedSettings
|
|
3378
|
+
*/
|
|
3379
|
+
'loki.read.cpu_limit_m'?: number;
|
|
3380
|
+
/**
|
|
3381
|
+
* Memory request (in MiB) for the Loki read component when running in simple_scalable mode.
|
|
3382
|
+
* @type {number}
|
|
3383
|
+
* @memberof ClusterAdvancedSettings
|
|
3384
|
+
*/
|
|
3385
|
+
'loki.read.memory_request_mib'?: number;
|
|
3386
|
+
/**
|
|
3387
|
+
* Memory limit (in MiB) for the Loki read component when running in simple_scalable mode.
|
|
3388
|
+
* @type {number}
|
|
3389
|
+
* @memberof ClusterAdvancedSettings
|
|
3390
|
+
*/
|
|
3391
|
+
'loki.read.memory_limit_mib'?: number;
|
|
3392
|
+
/**
|
|
3393
|
+
* CPU request (in milli-CPU) for the Loki backend component when running in simple_scalable mode.
|
|
3394
|
+
* @type {number}
|
|
3395
|
+
* @memberof ClusterAdvancedSettings
|
|
3396
|
+
*/
|
|
3397
|
+
'loki.backend.cpu_request_m'?: number;
|
|
3398
|
+
/**
|
|
3399
|
+
* CPU limit (in milli-CPU) for the Loki backend component when running in simple_scalable mode.
|
|
3400
|
+
* @type {number}
|
|
3401
|
+
* @memberof ClusterAdvancedSettings
|
|
3402
|
+
*/
|
|
3403
|
+
'loki.backend.cpu_limit_m'?: number;
|
|
3404
|
+
/**
|
|
3405
|
+
* Memory request (in MiB) for the Loki backend component when running in simple_scalable mode.
|
|
3406
|
+
* @type {number}
|
|
3407
|
+
* @memberof ClusterAdvancedSettings
|
|
3408
|
+
*/
|
|
3409
|
+
'loki.backend.memory_request_mib'?: number;
|
|
3410
|
+
/**
|
|
3411
|
+
* Memory limit (in MiB) for the Loki backend component when running in simple_scalable mode.
|
|
3412
|
+
* @type {number}
|
|
3413
|
+
* @memberof ClusterAdvancedSettings
|
|
3414
|
+
*/
|
|
3415
|
+
'loki.backend.memory_limit_mib'?: number;
|
|
3314
3416
|
/**
|
|
3315
3417
|
* Configure the number of seconds before cleaning images in the registry
|
|
3316
3418
|
* @type {number}
|
|
@@ -3513,6 +3615,11 @@ export interface ClusterAdvancedSettings {
|
|
|
3513
3615
|
*/
|
|
3514
3616
|
'k8s.api.allowed_public_access_cidrs'?: Array<string>;
|
|
3515
3617
|
}
|
|
3618
|
+
export declare const ClusterAdvancedSettingsLokiDeploymentModeEnum: {
|
|
3619
|
+
readonly SINGLE_BINARY: "single_binary";
|
|
3620
|
+
readonly SIMPLE_SCALABLE: "simple_scalable";
|
|
3621
|
+
};
|
|
3622
|
+
export type ClusterAdvancedSettingsLokiDeploymentModeEnum = typeof ClusterAdvancedSettingsLokiDeploymentModeEnum[keyof typeof ClusterAdvancedSettingsLokiDeploymentModeEnum];
|
|
3516
3623
|
export declare const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum: {
|
|
3517
3624
|
readonly BURSTING: "bursting";
|
|
3518
3625
|
readonly ELASTIC: "elastic";
|
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.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
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 = exports.TerraformResourcesApiFactory = void 0;
|
|
25
|
+
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.ClusterAdvancedSettingsLokiDeploymentModeEnum = 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.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 = exports.DatabaseModeEnum = void 0;
|
|
27
|
+
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.ServicesOverviewResponseManagedByEnum = 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 = exports.OrganizationEventOrigin = void 0;
|
|
28
|
+
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 = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = void 0;
|
|
29
|
+
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 = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = void 0;
|
|
30
|
+
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 = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = void 0;
|
|
31
|
+
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 = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = void 0;
|
|
32
|
+
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 = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = void 0;
|
|
33
|
+
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 = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = void 0;
|
|
34
|
+
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 = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = 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 = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = void 0;
|
|
36
36
|
const axios_1 = require("axios");
|
|
37
37
|
// Some imports not used depending on template conditions
|
|
38
38
|
// @ts-ignore
|
|
@@ -271,6 +271,10 @@ exports.CloudVendorEnum = {
|
|
|
271
271
|
IBM: 'IBM',
|
|
272
272
|
ON_PREMISE: 'ON_PREMISE'
|
|
273
273
|
};
|
|
274
|
+
exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = {
|
|
275
|
+
SINGLE_BINARY: 'single_binary',
|
|
276
|
+
SIMPLE_SCALABLE: 'simple_scalable'
|
|
277
|
+
};
|
|
274
278
|
exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = {
|
|
275
279
|
BURSTING: 'bursting',
|
|
276
280
|
ELASTIC: 'elastic',
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -3311,6 +3311,108 @@ export interface ClusterAdvancedSettings {
|
|
|
3311
3311
|
* @memberof ClusterAdvancedSettings
|
|
3312
3312
|
*/
|
|
3313
3313
|
'loki.log_retention_in_week'?: number;
|
|
3314
|
+
/**
|
|
3315
|
+
* Loki deployment topology. \"single_binary\" runs Loki as one pod; \"simple_scalable\" splits it into separate write, read, and backend components for larger clusters.
|
|
3316
|
+
* @type {string}
|
|
3317
|
+
* @memberof ClusterAdvancedSettings
|
|
3318
|
+
*/
|
|
3319
|
+
'loki.deployment_mode'?: ClusterAdvancedSettingsLokiDeploymentModeEnum;
|
|
3320
|
+
/**
|
|
3321
|
+
* CPU request (in milli-CPU) for the Loki pod when running in single_binary mode.
|
|
3322
|
+
* @type {number}
|
|
3323
|
+
* @memberof ClusterAdvancedSettings
|
|
3324
|
+
*/
|
|
3325
|
+
'loki.single_binary.cpu_request_m'?: number;
|
|
3326
|
+
/**
|
|
3327
|
+
* CPU limit (in milli-CPU) for the Loki pod when running in single_binary mode.
|
|
3328
|
+
* @type {number}
|
|
3329
|
+
* @memberof ClusterAdvancedSettings
|
|
3330
|
+
*/
|
|
3331
|
+
'loki.single_binary.cpu_limit_m'?: number;
|
|
3332
|
+
/**
|
|
3333
|
+
* Memory request (in MiB) for the Loki pod when running in single_binary mode.
|
|
3334
|
+
* @type {number}
|
|
3335
|
+
* @memberof ClusterAdvancedSettings
|
|
3336
|
+
*/
|
|
3337
|
+
'loki.single_binary.memory_request_mib'?: number;
|
|
3338
|
+
/**
|
|
3339
|
+
* Memory limit (in MiB) for the Loki pod when running in single_binary mode.
|
|
3340
|
+
* @type {number}
|
|
3341
|
+
* @memberof ClusterAdvancedSettings
|
|
3342
|
+
*/
|
|
3343
|
+
'loki.single_binary.memory_limit_mib'?: number;
|
|
3344
|
+
/**
|
|
3345
|
+
* CPU request (in milli-CPU) for the Loki write component when running in simple_scalable mode.
|
|
3346
|
+
* @type {number}
|
|
3347
|
+
* @memberof ClusterAdvancedSettings
|
|
3348
|
+
*/
|
|
3349
|
+
'loki.write.cpu_request_m'?: number;
|
|
3350
|
+
/**
|
|
3351
|
+
* CPU limit (in milli-CPU) for the Loki write component when running in simple_scalable mode.
|
|
3352
|
+
* @type {number}
|
|
3353
|
+
* @memberof ClusterAdvancedSettings
|
|
3354
|
+
*/
|
|
3355
|
+
'loki.write.cpu_limit_m'?: number;
|
|
3356
|
+
/**
|
|
3357
|
+
* Memory request (in MiB) for the Loki write component when running in simple_scalable mode.
|
|
3358
|
+
* @type {number}
|
|
3359
|
+
* @memberof ClusterAdvancedSettings
|
|
3360
|
+
*/
|
|
3361
|
+
'loki.write.memory_request_mib'?: number;
|
|
3362
|
+
/**
|
|
3363
|
+
* Memory limit (in MiB) for the Loki write component when running in simple_scalable mode.
|
|
3364
|
+
* @type {number}
|
|
3365
|
+
* @memberof ClusterAdvancedSettings
|
|
3366
|
+
*/
|
|
3367
|
+
'loki.write.memory_limit_mib'?: number;
|
|
3368
|
+
/**
|
|
3369
|
+
* CPU request (in milli-CPU) for the Loki read component when running in simple_scalable mode.
|
|
3370
|
+
* @type {number}
|
|
3371
|
+
* @memberof ClusterAdvancedSettings
|
|
3372
|
+
*/
|
|
3373
|
+
'loki.read.cpu_request_m'?: number;
|
|
3374
|
+
/**
|
|
3375
|
+
* CPU limit (in milli-CPU) for the Loki read component when running in simple_scalable mode.
|
|
3376
|
+
* @type {number}
|
|
3377
|
+
* @memberof ClusterAdvancedSettings
|
|
3378
|
+
*/
|
|
3379
|
+
'loki.read.cpu_limit_m'?: number;
|
|
3380
|
+
/**
|
|
3381
|
+
* Memory request (in MiB) for the Loki read component when running in simple_scalable mode.
|
|
3382
|
+
* @type {number}
|
|
3383
|
+
* @memberof ClusterAdvancedSettings
|
|
3384
|
+
*/
|
|
3385
|
+
'loki.read.memory_request_mib'?: number;
|
|
3386
|
+
/**
|
|
3387
|
+
* Memory limit (in MiB) for the Loki read component when running in simple_scalable mode.
|
|
3388
|
+
* @type {number}
|
|
3389
|
+
* @memberof ClusterAdvancedSettings
|
|
3390
|
+
*/
|
|
3391
|
+
'loki.read.memory_limit_mib'?: number;
|
|
3392
|
+
/**
|
|
3393
|
+
* CPU request (in milli-CPU) for the Loki backend component when running in simple_scalable mode.
|
|
3394
|
+
* @type {number}
|
|
3395
|
+
* @memberof ClusterAdvancedSettings
|
|
3396
|
+
*/
|
|
3397
|
+
'loki.backend.cpu_request_m'?: number;
|
|
3398
|
+
/**
|
|
3399
|
+
* CPU limit (in milli-CPU) for the Loki backend component when running in simple_scalable mode.
|
|
3400
|
+
* @type {number}
|
|
3401
|
+
* @memberof ClusterAdvancedSettings
|
|
3402
|
+
*/
|
|
3403
|
+
'loki.backend.cpu_limit_m'?: number;
|
|
3404
|
+
/**
|
|
3405
|
+
* Memory request (in MiB) for the Loki backend component when running in simple_scalable mode.
|
|
3406
|
+
* @type {number}
|
|
3407
|
+
* @memberof ClusterAdvancedSettings
|
|
3408
|
+
*/
|
|
3409
|
+
'loki.backend.memory_request_mib'?: number;
|
|
3410
|
+
/**
|
|
3411
|
+
* Memory limit (in MiB) for the Loki backend component when running in simple_scalable mode.
|
|
3412
|
+
* @type {number}
|
|
3413
|
+
* @memberof ClusterAdvancedSettings
|
|
3414
|
+
*/
|
|
3415
|
+
'loki.backend.memory_limit_mib'?: number;
|
|
3314
3416
|
/**
|
|
3315
3417
|
* Configure the number of seconds before cleaning images in the registry
|
|
3316
3418
|
* @type {number}
|
|
@@ -3513,6 +3615,11 @@ export interface ClusterAdvancedSettings {
|
|
|
3513
3615
|
*/
|
|
3514
3616
|
'k8s.api.allowed_public_access_cidrs'?: Array<string>;
|
|
3515
3617
|
}
|
|
3618
|
+
export declare const ClusterAdvancedSettingsLokiDeploymentModeEnum: {
|
|
3619
|
+
readonly SINGLE_BINARY: "single_binary";
|
|
3620
|
+
readonly SIMPLE_SCALABLE: "simple_scalable";
|
|
3621
|
+
};
|
|
3622
|
+
export type ClusterAdvancedSettingsLokiDeploymentModeEnum = typeof ClusterAdvancedSettingsLokiDeploymentModeEnum[keyof typeof ClusterAdvancedSettingsLokiDeploymentModeEnum];
|
|
3516
3623
|
export declare const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum: {
|
|
3517
3624
|
readonly BURSTING: "bursting";
|
|
3518
3625
|
readonly ELASTIC: "elastic";
|
package/dist/esm/api.js
CHANGED
|
@@ -258,6 +258,10 @@ export const CloudVendorEnum = {
|
|
|
258
258
|
IBM: 'IBM',
|
|
259
259
|
ON_PREMISE: 'ON_PREMISE'
|
|
260
260
|
};
|
|
261
|
+
export const ClusterAdvancedSettingsLokiDeploymentModeEnum = {
|
|
262
|
+
SINGLE_BINARY: 'single_binary',
|
|
263
|
+
SIMPLE_SCALABLE: 'simple_scalable'
|
|
264
|
+
};
|
|
261
265
|
export const ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = {
|
|
262
266
|
BURSTING: 'bursting',
|
|
263
267
|
ELASTIC: 'elastic',
|