qovery-typescript-axios 1.1.895 → 1.1.896
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 +143 -17
- package/dist/api.d.ts +134 -16
- package/dist/api.js +20 -10
- package/dist/esm/api.d.ts +134 -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
|
*
|
|
@@ -12094,24 +12094,11 @@ export interface ExternalSecretAssociatedServiceResponseList {
|
|
|
12094
12094
|
'results': Array<ExternalSecretAssociatedServiceResponse>;
|
|
12095
12095
|
}
|
|
12096
12096
|
/**
|
|
12097
|
-
*
|
|
12097
|
+
* @type GcpCredentialsRequest
|
|
12098
12098
|
* @export
|
|
12099
|
-
* @interface GcpCredentialsRequest
|
|
12100
12099
|
*/
|
|
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
|
-
}
|
|
12100
|
+
export type GcpCredentialsRequest = GcpServiceAccountKeyCredentialsRequest | GcpWorkloadIdentityFederationCredentialsRequest;
|
|
12101
|
+
|
|
12115
12102
|
/**
|
|
12116
12103
|
*
|
|
12117
12104
|
* @export
|
|
@@ -12170,6 +12157,38 @@ export const GcpSecretManagerEndpointDtoModeEnum = {
|
|
|
12170
12157
|
|
|
12171
12158
|
export type GcpSecretManagerEndpointDtoModeEnum = typeof GcpSecretManagerEndpointDtoModeEnum[keyof typeof GcpSecretManagerEndpointDtoModeEnum];
|
|
12172
12159
|
|
|
12160
|
+
/**
|
|
12161
|
+
*
|
|
12162
|
+
* @export
|
|
12163
|
+
* @interface GcpServiceAccountKeyCredentialsRequest
|
|
12164
|
+
*/
|
|
12165
|
+
export interface GcpServiceAccountKeyCredentialsRequest {
|
|
12166
|
+
/**
|
|
12167
|
+
*
|
|
12168
|
+
* @type {string}
|
|
12169
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
12170
|
+
*/
|
|
12171
|
+
'name': string;
|
|
12172
|
+
/**
|
|
12173
|
+
* Optional explicit credential type.
|
|
12174
|
+
* @type {string}
|
|
12175
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
12176
|
+
*/
|
|
12177
|
+
'credential_type'?: GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum;
|
|
12178
|
+
/**
|
|
12179
|
+
* The json must be base64 encoded
|
|
12180
|
+
* @type {string}
|
|
12181
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
12182
|
+
*/
|
|
12183
|
+
'gcp_credentials': string;
|
|
12184
|
+
}
|
|
12185
|
+
|
|
12186
|
+
export const GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = {
|
|
12187
|
+
SERVICE_ACCOUNT_KEY: 'SERVICE_ACCOUNT_KEY'
|
|
12188
|
+
} as const;
|
|
12189
|
+
|
|
12190
|
+
export type GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum[keyof typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum];
|
|
12191
|
+
|
|
12173
12192
|
/**
|
|
12174
12193
|
*
|
|
12175
12194
|
* @export
|
|
@@ -12202,6 +12221,113 @@ export const GcpStaticClusterCredentialsObjectTypeEnum = {
|
|
|
12202
12221
|
|
|
12203
12222
|
export type GcpStaticClusterCredentialsObjectTypeEnum = typeof GcpStaticClusterCredentialsObjectTypeEnum[keyof typeof GcpStaticClusterCredentialsObjectTypeEnum];
|
|
12204
12223
|
|
|
12224
|
+
/**
|
|
12225
|
+
*
|
|
12226
|
+
* @export
|
|
12227
|
+
* @interface GcpWorkloadIdentityFederationClusterCredentials
|
|
12228
|
+
*/
|
|
12229
|
+
export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
12230
|
+
/**
|
|
12231
|
+
*
|
|
12232
|
+
* @type {string}
|
|
12233
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12234
|
+
*/
|
|
12235
|
+
'id': string;
|
|
12236
|
+
/**
|
|
12237
|
+
*
|
|
12238
|
+
* @type {string}
|
|
12239
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12240
|
+
*/
|
|
12241
|
+
'name': string;
|
|
12242
|
+
/**
|
|
12243
|
+
*
|
|
12244
|
+
* @type {string}
|
|
12245
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12246
|
+
*/
|
|
12247
|
+
'object_type': GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum;
|
|
12248
|
+
/**
|
|
12249
|
+
*
|
|
12250
|
+
* @type {string}
|
|
12251
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12252
|
+
*/
|
|
12253
|
+
'project_id': string;
|
|
12254
|
+
/**
|
|
12255
|
+
*
|
|
12256
|
+
* @type {string}
|
|
12257
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12258
|
+
*/
|
|
12259
|
+
'service_account_email': string;
|
|
12260
|
+
/**
|
|
12261
|
+
*
|
|
12262
|
+
* @type {string}
|
|
12263
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12264
|
+
*/
|
|
12265
|
+
'workload_identity_project_number': string;
|
|
12266
|
+
/**
|
|
12267
|
+
*
|
|
12268
|
+
* @type {string}
|
|
12269
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12270
|
+
*/
|
|
12271
|
+
'workload_identity_pool_id': string;
|
|
12272
|
+
/**
|
|
12273
|
+
*
|
|
12274
|
+
* @type {string}
|
|
12275
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12276
|
+
*/
|
|
12277
|
+
'workload_identity_provider_id': string;
|
|
12278
|
+
/**
|
|
12279
|
+
*
|
|
12280
|
+
* @type {number}
|
|
12281
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
12282
|
+
*/
|
|
12283
|
+
'token_lifetime_seconds': number;
|
|
12284
|
+
}
|
|
12285
|
+
|
|
12286
|
+
export const GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = {
|
|
12287
|
+
GCP_WORKLOAD_IDENTITY_FEDERATION: 'GCP_WORKLOAD_IDENTITY_FEDERATION'
|
|
12288
|
+
} as const;
|
|
12289
|
+
|
|
12290
|
+
export type GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum[keyof typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum];
|
|
12291
|
+
|
|
12292
|
+
/**
|
|
12293
|
+
*
|
|
12294
|
+
* @export
|
|
12295
|
+
* @interface GcpWorkloadIdentityFederationCredentialsRequest
|
|
12296
|
+
*/
|
|
12297
|
+
export interface GcpWorkloadIdentityFederationCredentialsRequest {
|
|
12298
|
+
/**
|
|
12299
|
+
*
|
|
12300
|
+
* @type {string}
|
|
12301
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12302
|
+
*/
|
|
12303
|
+
'name': string;
|
|
12304
|
+
/**
|
|
12305
|
+
* Optional explicit credential type.
|
|
12306
|
+
* @type {string}
|
|
12307
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12308
|
+
*/
|
|
12309
|
+
'credential_type'?: GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum;
|
|
12310
|
+
/**
|
|
12311
|
+
* GCP service account email to impersonate.
|
|
12312
|
+
* @type {string}
|
|
12313
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12314
|
+
*/
|
|
12315
|
+
'service_account_email': string;
|
|
12316
|
+
/**
|
|
12317
|
+
* Full Workload Identity Provider resource.
|
|
12318
|
+
* @type {string}
|
|
12319
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
12320
|
+
*/
|
|
12321
|
+
'workload_identity_provider_resource': string;
|
|
12322
|
+
}
|
|
12323
|
+
|
|
12324
|
+
export const GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = {
|
|
12325
|
+
WORKLOAD_IDENTITY_FEDERATION: 'WORKLOAD_IDENTITY_FEDERATION',
|
|
12326
|
+
WIF: 'WIF'
|
|
12327
|
+
} as const;
|
|
12328
|
+
|
|
12329
|
+
export type GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum[keyof typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum];
|
|
12330
|
+
|
|
12205
12331
|
/**
|
|
12206
12332
|
*
|
|
12207
12333
|
* @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';
|
|
@@ -11723,24 +11725,10 @@ export interface ExternalSecretAssociatedServiceResponseList {
|
|
|
11723
11725
|
'results': Array<ExternalSecretAssociatedServiceResponse>;
|
|
11724
11726
|
}
|
|
11725
11727
|
/**
|
|
11726
|
-
*
|
|
11728
|
+
* @type GcpCredentialsRequest
|
|
11727
11729
|
* @export
|
|
11728
|
-
* @interface GcpCredentialsRequest
|
|
11729
11730
|
*/
|
|
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
|
-
}
|
|
11731
|
+
export type GcpCredentialsRequest = GcpServiceAccountKeyCredentialsRequest | GcpWorkloadIdentityFederationCredentialsRequest;
|
|
11744
11732
|
/**
|
|
11745
11733
|
*
|
|
11746
11734
|
* @export
|
|
@@ -11793,6 +11781,35 @@ export declare const GcpSecretManagerEndpointDtoModeEnum: {
|
|
|
11793
11781
|
readonly GCP_SECRET_MANAGER: "GCP_SECRET_MANAGER";
|
|
11794
11782
|
};
|
|
11795
11783
|
export type GcpSecretManagerEndpointDtoModeEnum = typeof GcpSecretManagerEndpointDtoModeEnum[keyof typeof GcpSecretManagerEndpointDtoModeEnum];
|
|
11784
|
+
/**
|
|
11785
|
+
*
|
|
11786
|
+
* @export
|
|
11787
|
+
* @interface GcpServiceAccountKeyCredentialsRequest
|
|
11788
|
+
*/
|
|
11789
|
+
export interface GcpServiceAccountKeyCredentialsRequest {
|
|
11790
|
+
/**
|
|
11791
|
+
*
|
|
11792
|
+
* @type {string}
|
|
11793
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11794
|
+
*/
|
|
11795
|
+
'name': string;
|
|
11796
|
+
/**
|
|
11797
|
+
* Optional explicit credential type.
|
|
11798
|
+
* @type {string}
|
|
11799
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11800
|
+
*/
|
|
11801
|
+
'credential_type'?: GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum;
|
|
11802
|
+
/**
|
|
11803
|
+
* The json must be base64 encoded
|
|
11804
|
+
* @type {string}
|
|
11805
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11806
|
+
*/
|
|
11807
|
+
'gcp_credentials': string;
|
|
11808
|
+
}
|
|
11809
|
+
export declare const GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum: {
|
|
11810
|
+
readonly SERVICE_ACCOUNT_KEY: "SERVICE_ACCOUNT_KEY";
|
|
11811
|
+
};
|
|
11812
|
+
export type GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum[keyof typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum];
|
|
11796
11813
|
/**
|
|
11797
11814
|
*
|
|
11798
11815
|
* @export
|
|
@@ -11822,6 +11839,107 @@ export declare const GcpStaticClusterCredentialsObjectTypeEnum: {
|
|
|
11822
11839
|
readonly GCP: "GCP";
|
|
11823
11840
|
};
|
|
11824
11841
|
export type GcpStaticClusterCredentialsObjectTypeEnum = typeof GcpStaticClusterCredentialsObjectTypeEnum[keyof typeof GcpStaticClusterCredentialsObjectTypeEnum];
|
|
11842
|
+
/**
|
|
11843
|
+
*
|
|
11844
|
+
* @export
|
|
11845
|
+
* @interface GcpWorkloadIdentityFederationClusterCredentials
|
|
11846
|
+
*/
|
|
11847
|
+
export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
11848
|
+
/**
|
|
11849
|
+
*
|
|
11850
|
+
* @type {string}
|
|
11851
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11852
|
+
*/
|
|
11853
|
+
'id': string;
|
|
11854
|
+
/**
|
|
11855
|
+
*
|
|
11856
|
+
* @type {string}
|
|
11857
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11858
|
+
*/
|
|
11859
|
+
'name': string;
|
|
11860
|
+
/**
|
|
11861
|
+
*
|
|
11862
|
+
* @type {string}
|
|
11863
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11864
|
+
*/
|
|
11865
|
+
'object_type': GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum;
|
|
11866
|
+
/**
|
|
11867
|
+
*
|
|
11868
|
+
* @type {string}
|
|
11869
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11870
|
+
*/
|
|
11871
|
+
'project_id': string;
|
|
11872
|
+
/**
|
|
11873
|
+
*
|
|
11874
|
+
* @type {string}
|
|
11875
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11876
|
+
*/
|
|
11877
|
+
'service_account_email': string;
|
|
11878
|
+
/**
|
|
11879
|
+
*
|
|
11880
|
+
* @type {string}
|
|
11881
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11882
|
+
*/
|
|
11883
|
+
'workload_identity_project_number': string;
|
|
11884
|
+
/**
|
|
11885
|
+
*
|
|
11886
|
+
* @type {string}
|
|
11887
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11888
|
+
*/
|
|
11889
|
+
'workload_identity_pool_id': string;
|
|
11890
|
+
/**
|
|
11891
|
+
*
|
|
11892
|
+
* @type {string}
|
|
11893
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11894
|
+
*/
|
|
11895
|
+
'workload_identity_provider_id': string;
|
|
11896
|
+
/**
|
|
11897
|
+
*
|
|
11898
|
+
* @type {number}
|
|
11899
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11900
|
+
*/
|
|
11901
|
+
'token_lifetime_seconds': number;
|
|
11902
|
+
}
|
|
11903
|
+
export declare const GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum: {
|
|
11904
|
+
readonly GCP_WORKLOAD_IDENTITY_FEDERATION: "GCP_WORKLOAD_IDENTITY_FEDERATION";
|
|
11905
|
+
};
|
|
11906
|
+
export type GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum[keyof typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum];
|
|
11907
|
+
/**
|
|
11908
|
+
*
|
|
11909
|
+
* @export
|
|
11910
|
+
* @interface GcpWorkloadIdentityFederationCredentialsRequest
|
|
11911
|
+
*/
|
|
11912
|
+
export interface GcpWorkloadIdentityFederationCredentialsRequest {
|
|
11913
|
+
/**
|
|
11914
|
+
*
|
|
11915
|
+
* @type {string}
|
|
11916
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11917
|
+
*/
|
|
11918
|
+
'name': string;
|
|
11919
|
+
/**
|
|
11920
|
+
* Optional explicit credential type.
|
|
11921
|
+
* @type {string}
|
|
11922
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11923
|
+
*/
|
|
11924
|
+
'credential_type'?: GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum;
|
|
11925
|
+
/**
|
|
11926
|
+
* GCP service account email to impersonate.
|
|
11927
|
+
* @type {string}
|
|
11928
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11929
|
+
*/
|
|
11930
|
+
'service_account_email': string;
|
|
11931
|
+
/**
|
|
11932
|
+
* Full Workload Identity Provider resource.
|
|
11933
|
+
* @type {string}
|
|
11934
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11935
|
+
*/
|
|
11936
|
+
'workload_identity_provider_resource': string;
|
|
11937
|
+
}
|
|
11938
|
+
export declare const GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum: {
|
|
11939
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "WORKLOAD_IDENTITY_FEDERATION";
|
|
11940
|
+
readonly WIF: "WIF";
|
|
11941
|
+
};
|
|
11942
|
+
export type GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum[keyof typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum];
|
|
11825
11943
|
/**
|
|
11826
11944
|
*
|
|
11827
11945
|
* @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';
|
|
@@ -11723,24 +11725,10 @@ export interface ExternalSecretAssociatedServiceResponseList {
|
|
|
11723
11725
|
'results': Array<ExternalSecretAssociatedServiceResponse>;
|
|
11724
11726
|
}
|
|
11725
11727
|
/**
|
|
11726
|
-
*
|
|
11728
|
+
* @type GcpCredentialsRequest
|
|
11727
11729
|
* @export
|
|
11728
|
-
* @interface GcpCredentialsRequest
|
|
11729
11730
|
*/
|
|
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
|
-
}
|
|
11731
|
+
export type GcpCredentialsRequest = GcpServiceAccountKeyCredentialsRequest | GcpWorkloadIdentityFederationCredentialsRequest;
|
|
11744
11732
|
/**
|
|
11745
11733
|
*
|
|
11746
11734
|
* @export
|
|
@@ -11793,6 +11781,35 @@ export declare const GcpSecretManagerEndpointDtoModeEnum: {
|
|
|
11793
11781
|
readonly GCP_SECRET_MANAGER: "GCP_SECRET_MANAGER";
|
|
11794
11782
|
};
|
|
11795
11783
|
export type GcpSecretManagerEndpointDtoModeEnum = typeof GcpSecretManagerEndpointDtoModeEnum[keyof typeof GcpSecretManagerEndpointDtoModeEnum];
|
|
11784
|
+
/**
|
|
11785
|
+
*
|
|
11786
|
+
* @export
|
|
11787
|
+
* @interface GcpServiceAccountKeyCredentialsRequest
|
|
11788
|
+
*/
|
|
11789
|
+
export interface GcpServiceAccountKeyCredentialsRequest {
|
|
11790
|
+
/**
|
|
11791
|
+
*
|
|
11792
|
+
* @type {string}
|
|
11793
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11794
|
+
*/
|
|
11795
|
+
'name': string;
|
|
11796
|
+
/**
|
|
11797
|
+
* Optional explicit credential type.
|
|
11798
|
+
* @type {string}
|
|
11799
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11800
|
+
*/
|
|
11801
|
+
'credential_type'?: GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum;
|
|
11802
|
+
/**
|
|
11803
|
+
* The json must be base64 encoded
|
|
11804
|
+
* @type {string}
|
|
11805
|
+
* @memberof GcpServiceAccountKeyCredentialsRequest
|
|
11806
|
+
*/
|
|
11807
|
+
'gcp_credentials': string;
|
|
11808
|
+
}
|
|
11809
|
+
export declare const GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum: {
|
|
11810
|
+
readonly SERVICE_ACCOUNT_KEY: "SERVICE_ACCOUNT_KEY";
|
|
11811
|
+
};
|
|
11812
|
+
export type GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum[keyof typeof GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum];
|
|
11796
11813
|
/**
|
|
11797
11814
|
*
|
|
11798
11815
|
* @export
|
|
@@ -11822,6 +11839,107 @@ export declare const GcpStaticClusterCredentialsObjectTypeEnum: {
|
|
|
11822
11839
|
readonly GCP: "GCP";
|
|
11823
11840
|
};
|
|
11824
11841
|
export type GcpStaticClusterCredentialsObjectTypeEnum = typeof GcpStaticClusterCredentialsObjectTypeEnum[keyof typeof GcpStaticClusterCredentialsObjectTypeEnum];
|
|
11842
|
+
/**
|
|
11843
|
+
*
|
|
11844
|
+
* @export
|
|
11845
|
+
* @interface GcpWorkloadIdentityFederationClusterCredentials
|
|
11846
|
+
*/
|
|
11847
|
+
export interface GcpWorkloadIdentityFederationClusterCredentials {
|
|
11848
|
+
/**
|
|
11849
|
+
*
|
|
11850
|
+
* @type {string}
|
|
11851
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11852
|
+
*/
|
|
11853
|
+
'id': string;
|
|
11854
|
+
/**
|
|
11855
|
+
*
|
|
11856
|
+
* @type {string}
|
|
11857
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11858
|
+
*/
|
|
11859
|
+
'name': string;
|
|
11860
|
+
/**
|
|
11861
|
+
*
|
|
11862
|
+
* @type {string}
|
|
11863
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11864
|
+
*/
|
|
11865
|
+
'object_type': GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum;
|
|
11866
|
+
/**
|
|
11867
|
+
*
|
|
11868
|
+
* @type {string}
|
|
11869
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11870
|
+
*/
|
|
11871
|
+
'project_id': string;
|
|
11872
|
+
/**
|
|
11873
|
+
*
|
|
11874
|
+
* @type {string}
|
|
11875
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11876
|
+
*/
|
|
11877
|
+
'service_account_email': string;
|
|
11878
|
+
/**
|
|
11879
|
+
*
|
|
11880
|
+
* @type {string}
|
|
11881
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11882
|
+
*/
|
|
11883
|
+
'workload_identity_project_number': string;
|
|
11884
|
+
/**
|
|
11885
|
+
*
|
|
11886
|
+
* @type {string}
|
|
11887
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11888
|
+
*/
|
|
11889
|
+
'workload_identity_pool_id': string;
|
|
11890
|
+
/**
|
|
11891
|
+
*
|
|
11892
|
+
* @type {string}
|
|
11893
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11894
|
+
*/
|
|
11895
|
+
'workload_identity_provider_id': string;
|
|
11896
|
+
/**
|
|
11897
|
+
*
|
|
11898
|
+
* @type {number}
|
|
11899
|
+
* @memberof GcpWorkloadIdentityFederationClusterCredentials
|
|
11900
|
+
*/
|
|
11901
|
+
'token_lifetime_seconds': number;
|
|
11902
|
+
}
|
|
11903
|
+
export declare const GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum: {
|
|
11904
|
+
readonly GCP_WORKLOAD_IDENTITY_FEDERATION: "GCP_WORKLOAD_IDENTITY_FEDERATION";
|
|
11905
|
+
};
|
|
11906
|
+
export type GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum[keyof typeof GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum];
|
|
11907
|
+
/**
|
|
11908
|
+
*
|
|
11909
|
+
* @export
|
|
11910
|
+
* @interface GcpWorkloadIdentityFederationCredentialsRequest
|
|
11911
|
+
*/
|
|
11912
|
+
export interface GcpWorkloadIdentityFederationCredentialsRequest {
|
|
11913
|
+
/**
|
|
11914
|
+
*
|
|
11915
|
+
* @type {string}
|
|
11916
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11917
|
+
*/
|
|
11918
|
+
'name': string;
|
|
11919
|
+
/**
|
|
11920
|
+
* Optional explicit credential type.
|
|
11921
|
+
* @type {string}
|
|
11922
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11923
|
+
*/
|
|
11924
|
+
'credential_type'?: GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum;
|
|
11925
|
+
/**
|
|
11926
|
+
* GCP service account email to impersonate.
|
|
11927
|
+
* @type {string}
|
|
11928
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11929
|
+
*/
|
|
11930
|
+
'service_account_email': string;
|
|
11931
|
+
/**
|
|
11932
|
+
* Full Workload Identity Provider resource.
|
|
11933
|
+
* @type {string}
|
|
11934
|
+
* @memberof GcpWorkloadIdentityFederationCredentialsRequest
|
|
11935
|
+
*/
|
|
11936
|
+
'workload_identity_provider_resource': string;
|
|
11937
|
+
}
|
|
11938
|
+
export declare const GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum: {
|
|
11939
|
+
readonly WORKLOAD_IDENTITY_FEDERATION: "WORKLOAD_IDENTITY_FEDERATION";
|
|
11940
|
+
readonly WIF: "WIF";
|
|
11941
|
+
};
|
|
11942
|
+
export type GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum[keyof typeof GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum];
|
|
11825
11943
|
/**
|
|
11826
11944
|
*
|
|
11827
11945
|
* @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
|
};
|