qovery-typescript-axios 1.1.854 → 1.1.855
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 +172 -2
- package/dist/api.d.ts +166 -1
- package/dist/api.js +26 -11
- package/dist/esm/api.d.ts +166 -1
- package/dist/esm/api.js +15 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2151,7 +2151,7 @@ export interface AvailableHelmRepositoryResponseList {
|
|
|
2151
2151
|
* @type AwsCredentialsRequest
|
|
2152
2152
|
* @export
|
|
2153
2153
|
*/
|
|
2154
|
-
export type AwsCredentialsRequest = AwsRoleCredentialsRequest | AwsStaticCredentialsRequest;
|
|
2154
|
+
export type AwsCredentialsRequest = { type: 'AWS_ROLE' } & AwsRoleCredentialsRequest | { type: 'AWS_STATIC' } & AwsStaticCredentialsRequest | { type: 'EKS_ANYWHERE_VSPHERE_ROLE' } & EksAnywhereVsphereRoleCredentialsRequest | { type: 'EKS_ANYWHERE_VSPHERE_STATIC' } & EksAnywhereVsphereStaticCredentialsRequest;
|
|
2155
2155
|
|
|
2156
2156
|
/**
|
|
2157
2157
|
*
|
|
@@ -2197,6 +2197,12 @@ export type AwsRoleClusterCredentialsObjectTypeEnum = typeof AwsRoleClusterCrede
|
|
|
2197
2197
|
* @interface AwsRoleCredentialsRequest
|
|
2198
2198
|
*/
|
|
2199
2199
|
export interface AwsRoleCredentialsRequest {
|
|
2200
|
+
/**
|
|
2201
|
+
*
|
|
2202
|
+
* @type {string}
|
|
2203
|
+
* @memberof AwsRoleCredentialsRequest
|
|
2204
|
+
*/
|
|
2205
|
+
'type': AwsRoleCredentialsRequestTypeEnum;
|
|
2200
2206
|
/**
|
|
2201
2207
|
*
|
|
2202
2208
|
* @type {string}
|
|
@@ -2210,6 +2216,13 @@ export interface AwsRoleCredentialsRequest {
|
|
|
2210
2216
|
*/
|
|
2211
2217
|
'role_arn': string;
|
|
2212
2218
|
}
|
|
2219
|
+
|
|
2220
|
+
export const AwsRoleCredentialsRequestTypeEnum = {
|
|
2221
|
+
AWS_ROLE: 'AWS_ROLE'
|
|
2222
|
+
} as const;
|
|
2223
|
+
|
|
2224
|
+
export type AwsRoleCredentialsRequestTypeEnum = typeof AwsRoleCredentialsRequestTypeEnum[keyof typeof AwsRoleCredentialsRequestTypeEnum];
|
|
2225
|
+
|
|
2213
2226
|
/**
|
|
2214
2227
|
*
|
|
2215
2228
|
* @export
|
|
@@ -2254,6 +2267,12 @@ export type AwsStaticClusterCredentialsObjectTypeEnum = typeof AwsStaticClusterC
|
|
|
2254
2267
|
* @interface AwsStaticCredentialsRequest
|
|
2255
2268
|
*/
|
|
2256
2269
|
export interface AwsStaticCredentialsRequest {
|
|
2270
|
+
/**
|
|
2271
|
+
*
|
|
2272
|
+
* @type {string}
|
|
2273
|
+
* @memberof AwsStaticCredentialsRequest
|
|
2274
|
+
*/
|
|
2275
|
+
'type': AwsStaticCredentialsRequestTypeEnum;
|
|
2257
2276
|
/**
|
|
2258
2277
|
*
|
|
2259
2278
|
* @type {string}
|
|
@@ -2273,6 +2292,13 @@ export interface AwsStaticCredentialsRequest {
|
|
|
2273
2292
|
*/
|
|
2274
2293
|
'secret_access_key': string;
|
|
2275
2294
|
}
|
|
2295
|
+
|
|
2296
|
+
export const AwsStaticCredentialsRequestTypeEnum = {
|
|
2297
|
+
AWS_STATIC: 'AWS_STATIC'
|
|
2298
|
+
} as const;
|
|
2299
|
+
|
|
2300
|
+
export type AwsStaticCredentialsRequestTypeEnum = typeof AwsStaticCredentialsRequestTypeEnum[keyof typeof AwsStaticCredentialsRequestTypeEnum];
|
|
2301
|
+
|
|
2276
2302
|
/**
|
|
2277
2303
|
*
|
|
2278
2304
|
* @export
|
|
@@ -3618,7 +3644,7 @@ export interface ClusterCloudProviderInfoRequest {
|
|
|
3618
3644
|
* @type ClusterCredentials
|
|
3619
3645
|
* @export
|
|
3620
3646
|
*/
|
|
3621
|
-
export type ClusterCredentials = { object_type: 'AWS' } & AwsStaticClusterCredentials | { object_type: 'AWS_ROLE' } & AwsRoleClusterCredentials | { object_type: 'AZURE' } & AzureStaticClusterCredentials | { object_type: 'GCP' } & GcpStaticClusterCredentials | { object_type: 'OTHER' } & GenericClusterCredentials | { object_type: 'SCW' } & ScalewayClusterCredentials;
|
|
3647
|
+
export type ClusterCredentials = { object_type: 'AWS' } & AwsStaticClusterCredentials | { object_type: 'AWS_ROLE' } & AwsRoleClusterCredentials | { object_type: 'AZURE' } & AzureStaticClusterCredentials | { object_type: 'EKS_ANYWHERE_VSPHERE' } & EksAnywhereVsphereClusterCredentials | { object_type: 'GCP' } & GcpStaticClusterCredentials | { object_type: 'OTHER' } & GenericClusterCredentials | { object_type: 'SCW' } & ScalewayClusterCredentials;
|
|
3622
3648
|
|
|
3623
3649
|
/**
|
|
3624
3650
|
*
|
|
@@ -9083,6 +9109,150 @@ export interface EksAnywhereCommitResponse {
|
|
|
9083
9109
|
*/
|
|
9084
9110
|
'commit_id': string;
|
|
9085
9111
|
}
|
|
9112
|
+
/**
|
|
9113
|
+
*
|
|
9114
|
+
* @export
|
|
9115
|
+
* @interface EksAnywhereVsphereClusterCredentials
|
|
9116
|
+
*/
|
|
9117
|
+
export interface EksAnywhereVsphereClusterCredentials {
|
|
9118
|
+
/**
|
|
9119
|
+
*
|
|
9120
|
+
* @type {string}
|
|
9121
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
9122
|
+
*/
|
|
9123
|
+
'id': string;
|
|
9124
|
+
/**
|
|
9125
|
+
*
|
|
9126
|
+
* @type {string}
|
|
9127
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
9128
|
+
*/
|
|
9129
|
+
'name': string;
|
|
9130
|
+
/**
|
|
9131
|
+
*
|
|
9132
|
+
* @type {string}
|
|
9133
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
9134
|
+
*/
|
|
9135
|
+
'vsphere_user': string;
|
|
9136
|
+
/**
|
|
9137
|
+
*
|
|
9138
|
+
* @type {string}
|
|
9139
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
9140
|
+
*/
|
|
9141
|
+
'access_key_id'?: string | null;
|
|
9142
|
+
/**
|
|
9143
|
+
*
|
|
9144
|
+
* @type {string}
|
|
9145
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
9146
|
+
*/
|
|
9147
|
+
'role_arn'?: string | null;
|
|
9148
|
+
/**
|
|
9149
|
+
*
|
|
9150
|
+
* @type {string}
|
|
9151
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
9152
|
+
*/
|
|
9153
|
+
'object_type': EksAnywhereVsphereClusterCredentialsObjectTypeEnum;
|
|
9154
|
+
}
|
|
9155
|
+
|
|
9156
|
+
export const EksAnywhereVsphereClusterCredentialsObjectTypeEnum = {
|
|
9157
|
+
EKS_ANYWHERE_VSPHERE: 'EKS_ANYWHERE_VSPHERE'
|
|
9158
|
+
} as const;
|
|
9159
|
+
|
|
9160
|
+
export type EksAnywhereVsphereClusterCredentialsObjectTypeEnum = typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum[keyof typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum];
|
|
9161
|
+
|
|
9162
|
+
/**
|
|
9163
|
+
*
|
|
9164
|
+
* @export
|
|
9165
|
+
* @interface EksAnywhereVsphereRoleCredentialsRequest
|
|
9166
|
+
*/
|
|
9167
|
+
export interface EksAnywhereVsphereRoleCredentialsRequest {
|
|
9168
|
+
/**
|
|
9169
|
+
*
|
|
9170
|
+
* @type {string}
|
|
9171
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
9172
|
+
*/
|
|
9173
|
+
'type': EksAnywhereVsphereRoleCredentialsRequestTypeEnum;
|
|
9174
|
+
/**
|
|
9175
|
+
*
|
|
9176
|
+
* @type {string}
|
|
9177
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
9178
|
+
*/
|
|
9179
|
+
'name': string;
|
|
9180
|
+
/**
|
|
9181
|
+
*
|
|
9182
|
+
* @type {string}
|
|
9183
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
9184
|
+
*/
|
|
9185
|
+
'vsphere_user': string;
|
|
9186
|
+
/**
|
|
9187
|
+
*
|
|
9188
|
+
* @type {string}
|
|
9189
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
9190
|
+
*/
|
|
9191
|
+
'vsphere_password': string;
|
|
9192
|
+
/**
|
|
9193
|
+
*
|
|
9194
|
+
* @type {string}
|
|
9195
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
9196
|
+
*/
|
|
9197
|
+
'role_arn': string;
|
|
9198
|
+
}
|
|
9199
|
+
|
|
9200
|
+
export const EksAnywhereVsphereRoleCredentialsRequestTypeEnum = {
|
|
9201
|
+
EKS_ANYWHERE_VSPHERE_ROLE: 'EKS_ANYWHERE_VSPHERE_ROLE'
|
|
9202
|
+
} as const;
|
|
9203
|
+
|
|
9204
|
+
export type EksAnywhereVsphereRoleCredentialsRequestTypeEnum = typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum];
|
|
9205
|
+
|
|
9206
|
+
/**
|
|
9207
|
+
*
|
|
9208
|
+
* @export
|
|
9209
|
+
* @interface EksAnywhereVsphereStaticCredentialsRequest
|
|
9210
|
+
*/
|
|
9211
|
+
export interface EksAnywhereVsphereStaticCredentialsRequest {
|
|
9212
|
+
/**
|
|
9213
|
+
*
|
|
9214
|
+
* @type {string}
|
|
9215
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
9216
|
+
*/
|
|
9217
|
+
'type': EksAnywhereVsphereStaticCredentialsRequestTypeEnum;
|
|
9218
|
+
/**
|
|
9219
|
+
*
|
|
9220
|
+
* @type {string}
|
|
9221
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
9222
|
+
*/
|
|
9223
|
+
'name': string;
|
|
9224
|
+
/**
|
|
9225
|
+
*
|
|
9226
|
+
* @type {string}
|
|
9227
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
9228
|
+
*/
|
|
9229
|
+
'vsphere_user': string;
|
|
9230
|
+
/**
|
|
9231
|
+
*
|
|
9232
|
+
* @type {string}
|
|
9233
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
9234
|
+
*/
|
|
9235
|
+
'vsphere_password': string;
|
|
9236
|
+
/**
|
|
9237
|
+
*
|
|
9238
|
+
* @type {string}
|
|
9239
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
9240
|
+
*/
|
|
9241
|
+
'access_key_id': string;
|
|
9242
|
+
/**
|
|
9243
|
+
*
|
|
9244
|
+
* @type {string}
|
|
9245
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
9246
|
+
*/
|
|
9247
|
+
'secret_access_key': string;
|
|
9248
|
+
}
|
|
9249
|
+
|
|
9250
|
+
export const EksAnywhereVsphereStaticCredentialsRequestTypeEnum = {
|
|
9251
|
+
EKS_ANYWHERE_VSPHERE_STATIC: 'EKS_ANYWHERE_VSPHERE_STATIC'
|
|
9252
|
+
} as const;
|
|
9253
|
+
|
|
9254
|
+
export type EksAnywhereVsphereStaticCredentialsRequestTypeEnum = typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum];
|
|
9255
|
+
|
|
9086
9256
|
/**
|
|
9087
9257
|
*
|
|
9088
9258
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -2069,7 +2069,15 @@ export interface AvailableHelmRepositoryResponseList {
|
|
|
2069
2069
|
* @type AwsCredentialsRequest
|
|
2070
2070
|
* @export
|
|
2071
2071
|
*/
|
|
2072
|
-
export type AwsCredentialsRequest =
|
|
2072
|
+
export type AwsCredentialsRequest = {
|
|
2073
|
+
type: 'AWS_ROLE';
|
|
2074
|
+
} & AwsRoleCredentialsRequest | {
|
|
2075
|
+
type: 'AWS_STATIC';
|
|
2076
|
+
} & AwsStaticCredentialsRequest | {
|
|
2077
|
+
type: 'EKS_ANYWHERE_VSPHERE_ROLE';
|
|
2078
|
+
} & EksAnywhereVsphereRoleCredentialsRequest | {
|
|
2079
|
+
type: 'EKS_ANYWHERE_VSPHERE_STATIC';
|
|
2080
|
+
} & EksAnywhereVsphereStaticCredentialsRequest;
|
|
2073
2081
|
/**
|
|
2074
2082
|
*
|
|
2075
2083
|
* @export
|
|
@@ -2111,6 +2119,12 @@ export type AwsRoleClusterCredentialsObjectTypeEnum = typeof AwsRoleClusterCrede
|
|
|
2111
2119
|
* @interface AwsRoleCredentialsRequest
|
|
2112
2120
|
*/
|
|
2113
2121
|
export interface AwsRoleCredentialsRequest {
|
|
2122
|
+
/**
|
|
2123
|
+
*
|
|
2124
|
+
* @type {string}
|
|
2125
|
+
* @memberof AwsRoleCredentialsRequest
|
|
2126
|
+
*/
|
|
2127
|
+
'type': AwsRoleCredentialsRequestTypeEnum;
|
|
2114
2128
|
/**
|
|
2115
2129
|
*
|
|
2116
2130
|
* @type {string}
|
|
@@ -2124,6 +2138,10 @@ export interface AwsRoleCredentialsRequest {
|
|
|
2124
2138
|
*/
|
|
2125
2139
|
'role_arn': string;
|
|
2126
2140
|
}
|
|
2141
|
+
export declare const AwsRoleCredentialsRequestTypeEnum: {
|
|
2142
|
+
readonly AWS_ROLE: "AWS_ROLE";
|
|
2143
|
+
};
|
|
2144
|
+
export type AwsRoleCredentialsRequestTypeEnum = typeof AwsRoleCredentialsRequestTypeEnum[keyof typeof AwsRoleCredentialsRequestTypeEnum];
|
|
2127
2145
|
/**
|
|
2128
2146
|
*
|
|
2129
2147
|
* @export
|
|
@@ -2165,6 +2183,12 @@ export type AwsStaticClusterCredentialsObjectTypeEnum = typeof AwsStaticClusterC
|
|
|
2165
2183
|
* @interface AwsStaticCredentialsRequest
|
|
2166
2184
|
*/
|
|
2167
2185
|
export interface AwsStaticCredentialsRequest {
|
|
2186
|
+
/**
|
|
2187
|
+
*
|
|
2188
|
+
* @type {string}
|
|
2189
|
+
* @memberof AwsStaticCredentialsRequest
|
|
2190
|
+
*/
|
|
2191
|
+
'type': AwsStaticCredentialsRequestTypeEnum;
|
|
2168
2192
|
/**
|
|
2169
2193
|
*
|
|
2170
2194
|
* @type {string}
|
|
@@ -2184,6 +2208,10 @@ export interface AwsStaticCredentialsRequest {
|
|
|
2184
2208
|
*/
|
|
2185
2209
|
'secret_access_key': string;
|
|
2186
2210
|
}
|
|
2211
|
+
export declare const AwsStaticCredentialsRequestTypeEnum: {
|
|
2212
|
+
readonly AWS_STATIC: "AWS_STATIC";
|
|
2213
|
+
};
|
|
2214
|
+
export type AwsStaticCredentialsRequestTypeEnum = typeof AwsStaticCredentialsRequestTypeEnum[keyof typeof AwsStaticCredentialsRequestTypeEnum];
|
|
2187
2215
|
/**
|
|
2188
2216
|
*
|
|
2189
2217
|
* @export
|
|
@@ -3503,6 +3531,8 @@ export type ClusterCredentials = {
|
|
|
3503
3531
|
} & AwsRoleClusterCredentials | {
|
|
3504
3532
|
object_type: 'AZURE';
|
|
3505
3533
|
} & AzureStaticClusterCredentials | {
|
|
3534
|
+
object_type: 'EKS_ANYWHERE_VSPHERE';
|
|
3535
|
+
} & EksAnywhereVsphereClusterCredentials | {
|
|
3506
3536
|
object_type: 'GCP';
|
|
3507
3537
|
} & GcpStaticClusterCredentials | {
|
|
3508
3538
|
object_type: 'OTHER';
|
|
@@ -8802,6 +8832,141 @@ export interface EksAnywhereCommitResponse {
|
|
|
8802
8832
|
*/
|
|
8803
8833
|
'commit_id': string;
|
|
8804
8834
|
}
|
|
8835
|
+
/**
|
|
8836
|
+
*
|
|
8837
|
+
* @export
|
|
8838
|
+
* @interface EksAnywhereVsphereClusterCredentials
|
|
8839
|
+
*/
|
|
8840
|
+
export interface EksAnywhereVsphereClusterCredentials {
|
|
8841
|
+
/**
|
|
8842
|
+
*
|
|
8843
|
+
* @type {string}
|
|
8844
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8845
|
+
*/
|
|
8846
|
+
'id': string;
|
|
8847
|
+
/**
|
|
8848
|
+
*
|
|
8849
|
+
* @type {string}
|
|
8850
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8851
|
+
*/
|
|
8852
|
+
'name': string;
|
|
8853
|
+
/**
|
|
8854
|
+
*
|
|
8855
|
+
* @type {string}
|
|
8856
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8857
|
+
*/
|
|
8858
|
+
'vsphere_user': string;
|
|
8859
|
+
/**
|
|
8860
|
+
*
|
|
8861
|
+
* @type {string}
|
|
8862
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8863
|
+
*/
|
|
8864
|
+
'access_key_id'?: string | null;
|
|
8865
|
+
/**
|
|
8866
|
+
*
|
|
8867
|
+
* @type {string}
|
|
8868
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8869
|
+
*/
|
|
8870
|
+
'role_arn'?: string | null;
|
|
8871
|
+
/**
|
|
8872
|
+
*
|
|
8873
|
+
* @type {string}
|
|
8874
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8875
|
+
*/
|
|
8876
|
+
'object_type': EksAnywhereVsphereClusterCredentialsObjectTypeEnum;
|
|
8877
|
+
}
|
|
8878
|
+
export declare const EksAnywhereVsphereClusterCredentialsObjectTypeEnum: {
|
|
8879
|
+
readonly EKS_ANYWHERE_VSPHERE: "EKS_ANYWHERE_VSPHERE";
|
|
8880
|
+
};
|
|
8881
|
+
export type EksAnywhereVsphereClusterCredentialsObjectTypeEnum = typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum[keyof typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum];
|
|
8882
|
+
/**
|
|
8883
|
+
*
|
|
8884
|
+
* @export
|
|
8885
|
+
* @interface EksAnywhereVsphereRoleCredentialsRequest
|
|
8886
|
+
*/
|
|
8887
|
+
export interface EksAnywhereVsphereRoleCredentialsRequest {
|
|
8888
|
+
/**
|
|
8889
|
+
*
|
|
8890
|
+
* @type {string}
|
|
8891
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8892
|
+
*/
|
|
8893
|
+
'type': EksAnywhereVsphereRoleCredentialsRequestTypeEnum;
|
|
8894
|
+
/**
|
|
8895
|
+
*
|
|
8896
|
+
* @type {string}
|
|
8897
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8898
|
+
*/
|
|
8899
|
+
'name': string;
|
|
8900
|
+
/**
|
|
8901
|
+
*
|
|
8902
|
+
* @type {string}
|
|
8903
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8904
|
+
*/
|
|
8905
|
+
'vsphere_user': string;
|
|
8906
|
+
/**
|
|
8907
|
+
*
|
|
8908
|
+
* @type {string}
|
|
8909
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8910
|
+
*/
|
|
8911
|
+
'vsphere_password': string;
|
|
8912
|
+
/**
|
|
8913
|
+
*
|
|
8914
|
+
* @type {string}
|
|
8915
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8916
|
+
*/
|
|
8917
|
+
'role_arn': string;
|
|
8918
|
+
}
|
|
8919
|
+
export declare const EksAnywhereVsphereRoleCredentialsRequestTypeEnum: {
|
|
8920
|
+
readonly EKS_ANYWHERE_VSPHERE_ROLE: "EKS_ANYWHERE_VSPHERE_ROLE";
|
|
8921
|
+
};
|
|
8922
|
+
export type EksAnywhereVsphereRoleCredentialsRequestTypeEnum = typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum];
|
|
8923
|
+
/**
|
|
8924
|
+
*
|
|
8925
|
+
* @export
|
|
8926
|
+
* @interface EksAnywhereVsphereStaticCredentialsRequest
|
|
8927
|
+
*/
|
|
8928
|
+
export interface EksAnywhereVsphereStaticCredentialsRequest {
|
|
8929
|
+
/**
|
|
8930
|
+
*
|
|
8931
|
+
* @type {string}
|
|
8932
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8933
|
+
*/
|
|
8934
|
+
'type': EksAnywhereVsphereStaticCredentialsRequestTypeEnum;
|
|
8935
|
+
/**
|
|
8936
|
+
*
|
|
8937
|
+
* @type {string}
|
|
8938
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8939
|
+
*/
|
|
8940
|
+
'name': string;
|
|
8941
|
+
/**
|
|
8942
|
+
*
|
|
8943
|
+
* @type {string}
|
|
8944
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8945
|
+
*/
|
|
8946
|
+
'vsphere_user': string;
|
|
8947
|
+
/**
|
|
8948
|
+
*
|
|
8949
|
+
* @type {string}
|
|
8950
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8951
|
+
*/
|
|
8952
|
+
'vsphere_password': string;
|
|
8953
|
+
/**
|
|
8954
|
+
*
|
|
8955
|
+
* @type {string}
|
|
8956
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8957
|
+
*/
|
|
8958
|
+
'access_key_id': string;
|
|
8959
|
+
/**
|
|
8960
|
+
*
|
|
8961
|
+
* @type {string}
|
|
8962
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8963
|
+
*/
|
|
8964
|
+
'secret_access_key': string;
|
|
8965
|
+
}
|
|
8966
|
+
export declare const EksAnywhereVsphereStaticCredentialsRequestTypeEnum: {
|
|
8967
|
+
readonly EKS_ANYWHERE_VSPHERE_STATIC: "EKS_ANYWHERE_VSPHERE_STATIC";
|
|
8968
|
+
};
|
|
8969
|
+
export type EksAnywhereVsphereStaticCredentialsRequestTypeEnum = typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum];
|
|
8805
8970
|
/**
|
|
8806
8971
|
*
|
|
8807
8972
|
* @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 = void 0;
|
|
25
|
+
exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeleteMode = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AutoscalingMode = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ArgoCdConnectionCheckResponseStatusEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
|
+
exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = void 0;
|
|
27
|
+
exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.PortProtocolEnum = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationEventType = void 0;
|
|
28
|
+
exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = void 0;
|
|
29
|
+
exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = void 0;
|
|
30
|
+
exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = void 0;
|
|
31
|
+
exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = void 0;
|
|
32
|
+
exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = void 0;
|
|
33
|
+
exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = void 0;
|
|
34
|
+
exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = void 0;
|
|
35
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = void 0;
|
|
36
36
|
const axios_1 = require("axios");
|
|
37
37
|
// Some imports not used depending on template conditions
|
|
38
38
|
// @ts-ignore
|
|
@@ -209,9 +209,15 @@ exports.AutoscalingMode = {
|
|
|
209
209
|
exports.AwsRoleClusterCredentialsObjectTypeEnum = {
|
|
210
210
|
AWS_ROLE: 'AWS_ROLE'
|
|
211
211
|
};
|
|
212
|
+
exports.AwsRoleCredentialsRequestTypeEnum = {
|
|
213
|
+
AWS_ROLE: 'AWS_ROLE'
|
|
214
|
+
};
|
|
212
215
|
exports.AwsStaticClusterCredentialsObjectTypeEnum = {
|
|
213
216
|
AWS: 'AWS'
|
|
214
217
|
};
|
|
218
|
+
exports.AwsStaticCredentialsRequestTypeEnum = {
|
|
219
|
+
AWS_STATIC: 'AWS_STATIC'
|
|
220
|
+
};
|
|
215
221
|
exports.AzureStaticClusterCredentialsObjectTypeEnum = {
|
|
216
222
|
AZURE: 'AZURE'
|
|
217
223
|
};
|
|
@@ -544,6 +550,15 @@ exports.DockerfileFragmentFileTypeEnum = {
|
|
|
544
550
|
exports.DockerfileFragmentInlineTypeEnum = {
|
|
545
551
|
INLINE: 'inline'
|
|
546
552
|
};
|
|
553
|
+
exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = {
|
|
554
|
+
EKS_ANYWHERE_VSPHERE: 'EKS_ANYWHERE_VSPHERE'
|
|
555
|
+
};
|
|
556
|
+
exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = {
|
|
557
|
+
EKS_ANYWHERE_VSPHERE_ROLE: 'EKS_ANYWHERE_VSPHERE_ROLE'
|
|
558
|
+
};
|
|
559
|
+
exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = {
|
|
560
|
+
EKS_ANYWHERE_VSPHERE_STATIC: 'EKS_ANYWHERE_VSPHERE_STATIC'
|
|
561
|
+
};
|
|
547
562
|
exports.EksInfrastructureOutputsKindEnum = {
|
|
548
563
|
EKS: 'EKS'
|
|
549
564
|
};
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2069,7 +2069,15 @@ export interface AvailableHelmRepositoryResponseList {
|
|
|
2069
2069
|
* @type AwsCredentialsRequest
|
|
2070
2070
|
* @export
|
|
2071
2071
|
*/
|
|
2072
|
-
export type AwsCredentialsRequest =
|
|
2072
|
+
export type AwsCredentialsRequest = {
|
|
2073
|
+
type: 'AWS_ROLE';
|
|
2074
|
+
} & AwsRoleCredentialsRequest | {
|
|
2075
|
+
type: 'AWS_STATIC';
|
|
2076
|
+
} & AwsStaticCredentialsRequest | {
|
|
2077
|
+
type: 'EKS_ANYWHERE_VSPHERE_ROLE';
|
|
2078
|
+
} & EksAnywhereVsphereRoleCredentialsRequest | {
|
|
2079
|
+
type: 'EKS_ANYWHERE_VSPHERE_STATIC';
|
|
2080
|
+
} & EksAnywhereVsphereStaticCredentialsRequest;
|
|
2073
2081
|
/**
|
|
2074
2082
|
*
|
|
2075
2083
|
* @export
|
|
@@ -2111,6 +2119,12 @@ export type AwsRoleClusterCredentialsObjectTypeEnum = typeof AwsRoleClusterCrede
|
|
|
2111
2119
|
* @interface AwsRoleCredentialsRequest
|
|
2112
2120
|
*/
|
|
2113
2121
|
export interface AwsRoleCredentialsRequest {
|
|
2122
|
+
/**
|
|
2123
|
+
*
|
|
2124
|
+
* @type {string}
|
|
2125
|
+
* @memberof AwsRoleCredentialsRequest
|
|
2126
|
+
*/
|
|
2127
|
+
'type': AwsRoleCredentialsRequestTypeEnum;
|
|
2114
2128
|
/**
|
|
2115
2129
|
*
|
|
2116
2130
|
* @type {string}
|
|
@@ -2124,6 +2138,10 @@ export interface AwsRoleCredentialsRequest {
|
|
|
2124
2138
|
*/
|
|
2125
2139
|
'role_arn': string;
|
|
2126
2140
|
}
|
|
2141
|
+
export declare const AwsRoleCredentialsRequestTypeEnum: {
|
|
2142
|
+
readonly AWS_ROLE: "AWS_ROLE";
|
|
2143
|
+
};
|
|
2144
|
+
export type AwsRoleCredentialsRequestTypeEnum = typeof AwsRoleCredentialsRequestTypeEnum[keyof typeof AwsRoleCredentialsRequestTypeEnum];
|
|
2127
2145
|
/**
|
|
2128
2146
|
*
|
|
2129
2147
|
* @export
|
|
@@ -2165,6 +2183,12 @@ export type AwsStaticClusterCredentialsObjectTypeEnum = typeof AwsStaticClusterC
|
|
|
2165
2183
|
* @interface AwsStaticCredentialsRequest
|
|
2166
2184
|
*/
|
|
2167
2185
|
export interface AwsStaticCredentialsRequest {
|
|
2186
|
+
/**
|
|
2187
|
+
*
|
|
2188
|
+
* @type {string}
|
|
2189
|
+
* @memberof AwsStaticCredentialsRequest
|
|
2190
|
+
*/
|
|
2191
|
+
'type': AwsStaticCredentialsRequestTypeEnum;
|
|
2168
2192
|
/**
|
|
2169
2193
|
*
|
|
2170
2194
|
* @type {string}
|
|
@@ -2184,6 +2208,10 @@ export interface AwsStaticCredentialsRequest {
|
|
|
2184
2208
|
*/
|
|
2185
2209
|
'secret_access_key': string;
|
|
2186
2210
|
}
|
|
2211
|
+
export declare const AwsStaticCredentialsRequestTypeEnum: {
|
|
2212
|
+
readonly AWS_STATIC: "AWS_STATIC";
|
|
2213
|
+
};
|
|
2214
|
+
export type AwsStaticCredentialsRequestTypeEnum = typeof AwsStaticCredentialsRequestTypeEnum[keyof typeof AwsStaticCredentialsRequestTypeEnum];
|
|
2187
2215
|
/**
|
|
2188
2216
|
*
|
|
2189
2217
|
* @export
|
|
@@ -3503,6 +3531,8 @@ export type ClusterCredentials = {
|
|
|
3503
3531
|
} & AwsRoleClusterCredentials | {
|
|
3504
3532
|
object_type: 'AZURE';
|
|
3505
3533
|
} & AzureStaticClusterCredentials | {
|
|
3534
|
+
object_type: 'EKS_ANYWHERE_VSPHERE';
|
|
3535
|
+
} & EksAnywhereVsphereClusterCredentials | {
|
|
3506
3536
|
object_type: 'GCP';
|
|
3507
3537
|
} & GcpStaticClusterCredentials | {
|
|
3508
3538
|
object_type: 'OTHER';
|
|
@@ -8802,6 +8832,141 @@ export interface EksAnywhereCommitResponse {
|
|
|
8802
8832
|
*/
|
|
8803
8833
|
'commit_id': string;
|
|
8804
8834
|
}
|
|
8835
|
+
/**
|
|
8836
|
+
*
|
|
8837
|
+
* @export
|
|
8838
|
+
* @interface EksAnywhereVsphereClusterCredentials
|
|
8839
|
+
*/
|
|
8840
|
+
export interface EksAnywhereVsphereClusterCredentials {
|
|
8841
|
+
/**
|
|
8842
|
+
*
|
|
8843
|
+
* @type {string}
|
|
8844
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8845
|
+
*/
|
|
8846
|
+
'id': string;
|
|
8847
|
+
/**
|
|
8848
|
+
*
|
|
8849
|
+
* @type {string}
|
|
8850
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8851
|
+
*/
|
|
8852
|
+
'name': string;
|
|
8853
|
+
/**
|
|
8854
|
+
*
|
|
8855
|
+
* @type {string}
|
|
8856
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8857
|
+
*/
|
|
8858
|
+
'vsphere_user': string;
|
|
8859
|
+
/**
|
|
8860
|
+
*
|
|
8861
|
+
* @type {string}
|
|
8862
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8863
|
+
*/
|
|
8864
|
+
'access_key_id'?: string | null;
|
|
8865
|
+
/**
|
|
8866
|
+
*
|
|
8867
|
+
* @type {string}
|
|
8868
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8869
|
+
*/
|
|
8870
|
+
'role_arn'?: string | null;
|
|
8871
|
+
/**
|
|
8872
|
+
*
|
|
8873
|
+
* @type {string}
|
|
8874
|
+
* @memberof EksAnywhereVsphereClusterCredentials
|
|
8875
|
+
*/
|
|
8876
|
+
'object_type': EksAnywhereVsphereClusterCredentialsObjectTypeEnum;
|
|
8877
|
+
}
|
|
8878
|
+
export declare const EksAnywhereVsphereClusterCredentialsObjectTypeEnum: {
|
|
8879
|
+
readonly EKS_ANYWHERE_VSPHERE: "EKS_ANYWHERE_VSPHERE";
|
|
8880
|
+
};
|
|
8881
|
+
export type EksAnywhereVsphereClusterCredentialsObjectTypeEnum = typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum[keyof typeof EksAnywhereVsphereClusterCredentialsObjectTypeEnum];
|
|
8882
|
+
/**
|
|
8883
|
+
*
|
|
8884
|
+
* @export
|
|
8885
|
+
* @interface EksAnywhereVsphereRoleCredentialsRequest
|
|
8886
|
+
*/
|
|
8887
|
+
export interface EksAnywhereVsphereRoleCredentialsRequest {
|
|
8888
|
+
/**
|
|
8889
|
+
*
|
|
8890
|
+
* @type {string}
|
|
8891
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8892
|
+
*/
|
|
8893
|
+
'type': EksAnywhereVsphereRoleCredentialsRequestTypeEnum;
|
|
8894
|
+
/**
|
|
8895
|
+
*
|
|
8896
|
+
* @type {string}
|
|
8897
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8898
|
+
*/
|
|
8899
|
+
'name': string;
|
|
8900
|
+
/**
|
|
8901
|
+
*
|
|
8902
|
+
* @type {string}
|
|
8903
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8904
|
+
*/
|
|
8905
|
+
'vsphere_user': string;
|
|
8906
|
+
/**
|
|
8907
|
+
*
|
|
8908
|
+
* @type {string}
|
|
8909
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8910
|
+
*/
|
|
8911
|
+
'vsphere_password': string;
|
|
8912
|
+
/**
|
|
8913
|
+
*
|
|
8914
|
+
* @type {string}
|
|
8915
|
+
* @memberof EksAnywhereVsphereRoleCredentialsRequest
|
|
8916
|
+
*/
|
|
8917
|
+
'role_arn': string;
|
|
8918
|
+
}
|
|
8919
|
+
export declare const EksAnywhereVsphereRoleCredentialsRequestTypeEnum: {
|
|
8920
|
+
readonly EKS_ANYWHERE_VSPHERE_ROLE: "EKS_ANYWHERE_VSPHERE_ROLE";
|
|
8921
|
+
};
|
|
8922
|
+
export type EksAnywhereVsphereRoleCredentialsRequestTypeEnum = typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereRoleCredentialsRequestTypeEnum];
|
|
8923
|
+
/**
|
|
8924
|
+
*
|
|
8925
|
+
* @export
|
|
8926
|
+
* @interface EksAnywhereVsphereStaticCredentialsRequest
|
|
8927
|
+
*/
|
|
8928
|
+
export interface EksAnywhereVsphereStaticCredentialsRequest {
|
|
8929
|
+
/**
|
|
8930
|
+
*
|
|
8931
|
+
* @type {string}
|
|
8932
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8933
|
+
*/
|
|
8934
|
+
'type': EksAnywhereVsphereStaticCredentialsRequestTypeEnum;
|
|
8935
|
+
/**
|
|
8936
|
+
*
|
|
8937
|
+
* @type {string}
|
|
8938
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8939
|
+
*/
|
|
8940
|
+
'name': string;
|
|
8941
|
+
/**
|
|
8942
|
+
*
|
|
8943
|
+
* @type {string}
|
|
8944
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8945
|
+
*/
|
|
8946
|
+
'vsphere_user': string;
|
|
8947
|
+
/**
|
|
8948
|
+
*
|
|
8949
|
+
* @type {string}
|
|
8950
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8951
|
+
*/
|
|
8952
|
+
'vsphere_password': string;
|
|
8953
|
+
/**
|
|
8954
|
+
*
|
|
8955
|
+
* @type {string}
|
|
8956
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8957
|
+
*/
|
|
8958
|
+
'access_key_id': string;
|
|
8959
|
+
/**
|
|
8960
|
+
*
|
|
8961
|
+
* @type {string}
|
|
8962
|
+
* @memberof EksAnywhereVsphereStaticCredentialsRequest
|
|
8963
|
+
*/
|
|
8964
|
+
'secret_access_key': string;
|
|
8965
|
+
}
|
|
8966
|
+
export declare const EksAnywhereVsphereStaticCredentialsRequestTypeEnum: {
|
|
8967
|
+
readonly EKS_ANYWHERE_VSPHERE_STATIC: "EKS_ANYWHERE_VSPHERE_STATIC";
|
|
8968
|
+
};
|
|
8969
|
+
export type EksAnywhereVsphereStaticCredentialsRequestTypeEnum = typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum[keyof typeof EksAnywhereVsphereStaticCredentialsRequestTypeEnum];
|
|
8805
8970
|
/**
|
|
8806
8971
|
*
|
|
8807
8972
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -196,9 +196,15 @@ export const AutoscalingMode = {
|
|
|
196
196
|
export const AwsRoleClusterCredentialsObjectTypeEnum = {
|
|
197
197
|
AWS_ROLE: 'AWS_ROLE'
|
|
198
198
|
};
|
|
199
|
+
export const AwsRoleCredentialsRequestTypeEnum = {
|
|
200
|
+
AWS_ROLE: 'AWS_ROLE'
|
|
201
|
+
};
|
|
199
202
|
export const AwsStaticClusterCredentialsObjectTypeEnum = {
|
|
200
203
|
AWS: 'AWS'
|
|
201
204
|
};
|
|
205
|
+
export const AwsStaticCredentialsRequestTypeEnum = {
|
|
206
|
+
AWS_STATIC: 'AWS_STATIC'
|
|
207
|
+
};
|
|
202
208
|
export const AzureStaticClusterCredentialsObjectTypeEnum = {
|
|
203
209
|
AZURE: 'AZURE'
|
|
204
210
|
};
|
|
@@ -531,6 +537,15 @@ export const DockerfileFragmentFileTypeEnum = {
|
|
|
531
537
|
export const DockerfileFragmentInlineTypeEnum = {
|
|
532
538
|
INLINE: 'inline'
|
|
533
539
|
};
|
|
540
|
+
export const EksAnywhereVsphereClusterCredentialsObjectTypeEnum = {
|
|
541
|
+
EKS_ANYWHERE_VSPHERE: 'EKS_ANYWHERE_VSPHERE'
|
|
542
|
+
};
|
|
543
|
+
export const EksAnywhereVsphereRoleCredentialsRequestTypeEnum = {
|
|
544
|
+
EKS_ANYWHERE_VSPHERE_ROLE: 'EKS_ANYWHERE_VSPHERE_ROLE'
|
|
545
|
+
};
|
|
546
|
+
export const EksAnywhereVsphereStaticCredentialsRequestTypeEnum = {
|
|
547
|
+
EKS_ANYWHERE_VSPHERE_STATIC: 'EKS_ANYWHERE_VSPHERE_STATIC'
|
|
548
|
+
};
|
|
534
549
|
export const EksInfrastructureOutputsKindEnum = {
|
|
535
550
|
EKS: 'EKS'
|
|
536
551
|
};
|