qovery-typescript-axios 1.1.886 → 1.1.887
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 +110 -3
- package/dist/api.d.ts +104 -1
- package/dist/api.js +25 -12
- package/dist/esm/api.d.ts +104 -1
- package/dist/esm/api.js +14 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4925,6 +4925,112 @@ export interface ClusterFeatureKarpenterParametersResponse {
|
|
|
4925
4925
|
}
|
|
4926
4926
|
|
|
4927
4927
|
|
|
4928
|
+
/**
|
|
4929
|
+
*
|
|
4930
|
+
* @export
|
|
4931
|
+
* @interface ClusterFeatureNatGatewayParameters
|
|
4932
|
+
*/
|
|
4933
|
+
export interface ClusterFeatureNatGatewayParameters {
|
|
4934
|
+
/**
|
|
4935
|
+
*
|
|
4936
|
+
* @type {ClusterFeatureNatGatewayParametersNatGatewayType}
|
|
4937
|
+
* @memberof ClusterFeatureNatGatewayParameters
|
|
4938
|
+
*/
|
|
4939
|
+
'nat_gateway_type'?: ClusterFeatureNatGatewayParametersNatGatewayType | null;
|
|
4940
|
+
}
|
|
4941
|
+
/**
|
|
4942
|
+
* @type ClusterFeatureNatGatewayParametersNatGatewayType
|
|
4943
|
+
* @export
|
|
4944
|
+
*/
|
|
4945
|
+
export type ClusterFeatureNatGatewayParametersNatGatewayType = { provider: 'gcp' } & ClusterFeatureNatGatewayTypeGcp | { provider: 'scaleway' } & ClusterFeatureNatGatewayTypeScaleway;
|
|
4946
|
+
|
|
4947
|
+
/**
|
|
4948
|
+
*
|
|
4949
|
+
* @export
|
|
4950
|
+
* @interface ClusterFeatureNatGatewayParametersResponse
|
|
4951
|
+
*/
|
|
4952
|
+
export interface ClusterFeatureNatGatewayParametersResponse {
|
|
4953
|
+
/**
|
|
4954
|
+
*
|
|
4955
|
+
* @type {ClusterFeatureResponseTypeEnum}
|
|
4956
|
+
* @memberof ClusterFeatureNatGatewayParametersResponse
|
|
4957
|
+
*/
|
|
4958
|
+
'type': ClusterFeatureResponseTypeEnum;
|
|
4959
|
+
/**
|
|
4960
|
+
*
|
|
4961
|
+
* @type {ClusterFeatureNatGatewayParameters}
|
|
4962
|
+
* @memberof ClusterFeatureNatGatewayParametersResponse
|
|
4963
|
+
*/
|
|
4964
|
+
'value': ClusterFeatureNatGatewayParameters | null;
|
|
4965
|
+
}
|
|
4966
|
+
|
|
4967
|
+
|
|
4968
|
+
/**
|
|
4969
|
+
*
|
|
4970
|
+
* @export
|
|
4971
|
+
* @interface ClusterFeatureNatGatewayTypeGcp
|
|
4972
|
+
*/
|
|
4973
|
+
export interface ClusterFeatureNatGatewayTypeGcp {
|
|
4974
|
+
/**
|
|
4975
|
+
*
|
|
4976
|
+
* @type {string}
|
|
4977
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4978
|
+
*/
|
|
4979
|
+
'provider': ClusterFeatureNatGatewayTypeGcpProviderEnum;
|
|
4980
|
+
/**
|
|
4981
|
+
*
|
|
4982
|
+
* @type {boolean}
|
|
4983
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4984
|
+
*/
|
|
4985
|
+
'static_ips_enabled': boolean;
|
|
4986
|
+
/**
|
|
4987
|
+
* Number of static IPs to allocate. Must be >= 1 when static_ips_enabled is true.
|
|
4988
|
+
* @type {number}
|
|
4989
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4990
|
+
*/
|
|
4991
|
+
'static_ips_count': number;
|
|
4992
|
+
}
|
|
4993
|
+
|
|
4994
|
+
export const ClusterFeatureNatGatewayTypeGcpProviderEnum = {
|
|
4995
|
+
GCP: 'gcp'
|
|
4996
|
+
} as const;
|
|
4997
|
+
|
|
4998
|
+
export type ClusterFeatureNatGatewayTypeGcpProviderEnum = typeof ClusterFeatureNatGatewayTypeGcpProviderEnum[keyof typeof ClusterFeatureNatGatewayTypeGcpProviderEnum];
|
|
4999
|
+
|
|
5000
|
+
/**
|
|
5001
|
+
*
|
|
5002
|
+
* @export
|
|
5003
|
+
* @interface ClusterFeatureNatGatewayTypeScaleway
|
|
5004
|
+
*/
|
|
5005
|
+
export interface ClusterFeatureNatGatewayTypeScaleway {
|
|
5006
|
+
/**
|
|
5007
|
+
*
|
|
5008
|
+
* @type {string}
|
|
5009
|
+
* @memberof ClusterFeatureNatGatewayTypeScaleway
|
|
5010
|
+
*/
|
|
5011
|
+
'provider': ClusterFeatureNatGatewayTypeScalewayProviderEnum;
|
|
5012
|
+
/**
|
|
5013
|
+
*
|
|
5014
|
+
* @type {string}
|
|
5015
|
+
* @memberof ClusterFeatureNatGatewayTypeScaleway
|
|
5016
|
+
*/
|
|
5017
|
+
'type': ClusterFeatureNatGatewayTypeScalewayTypeEnum;
|
|
5018
|
+
}
|
|
5019
|
+
|
|
5020
|
+
export const ClusterFeatureNatGatewayTypeScalewayProviderEnum = {
|
|
5021
|
+
SCALEWAY: 'scaleway'
|
|
5022
|
+
} as const;
|
|
5023
|
+
|
|
5024
|
+
export type ClusterFeatureNatGatewayTypeScalewayProviderEnum = typeof ClusterFeatureNatGatewayTypeScalewayProviderEnum[keyof typeof ClusterFeatureNatGatewayTypeScalewayProviderEnum];
|
|
5025
|
+
export const ClusterFeatureNatGatewayTypeScalewayTypeEnum = {
|
|
5026
|
+
S: 'VPC-GW-S',
|
|
5027
|
+
M: 'VPC-GW-M',
|
|
5028
|
+
L: 'VPC-GW-L',
|
|
5029
|
+
XL: 'VPC-GW-XL'
|
|
5030
|
+
} as const;
|
|
5031
|
+
|
|
5032
|
+
export type ClusterFeatureNatGatewayTypeScalewayTypeEnum = typeof ClusterFeatureNatGatewayTypeScalewayTypeEnum[keyof typeof ClusterFeatureNatGatewayTypeScalewayTypeEnum];
|
|
5033
|
+
|
|
4928
5034
|
/**
|
|
4929
5035
|
*
|
|
4930
5036
|
* @export
|
|
@@ -5056,7 +5162,8 @@ export const ClusterFeatureResponseTypeEnum = {
|
|
|
5056
5162
|
BOOLEAN: 'BOOLEAN',
|
|
5057
5163
|
AWS_USER_PROVIDED_NETWORK: 'AWS_USER_PROVIDED_NETWORK',
|
|
5058
5164
|
GCP_USER_PROVIDED_NETWORK: 'GCP_USER_PROVIDED_NETWORK',
|
|
5059
|
-
KARPENTER: 'KARPENTER'
|
|
5165
|
+
KARPENTER: 'KARPENTER',
|
|
5166
|
+
NAT_GATEWAY: 'NAT_GATEWAY'
|
|
5060
5167
|
} as const;
|
|
5061
5168
|
|
|
5062
5169
|
export type ClusterFeatureResponseTypeEnum = typeof ClusterFeatureResponseTypeEnum[keyof typeof ClusterFeatureResponseTypeEnum];
|
|
@@ -5066,7 +5173,7 @@ export type ClusterFeatureResponseTypeEnum = typeof ClusterFeatureResponseTypeEn
|
|
|
5066
5173
|
* @type ClusterFeatureResponseValueObject
|
|
5067
5174
|
* @export
|
|
5068
5175
|
*/
|
|
5069
|
-
export type ClusterFeatureResponseValueObject = { type: 'AWS_USER_PROVIDED_NETWORK' } & ClusterFeatureAwsExistingVpcResponse | { type: 'BOOLEAN' } & ClusterFeatureBooleanResponse | { type: 'GCP_USER_PROVIDED_NETWORK' } & ClusterFeatureGcpExistingVpcResponse | { type: 'KARPENTER' } & ClusterFeatureKarpenterParametersResponse | { type: 'STRING' } & ClusterFeatureStringResponse;
|
|
5176
|
+
export type ClusterFeatureResponseValueObject = { type: 'AWS_USER_PROVIDED_NETWORK' } & ClusterFeatureAwsExistingVpcResponse | { type: 'BOOLEAN' } & ClusterFeatureBooleanResponse | { type: 'GCP_USER_PROVIDED_NETWORK' } & ClusterFeatureGcpExistingVpcResponse | { type: 'KARPENTER' } & ClusterFeatureKarpenterParametersResponse | { type: 'NAT_GATEWAY' } & ClusterFeatureNatGatewayParametersResponse | { type: 'STRING' } & ClusterFeatureStringResponse;
|
|
5070
5177
|
|
|
5071
5178
|
/**
|
|
5072
5179
|
*
|
|
@@ -6027,7 +6134,7 @@ export interface ClusterRequestFeaturesInner {
|
|
|
6027
6134
|
* @type ClusterRequestFeaturesInnerValue
|
|
6028
6135
|
* @export
|
|
6029
6136
|
*/
|
|
6030
|
-
export type ClusterRequestFeaturesInnerValue = ClusterFeatureAwsExistingVpc | ClusterFeatureGcpExistingVpc | ClusterFeatureKarpenterParameters | boolean | string;
|
|
6137
|
+
export type ClusterRequestFeaturesInnerValue = ClusterFeatureAwsExistingVpc | ClusterFeatureGcpExistingVpc | ClusterFeatureKarpenterParameters | ClusterFeatureNatGatewayParameters | boolean | string;
|
|
6031
6138
|
|
|
6032
6139
|
/**
|
|
6033
6140
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -4772,6 +4772,106 @@ export interface ClusterFeatureKarpenterParametersResponse {
|
|
|
4772
4772
|
*/
|
|
4773
4773
|
'value': ClusterFeatureKarpenterParameters;
|
|
4774
4774
|
}
|
|
4775
|
+
/**
|
|
4776
|
+
*
|
|
4777
|
+
* @export
|
|
4778
|
+
* @interface ClusterFeatureNatGatewayParameters
|
|
4779
|
+
*/
|
|
4780
|
+
export interface ClusterFeatureNatGatewayParameters {
|
|
4781
|
+
/**
|
|
4782
|
+
*
|
|
4783
|
+
* @type {ClusterFeatureNatGatewayParametersNatGatewayType}
|
|
4784
|
+
* @memberof ClusterFeatureNatGatewayParameters
|
|
4785
|
+
*/
|
|
4786
|
+
'nat_gateway_type'?: ClusterFeatureNatGatewayParametersNatGatewayType | null;
|
|
4787
|
+
}
|
|
4788
|
+
/**
|
|
4789
|
+
* @type ClusterFeatureNatGatewayParametersNatGatewayType
|
|
4790
|
+
* @export
|
|
4791
|
+
*/
|
|
4792
|
+
export type ClusterFeatureNatGatewayParametersNatGatewayType = {
|
|
4793
|
+
provider: 'gcp';
|
|
4794
|
+
} & ClusterFeatureNatGatewayTypeGcp | {
|
|
4795
|
+
provider: 'scaleway';
|
|
4796
|
+
} & ClusterFeatureNatGatewayTypeScaleway;
|
|
4797
|
+
/**
|
|
4798
|
+
*
|
|
4799
|
+
* @export
|
|
4800
|
+
* @interface ClusterFeatureNatGatewayParametersResponse
|
|
4801
|
+
*/
|
|
4802
|
+
export interface ClusterFeatureNatGatewayParametersResponse {
|
|
4803
|
+
/**
|
|
4804
|
+
*
|
|
4805
|
+
* @type {ClusterFeatureResponseTypeEnum}
|
|
4806
|
+
* @memberof ClusterFeatureNatGatewayParametersResponse
|
|
4807
|
+
*/
|
|
4808
|
+
'type': ClusterFeatureResponseTypeEnum;
|
|
4809
|
+
/**
|
|
4810
|
+
*
|
|
4811
|
+
* @type {ClusterFeatureNatGatewayParameters}
|
|
4812
|
+
* @memberof ClusterFeatureNatGatewayParametersResponse
|
|
4813
|
+
*/
|
|
4814
|
+
'value': ClusterFeatureNatGatewayParameters | null;
|
|
4815
|
+
}
|
|
4816
|
+
/**
|
|
4817
|
+
*
|
|
4818
|
+
* @export
|
|
4819
|
+
* @interface ClusterFeatureNatGatewayTypeGcp
|
|
4820
|
+
*/
|
|
4821
|
+
export interface ClusterFeatureNatGatewayTypeGcp {
|
|
4822
|
+
/**
|
|
4823
|
+
*
|
|
4824
|
+
* @type {string}
|
|
4825
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4826
|
+
*/
|
|
4827
|
+
'provider': ClusterFeatureNatGatewayTypeGcpProviderEnum;
|
|
4828
|
+
/**
|
|
4829
|
+
*
|
|
4830
|
+
* @type {boolean}
|
|
4831
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4832
|
+
*/
|
|
4833
|
+
'static_ips_enabled': boolean;
|
|
4834
|
+
/**
|
|
4835
|
+
* Number of static IPs to allocate. Must be >= 1 when static_ips_enabled is true.
|
|
4836
|
+
* @type {number}
|
|
4837
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4838
|
+
*/
|
|
4839
|
+
'static_ips_count': number;
|
|
4840
|
+
}
|
|
4841
|
+
export declare const ClusterFeatureNatGatewayTypeGcpProviderEnum: {
|
|
4842
|
+
readonly GCP: "gcp";
|
|
4843
|
+
};
|
|
4844
|
+
export type ClusterFeatureNatGatewayTypeGcpProviderEnum = typeof ClusterFeatureNatGatewayTypeGcpProviderEnum[keyof typeof ClusterFeatureNatGatewayTypeGcpProviderEnum];
|
|
4845
|
+
/**
|
|
4846
|
+
*
|
|
4847
|
+
* @export
|
|
4848
|
+
* @interface ClusterFeatureNatGatewayTypeScaleway
|
|
4849
|
+
*/
|
|
4850
|
+
export interface ClusterFeatureNatGatewayTypeScaleway {
|
|
4851
|
+
/**
|
|
4852
|
+
*
|
|
4853
|
+
* @type {string}
|
|
4854
|
+
* @memberof ClusterFeatureNatGatewayTypeScaleway
|
|
4855
|
+
*/
|
|
4856
|
+
'provider': ClusterFeatureNatGatewayTypeScalewayProviderEnum;
|
|
4857
|
+
/**
|
|
4858
|
+
*
|
|
4859
|
+
* @type {string}
|
|
4860
|
+
* @memberof ClusterFeatureNatGatewayTypeScaleway
|
|
4861
|
+
*/
|
|
4862
|
+
'type': ClusterFeatureNatGatewayTypeScalewayTypeEnum;
|
|
4863
|
+
}
|
|
4864
|
+
export declare const ClusterFeatureNatGatewayTypeScalewayProviderEnum: {
|
|
4865
|
+
readonly SCALEWAY: "scaleway";
|
|
4866
|
+
};
|
|
4867
|
+
export type ClusterFeatureNatGatewayTypeScalewayProviderEnum = typeof ClusterFeatureNatGatewayTypeScalewayProviderEnum[keyof typeof ClusterFeatureNatGatewayTypeScalewayProviderEnum];
|
|
4868
|
+
export declare const ClusterFeatureNatGatewayTypeScalewayTypeEnum: {
|
|
4869
|
+
readonly S: "VPC-GW-S";
|
|
4870
|
+
readonly M: "VPC-GW-M";
|
|
4871
|
+
readonly L: "VPC-GW-L";
|
|
4872
|
+
readonly XL: "VPC-GW-XL";
|
|
4873
|
+
};
|
|
4874
|
+
export type ClusterFeatureNatGatewayTypeScalewayTypeEnum = typeof ClusterFeatureNatGatewayTypeScalewayTypeEnum[keyof typeof ClusterFeatureNatGatewayTypeScalewayTypeEnum];
|
|
4775
4875
|
/**
|
|
4776
4876
|
*
|
|
4777
4877
|
* @export
|
|
@@ -4899,6 +4999,7 @@ export declare const ClusterFeatureResponseTypeEnum: {
|
|
|
4899
4999
|
readonly AWS_USER_PROVIDED_NETWORK: "AWS_USER_PROVIDED_NETWORK";
|
|
4900
5000
|
readonly GCP_USER_PROVIDED_NETWORK: "GCP_USER_PROVIDED_NETWORK";
|
|
4901
5001
|
readonly KARPENTER: "KARPENTER";
|
|
5002
|
+
readonly NAT_GATEWAY: "NAT_GATEWAY";
|
|
4902
5003
|
};
|
|
4903
5004
|
export type ClusterFeatureResponseTypeEnum = typeof ClusterFeatureResponseTypeEnum[keyof typeof ClusterFeatureResponseTypeEnum];
|
|
4904
5005
|
/**
|
|
@@ -4914,6 +5015,8 @@ export type ClusterFeatureResponseValueObject = {
|
|
|
4914
5015
|
} & ClusterFeatureGcpExistingVpcResponse | {
|
|
4915
5016
|
type: 'KARPENTER';
|
|
4916
5017
|
} & ClusterFeatureKarpenterParametersResponse | {
|
|
5018
|
+
type: 'NAT_GATEWAY';
|
|
5019
|
+
} & ClusterFeatureNatGatewayParametersResponse | {
|
|
4917
5020
|
type: 'STRING';
|
|
4918
5021
|
} & ClusterFeatureStringResponse;
|
|
4919
5022
|
/**
|
|
@@ -5866,7 +5969,7 @@ export interface ClusterRequestFeaturesInner {
|
|
|
5866
5969
|
* @type ClusterRequestFeaturesInnerValue
|
|
5867
5970
|
* @export
|
|
5868
5971
|
*/
|
|
5869
|
-
export type ClusterRequestFeaturesInnerValue = ClusterFeatureAwsExistingVpc | ClusterFeatureGcpExistingVpc | ClusterFeatureKarpenterParameters | boolean | string;
|
|
5972
|
+
export type ClusterRequestFeaturesInnerValue = ClusterFeatureAwsExistingVpc | ClusterFeatureGcpExistingVpc | ClusterFeatureKarpenterParameters | ClusterFeatureNatGatewayParameters | boolean | string;
|
|
5870
5973
|
/**
|
|
5871
5974
|
*
|
|
5872
5975
|
* @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.
|
|
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 = 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 = void 0;
|
|
25
|
+
exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = 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.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.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = 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 = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = void 0;
|
|
27
|
+
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.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = 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 = void 0;
|
|
28
|
+
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 = 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 = void 0;
|
|
29
|
+
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 = 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 = void 0;
|
|
30
|
+
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 = 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 = void 0;
|
|
31
|
+
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 = 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 = void 0;
|
|
32
|
+
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 = 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 = void 0;
|
|
33
|
+
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 = 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 = void 0;
|
|
34
|
+
exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = 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 = 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 = 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 = 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 = void 0;
|
|
36
36
|
const axios_1 = require("axios");
|
|
37
37
|
// Some imports not used depending on template conditions
|
|
38
38
|
// @ts-ignore
|
|
@@ -344,6 +344,18 @@ exports.ClusterDeploymentStatusEnum = {
|
|
|
344
344
|
OUT_OF_DATE: 'OUT_OF_DATE',
|
|
345
345
|
UP_TO_DATE: 'UP_TO_DATE'
|
|
346
346
|
};
|
|
347
|
+
exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = {
|
|
348
|
+
GCP: 'gcp'
|
|
349
|
+
};
|
|
350
|
+
exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = {
|
|
351
|
+
SCALEWAY: 'scaleway'
|
|
352
|
+
};
|
|
353
|
+
exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = {
|
|
354
|
+
S: 'VPC-GW-S',
|
|
355
|
+
M: 'VPC-GW-M',
|
|
356
|
+
L: 'VPC-GW-L',
|
|
357
|
+
XL: 'VPC-GW-XL'
|
|
358
|
+
};
|
|
347
359
|
exports.ClusterFeatureResponseValueTypeEnum = {
|
|
348
360
|
BOOLEAN: 'BOOLEAN'
|
|
349
361
|
};
|
|
@@ -357,7 +369,8 @@ exports.ClusterFeatureResponseTypeEnum = {
|
|
|
357
369
|
BOOLEAN: 'BOOLEAN',
|
|
358
370
|
AWS_USER_PROVIDED_NETWORK: 'AWS_USER_PROVIDED_NETWORK',
|
|
359
371
|
GCP_USER_PROVIDED_NETWORK: 'GCP_USER_PROVIDED_NETWORK',
|
|
360
|
-
KARPENTER: 'KARPENTER'
|
|
372
|
+
KARPENTER: 'KARPENTER',
|
|
373
|
+
NAT_GATEWAY: 'NAT_GATEWAY'
|
|
361
374
|
};
|
|
362
375
|
exports.ClusterLogsStepEnum = {
|
|
363
376
|
LOAD_CONFIGURATION: 'LoadConfiguration',
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -4772,6 +4772,106 @@ export interface ClusterFeatureKarpenterParametersResponse {
|
|
|
4772
4772
|
*/
|
|
4773
4773
|
'value': ClusterFeatureKarpenterParameters;
|
|
4774
4774
|
}
|
|
4775
|
+
/**
|
|
4776
|
+
*
|
|
4777
|
+
* @export
|
|
4778
|
+
* @interface ClusterFeatureNatGatewayParameters
|
|
4779
|
+
*/
|
|
4780
|
+
export interface ClusterFeatureNatGatewayParameters {
|
|
4781
|
+
/**
|
|
4782
|
+
*
|
|
4783
|
+
* @type {ClusterFeatureNatGatewayParametersNatGatewayType}
|
|
4784
|
+
* @memberof ClusterFeatureNatGatewayParameters
|
|
4785
|
+
*/
|
|
4786
|
+
'nat_gateway_type'?: ClusterFeatureNatGatewayParametersNatGatewayType | null;
|
|
4787
|
+
}
|
|
4788
|
+
/**
|
|
4789
|
+
* @type ClusterFeatureNatGatewayParametersNatGatewayType
|
|
4790
|
+
* @export
|
|
4791
|
+
*/
|
|
4792
|
+
export type ClusterFeatureNatGatewayParametersNatGatewayType = {
|
|
4793
|
+
provider: 'gcp';
|
|
4794
|
+
} & ClusterFeatureNatGatewayTypeGcp | {
|
|
4795
|
+
provider: 'scaleway';
|
|
4796
|
+
} & ClusterFeatureNatGatewayTypeScaleway;
|
|
4797
|
+
/**
|
|
4798
|
+
*
|
|
4799
|
+
* @export
|
|
4800
|
+
* @interface ClusterFeatureNatGatewayParametersResponse
|
|
4801
|
+
*/
|
|
4802
|
+
export interface ClusterFeatureNatGatewayParametersResponse {
|
|
4803
|
+
/**
|
|
4804
|
+
*
|
|
4805
|
+
* @type {ClusterFeatureResponseTypeEnum}
|
|
4806
|
+
* @memberof ClusterFeatureNatGatewayParametersResponse
|
|
4807
|
+
*/
|
|
4808
|
+
'type': ClusterFeatureResponseTypeEnum;
|
|
4809
|
+
/**
|
|
4810
|
+
*
|
|
4811
|
+
* @type {ClusterFeatureNatGatewayParameters}
|
|
4812
|
+
* @memberof ClusterFeatureNatGatewayParametersResponse
|
|
4813
|
+
*/
|
|
4814
|
+
'value': ClusterFeatureNatGatewayParameters | null;
|
|
4815
|
+
}
|
|
4816
|
+
/**
|
|
4817
|
+
*
|
|
4818
|
+
* @export
|
|
4819
|
+
* @interface ClusterFeatureNatGatewayTypeGcp
|
|
4820
|
+
*/
|
|
4821
|
+
export interface ClusterFeatureNatGatewayTypeGcp {
|
|
4822
|
+
/**
|
|
4823
|
+
*
|
|
4824
|
+
* @type {string}
|
|
4825
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4826
|
+
*/
|
|
4827
|
+
'provider': ClusterFeatureNatGatewayTypeGcpProviderEnum;
|
|
4828
|
+
/**
|
|
4829
|
+
*
|
|
4830
|
+
* @type {boolean}
|
|
4831
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4832
|
+
*/
|
|
4833
|
+
'static_ips_enabled': boolean;
|
|
4834
|
+
/**
|
|
4835
|
+
* Number of static IPs to allocate. Must be >= 1 when static_ips_enabled is true.
|
|
4836
|
+
* @type {number}
|
|
4837
|
+
* @memberof ClusterFeatureNatGatewayTypeGcp
|
|
4838
|
+
*/
|
|
4839
|
+
'static_ips_count': number;
|
|
4840
|
+
}
|
|
4841
|
+
export declare const ClusterFeatureNatGatewayTypeGcpProviderEnum: {
|
|
4842
|
+
readonly GCP: "gcp";
|
|
4843
|
+
};
|
|
4844
|
+
export type ClusterFeatureNatGatewayTypeGcpProviderEnum = typeof ClusterFeatureNatGatewayTypeGcpProviderEnum[keyof typeof ClusterFeatureNatGatewayTypeGcpProviderEnum];
|
|
4845
|
+
/**
|
|
4846
|
+
*
|
|
4847
|
+
* @export
|
|
4848
|
+
* @interface ClusterFeatureNatGatewayTypeScaleway
|
|
4849
|
+
*/
|
|
4850
|
+
export interface ClusterFeatureNatGatewayTypeScaleway {
|
|
4851
|
+
/**
|
|
4852
|
+
*
|
|
4853
|
+
* @type {string}
|
|
4854
|
+
* @memberof ClusterFeatureNatGatewayTypeScaleway
|
|
4855
|
+
*/
|
|
4856
|
+
'provider': ClusterFeatureNatGatewayTypeScalewayProviderEnum;
|
|
4857
|
+
/**
|
|
4858
|
+
*
|
|
4859
|
+
* @type {string}
|
|
4860
|
+
* @memberof ClusterFeatureNatGatewayTypeScaleway
|
|
4861
|
+
*/
|
|
4862
|
+
'type': ClusterFeatureNatGatewayTypeScalewayTypeEnum;
|
|
4863
|
+
}
|
|
4864
|
+
export declare const ClusterFeatureNatGatewayTypeScalewayProviderEnum: {
|
|
4865
|
+
readonly SCALEWAY: "scaleway";
|
|
4866
|
+
};
|
|
4867
|
+
export type ClusterFeatureNatGatewayTypeScalewayProviderEnum = typeof ClusterFeatureNatGatewayTypeScalewayProviderEnum[keyof typeof ClusterFeatureNatGatewayTypeScalewayProviderEnum];
|
|
4868
|
+
export declare const ClusterFeatureNatGatewayTypeScalewayTypeEnum: {
|
|
4869
|
+
readonly S: "VPC-GW-S";
|
|
4870
|
+
readonly M: "VPC-GW-M";
|
|
4871
|
+
readonly L: "VPC-GW-L";
|
|
4872
|
+
readonly XL: "VPC-GW-XL";
|
|
4873
|
+
};
|
|
4874
|
+
export type ClusterFeatureNatGatewayTypeScalewayTypeEnum = typeof ClusterFeatureNatGatewayTypeScalewayTypeEnum[keyof typeof ClusterFeatureNatGatewayTypeScalewayTypeEnum];
|
|
4775
4875
|
/**
|
|
4776
4876
|
*
|
|
4777
4877
|
* @export
|
|
@@ -4899,6 +4999,7 @@ export declare const ClusterFeatureResponseTypeEnum: {
|
|
|
4899
4999
|
readonly AWS_USER_PROVIDED_NETWORK: "AWS_USER_PROVIDED_NETWORK";
|
|
4900
5000
|
readonly GCP_USER_PROVIDED_NETWORK: "GCP_USER_PROVIDED_NETWORK";
|
|
4901
5001
|
readonly KARPENTER: "KARPENTER";
|
|
5002
|
+
readonly NAT_GATEWAY: "NAT_GATEWAY";
|
|
4902
5003
|
};
|
|
4903
5004
|
export type ClusterFeatureResponseTypeEnum = typeof ClusterFeatureResponseTypeEnum[keyof typeof ClusterFeatureResponseTypeEnum];
|
|
4904
5005
|
/**
|
|
@@ -4914,6 +5015,8 @@ export type ClusterFeatureResponseValueObject = {
|
|
|
4914
5015
|
} & ClusterFeatureGcpExistingVpcResponse | {
|
|
4915
5016
|
type: 'KARPENTER';
|
|
4916
5017
|
} & ClusterFeatureKarpenterParametersResponse | {
|
|
5018
|
+
type: 'NAT_GATEWAY';
|
|
5019
|
+
} & ClusterFeatureNatGatewayParametersResponse | {
|
|
4917
5020
|
type: 'STRING';
|
|
4918
5021
|
} & ClusterFeatureStringResponse;
|
|
4919
5022
|
/**
|
|
@@ -5866,7 +5969,7 @@ export interface ClusterRequestFeaturesInner {
|
|
|
5866
5969
|
* @type ClusterRequestFeaturesInnerValue
|
|
5867
5970
|
* @export
|
|
5868
5971
|
*/
|
|
5869
|
-
export type ClusterRequestFeaturesInnerValue = ClusterFeatureAwsExistingVpc | ClusterFeatureGcpExistingVpc | ClusterFeatureKarpenterParameters | boolean | string;
|
|
5972
|
+
export type ClusterRequestFeaturesInnerValue = ClusterFeatureAwsExistingVpc | ClusterFeatureGcpExistingVpc | ClusterFeatureKarpenterParameters | ClusterFeatureNatGatewayParameters | boolean | string;
|
|
5870
5973
|
/**
|
|
5871
5974
|
*
|
|
5872
5975
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -331,6 +331,18 @@ export const ClusterDeploymentStatusEnum = {
|
|
|
331
331
|
OUT_OF_DATE: 'OUT_OF_DATE',
|
|
332
332
|
UP_TO_DATE: 'UP_TO_DATE'
|
|
333
333
|
};
|
|
334
|
+
export const ClusterFeatureNatGatewayTypeGcpProviderEnum = {
|
|
335
|
+
GCP: 'gcp'
|
|
336
|
+
};
|
|
337
|
+
export const ClusterFeatureNatGatewayTypeScalewayProviderEnum = {
|
|
338
|
+
SCALEWAY: 'scaleway'
|
|
339
|
+
};
|
|
340
|
+
export const ClusterFeatureNatGatewayTypeScalewayTypeEnum = {
|
|
341
|
+
S: 'VPC-GW-S',
|
|
342
|
+
M: 'VPC-GW-M',
|
|
343
|
+
L: 'VPC-GW-L',
|
|
344
|
+
XL: 'VPC-GW-XL'
|
|
345
|
+
};
|
|
334
346
|
export const ClusterFeatureResponseValueTypeEnum = {
|
|
335
347
|
BOOLEAN: 'BOOLEAN'
|
|
336
348
|
};
|
|
@@ -344,7 +356,8 @@ export const ClusterFeatureResponseTypeEnum = {
|
|
|
344
356
|
BOOLEAN: 'BOOLEAN',
|
|
345
357
|
AWS_USER_PROVIDED_NETWORK: 'AWS_USER_PROVIDED_NETWORK',
|
|
346
358
|
GCP_USER_PROVIDED_NETWORK: 'GCP_USER_PROVIDED_NETWORK',
|
|
347
|
-
KARPENTER: 'KARPENTER'
|
|
359
|
+
KARPENTER: 'KARPENTER',
|
|
360
|
+
NAT_GATEWAY: 'NAT_GATEWAY'
|
|
348
361
|
};
|
|
349
362
|
export const ClusterLogsStepEnum = {
|
|
350
363
|
LOAD_CONFIGURATION: 'LoadConfiguration',
|