qovery-typescript-axios 1.1.895 → 1.1.897
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 +149 -17
- package/dist/api.d.ts +140 -16
- package/dist/api.js +20 -10
- package/dist/esm/api.d.ts +140 -16
- package/dist/esm/api.js +10 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4516,7 +4516,7 @@ export interface ClusterCloudProviderInfoRequest {
|
|
|
4516
4516
|
* @type ClusterCredentials
|
|
4517
4517
|
* @export
|
|
4518
4518
|
*/
|
|
4519
|
-
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;
|
|
4519
|
+
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: 'GCP_WORKLOAD_IDENTITY_FEDERATION' } & GcpWorkloadIdentityFederationClusterCredentials | { object_type: 'OTHER' } & GenericClusterCredentials | { object_type: 'SCW' } & ScalewayClusterCredentials;
|
|
4520
4520
|
|
|
4521
4521
|
/**
|
|
4522
4522
|
*
|
|
@@ -6033,6 +6033,12 @@ export interface ClusterRegion {
|
|
|
6033
6033
|
* @memberof ClusterRegion
|
|
6034
6034
|
*/
|
|
6035
6035
|
'city': string;
|
|
6036
|
+
/**
|
|
6037
|
+
* Whether ARM instance types are available in this region
|
|
6038
|
+
* @type {boolean}
|
|
6039
|
+
* @memberof ClusterRegion
|
|
6040
|
+
*/
|
|
6041
|
+
'arm_supported'?: boolean;
|
|
6036
6042
|
/**
|
|
6037
6043
|
* List of availability zones supported by this region
|
|
6038
6044
|
* @type {Array<string>}
|
|
@@ -12094,24 +12100,11 @@ export interface ExternalSecretAssociatedServiceResponseList {
|
|
|
12094
12100
|
'results': Array<ExternalSecretAssociatedServiceResponse>;
|
|
12095
12101
|
}
|
|
12096
12102
|
/**
|
|
12097
|
-
*
|
|
12103
|
+
* @type GcpCredentialsRequest
|
|
12098
12104
|
* @export
|
|
12099
|
-
* @interface GcpCredentialsRequest
|
|
12100
12105
|
*/
|
|
12101
|
-
export
|
|
12102
|
-
|
|
12103
|
-
*
|
|
12104
|
-
* @type {string}
|
|
12105
|
-
* @memberof GcpCredentialsRequest
|
|
12106
|
-
*/
|
|
12107
|
-
'name': string;
|
|
12108
|
-
/**
|
|
12109
|
-
* The json must be base64 encoded
|
|
12110
|
-
* @type {string}
|
|
12111
|
-
* @memberof GcpCredentialsRequest
|
|
12112
|
-
*/
|
|
12113
|
-
'gcp_credentials': string;
|
|
12114
|
-
}
|
|
12106
|
+
export type GcpCredentialsRequest = GcpServiceAccountKeyCredentialsRequest | GcpWorkloadIdentityFederationCredentialsRequest;
|
|
12107
|
+
|
|
12115
12108
|
/**
|
|
12116
12109
|
*
|
|
12117
12110
|
* @export
|
|
@@ -12170,6 +12163,38 @@ export const GcpSecretManagerEndpointDtoModeEnum = {
|
|
|
12170
12163
|
|
|
12171
12164
|
export type GcpSecretManagerEndpointDtoModeEnum = typeof GcpSecretManagerEndpointDtoModeEnum[keyof typeof GcpSecretManagerEndpointDtoModeEnum];
|
|
12172
12165
|
|
|
12166
|
+
/**
|
|
12167
|
+
*
|
|
12168
|
+
* @export
|
|
12169
|
+
* @interface GcpServiceAccountKeyCredentialsRequest
|
|
12170
|
+
*/
|
|
12171
|
+
export interface GcpServiceAccountKeyCredentialsRequest {
|
|
12172
|
+
/**
|
|
12173
|
+
*
|
|
12174
|
+
* @type {string}
|
|
12175
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
12176
|
+
*/
|
|
12177
|
+
'name': string;
|
|
12178
|
+
/**
|
|
12179
|
+
* Optional explicit credential type.
|
|
12180
|
+
* @type {string}
|
|
12181
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
12182
|
+
*/
|
|
12183
|
+
'credential_type'?: GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum;
|
|
12184
|
+
/**
|
|
12185
|
+
* The json must be base64 encoded
|
|
12186
|
+
* @type {string}
|
|
12187
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
12188
|
+
*/
|
|
12189
|
+
'gcp_credentials': string;
|
|
12190
|
+
}
|
|
12191
|
+
|
|
12192
|
+
export const GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = {
|
|
12193
|
+
SERVICE_ACCOUNT_KEY: 'SERVICE_ACCOUNT_KEY'
|
|
12194
|
+
} as const;
|
|
12195
|
+
|
|
12196
|
+
export type GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum[keyof typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum];
|
|
12197
|
+
|
|
12173
12198
|
/**
|
|
12174
12199
|
*
|
|
12175
12200
|
* @export
|
|
@@ -12202,6 +12227,113 @@ export const GcpStaticClusterCredentialsObjectTypeEnum = {
|
|
|
12202
12227
|
|
|
12203
12228
|
export type GcpStaticClusterCredentialsObjectTypeEnum = typeof GcpStaticClusterCredentialsObjectTypeEnum[keyof typeof GcpStaticClusterCredentialsObjectTypeEnum];
|
|
12204
12229
|
|
|
12230
|
+
/**
|
|
12231
|
+
*
|
|
12232
|
+
* @export
|
|
12233
|
+
* @interface GcpWorkloadIdentityFederationClusterCredentials
|
|
12234
|
+
*/
|
|
12235
|
+
export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
12236
|
+
/**
|
|
12237
|
+
*
|
|
12238
|
+
* @type {string}
|
|
12239
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12240
|
+
*/
|
|
12241
|
+
'id': string;
|
|
12242
|
+
/**
|
|
12243
|
+
*
|
|
12244
|
+
* @type {string}
|
|
12245
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12246
|
+
*/
|
|
12247
|
+
'name': string;
|
|
12248
|
+
/**
|
|
12249
|
+
*
|
|
12250
|
+
* @type {string}
|
|
12251
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12252
|
+
*/
|
|
12253
|
+
'object_type': GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum;
|
|
12254
|
+
/**
|
|
12255
|
+
*
|
|
12256
|
+
* @type {string}
|
|
12257
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12258
|
+
*/
|
|
12259
|
+
'project_id': string;
|
|
12260
|
+
/**
|
|
12261
|
+
*
|
|
12262
|
+
* @type {string}
|
|
12263
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12264
|
+
*/
|
|
12265
|
+
'service_account_email': string;
|
|
12266
|
+
/**
|
|
12267
|
+
*
|
|
12268
|
+
* @type {string}
|
|
12269
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12270
|
+
*/
|
|
12271
|
+
'workload_identity_project_number': string;
|
|
12272
|
+
/**
|
|
12273
|
+
*
|
|
12274
|
+
* @type {string}
|
|
12275
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12276
|
+
*/
|
|
12277
|
+
'workload_identity_pool_id': string;
|
|
12278
|
+
/**
|
|
12279
|
+
*
|
|
12280
|
+
* @type {string}
|
|
12281
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12282
|
+
*/
|
|
12283
|
+
'workload_identity_provider_id': string;
|
|
12284
|
+
/**
|
|
12285
|
+
*
|
|
12286
|
+
* @type {number}
|
|
12287
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12288
|
+
*/
|
|
12289
|
+
'token_lifetime_seconds': number;
|
|
12290
|
+
}
|
|
12291
|
+
|
|
12292
|
+
export const GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = {
|
|
12293
|
+
GCP_WORKLOAD_IDENTITY_FEDERATION: 'GCP_WORKLOAD_IDENTITY_FEDERATION'
|
|
12294
|
+
} as const;
|
|
12295
|
+
|
|
12296
|
+
export type GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum[keyof typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum];
|
|
12297
|
+
|
|
12298
|
+
/**
|
|
12299
|
+
*
|
|
12300
|
+
* @export
|
|
12301
|
+
* @interface GcpWorkloadIdentityFederationCredentialsRequest
|
|
12302
|
+
*/
|
|
12303
|
+
export interface GcpWorkloadIdentityFederationCredentialsRequest {
|
|
12304
|
+
/**
|
|
12305
|
+
*
|
|
12306
|
+
* @type {string}
|
|
12307
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12308
|
+
*/
|
|
12309
|
+
'name': string;
|
|
12310
|
+
/**
|
|
12311
|
+
* Optional explicit credential type.
|
|
12312
|
+
* @type {string}
|
|
12313
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12314
|
+
*/
|
|
12315
|
+
'credential_type'?: GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum;
|
|
12316
|
+
/**
|
|
12317
|
+
* GCP service account email to impersonate.
|
|
12318
|
+
* @type {string}
|
|
12319
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12320
|
+
*/
|
|
12321
|
+
'service_account_email': string;
|
|
12322
|
+
/**
|
|
12323
|
+
* Full Workload Identity Provider resource.
|
|
12324
|
+
* @type {string}
|
|
12325
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12326
|
+
*/
|
|
12327
|
+
'workload_identity_provider_resource': string;
|
|
12328
|
+
}
|
|
12329
|
+
|
|
12330
|
+
export const GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = {
|
|
12331
|
+
WORKLOAD_IDENTITY_FEDERATION: 'WORKLOAD_IDENTITY_FEDERATION',
|
|
12332
|
+
WIF: 'WIF'
|
|
12333
|
+
} as const;
|
|
12334
|
+
|
|
12335
|
+
export type GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum[keyof typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum];
|
|
12336
|
+
|
|
12205
12337
|
/**
|
|
12206
12338
|
*
|
|
12207
12339
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -4367,6 +4367,8 @@ export type ClusterCredentials = {
|
|
|
4367
4367
|
} & EksAnywhereVsphereClusterCredentials | {
|
|
4368
4368
|
object_type: 'GCP';
|
|
4369
4369
|
} & GcpStaticClusterCredentials | {
|
|
4370
|
+
object_type: 'GCP_WORKLOAD_IDENTITY_FEDERATION';
|
|
4371
|
+
} & GcpWorkloadIdentityFederationClusterCredentials | {
|
|
4370
4372
|
object_type: 'OTHER';
|
|
4371
4373
|
} & GenericClusterCredentials | {
|
|
4372
4374
|
object_type: 'SCW';
|
|
@@ -5864,6 +5866,12 @@ export interface ClusterRegion {
|
|
|
5864
5866
|
* @memberof ClusterRegion
|
|
5865
5867
|
*/
|
|
5866
5868
|
'city': string;
|
|
5869
|
+
/**
|
|
5870
|
+
* Whether ARM instance types are available in this region
|
|
5871
|
+
* @type {boolean}
|
|
5872
|
+
* @memberof ClusterRegion
|
|
5873
|
+
*/
|
|
5874
|
+
'arm_supported'?: boolean;
|
|
5867
5875
|
/**
|
|
5868
5876
|
* List of availability zones supported by this region
|
|
5869
5877
|
* @type {Array<string>}
|
|
@@ -11723,24 +11731,10 @@ export interface ExternalSecretAssociatedServiceResponseList {
|
|
|
11723
11731
|
'results': Array<ExternalSecretAssociatedServiceResponse>;
|
|
11724
11732
|
}
|
|
11725
11733
|
/**
|
|
11726
|
-
*
|
|
11734
|
+
* @type GcpCredentialsRequest
|
|
11727
11735
|
* @export
|
|
11728
|
-
* @interface GcpCredentialsRequest
|
|
11729
11736
|
*/
|
|
11730
|
-
export
|
|
11731
|
-
/**
|
|
11732
|
-
*
|
|
11733
|
-
* @type {string}
|
|
11734
|
-
* @memberof GcpCredentialsRequest
|
|
11735
|
-
*/
|
|
11736
|
-
'name': string;
|
|
11737
|
-
/**
|
|
11738
|
-
* The json must be base64 encoded
|
|
11739
|
-
* @type {string}
|
|
11740
|
-
* @memberof GcpCredentialsRequest
|
|
11741
|
-
*/
|
|
11742
|
-
'gcp_credentials': string;
|
|
11743
|
-
}
|
|
11737
|
+
export type GcpCredentialsRequest = GcpServiceAccountKeyCredentialsRequest | GcpWorkloadIdentityFederationCredentialsRequest;
|
|
11744
11738
|
/**
|
|
11745
11739
|
*
|
|
11746
11740
|
* @export
|
|
@@ -11793,6 +11787,35 @@ export declare const GcpSecretManagerEndpointDtoModeEnum: {
|
|
|
11793
11787
|
readonly GCP_SECRET_MANAGER: "GCP_SECRET_MANAGER";
|
|
11794
11788
|
};
|
|
11795
11789
|
export type GcpSecretManagerEndpointDtoModeEnum = typeof GcpSecretManagerEndpointDtoModeEnum[keyof typeof GcpSecretManagerEndpointDtoModeEnum];
|
|
11790
|
+
/**
|
|
11791
|
+
*
|
|
11792
|
+
* @export
|
|
11793
|
+
* @interface GcpServiceAccountKeyCredentialsRequest
|
|
11794
|
+
*/
|
|
11795
|
+
export interface GcpServiceAccountKeyCredentialsRequest {
|
|
11796
|
+
/**
|
|
11797
|
+
*
|
|
11798
|
+
* @type {string}
|
|
11799
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11800
|
+
*/
|
|
11801
|
+
'name': string;
|
|
11802
|
+
/**
|
|
11803
|
+
* Optional explicit credential type.
|
|
11804
|
+
* @type {string}
|
|
11805
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11806
|
+
*/
|
|
11807
|
+
'credential_type'?: GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum;
|
|
11808
|
+
/**
|
|
11809
|
+
* The json must be base64 encoded
|
|
11810
|
+
* @type {string}
|
|
11811
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11812
|
+
*/
|
|
11813
|
+
'gcp_credentials': string;
|
|
11814
|
+
}
|
|
11815
|
+
export declare const GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum: {
|
|
11816
|
+
readonly SERVICE_ACCOUNT_KEY: "SERVICE_ACCOUNT_KEY";
|
|
11817
|
+
};
|
|
11818
|
+
export type GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum[keyof typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum];
|
|
11796
11819
|
/**
|
|
11797
11820
|
*
|
|
11798
11821
|
* @export
|
|
@@ -11822,6 +11845,107 @@ export declare const GcpStaticClusterCredentialsObjectTypeEnum: {
|
|
|
11822
11845
|
readonly GCP: "GCP";
|
|
11823
11846
|
};
|
|
11824
11847
|
export type GcpStaticClusterCredentialsObjectTypeEnum = typeof GcpStaticClusterCredentialsObjectTypeEnum[keyof typeof GcpStaticClusterCredentialsObjectTypeEnum];
|
|
11848
|
+
/**
|
|
11849
|
+
*
|
|
11850
|
+
* @export
|
|
11851
|
+
* @interface GcpWorkloadIdentityFederationClusterCredentials
|
|
11852
|
+
*/
|
|
11853
|
+
export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
11854
|
+
/**
|
|
11855
|
+
*
|
|
11856
|
+
* @type {string}
|
|
11857
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11858
|
+
*/
|
|
11859
|
+
'id': string;
|
|
11860
|
+
/**
|
|
11861
|
+
*
|
|
11862
|
+
* @type {string}
|
|
11863
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11864
|
+
*/
|
|
11865
|
+
'name': string;
|
|
11866
|
+
/**
|
|
11867
|
+
*
|
|
11868
|
+
* @type {string}
|
|
11869
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11870
|
+
*/
|
|
11871
|
+
'object_type': GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum;
|
|
11872
|
+
/**
|
|
11873
|
+
*
|
|
11874
|
+
* @type {string}
|
|
11875
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11876
|
+
*/
|
|
11877
|
+
'project_id': string;
|
|
11878
|
+
/**
|
|
11879
|
+
*
|
|
11880
|
+
* @type {string}
|
|
11881
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11882
|
+
*/
|
|
11883
|
+
'service_account_email': string;
|
|
11884
|
+
/**
|
|
11885
|
+
*
|
|
11886
|
+
* @type {string}
|
|
11887
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11888
|
+
*/
|
|
11889
|
+
'workload_identity_project_number': string;
|
|
11890
|
+
/**
|
|
11891
|
+
*
|
|
11892
|
+
* @type {string}
|
|
11893
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11894
|
+
*/
|
|
11895
|
+
'workload_identity_pool_id': string;
|
|
11896
|
+
/**
|
|
11897
|
+
*
|
|
11898
|
+
* @type {string}
|
|
11899
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11900
|
+
*/
|
|
11901
|
+
'workload_identity_provider_id': string;
|
|
11902
|
+
/**
|
|
11903
|
+
*
|
|
11904
|
+
* @type {number}
|
|
11905
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11906
|
+
*/
|
|
11907
|
+
'token_lifetime_seconds': number;
|
|
11908
|
+
}
|
|
11909
|
+
export declare const GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum: {
|
|
11910
|
+
readonly GCP_WORKLOAD_IDENTITY_FEDERATION: "GCP_WORKLOAD_IDENTITY_FEDERATION";
|
|
11911
|
+
};
|
|
11912
|
+
export type GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum[keyof typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum];
|
|
11913
|
+
/**
|
|
11914
|
+
*
|
|
11915
|
+
* @export
|
|
11916
|
+
* @interface GcpWorkloadIdentityFederationCredentialsRequest
|
|
11917
|
+
*/
|
|
11918
|
+
export interface GcpWorkloadIdentityFederationCredentialsRequest {
|
|
11919
|
+
/**
|
|
11920
|
+
*
|
|
11921
|
+
* @type {string}
|
|
11922
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11923
|
+
*/
|
|
11924
|
+
'name': string;
|
|
11925
|
+
/**
|
|
11926
|
+
* Optional explicit credential type.
|
|
11927
|
+
* @type {string}
|
|
11928
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11929
|
+
*/
|
|
11930
|
+
'credential_type'?: GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum;
|
|
11931
|
+
/**
|
|
11932
|
+
* GCP service account email to impersonate.
|
|
11933
|
+
* @type {string}
|
|
11934
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11935
|
+
*/
|
|
11936
|
+
'service_account_email': string;
|
|
11937
|
+
/**
|
|
11938
|
+
* Full Workload Identity Provider resource.
|
|
11939
|
+
* @type {string}
|
|
11940
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11941
|
+
*/
|
|
11942
|
+
'workload_identity_provider_resource': string;
|
|
11943
|
+
}
|
|
11944
|
+
export declare const GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum: {
|
|
11945
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "WORKLOAD_IDENTITY_FEDERATION";
|
|
11946
|
+
readonly WIF: "WIF";
|
|
11947
|
+
};
|
|
11948
|
+
export type GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum[keyof typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum];
|
|
11825
11949
|
/**
|
|
11826
11950
|
*
|
|
11827
11951
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -23,16 +23,16 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
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.ArgocdAssociatedServiceType = 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.
|
|
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 = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = void 0;
|
|
26
|
+
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.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = 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 = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = void 0;
|
|
27
|
+
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 = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = void 0;
|
|
28
|
+
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 = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = void 0;
|
|
29
|
+
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 = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = void 0;
|
|
30
|
+
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 = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = void 0;
|
|
31
|
+
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 = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = void 0;
|
|
32
|
+
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 = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = void 0;
|
|
33
|
+
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 = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = void 0;
|
|
34
|
+
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 = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = 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 = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = void 0;
|
|
36
36
|
const axios_1 = require("axios");
|
|
37
37
|
// Some imports not used depending on template conditions
|
|
38
38
|
// @ts-ignore
|
|
@@ -691,9 +691,19 @@ exports.GcpJsonCredentialsAuthDtoModeEnum = {
|
|
|
691
691
|
exports.GcpSecretManagerEndpointDtoModeEnum = {
|
|
692
692
|
GCP_SECRET_MANAGER: 'GCP_SECRET_MANAGER'
|
|
693
693
|
};
|
|
694
|
+
exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = {
|
|
695
|
+
SERVICE_ACCOUNT_KEY: 'SERVICE_ACCOUNT_KEY'
|
|
696
|
+
};
|
|
694
697
|
exports.GcpStaticClusterCredentialsObjectTypeEnum = {
|
|
695
698
|
GCP: 'GCP'
|
|
696
699
|
};
|
|
700
|
+
exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = {
|
|
701
|
+
GCP_WORKLOAD_IDENTITY_FEDERATION: 'GCP_WORKLOAD_IDENTITY_FEDERATION'
|
|
702
|
+
};
|
|
703
|
+
exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = {
|
|
704
|
+
WORKLOAD_IDENTITY_FEDERATION: 'WORKLOAD_IDENTITY_FEDERATION',
|
|
705
|
+
WIF: 'WIF'
|
|
706
|
+
};
|
|
697
707
|
exports.GenericClusterCredentialsObjectTypeEnum = {
|
|
698
708
|
OTHER: 'OTHER'
|
|
699
709
|
};
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -4367,6 +4367,8 @@ export type ClusterCredentials = {
|
|
|
4367
4367
|
} & EksAnywhereVsphereClusterCredentials | {
|
|
4368
4368
|
object_type: 'GCP';
|
|
4369
4369
|
} & GcpStaticClusterCredentials | {
|
|
4370
|
+
object_type: 'GCP_WORKLOAD_IDENTITY_FEDERATION';
|
|
4371
|
+
} & GcpWorkloadIdentityFederationClusterCredentials | {
|
|
4370
4372
|
object_type: 'OTHER';
|
|
4371
4373
|
} & GenericClusterCredentials | {
|
|
4372
4374
|
object_type: 'SCW';
|
|
@@ -5864,6 +5866,12 @@ export interface ClusterRegion {
|
|
|
5864
5866
|
* @memberof ClusterRegion
|
|
5865
5867
|
*/
|
|
5866
5868
|
'city': string;
|
|
5869
|
+
/**
|
|
5870
|
+
* Whether ARM instance types are available in this region
|
|
5871
|
+
* @type {boolean}
|
|
5872
|
+
* @memberof ClusterRegion
|
|
5873
|
+
*/
|
|
5874
|
+
'arm_supported'?: boolean;
|
|
5867
5875
|
/**
|
|
5868
5876
|
* List of availability zones supported by this region
|
|
5869
5877
|
* @type {Array<string>}
|
|
@@ -11723,24 +11731,10 @@ export interface ExternalSecretAssociatedServiceResponseList {
|
|
|
11723
11731
|
'results': Array<ExternalSecretAssociatedServiceResponse>;
|
|
11724
11732
|
}
|
|
11725
11733
|
/**
|
|
11726
|
-
*
|
|
11734
|
+
* @type GcpCredentialsRequest
|
|
11727
11735
|
* @export
|
|
11728
|
-
* @interface GcpCredentialsRequest
|
|
11729
11736
|
*/
|
|
11730
|
-
export
|
|
11731
|
-
/**
|
|
11732
|
-
*
|
|
11733
|
-
* @type {string}
|
|
11734
|
-
* @memberof GcpCredentialsRequest
|
|
11735
|
-
*/
|
|
11736
|
-
'name': string;
|
|
11737
|
-
/**
|
|
11738
|
-
* The json must be base64 encoded
|
|
11739
|
-
* @type {string}
|
|
11740
|
-
* @memberof GcpCredentialsRequest
|
|
11741
|
-
*/
|
|
11742
|
-
'gcp_credentials': string;
|
|
11743
|
-
}
|
|
11737
|
+
export type GcpCredentialsRequest = GcpServiceAccountKeyCredentialsRequest | GcpWorkloadIdentityFederationCredentialsRequest;
|
|
11744
11738
|
/**
|
|
11745
11739
|
*
|
|
11746
11740
|
* @export
|
|
@@ -11793,6 +11787,35 @@ export declare const GcpSecretManagerEndpointDtoModeEnum: {
|
|
|
11793
11787
|
readonly GCP_SECRET_MANAGER: "GCP_SECRET_MANAGER";
|
|
11794
11788
|
};
|
|
11795
11789
|
export type GcpSecretManagerEndpointDtoModeEnum = typeof GcpSecretManagerEndpointDtoModeEnum[keyof typeof GcpSecretManagerEndpointDtoModeEnum];
|
|
11790
|
+
/**
|
|
11791
|
+
*
|
|
11792
|
+
* @export
|
|
11793
|
+
* @interface GcpServiceAccountKeyCredentialsRequest
|
|
11794
|
+
*/
|
|
11795
|
+
export interface GcpServiceAccountKeyCredentialsRequest {
|
|
11796
|
+
/**
|
|
11797
|
+
*
|
|
11798
|
+
* @type {string}
|
|
11799
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11800
|
+
*/
|
|
11801
|
+
'name': string;
|
|
11802
|
+
/**
|
|
11803
|
+
* Optional explicit credential type.
|
|
11804
|
+
* @type {string}
|
|
11805
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11806
|
+
*/
|
|
11807
|
+
'credential_type'?: GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum;
|
|
11808
|
+
/**
|
|
11809
|
+
* The json must be base64 encoded
|
|
11810
|
+
* @type {string}
|
|
11811
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11812
|
+
*/
|
|
11813
|
+
'gcp_credentials': string;
|
|
11814
|
+
}
|
|
11815
|
+
export declare const GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum: {
|
|
11816
|
+
readonly SERVICE_ACCOUNT_KEY: "SERVICE_ACCOUNT_KEY";
|
|
11817
|
+
};
|
|
11818
|
+
export type GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum[keyof typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum];
|
|
11796
11819
|
/**
|
|
11797
11820
|
*
|
|
11798
11821
|
* @export
|
|
@@ -11822,6 +11845,107 @@ export declare const GcpStaticClusterCredentialsObjectTypeEnum: {
|
|
|
11822
11845
|
readonly GCP: "GCP";
|
|
11823
11846
|
};
|
|
11824
11847
|
export type GcpStaticClusterCredentialsObjectTypeEnum = typeof GcpStaticClusterCredentialsObjectTypeEnum[keyof typeof GcpStaticClusterCredentialsObjectTypeEnum];
|
|
11848
|
+
/**
|
|
11849
|
+
*
|
|
11850
|
+
* @export
|
|
11851
|
+
* @interface GcpWorkloadIdentityFederationClusterCredentials
|
|
11852
|
+
*/
|
|
11853
|
+
export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
11854
|
+
/**
|
|
11855
|
+
*
|
|
11856
|
+
* @type {string}
|
|
11857
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11858
|
+
*/
|
|
11859
|
+
'id': string;
|
|
11860
|
+
/**
|
|
11861
|
+
*
|
|
11862
|
+
* @type {string}
|
|
11863
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11864
|
+
*/
|
|
11865
|
+
'name': string;
|
|
11866
|
+
/**
|
|
11867
|
+
*
|
|
11868
|
+
* @type {string}
|
|
11869
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11870
|
+
*/
|
|
11871
|
+
'object_type': GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum;
|
|
11872
|
+
/**
|
|
11873
|
+
*
|
|
11874
|
+
* @type {string}
|
|
11875
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11876
|
+
*/
|
|
11877
|
+
'project_id': string;
|
|
11878
|
+
/**
|
|
11879
|
+
*
|
|
11880
|
+
* @type {string}
|
|
11881
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11882
|
+
*/
|
|
11883
|
+
'service_account_email': string;
|
|
11884
|
+
/**
|
|
11885
|
+
*
|
|
11886
|
+
* @type {string}
|
|
11887
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11888
|
+
*/
|
|
11889
|
+
'workload_identity_project_number': string;
|
|
11890
|
+
/**
|
|
11891
|
+
*
|
|
11892
|
+
* @type {string}
|
|
11893
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11894
|
+
*/
|
|
11895
|
+
'workload_identity_pool_id': string;
|
|
11896
|
+
/**
|
|
11897
|
+
*
|
|
11898
|
+
* @type {string}
|
|
11899
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11900
|
+
*/
|
|
11901
|
+
'workload_identity_provider_id': string;
|
|
11902
|
+
/**
|
|
11903
|
+
*
|
|
11904
|
+
* @type {number}
|
|
11905
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11906
|
+
*/
|
|
11907
|
+
'token_lifetime_seconds': number;
|
|
11908
|
+
}
|
|
11909
|
+
export declare const GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum: {
|
|
11910
|
+
readonly GCP_WORKLOAD_IDENTITY_FEDERATION: "GCP_WORKLOAD_IDENTITY_FEDERATION";
|
|
11911
|
+
};
|
|
11912
|
+
export type GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum[keyof typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum];
|
|
11913
|
+
/**
|
|
11914
|
+
*
|
|
11915
|
+
* @export
|
|
11916
|
+
* @interface GcpWorkloadIdentityFederationCredentialsRequest
|
|
11917
|
+
*/
|
|
11918
|
+
export interface GcpWorkloadIdentityFederationCredentialsRequest {
|
|
11919
|
+
/**
|
|
11920
|
+
*
|
|
11921
|
+
* @type {string}
|
|
11922
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11923
|
+
*/
|
|
11924
|
+
'name': string;
|
|
11925
|
+
/**
|
|
11926
|
+
* Optional explicit credential type.
|
|
11927
|
+
* @type {string}
|
|
11928
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11929
|
+
*/
|
|
11930
|
+
'credential_type'?: GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum;
|
|
11931
|
+
/**
|
|
11932
|
+
* GCP service account email to impersonate.
|
|
11933
|
+
* @type {string}
|
|
11934
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11935
|
+
*/
|
|
11936
|
+
'service_account_email': string;
|
|
11937
|
+
/**
|
|
11938
|
+
* Full Workload Identity Provider resource.
|
|
11939
|
+
* @type {string}
|
|
11940
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11941
|
+
*/
|
|
11942
|
+
'workload_identity_provider_resource': string;
|
|
11943
|
+
}
|
|
11944
|
+
export declare const GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum: {
|
|
11945
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "WORKLOAD_IDENTITY_FEDERATION";
|
|
11946
|
+
readonly WIF: "WIF";
|
|
11947
|
+
};
|
|
11948
|
+
export type GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum[keyof typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum];
|
|
11825
11949
|
/**
|
|
11826
11950
|
*
|
|
11827
11951
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -678,9 +678,19 @@ export const GcpJsonCredentialsAuthDtoModeEnum = {
|
|
|
678
678
|
export const GcpSecretManagerEndpointDtoModeEnum = {
|
|
679
679
|
GCP_SECRET_MANAGER: 'GCP_SECRET_MANAGER'
|
|
680
680
|
};
|
|
681
|
+
export const GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = {
|
|
682
|
+
SERVICE_ACCOUNT_KEY: 'SERVICE_ACCOUNT_KEY'
|
|
683
|
+
};
|
|
681
684
|
export const GcpStaticClusterCredentialsObjectTypeEnum = {
|
|
682
685
|
GCP: 'GCP'
|
|
683
686
|
};
|
|
687
|
+
export const GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = {
|
|
688
|
+
GCP_WORKLOAD_IDENTITY_FEDERATION: 'GCP_WORKLOAD_IDENTITY_FEDERATION'
|
|
689
|
+
};
|
|
690
|
+
export const GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = {
|
|
691
|
+
WORKLOAD_IDENTITY_FEDERATION: 'WORKLOAD_IDENTITY_FEDERATION',
|
|
692
|
+
WIF: 'WIF'
|
|
693
|
+
};
|
|
684
694
|
export const GenericClusterCredentialsObjectTypeEnum = {
|
|
685
695
|
OTHER: 'OTHER'
|
|
686
696
|
};
|