@mittwald/api-client 4.429.1 → 4.431.0
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/dist/esm/generated/v2/client-react.js +2 -2
- package/dist/esm/generated/v2/client.js +4 -26
- package/dist/esm/generated/v2/descriptors.js +11 -77
- package/dist/esm/generated/v3-next/client-react.js +2 -2
- package/dist/esm/generated/v3-next/client.js +4 -26
- package/dist/esm/generated/v3-next/descriptors.js +11 -77
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +16 -16
- package/dist/types/generated/v2/client.d.ts +163 -851
- package/dist/types/generated/v2/descriptors.d.ts +5 -27
- package/dist/types/generated/v2/types.d.ts +151 -746
- package/dist/types/generated/v3-next/client-react.d.ts +16 -16
- package/dist/types/generated/v3-next/client.d.ts +163 -851
- package/dist/types/generated/v3-next/descriptors.d.ts +5 -27
- package/dist/types/generated/v3-next/types.d.ts +151 -745
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -1213,6 +1213,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1213
1213
|
data?: {
|
|
1214
1214
|
appVersionId?: string | undefined;
|
|
1215
1215
|
customDocumentRoot?: string | undefined;
|
|
1216
|
+
databases?: {
|
|
1217
|
+
[x: string]: {
|
|
1218
|
+
databaseUserIds?: {
|
|
1219
|
+
[x: string]: string;
|
|
1220
|
+
} | undefined;
|
|
1221
|
+
purpose?: "primary" | "cache" | "custom" | undefined;
|
|
1222
|
+
replacesDatabaseId?: string | undefined;
|
|
1223
|
+
};
|
|
1224
|
+
} | undefined;
|
|
1216
1225
|
description?: string | undefined;
|
|
1217
1226
|
systemSoftware?: {
|
|
1218
1227
|
[x: string]: {
|
|
@@ -1230,6 +1239,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1230
1239
|
data: {
|
|
1231
1240
|
appVersionId?: string | undefined;
|
|
1232
1241
|
customDocumentRoot?: string | undefined;
|
|
1242
|
+
databases?: {
|
|
1243
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPatchLinkedDatabase;
|
|
1244
|
+
} | undefined;
|
|
1233
1245
|
description?: string | undefined;
|
|
1234
1246
|
systemSoftware?: {
|
|
1235
1247
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDesiredSystemSoftware;
|
|
@@ -1247,12 +1259,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1247
1259
|
}>;
|
|
1248
1260
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
1249
1261
|
[x: string]: unknown;
|
|
1262
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1263
|
+
[x: string]: unknown;
|
|
1250
1264
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1251
1265
|
[x: string]: unknown;
|
|
1252
1266
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1253
1267
|
data: {
|
|
1254
1268
|
appVersionId?: string | undefined;
|
|
1255
1269
|
customDocumentRoot?: string | undefined;
|
|
1270
|
+
databases?: {
|
|
1271
|
+
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppPatchLinkedDatabase;
|
|
1272
|
+
} | undefined;
|
|
1256
1273
|
description?: string | undefined;
|
|
1257
1274
|
systemSoftware?: {
|
|
1258
1275
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.AppDesiredSystemSoftware;
|
|
@@ -1270,6 +1287,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1270
1287
|
}>;
|
|
1271
1288
|
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
1272
1289
|
[x: string]: unknown;
|
|
1290
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1291
|
+
[x: string]: unknown;
|
|
1273
1292
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1274
1293
|
[x: string]: unknown;
|
|
1275
1294
|
}, 429, "application/json">>>;
|
|
@@ -1599,77 +1618,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1599
1618
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1600
1619
|
[x: string]: unknown;
|
|
1601
1620
|
}, 429, "application/json">>>;
|
|
1602
|
-
/** Create linkage between an AppInstallation and a MySQLDatabase. */
|
|
1603
|
-
linkDatabase: (request: {
|
|
1604
|
-
data: {
|
|
1605
|
-
databaseId: string;
|
|
1606
|
-
purpose: "primary" | "cache" | "custom";
|
|
1607
|
-
databaseUserIds?: {
|
|
1608
|
-
[x: string]: string;
|
|
1609
|
-
} | undefined;
|
|
1610
|
-
};
|
|
1611
|
-
appInstallationId: string;
|
|
1612
|
-
headers?: {
|
|
1613
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1614
|
-
"x-access-token"?: string | undefined;
|
|
1615
|
-
} | undefined;
|
|
1616
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1617
|
-
data: {
|
|
1618
|
-
databaseId: string;
|
|
1619
|
-
databaseUserIds?: {
|
|
1620
|
-
[k: string]: string;
|
|
1621
|
-
} | undefined;
|
|
1622
|
-
purpose: "primary" | "cache" | "custom";
|
|
1623
|
-
};
|
|
1624
|
-
} & {
|
|
1625
|
-
pathParameters: {
|
|
1626
|
-
appInstallationId: string;
|
|
1627
|
-
};
|
|
1628
|
-
} & {
|
|
1629
|
-
headers?: Partial<{
|
|
1630
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1631
|
-
}>;
|
|
1632
|
-
} & {
|
|
1633
|
-
headers: {
|
|
1634
|
-
"x-access-token"?: string | undefined;
|
|
1635
|
-
} & Partial<{
|
|
1636
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1637
|
-
}>;
|
|
1638
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
1639
|
-
[x: string]: unknown;
|
|
1640
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1641
|
-
[x: string]: unknown;
|
|
1642
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1643
|
-
[x: string]: unknown;
|
|
1644
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1645
|
-
data: {
|
|
1646
|
-
databaseId: string;
|
|
1647
|
-
databaseUserIds?: {
|
|
1648
|
-
[k: string]: string;
|
|
1649
|
-
} | undefined;
|
|
1650
|
-
purpose: "primary" | "cache" | "custom";
|
|
1651
|
-
};
|
|
1652
|
-
} & {
|
|
1653
|
-
pathParameters: {
|
|
1654
|
-
appInstallationId: string;
|
|
1655
|
-
};
|
|
1656
|
-
} & {
|
|
1657
|
-
headers?: Partial<{
|
|
1658
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1659
|
-
}>;
|
|
1660
|
-
} & {
|
|
1661
|
-
headers: {
|
|
1662
|
-
"x-access-token"?: string | undefined;
|
|
1663
|
-
} & Partial<{
|
|
1664
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1665
|
-
}>;
|
|
1666
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
1667
|
-
[x: string]: unknown;
|
|
1668
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1669
|
-
[x: string]: unknown;
|
|
1670
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
1671
|
-
[x: string]: unknown;
|
|
1672
|
-
}, 429, "application/json">>>;
|
|
1673
1621
|
/** List AppInstallations that a user has access to. */
|
|
1674
1622
|
listAppinstallationsForUser: (request?: {
|
|
1675
1623
|
headers?: {
|
|
@@ -2147,77 +2095,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2147
2095
|
}, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2148
2096
|
[x: string]: unknown;
|
|
2149
2097
|
}, 429, "application/json">>>;
|
|
2150
|
-
/** Replace a MySQL Database with another MySQL Database. */
|
|
2151
|
-
replaceDatabase: (request: {
|
|
2152
|
-
data: {
|
|
2153
|
-
newDatabaseId: string;
|
|
2154
|
-
oldDatabaseId: string;
|
|
2155
|
-
databaseUserIds?: {
|
|
2156
|
-
[x: string]: string;
|
|
2157
|
-
} | undefined;
|
|
2158
|
-
};
|
|
2159
|
-
appInstallationId: string;
|
|
2160
|
-
headers?: {
|
|
2161
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2162
|
-
"x-access-token"?: string | undefined;
|
|
2163
|
-
} | undefined;
|
|
2164
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2165
|
-
data: {
|
|
2166
|
-
databaseUserIds?: {
|
|
2167
|
-
[k: string]: string;
|
|
2168
|
-
} | undefined;
|
|
2169
|
-
newDatabaseId: string;
|
|
2170
|
-
oldDatabaseId: string;
|
|
2171
|
-
};
|
|
2172
|
-
} & {
|
|
2173
|
-
pathParameters: {
|
|
2174
|
-
appInstallationId: string;
|
|
2175
|
-
};
|
|
2176
|
-
} & {
|
|
2177
|
-
headers?: Partial<{
|
|
2178
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2179
|
-
}>;
|
|
2180
|
-
} & {
|
|
2181
|
-
headers: {
|
|
2182
|
-
"x-access-token"?: string | undefined;
|
|
2183
|
-
} & Partial<{
|
|
2184
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2185
|
-
}>;
|
|
2186
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2187
|
-
[x: string]: unknown;
|
|
2188
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2189
|
-
[x: string]: unknown;
|
|
2190
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2191
|
-
[x: string]: unknown;
|
|
2192
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2193
|
-
data: {
|
|
2194
|
-
databaseUserIds?: {
|
|
2195
|
-
[k: string]: string;
|
|
2196
|
-
} | undefined;
|
|
2197
|
-
newDatabaseId: string;
|
|
2198
|
-
oldDatabaseId: string;
|
|
2199
|
-
};
|
|
2200
|
-
} & {
|
|
2201
|
-
pathParameters: {
|
|
2202
|
-
appInstallationId: string;
|
|
2203
|
-
};
|
|
2204
|
-
} & {
|
|
2205
|
-
headers?: Partial<{
|
|
2206
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2207
|
-
}>;
|
|
2208
|
-
} & {
|
|
2209
|
-
headers: {
|
|
2210
|
-
"x-access-token"?: string | undefined;
|
|
2211
|
-
} & Partial<{
|
|
2212
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2213
|
-
}>;
|
|
2214
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2215
|
-
[x: string]: unknown;
|
|
2216
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2217
|
-
[x: string]: unknown;
|
|
2218
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2219
|
-
[x: string]: unknown;
|
|
2220
|
-
}, 429, "application/json">>>;
|
|
2221
2098
|
/** Request a copy of an AppInstallation. */
|
|
2222
2099
|
requestAppinstallationCopy: (request: {
|
|
2223
2100
|
data: {
|
|
@@ -2361,70 +2238,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2361
2238
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2362
2239
|
[x: string]: unknown;
|
|
2363
2240
|
}, 429, "application/json">>>;
|
|
2364
|
-
/** Create linkage between an AppInstallation and DatabaseUsers. */
|
|
2365
|
-
setDatabaseUsers: (request: {
|
|
2366
|
-
appInstallationId: string;
|
|
2367
|
-
databaseId: string;
|
|
2368
|
-
data?: {
|
|
2369
|
-
databaseUserIds: {
|
|
2370
|
-
[x: string]: string;
|
|
2371
|
-
};
|
|
2372
|
-
} | undefined;
|
|
2373
|
-
headers?: {
|
|
2374
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2375
|
-
"x-access-token"?: string | undefined;
|
|
2376
|
-
} | undefined;
|
|
2377
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2378
|
-
data: {
|
|
2379
|
-
databaseUserIds: {
|
|
2380
|
-
[k: string]: string;
|
|
2381
|
-
};
|
|
2382
|
-
};
|
|
2383
|
-
} & {
|
|
2384
|
-
pathParameters: {
|
|
2385
|
-
appInstallationId: string;
|
|
2386
|
-
databaseId: string;
|
|
2387
|
-
};
|
|
2388
|
-
} & {
|
|
2389
|
-
headers?: Partial<{
|
|
2390
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2391
|
-
}>;
|
|
2392
|
-
} & {
|
|
2393
|
-
headers: {
|
|
2394
|
-
"x-access-token"?: string | undefined;
|
|
2395
|
-
} & Partial<{
|
|
2396
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2397
|
-
}>;
|
|
2398
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2399
|
-
[x: string]: unknown;
|
|
2400
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2401
|
-
[x: string]: unknown;
|
|
2402
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2403
|
-
data: {
|
|
2404
|
-
databaseUserIds: {
|
|
2405
|
-
[k: string]: string;
|
|
2406
|
-
};
|
|
2407
|
-
};
|
|
2408
|
-
} & {
|
|
2409
|
-
pathParameters: {
|
|
2410
|
-
appInstallationId: string;
|
|
2411
|
-
databaseId: string;
|
|
2412
|
-
};
|
|
2413
|
-
} & {
|
|
2414
|
-
headers?: Partial<{
|
|
2415
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2416
|
-
}>;
|
|
2417
|
-
} & {
|
|
2418
|
-
headers: {
|
|
2419
|
-
"x-access-token"?: string | undefined;
|
|
2420
|
-
} & Partial<{
|
|
2421
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2422
|
-
}>;
|
|
2423
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
2424
|
-
[x: string]: unknown;
|
|
2425
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2426
|
-
[x: string]: unknown;
|
|
2427
|
-
}, 429, "application/json">>>;
|
|
2428
2241
|
};
|
|
2429
2242
|
/** The article API allows you to read article information. */
|
|
2430
2243
|
readonly article: {
|
|
@@ -3505,69 +3318,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3505
3318
|
}, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3506
3319
|
[x: string]: unknown;
|
|
3507
3320
|
}, 503, "application/json">>>;
|
|
3508
|
-
/** Update a Backup's expiration time. */
|
|
3509
|
-
replaceProjectBackupExpirationTime: (request: {
|
|
3510
|
-
projectBackupId: string;
|
|
3511
|
-
data?: {
|
|
3512
|
-
expirationTime?: string | undefined;
|
|
3513
|
-
} | undefined;
|
|
3514
|
-
headers?: {
|
|
3515
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3516
|
-
"x-access-token"?: string | undefined;
|
|
3517
|
-
} | undefined;
|
|
3518
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3519
|
-
data: {
|
|
3520
|
-
expirationTime?: string | undefined;
|
|
3521
|
-
};
|
|
3522
|
-
} & {
|
|
3523
|
-
pathParameters: {
|
|
3524
|
-
projectBackupId: string;
|
|
3525
|
-
};
|
|
3526
|
-
} & {
|
|
3527
|
-
headers?: Partial<{
|
|
3528
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3529
|
-
}>;
|
|
3530
|
-
} & {
|
|
3531
|
-
headers: {
|
|
3532
|
-
"x-access-token"?: string | undefined;
|
|
3533
|
-
} & Partial<{
|
|
3534
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3535
|
-
}>;
|
|
3536
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
3537
|
-
[x: string]: unknown;
|
|
3538
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3539
|
-
[x: string]: unknown;
|
|
3540
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3541
|
-
[x: string]: unknown;
|
|
3542
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3543
|
-
[x: string]: unknown;
|
|
3544
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3545
|
-
data: {
|
|
3546
|
-
expirationTime?: string | undefined;
|
|
3547
|
-
};
|
|
3548
|
-
} & {
|
|
3549
|
-
pathParameters: {
|
|
3550
|
-
projectBackupId: string;
|
|
3551
|
-
};
|
|
3552
|
-
} & {
|
|
3553
|
-
headers?: Partial<{
|
|
3554
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3555
|
-
}>;
|
|
3556
|
-
} & {
|
|
3557
|
-
headers: {
|
|
3558
|
-
"x-access-token"?: string | undefined;
|
|
3559
|
-
} & Partial<{
|
|
3560
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
3561
|
-
}>;
|
|
3562
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
3563
|
-
[x: string]: unknown;
|
|
3564
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3565
|
-
[x: string]: unknown;
|
|
3566
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3567
|
-
[x: string]: unknown;
|
|
3568
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3569
|
-
[x: string]: unknown;
|
|
3570
|
-
}, 429, "application/json">>>;
|
|
3571
3321
|
/** Restore a ProjectBackup. */
|
|
3572
3322
|
requestProjectBackupRestore: (request: {
|
|
3573
3323
|
projectBackupId: string;
|
|
@@ -3638,23 +3388,38 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3638
3388
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3639
3389
|
[x: string]: unknown;
|
|
3640
3390
|
}, 429, "application/json">>>;
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3391
|
+
};
|
|
3392
|
+
/** The container API allows you to manage your stacks, containers, volumes and registries. */
|
|
3393
|
+
readonly container: {
|
|
3394
|
+
/** Add a template component to a Stack. */
|
|
3395
|
+
addTemplateComponent: (request: {
|
|
3396
|
+
data: {
|
|
3397
|
+
templateConfig: {
|
|
3398
|
+
templateId: string;
|
|
3399
|
+
userInputs?: {
|
|
3400
|
+
name: string;
|
|
3401
|
+
value: string;
|
|
3402
|
+
}[] | undefined;
|
|
3403
|
+
};
|
|
3404
|
+
};
|
|
3405
|
+
stackId: string;
|
|
3647
3406
|
headers?: {
|
|
3648
3407
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
3649
3408
|
"x-access-token"?: string | undefined;
|
|
3650
3409
|
} | undefined;
|
|
3651
3410
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3652
3411
|
data: {
|
|
3653
|
-
|
|
3412
|
+
templateConfig: {
|
|
3413
|
+
templateId: string;
|
|
3414
|
+
userInputs?: {
|
|
3415
|
+
name: string;
|
|
3416
|
+
value: string;
|
|
3417
|
+
}[];
|
|
3418
|
+
};
|
|
3654
3419
|
};
|
|
3655
3420
|
} & {
|
|
3656
3421
|
pathParameters: {
|
|
3657
|
-
|
|
3422
|
+
stackId: string;
|
|
3658
3423
|
};
|
|
3659
3424
|
} & {
|
|
3660
3425
|
headers?: Partial<{
|
|
@@ -3674,13 +3439,25 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3674
3439
|
[x: string]: unknown;
|
|
3675
3440
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3676
3441
|
[x: string]: unknown;
|
|
3677
|
-
},
|
|
3442
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3443
|
+
[x: string]: unknown;
|
|
3444
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3445
|
+
[x: string]: unknown;
|
|
3446
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3447
|
+
[x: string]: unknown;
|
|
3448
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3678
3449
|
data: {
|
|
3679
|
-
|
|
3450
|
+
templateConfig: {
|
|
3451
|
+
templateId: string;
|
|
3452
|
+
userInputs?: {
|
|
3453
|
+
name: string;
|
|
3454
|
+
value: string;
|
|
3455
|
+
}[];
|
|
3456
|
+
};
|
|
3680
3457
|
};
|
|
3681
3458
|
} & {
|
|
3682
3459
|
pathParameters: {
|
|
3683
|
-
|
|
3460
|
+
stackId: string;
|
|
3684
3461
|
};
|
|
3685
3462
|
} & {
|
|
3686
3463
|
headers?: Partial<{
|
|
@@ -3700,10 +3477,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3700
3477
|
[x: string]: unknown;
|
|
3701
3478
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3702
3479
|
[x: string]: unknown;
|
|
3703
|
-
},
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3480
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3481
|
+
[x: string]: unknown;
|
|
3482
|
+
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3483
|
+
[x: string]: unknown;
|
|
3484
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
3485
|
+
[x: string]: unknown;
|
|
3486
|
+
}, 500, "application/json">>>;
|
|
3707
3487
|
/** Call pull-image webhook */
|
|
3708
3488
|
callPullImageWebhookForService: (request: {
|
|
3709
3489
|
queryParameters: {
|
|
@@ -6004,150 +5784,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6004
5784
|
}, import("@mittwald/api-client-commons").Response<{
|
|
6005
5785
|
token: string;
|
|
6006
5786
|
webhookUrl: string;
|
|
6007
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6008
|
-
[x: string]: unknown;
|
|
6009
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6010
|
-
[x: string]: unknown;
|
|
6011
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6012
|
-
[x: string]: unknown;
|
|
6013
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6014
|
-
[x: string]: unknown;
|
|
6015
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6016
|
-
[x: string]: unknown;
|
|
6017
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6018
|
-
[x: string]: unknown;
|
|
6019
|
-
}, 500, "application/json">>>;
|
|
6020
|
-
/** Set an update schedule for a Stack. */
|
|
6021
|
-
setStackUpdateSchedule: (request: {
|
|
6022
|
-
stackId: string;
|
|
6023
|
-
data?: {
|
|
6024
|
-
updateSchedule?: {
|
|
6025
|
-
cron: string;
|
|
6026
|
-
timezone?: string | undefined;
|
|
6027
|
-
} | undefined;
|
|
6028
|
-
} | undefined;
|
|
6029
|
-
headers?: {
|
|
6030
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6031
|
-
"x-access-token"?: string | undefined;
|
|
6032
|
-
} | undefined;
|
|
6033
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6034
|
-
data: {
|
|
6035
|
-
updateSchedule?: {
|
|
6036
|
-
cron: string;
|
|
6037
|
-
timezone?: string;
|
|
6038
|
-
} | undefined;
|
|
6039
|
-
};
|
|
6040
|
-
} & {
|
|
6041
|
-
pathParameters: {
|
|
6042
|
-
stackId: string;
|
|
6043
|
-
};
|
|
6044
|
-
} & {
|
|
6045
|
-
headers?: Partial<{
|
|
6046
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6047
|
-
}>;
|
|
6048
|
-
} & {
|
|
6049
|
-
headers: {
|
|
6050
|
-
"x-access-token"?: string | undefined;
|
|
6051
|
-
} & Partial<{
|
|
6052
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6053
|
-
}>;
|
|
6054
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6055
|
-
[x: string]: unknown;
|
|
6056
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6057
|
-
[x: string]: unknown;
|
|
6058
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6059
|
-
[x: string]: unknown;
|
|
6060
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6061
|
-
[x: string]: unknown;
|
|
6062
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6063
|
-
[x: string]: unknown;
|
|
6064
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6065
|
-
[x: string]: unknown;
|
|
6066
|
-
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6067
|
-
data: {
|
|
6068
|
-
updateSchedule?: {
|
|
6069
|
-
cron: string;
|
|
6070
|
-
timezone?: string;
|
|
6071
|
-
} | undefined;
|
|
6072
|
-
};
|
|
6073
|
-
} & {
|
|
6074
|
-
pathParameters: {
|
|
6075
|
-
stackId: string;
|
|
6076
|
-
};
|
|
6077
|
-
} & {
|
|
6078
|
-
headers?: Partial<{
|
|
6079
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6080
|
-
}>;
|
|
6081
|
-
} & {
|
|
6082
|
-
headers: {
|
|
6083
|
-
"x-access-token"?: string | undefined;
|
|
6084
|
-
} & Partial<{
|
|
6085
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6086
|
-
}>;
|
|
6087
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6088
|
-
[x: string]: unknown;
|
|
6089
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6090
|
-
[x: string]: unknown;
|
|
6091
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6092
|
-
[x: string]: unknown;
|
|
6093
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6094
|
-
[x: string]: unknown;
|
|
6095
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6096
|
-
[x: string]: unknown;
|
|
6097
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6098
|
-
[x: string]: unknown;
|
|
6099
|
-
}, 500, "application/json">>>;
|
|
6100
|
-
/** Start a stopped Service. */
|
|
6101
|
-
startService: (request: {
|
|
6102
|
-
stackId: string;
|
|
6103
|
-
serviceId: string;
|
|
6104
|
-
headers?: {
|
|
6105
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6106
|
-
"x-access-token"?: string | undefined;
|
|
6107
|
-
} | undefined;
|
|
6108
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6109
|
-
headers?: Partial<{
|
|
6110
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6111
|
-
}>;
|
|
6112
|
-
} & {
|
|
6113
|
-
pathParameters: {
|
|
6114
|
-
stackId: string;
|
|
6115
|
-
serviceId: string;
|
|
6116
|
-
};
|
|
6117
|
-
} & {
|
|
6118
|
-
headers: {
|
|
6119
|
-
"x-access-token"?: string | undefined;
|
|
6120
|
-
} & Partial<{
|
|
6121
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6122
|
-
}>;
|
|
6123
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
6124
|
-
[x: string]: unknown;
|
|
6125
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6126
|
-
[x: string]: unknown;
|
|
6127
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6128
|
-
[x: string]: unknown;
|
|
6129
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6130
|
-
[x: string]: unknown;
|
|
6131
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6132
|
-
[x: string]: unknown;
|
|
6133
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6134
|
-
[x: string]: unknown;
|
|
6135
|
-
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6136
|
-
headers?: Partial<{
|
|
6137
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6138
|
-
}>;
|
|
6139
|
-
} & {
|
|
6140
|
-
pathParameters: {
|
|
6141
|
-
stackId: string;
|
|
6142
|
-
serviceId: string;
|
|
6143
|
-
};
|
|
6144
|
-
} & {
|
|
6145
|
-
headers: {
|
|
6146
|
-
"x-access-token"?: string | undefined;
|
|
6147
|
-
} & Partial<{
|
|
6148
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6149
|
-
}>;
|
|
6150
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
5787
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6151
5788
|
[x: string]: unknown;
|
|
6152
5789
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6153
5790
|
[x: string]: unknown;
|
|
@@ -6160,8 +5797,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6160
5797
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6161
5798
|
[x: string]: unknown;
|
|
6162
5799
|
}, 500, "application/json">>>;
|
|
6163
|
-
/**
|
|
6164
|
-
|
|
5800
|
+
/** Start a stopped Service. */
|
|
5801
|
+
startService: (request: {
|
|
6165
5802
|
stackId: string;
|
|
6166
5803
|
serviceId: string;
|
|
6167
5804
|
headers?: {
|
|
@@ -6223,40 +5860,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6223
5860
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6224
5861
|
[x: string]: unknown;
|
|
6225
5862
|
}, 500, "application/json">>>;
|
|
6226
|
-
/**
|
|
6227
|
-
|
|
6228
|
-
data: {
|
|
6229
|
-
templateConfig: {
|
|
6230
|
-
templateId: string;
|
|
6231
|
-
userInputs?: {
|
|
6232
|
-
name: string;
|
|
6233
|
-
value: string;
|
|
6234
|
-
}[] | undefined;
|
|
6235
|
-
};
|
|
6236
|
-
};
|
|
5863
|
+
/** Stop a started Service. */
|
|
5864
|
+
stopService: (request: {
|
|
6237
5865
|
stackId: string;
|
|
5866
|
+
serviceId: string;
|
|
6238
5867
|
headers?: {
|
|
6239
5868
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6240
5869
|
"x-access-token"?: string | undefined;
|
|
6241
5870
|
} | undefined;
|
|
6242
5871
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
userInputs?: {
|
|
6247
|
-
name: string;
|
|
6248
|
-
value: string;
|
|
6249
|
-
}[];
|
|
6250
|
-
};
|
|
6251
|
-
};
|
|
5872
|
+
headers?: Partial<{
|
|
5873
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5874
|
+
}>;
|
|
6252
5875
|
} & {
|
|
6253
5876
|
pathParameters: {
|
|
6254
5877
|
stackId: string;
|
|
5878
|
+
serviceId: string;
|
|
6255
5879
|
};
|
|
6256
|
-
} & {
|
|
6257
|
-
headers?: Partial<{
|
|
6258
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6259
|
-
}>;
|
|
6260
5880
|
} & {
|
|
6261
5881
|
headers: {
|
|
6262
5882
|
"x-access-token"?: string | undefined;
|
|
@@ -6271,30 +5891,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6271
5891
|
[x: string]: unknown;
|
|
6272
5892
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6273
5893
|
[x: string]: unknown;
|
|
6274
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6275
|
-
[x: string]: unknown;
|
|
6276
5894
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6277
5895
|
[x: string]: unknown;
|
|
6278
5896
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6279
5897
|
[x: string]: unknown;
|
|
6280
5898
|
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
userInputs?: {
|
|
6285
|
-
name: string;
|
|
6286
|
-
value: string;
|
|
6287
|
-
}[];
|
|
6288
|
-
};
|
|
6289
|
-
};
|
|
5899
|
+
headers?: Partial<{
|
|
5900
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5901
|
+
}>;
|
|
6290
5902
|
} & {
|
|
6291
5903
|
pathParameters: {
|
|
6292
5904
|
stackId: string;
|
|
5905
|
+
serviceId: string;
|
|
6293
5906
|
};
|
|
6294
|
-
} & {
|
|
6295
|
-
headers?: Partial<{
|
|
6296
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6297
|
-
}>;
|
|
6298
5907
|
} & {
|
|
6299
5908
|
headers: {
|
|
6300
5909
|
"x-access-token"?: string | undefined;
|
|
@@ -6309,8 +5918,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6309
5918
|
[x: string]: unknown;
|
|
6310
5919
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6311
5920
|
[x: string]: unknown;
|
|
6312
|
-
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6313
|
-
[x: string]: unknown;
|
|
6314
5921
|
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6315
5922
|
[x: string]: unknown;
|
|
6316
5923
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -6745,6 +6352,71 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6745
6352
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6746
6353
|
[x: string]: unknown;
|
|
6747
6354
|
}, 429, "application/json">>>;
|
|
6355
|
+
/** Return the AI Hosting Contract for the given Customer. */
|
|
6356
|
+
getDetailOfContractByAiHosting: (request: {
|
|
6357
|
+
customerId: string;
|
|
6358
|
+
aiHostingId: string;
|
|
6359
|
+
headers?: {
|
|
6360
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6361
|
+
"x-access-token"?: string | undefined;
|
|
6362
|
+
} | undefined;
|
|
6363
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6364
|
+
headers?: Partial<{
|
|
6365
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6366
|
+
}>;
|
|
6367
|
+
} & {
|
|
6368
|
+
pathParameters: {
|
|
6369
|
+
customerId: string;
|
|
6370
|
+
aiHostingId: string;
|
|
6371
|
+
};
|
|
6372
|
+
} & {
|
|
6373
|
+
headers: {
|
|
6374
|
+
"x-access-token"?: string | undefined;
|
|
6375
|
+
} & Partial<{
|
|
6376
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6377
|
+
}>;
|
|
6378
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6379
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
6380
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
6381
|
+
contractId: string;
|
|
6382
|
+
contractNumber: string;
|
|
6383
|
+
customerId: string;
|
|
6384
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
6385
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6386
|
+
[x: string]: unknown;
|
|
6387
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6388
|
+
[x: string]: unknown;
|
|
6389
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6390
|
+
[x: string]: unknown;
|
|
6391
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6392
|
+
headers?: Partial<{
|
|
6393
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6394
|
+
}>;
|
|
6395
|
+
} & {
|
|
6396
|
+
pathParameters: {
|
|
6397
|
+
customerId: string;
|
|
6398
|
+
aiHostingId: string;
|
|
6399
|
+
};
|
|
6400
|
+
} & {
|
|
6401
|
+
headers: {
|
|
6402
|
+
"x-access-token"?: string | undefined;
|
|
6403
|
+
} & Partial<{
|
|
6404
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6405
|
+
}>;
|
|
6406
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6407
|
+
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
6408
|
+
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
6409
|
+
contractId: string;
|
|
6410
|
+
contractNumber: string;
|
|
6411
|
+
customerId: string;
|
|
6412
|
+
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
6413
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6414
|
+
[x: string]: unknown;
|
|
6415
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6416
|
+
[x: string]: unknown;
|
|
6417
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6418
|
+
[x: string]: unknown;
|
|
6419
|
+
}, 429, "application/json">>>;
|
|
6748
6420
|
/** Return the Contract for the given Certificate. */
|
|
6749
6421
|
getDetailOfContractByCertificate: (request: {
|
|
6750
6422
|
certificateId: string;
|
|
@@ -8455,71 +8127,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
8455
8127
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8456
8128
|
[x: string]: unknown;
|
|
8457
8129
|
}, 429, "application/json">>>;
|
|
8458
|
-
/** Return the AI Hosting Contract for the given Customer. */
|
|
8459
|
-
getDetailOfContractByAiHosting: (request: {
|
|
8460
|
-
customerId: string;
|
|
8461
|
-
aiHostingId: string;
|
|
8462
|
-
headers?: {
|
|
8463
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
8464
|
-
"x-access-token"?: string | undefined;
|
|
8465
|
-
} | undefined;
|
|
8466
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8467
|
-
headers?: Partial<{
|
|
8468
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8469
|
-
}>;
|
|
8470
|
-
} & {
|
|
8471
|
-
pathParameters: {
|
|
8472
|
-
customerId: string;
|
|
8473
|
-
aiHostingId: string;
|
|
8474
|
-
};
|
|
8475
|
-
} & {
|
|
8476
|
-
headers: {
|
|
8477
|
-
"x-access-token"?: string | undefined;
|
|
8478
|
-
} & Partial<{
|
|
8479
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8480
|
-
}>;
|
|
8481
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8482
|
-
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
8483
|
-
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
8484
|
-
contractId: string;
|
|
8485
|
-
contractNumber: string;
|
|
8486
|
-
customerId: string;
|
|
8487
|
-
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
8488
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8489
|
-
[x: string]: unknown;
|
|
8490
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8491
|
-
[x: string]: unknown;
|
|
8492
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8493
|
-
[x: string]: unknown;
|
|
8494
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
8495
|
-
headers?: Partial<{
|
|
8496
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8497
|
-
}>;
|
|
8498
|
-
} & {
|
|
8499
|
-
pathParameters: {
|
|
8500
|
-
customerId: string;
|
|
8501
|
-
aiHostingId: string;
|
|
8502
|
-
};
|
|
8503
|
-
} & {
|
|
8504
|
-
headers: {
|
|
8505
|
-
"x-access-token"?: string | undefined;
|
|
8506
|
-
} & Partial<{
|
|
8507
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
8508
|
-
}>;
|
|
8509
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
8510
|
-
additionalItems?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem[] | undefined;
|
|
8511
|
-
baseItem: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractContractItem;
|
|
8512
|
-
contractId: string;
|
|
8513
|
-
contractNumber: string;
|
|
8514
|
-
customerId: string;
|
|
8515
|
-
termination?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContractTermination | undefined;
|
|
8516
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8517
|
-
[x: string]: unknown;
|
|
8518
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8519
|
-
[x: string]: unknown;
|
|
8520
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
8521
|
-
[x: string]: unknown;
|
|
8522
|
-
}, 429, "application/json">>>;
|
|
8523
8130
|
};
|
|
8524
8131
|
/** The marketplace API allows you to manage extensions and more information regaring the marketplace. */
|
|
8525
8132
|
readonly marketplace: {
|
|
@@ -14574,86 +14181,27 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14574
14181
|
} & Partial<{
|
|
14575
14182
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14576
14183
|
}>;
|
|
14577
|
-
}, import("@mittwald/api-client-commons").Response<{
|
|
14578
|
-
abortedBy?: {
|
|
14579
|
-
id?: string;
|
|
14580
|
-
} | undefined;
|
|
14581
|
-
cronjobId: string;
|
|
14582
|
-
durationInMilliseconds?: number | undefined;
|
|
14583
|
-
end?: string | undefined;
|
|
14584
|
-
executionEnd?: string | undefined;
|
|
14585
|
-
executionStart?: string | undefined;
|
|
14586
|
-
exitCode?: number | undefined;
|
|
14587
|
-
id: string;
|
|
14588
|
-
logPath?: string | undefined;
|
|
14589
|
-
start?: string | undefined;
|
|
14590
|
-
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
|
|
14591
|
-
successful: boolean;
|
|
14592
|
-
triggeredBy?: {
|
|
14593
|
-
id?: string;
|
|
14594
|
-
} | undefined;
|
|
14595
|
-
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14596
|
-
[x: string]: unknown;
|
|
14597
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14598
|
-
[x: string]: unknown;
|
|
14599
|
-
}, 429, "application/json">>>;
|
|
14600
|
-
/** Update a Cronjob's app installation id. */
|
|
14601
|
-
replaceCronjobAppInstallationId: (request: {
|
|
14602
|
-
data: {
|
|
14603
|
-
appInstallationId: string;
|
|
14604
|
-
};
|
|
14605
|
-
cronjobId: string;
|
|
14606
|
-
headers?: {
|
|
14607
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
14608
|
-
"x-access-token"?: string | undefined;
|
|
14609
|
-
} | undefined;
|
|
14610
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
14611
|
-
data: {
|
|
14612
|
-
appInstallationId: string;
|
|
14613
|
-
};
|
|
14614
|
-
} & {
|
|
14615
|
-
pathParameters: {
|
|
14616
|
-
cronjobId: string;
|
|
14617
|
-
};
|
|
14618
|
-
} & {
|
|
14619
|
-
headers?: Partial<{
|
|
14620
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14621
|
-
}>;
|
|
14622
|
-
} & {
|
|
14623
|
-
headers: {
|
|
14624
|
-
"x-access-token"?: string | undefined;
|
|
14625
|
-
} & Partial<{
|
|
14626
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14627
|
-
}>;
|
|
14628
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
14629
|
-
[x: string]: unknown;
|
|
14630
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14631
|
-
[x: string]: unknown;
|
|
14632
|
-
}, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14633
|
-
[x: string]: unknown;
|
|
14634
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
14635
|
-
data: {
|
|
14636
|
-
appInstallationId: string;
|
|
14637
|
-
};
|
|
14638
|
-
} & {
|
|
14639
|
-
pathParameters: {
|
|
14640
|
-
cronjobId: string;
|
|
14641
|
-
};
|
|
14642
|
-
} & {
|
|
14643
|
-
headers?: Partial<{
|
|
14644
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14645
|
-
}>;
|
|
14646
|
-
} & {
|
|
14647
|
-
headers: {
|
|
14648
|
-
"x-access-token"?: string | undefined;
|
|
14649
|
-
} & Partial<{
|
|
14650
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
14651
|
-
}>;
|
|
14652
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
14653
|
-
[x: string]: unknown;
|
|
14654
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14184
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
14185
|
+
abortedBy?: {
|
|
14186
|
+
id?: string;
|
|
14187
|
+
} | undefined;
|
|
14188
|
+
cronjobId: string;
|
|
14189
|
+
durationInMilliseconds?: number | undefined;
|
|
14190
|
+
end?: string | undefined;
|
|
14191
|
+
executionEnd?: string | undefined;
|
|
14192
|
+
executionStart?: string | undefined;
|
|
14193
|
+
exitCode?: number | undefined;
|
|
14194
|
+
id: string;
|
|
14195
|
+
logPath?: string | undefined;
|
|
14196
|
+
start?: string | undefined;
|
|
14197
|
+
status: "Complete" | "Failed" | "AbortedBySystem" | "Pending" | "Running" | "AbortedByUser" | "TimedOut";
|
|
14198
|
+
successful: boolean;
|
|
14199
|
+
triggeredBy?: {
|
|
14200
|
+
id?: string;
|
|
14201
|
+
} | undefined;
|
|
14202
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14655
14203
|
[x: string]: unknown;
|
|
14656
|
-
},
|
|
14204
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14657
14205
|
[x: string]: unknown;
|
|
14658
14206
|
}, 429, "application/json">>>;
|
|
14659
14207
|
};
|
|
@@ -29801,124 +29349,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
29801
29349
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29802
29350
|
[x: string]: unknown;
|
|
29803
29351
|
}, 429, "application/json">>>;
|
|
29804
|
-
/** Update a Project's description. */
|
|
29805
|
-
updateProjectDescription: (request: {
|
|
29806
|
-
data: {
|
|
29807
|
-
description: string;
|
|
29808
|
-
};
|
|
29809
|
-
projectId: string;
|
|
29810
|
-
headers?: {
|
|
29811
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29812
|
-
"x-access-token"?: string | undefined;
|
|
29813
|
-
} | undefined;
|
|
29814
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29815
|
-
data: {
|
|
29816
|
-
description: string;
|
|
29817
|
-
};
|
|
29818
|
-
} & {
|
|
29819
|
-
pathParameters: {
|
|
29820
|
-
projectId: string;
|
|
29821
|
-
};
|
|
29822
|
-
} & {
|
|
29823
|
-
headers?: Partial<{
|
|
29824
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29825
|
-
}>;
|
|
29826
|
-
} & {
|
|
29827
|
-
headers: {
|
|
29828
|
-
"x-access-token"?: string | undefined;
|
|
29829
|
-
} & Partial<{
|
|
29830
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29831
|
-
}>;
|
|
29832
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29833
|
-
[x: string]: unknown;
|
|
29834
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29835
|
-
[x: string]: unknown;
|
|
29836
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29837
|
-
[x: string]: unknown;
|
|
29838
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29839
|
-
data: {
|
|
29840
|
-
description: string;
|
|
29841
|
-
};
|
|
29842
|
-
} & {
|
|
29843
|
-
pathParameters: {
|
|
29844
|
-
projectId: string;
|
|
29845
|
-
};
|
|
29846
|
-
} & {
|
|
29847
|
-
headers?: Partial<{
|
|
29848
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29849
|
-
}>;
|
|
29850
|
-
} & {
|
|
29851
|
-
headers: {
|
|
29852
|
-
"x-access-token"?: string | undefined;
|
|
29853
|
-
} & Partial<{
|
|
29854
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29855
|
-
}>;
|
|
29856
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29857
|
-
[x: string]: unknown;
|
|
29858
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29859
|
-
[x: string]: unknown;
|
|
29860
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29861
|
-
[x: string]: unknown;
|
|
29862
|
-
}, 429, "application/json">>>;
|
|
29863
|
-
/** Update a Servers's description. */
|
|
29864
|
-
updateServerDescription: (request: {
|
|
29865
|
-
data: {
|
|
29866
|
-
description: string;
|
|
29867
|
-
};
|
|
29868
|
-
serverId: string;
|
|
29869
|
-
headers?: {
|
|
29870
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
29871
|
-
"x-access-token"?: string | undefined;
|
|
29872
|
-
} | undefined;
|
|
29873
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29874
|
-
data: {
|
|
29875
|
-
description: string;
|
|
29876
|
-
};
|
|
29877
|
-
} & {
|
|
29878
|
-
pathParameters: {
|
|
29879
|
-
serverId: string;
|
|
29880
|
-
};
|
|
29881
|
-
} & {
|
|
29882
|
-
headers?: Partial<{
|
|
29883
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29884
|
-
}>;
|
|
29885
|
-
} & {
|
|
29886
|
-
headers: {
|
|
29887
|
-
"x-access-token"?: string | undefined;
|
|
29888
|
-
} & Partial<{
|
|
29889
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29890
|
-
}>;
|
|
29891
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29892
|
-
[x: string]: unknown;
|
|
29893
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29894
|
-
[x: string]: unknown;
|
|
29895
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29896
|
-
[x: string]: unknown;
|
|
29897
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
29898
|
-
data: {
|
|
29899
|
-
description: string;
|
|
29900
|
-
};
|
|
29901
|
-
} & {
|
|
29902
|
-
pathParameters: {
|
|
29903
|
-
serverId: string;
|
|
29904
|
-
};
|
|
29905
|
-
} & {
|
|
29906
|
-
headers?: Partial<{
|
|
29907
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29908
|
-
}>;
|
|
29909
|
-
} & {
|
|
29910
|
-
headers: {
|
|
29911
|
-
"x-access-token"?: string | undefined;
|
|
29912
|
-
} & Partial<{
|
|
29913
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
29914
|
-
}>;
|
|
29915
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
29916
|
-
[x: string]: unknown;
|
|
29917
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29918
|
-
[x: string]: unknown;
|
|
29919
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
29920
|
-
[x: string]: unknown;
|
|
29921
|
-
}, 429, "application/json">>>;
|
|
29922
29352
|
/** Get storage space Statistics belonging to a Project. */
|
|
29923
29353
|
storagespaceGetProjectStatistics: (request: {
|
|
29924
29354
|
projectId: string;
|
|
@@ -30185,124 +29615,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
30185
29615
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30186
29616
|
[x: string]: unknown;
|
|
30187
29617
|
}, 500, "application/json">>>;
|
|
30188
|
-
/** Update a Project's storage space notification threshold. */
|
|
30189
|
-
storagespaceReplaceProjectNotificationThreshold: (request: {
|
|
30190
|
-
projectId: string;
|
|
30191
|
-
data?: {
|
|
30192
|
-
notificationThresholdInBytes?: number | undefined;
|
|
30193
|
-
} | undefined;
|
|
30194
|
-
headers?: {
|
|
30195
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
30196
|
-
"x-access-token"?: string | undefined;
|
|
30197
|
-
} | undefined;
|
|
30198
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
30199
|
-
data: {
|
|
30200
|
-
notificationThresholdInBytes?: number | undefined;
|
|
30201
|
-
};
|
|
30202
|
-
} & {
|
|
30203
|
-
pathParameters: {
|
|
30204
|
-
projectId: string;
|
|
30205
|
-
};
|
|
30206
|
-
} & {
|
|
30207
|
-
headers?: Partial<{
|
|
30208
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30209
|
-
}>;
|
|
30210
|
-
} & {
|
|
30211
|
-
headers: {
|
|
30212
|
-
"x-access-token"?: string | undefined;
|
|
30213
|
-
} & Partial<{
|
|
30214
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30215
|
-
}>;
|
|
30216
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
30217
|
-
[x: string]: unknown;
|
|
30218
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30219
|
-
[x: string]: unknown;
|
|
30220
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30221
|
-
[x: string]: unknown;
|
|
30222
|
-
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
30223
|
-
data: {
|
|
30224
|
-
notificationThresholdInBytes?: number | undefined;
|
|
30225
|
-
};
|
|
30226
|
-
} & {
|
|
30227
|
-
pathParameters: {
|
|
30228
|
-
projectId: string;
|
|
30229
|
-
};
|
|
30230
|
-
} & {
|
|
30231
|
-
headers?: Partial<{
|
|
30232
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30233
|
-
}>;
|
|
30234
|
-
} & {
|
|
30235
|
-
headers: {
|
|
30236
|
-
"x-access-token"?: string | undefined;
|
|
30237
|
-
} & Partial<{
|
|
30238
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30239
|
-
}>;
|
|
30240
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
30241
|
-
[x: string]: unknown;
|
|
30242
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30243
|
-
[x: string]: unknown;
|
|
30244
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30245
|
-
[x: string]: unknown;
|
|
30246
|
-
}, 500, "application/json">>>;
|
|
30247
|
-
/** Update a Server's storage space notification threshold. */
|
|
30248
|
-
storagespaceReplaceServerNotificationThreshold: (request: {
|
|
30249
|
-
serverId: string;
|
|
30250
|
-
data?: {
|
|
30251
|
-
notificationThresholdInBytes?: number | undefined;
|
|
30252
|
-
} | undefined;
|
|
30253
|
-
headers?: {
|
|
30254
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
30255
|
-
"x-access-token"?: string | undefined;
|
|
30256
|
-
} | undefined;
|
|
30257
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
30258
|
-
data: {
|
|
30259
|
-
notificationThresholdInBytes?: number | undefined;
|
|
30260
|
-
};
|
|
30261
|
-
} & {
|
|
30262
|
-
pathParameters: {
|
|
30263
|
-
serverId: string;
|
|
30264
|
-
};
|
|
30265
|
-
} & {
|
|
30266
|
-
headers?: Partial<{
|
|
30267
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30268
|
-
}>;
|
|
30269
|
-
} & {
|
|
30270
|
-
headers: {
|
|
30271
|
-
"x-access-token"?: string | undefined;
|
|
30272
|
-
} & Partial<{
|
|
30273
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30274
|
-
}>;
|
|
30275
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
30276
|
-
[x: string]: unknown;
|
|
30277
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30278
|
-
[x: string]: unknown;
|
|
30279
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30280
|
-
[x: string]: unknown;
|
|
30281
|
-
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
30282
|
-
data: {
|
|
30283
|
-
notificationThresholdInBytes?: number | undefined;
|
|
30284
|
-
};
|
|
30285
|
-
} & {
|
|
30286
|
-
pathParameters: {
|
|
30287
|
-
serverId: string;
|
|
30288
|
-
};
|
|
30289
|
-
} & {
|
|
30290
|
-
headers?: Partial<{
|
|
30291
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30292
|
-
}>;
|
|
30293
|
-
} & {
|
|
30294
|
-
headers: {
|
|
30295
|
-
"x-access-token"?: string | undefined;
|
|
30296
|
-
} & Partial<{
|
|
30297
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
30298
|
-
}>;
|
|
30299
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
30300
|
-
[x: string]: unknown;
|
|
30301
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30302
|
-
[x: string]: unknown;
|
|
30303
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
30304
|
-
[x: string]: unknown;
|
|
30305
|
-
}, 500, "application/json">>>;
|
|
30306
29618
|
};
|
|
30307
29619
|
/** The filesystem API allows you to directly access the filesystem of your project. */
|
|
30308
29620
|
readonly projectFileSystem: {
|