qovery-typescript-axios 1.1.886 → 1.1.888
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 +136 -9
- package/dist/api.d.ts +126 -7
- package/dist/api.js +34 -12
- package/dist/esm/api.d.ts +126 -7
- package/dist/esm/api.js +23 -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
|
*
|
|
@@ -6140,19 +6247,19 @@ export interface ClusterStatus {
|
|
|
6140
6247
|
* @type {string}
|
|
6141
6248
|
* @memberof ClusterStatus
|
|
6142
6249
|
*/
|
|
6143
|
-
'cluster_id'
|
|
6250
|
+
'cluster_id': string;
|
|
6144
6251
|
/**
|
|
6145
6252
|
*
|
|
6146
6253
|
* @type {ClusterStateEnum}
|
|
6147
6254
|
* @memberof ClusterStatus
|
|
6148
6255
|
*/
|
|
6149
|
-
'status'
|
|
6256
|
+
'status': ClusterStateEnum;
|
|
6150
6257
|
/**
|
|
6151
6258
|
*
|
|
6152
6259
|
* @type {boolean}
|
|
6153
6260
|
* @memberof ClusterStatus
|
|
6154
6261
|
*/
|
|
6155
|
-
'is_deployed'
|
|
6262
|
+
'is_deployed': boolean;
|
|
6156
6263
|
/**
|
|
6157
6264
|
*
|
|
6158
6265
|
* @type {string}
|
|
@@ -6164,19 +6271,25 @@ export interface ClusterStatus {
|
|
|
6164
6271
|
* @type {string}
|
|
6165
6272
|
* @memberof ClusterStatus
|
|
6166
6273
|
*/
|
|
6167
|
-
'last_execution_id'?: string;
|
|
6274
|
+
'last_execution_id'?: string | null;
|
|
6168
6275
|
/**
|
|
6169
6276
|
*
|
|
6170
6277
|
* @type {ClusterLock}
|
|
6171
6278
|
* @memberof ClusterStatus
|
|
6172
6279
|
*/
|
|
6173
|
-
'cluster_lock'?: ClusterLock;
|
|
6280
|
+
'cluster_lock'?: ClusterLock | null;
|
|
6174
6281
|
/**
|
|
6175
6282
|
*
|
|
6176
6283
|
* @type {string}
|
|
6177
6284
|
* @memberof ClusterStatus
|
|
6178
6285
|
*/
|
|
6179
|
-
'last_deployment_date'?: string;
|
|
6286
|
+
'last_deployment_date'?: string | null;
|
|
6287
|
+
/**
|
|
6288
|
+
*
|
|
6289
|
+
* @type {DeploymentInfraReason}
|
|
6290
|
+
* @memberof ClusterStatus
|
|
6291
|
+
*/
|
|
6292
|
+
'reason': DeploymentInfraReason;
|
|
6180
6293
|
}
|
|
6181
6294
|
|
|
6182
6295
|
|
|
@@ -9718,6 +9831,20 @@ export const DeploymentHistoryTriggerAction = {
|
|
|
9718
9831
|
export type DeploymentHistoryTriggerAction = typeof DeploymentHistoryTriggerAction[keyof typeof DeploymentHistoryTriggerAction];
|
|
9719
9832
|
|
|
9720
9833
|
|
|
9834
|
+
/**
|
|
9835
|
+
*
|
|
9836
|
+
* @export
|
|
9837
|
+
* @enum {string}
|
|
9838
|
+
*/
|
|
9839
|
+
|
|
9840
|
+
export const DeploymentInfraReason = {
|
|
9841
|
+
UNSPECIFIED: 'UNSPECIFIED',
|
|
9842
|
+
MAINTENANCE: 'MAINTENANCE'
|
|
9843
|
+
} as const;
|
|
9844
|
+
|
|
9845
|
+
export type DeploymentInfraReason = typeof DeploymentInfraReason[keyof typeof DeploymentInfraReason];
|
|
9846
|
+
|
|
9847
|
+
|
|
9721
9848
|
/**
|
|
9722
9849
|
* Match mode will rebuild app only if specified items are updated. Exclude mode will not rebuild app if specified items are updated.
|
|
9723
9850
|
* @export
|
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
|
|
@@ -5974,19 +6077,19 @@ export interface ClusterStatus {
|
|
|
5974
6077
|
* @type {string}
|
|
5975
6078
|
* @memberof ClusterStatus
|
|
5976
6079
|
*/
|
|
5977
|
-
'cluster_id'
|
|
6080
|
+
'cluster_id': string;
|
|
5978
6081
|
/**
|
|
5979
6082
|
*
|
|
5980
6083
|
* @type {ClusterStateEnum}
|
|
5981
6084
|
* @memberof ClusterStatus
|
|
5982
6085
|
*/
|
|
5983
|
-
'status'
|
|
6086
|
+
'status': ClusterStateEnum;
|
|
5984
6087
|
/**
|
|
5985
6088
|
*
|
|
5986
6089
|
* @type {boolean}
|
|
5987
6090
|
* @memberof ClusterStatus
|
|
5988
6091
|
*/
|
|
5989
|
-
'is_deployed'
|
|
6092
|
+
'is_deployed': boolean;
|
|
5990
6093
|
/**
|
|
5991
6094
|
*
|
|
5992
6095
|
* @type {string}
|
|
@@ -5998,19 +6101,25 @@ export interface ClusterStatus {
|
|
|
5998
6101
|
* @type {string}
|
|
5999
6102
|
* @memberof ClusterStatus
|
|
6000
6103
|
*/
|
|
6001
|
-
'last_execution_id'?: string;
|
|
6104
|
+
'last_execution_id'?: string | null;
|
|
6002
6105
|
/**
|
|
6003
6106
|
*
|
|
6004
6107
|
* @type {ClusterLock}
|
|
6005
6108
|
* @memberof ClusterStatus
|
|
6006
6109
|
*/
|
|
6007
|
-
'cluster_lock'?: ClusterLock;
|
|
6110
|
+
'cluster_lock'?: ClusterLock | null;
|
|
6008
6111
|
/**
|
|
6009
6112
|
*
|
|
6010
6113
|
* @type {string}
|
|
6011
6114
|
* @memberof ClusterStatus
|
|
6012
6115
|
*/
|
|
6013
|
-
'last_deployment_date'?: string;
|
|
6116
|
+
'last_deployment_date'?: string | null;
|
|
6117
|
+
/**
|
|
6118
|
+
*
|
|
6119
|
+
* @type {DeploymentInfraReason}
|
|
6120
|
+
* @memberof ClusterStatus
|
|
6121
|
+
*/
|
|
6122
|
+
'reason': DeploymentInfraReason;
|
|
6014
6123
|
}
|
|
6015
6124
|
/**
|
|
6016
6125
|
*
|
|
@@ -9431,6 +9540,16 @@ export declare const DeploymentHistoryTriggerAction: {
|
|
|
9431
9540
|
readonly UNINSTALL: "UNINSTALL";
|
|
9432
9541
|
};
|
|
9433
9542
|
export type DeploymentHistoryTriggerAction = typeof DeploymentHistoryTriggerAction[keyof typeof DeploymentHistoryTriggerAction];
|
|
9543
|
+
/**
|
|
9544
|
+
*
|
|
9545
|
+
* @export
|
|
9546
|
+
* @enum {string}
|
|
9547
|
+
*/
|
|
9548
|
+
export declare const DeploymentInfraReason: {
|
|
9549
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
9550
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
9551
|
+
};
|
|
9552
|
+
export type DeploymentInfraReason = typeof DeploymentInfraReason[keyof typeof DeploymentInfraReason];
|
|
9434
9553
|
/**
|
|
9435
9554
|
* Match mode will rebuild app only if specified items are updated. Exclude mode will not rebuild app if specified items are updated.
|
|
9436
9555
|
* @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.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.DeploymentInfraReason = 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.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 = exports.KapsuleInfrastructureOutputsKindEnum = void 0;
|
|
28
|
+
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 = exports.TerraformResourceResponseModeEnum = void 0;
|
|
29
|
+
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 = exports.ApplicationSecretApiFp = void 0;
|
|
30
|
+
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 = exports.ContainerEnvironmentVariableApiFp = void 0;
|
|
31
|
+
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 = exports.DeploymentQueueActionsApi = void 0;
|
|
32
|
+
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 = exports.GithubAppApiFp = void 0;
|
|
33
|
+
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 = exports.JobDeploymentRestrictionApi = void 0;
|
|
34
|
+
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 = exports.OrganizationEventApiFp = 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 = exports.ServiceStatusApi = 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',
|
|
@@ -576,6 +589,15 @@ exports.DeploymentHistoryTriggerAction = {
|
|
|
576
589
|
UNKNOWN: 'UNKNOWN',
|
|
577
590
|
UNINSTALL: 'UNINSTALL'
|
|
578
591
|
};
|
|
592
|
+
/**
|
|
593
|
+
*
|
|
594
|
+
* @export
|
|
595
|
+
* @enum {string}
|
|
596
|
+
*/
|
|
597
|
+
exports.DeploymentInfraReason = {
|
|
598
|
+
UNSPECIFIED: 'UNSPECIFIED',
|
|
599
|
+
MAINTENANCE: 'MAINTENANCE'
|
|
600
|
+
};
|
|
579
601
|
/**
|
|
580
602
|
* Match mode will rebuild app only if specified items are updated. Exclude mode will not rebuild app if specified items are updated.
|
|
581
603
|
* @export
|
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
|
|
@@ -5974,19 +6077,19 @@ export interface ClusterStatus {
|
|
|
5974
6077
|
* @type {string}
|
|
5975
6078
|
* @memberof ClusterStatus
|
|
5976
6079
|
*/
|
|
5977
|
-
'cluster_id'
|
|
6080
|
+
'cluster_id': string;
|
|
5978
6081
|
/**
|
|
5979
6082
|
*
|
|
5980
6083
|
* @type {ClusterStateEnum}
|
|
5981
6084
|
* @memberof ClusterStatus
|
|
5982
6085
|
*/
|
|
5983
|
-
'status'
|
|
6086
|
+
'status': ClusterStateEnum;
|
|
5984
6087
|
/**
|
|
5985
6088
|
*
|
|
5986
6089
|
* @type {boolean}
|
|
5987
6090
|
* @memberof ClusterStatus
|
|
5988
6091
|
*/
|
|
5989
|
-
'is_deployed'
|
|
6092
|
+
'is_deployed': boolean;
|
|
5990
6093
|
/**
|
|
5991
6094
|
*
|
|
5992
6095
|
* @type {string}
|
|
@@ -5998,19 +6101,25 @@ export interface ClusterStatus {
|
|
|
5998
6101
|
* @type {string}
|
|
5999
6102
|
* @memberof ClusterStatus
|
|
6000
6103
|
*/
|
|
6001
|
-
'last_execution_id'?: string;
|
|
6104
|
+
'last_execution_id'?: string | null;
|
|
6002
6105
|
/**
|
|
6003
6106
|
*
|
|
6004
6107
|
* @type {ClusterLock}
|
|
6005
6108
|
* @memberof ClusterStatus
|
|
6006
6109
|
*/
|
|
6007
|
-
'cluster_lock'?: ClusterLock;
|
|
6110
|
+
'cluster_lock'?: ClusterLock | null;
|
|
6008
6111
|
/**
|
|
6009
6112
|
*
|
|
6010
6113
|
* @type {string}
|
|
6011
6114
|
* @memberof ClusterStatus
|
|
6012
6115
|
*/
|
|
6013
|
-
'last_deployment_date'?: string;
|
|
6116
|
+
'last_deployment_date'?: string | null;
|
|
6117
|
+
/**
|
|
6118
|
+
*
|
|
6119
|
+
* @type {DeploymentInfraReason}
|
|
6120
|
+
* @memberof ClusterStatus
|
|
6121
|
+
*/
|
|
6122
|
+
'reason': DeploymentInfraReason;
|
|
6014
6123
|
}
|
|
6015
6124
|
/**
|
|
6016
6125
|
*
|
|
@@ -9431,6 +9540,16 @@ export declare const DeploymentHistoryTriggerAction: {
|
|
|
9431
9540
|
readonly UNINSTALL: "UNINSTALL";
|
|
9432
9541
|
};
|
|
9433
9542
|
export type DeploymentHistoryTriggerAction = typeof DeploymentHistoryTriggerAction[keyof typeof DeploymentHistoryTriggerAction];
|
|
9543
|
+
/**
|
|
9544
|
+
*
|
|
9545
|
+
* @export
|
|
9546
|
+
* @enum {string}
|
|
9547
|
+
*/
|
|
9548
|
+
export declare const DeploymentInfraReason: {
|
|
9549
|
+
readonly UNSPECIFIED: "UNSPECIFIED";
|
|
9550
|
+
readonly MAINTENANCE: "MAINTENANCE";
|
|
9551
|
+
};
|
|
9552
|
+
export type DeploymentInfraReason = typeof DeploymentInfraReason[keyof typeof DeploymentInfraReason];
|
|
9434
9553
|
/**
|
|
9435
9554
|
* Match mode will rebuild app only if specified items are updated. Exclude mode will not rebuild app if specified items are updated.
|
|
9436
9555
|
* @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',
|
|
@@ -563,6 +576,15 @@ export const DeploymentHistoryTriggerAction = {
|
|
|
563
576
|
UNKNOWN: 'UNKNOWN',
|
|
564
577
|
UNINSTALL: 'UNINSTALL'
|
|
565
578
|
};
|
|
579
|
+
/**
|
|
580
|
+
*
|
|
581
|
+
* @export
|
|
582
|
+
* @enum {string}
|
|
583
|
+
*/
|
|
584
|
+
export const DeploymentInfraReason = {
|
|
585
|
+
UNSPECIFIED: 'UNSPECIFIED',
|
|
586
|
+
MAINTENANCE: 'MAINTENANCE'
|
|
587
|
+
};
|
|
566
588
|
/**
|
|
567
589
|
* Match mode will rebuild app only if specified items are updated. Exclude mode will not rebuild app if specified items are updated.
|
|
568
590
|
* @export
|