@mittwald/api-client 4.422.0 → 4.424.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.
@@ -121,6 +121,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
121
121
  getProjectBackup: this.requestFunctionFactory(descriptors.backupGetProjectBackup),
122
122
  /** Delete a ProjectBackup. */
123
123
  deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
124
+ /** Update a ProjectBackup. */
125
+ updateProjectBackup: this.requestFunctionFactory(descriptors.backupUpdateProjectBackup),
124
126
  /** List database dump's for a ProjectBackup. */
125
127
  getProjectBackupDatabaseDumps: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumps),
126
128
  /** List paths for a ProjectBackup. */
@@ -196,6 +198,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
196
198
  startService: this.requestFunctionFactory(descriptors.containerStartService),
197
199
  /** Stop a started Service. */
198
200
  stopService: this.requestFunctionFactory(descriptors.containerStopService),
201
+ /** Add a template component to a Stack. */
202
+ addTemplateComponent: this.requestFunctionFactory(descriptors.containerAddTemplateComponent),
199
203
  };
200
204
  /** The contract API allows you to manage your contracts and orders */
201
205
  contract = {
@@ -968,8 +972,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
968
972
  updateServerDescription: this.requestFunctionFactory(descriptors.projectUpdateServerDescription),
969
973
  /** Get storage space Statistics belonging to a Project. */
970
974
  storagespaceGetProjectStatistics: this.requestFunctionFactory(descriptors.storagespaceGetProjectStatistics),
975
+ /** Update a Project's storage space statistics. */
976
+ storagespaceUpdateProjectStatistics: this.requestFunctionFactory(descriptors.storagespaceUpdateProjectStatistics),
971
977
  /** Get storage space Statistics belonging to a Server. */
972
978
  storagespaceGetServerStatistics: this.requestFunctionFactory(descriptors.storagespaceGetServerStatistics),
979
+ /** Update a Server's storage space statistics. */
980
+ storagespaceUpdateServerStatistics: this.requestFunctionFactory(descriptors.storagespaceUpdateServerStatistics),
973
981
  /** Update a Project's storage space notification threshold. */
974
982
  storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
975
983
  /** Update a Server's storage space notification threshold. */
@@ -316,6 +316,12 @@ export const backupDeleteProjectBackup = {
316
316
  method: "DELETE",
317
317
  operationId: "backup-delete-project-backup",
318
318
  };
319
+ /** Update a ProjectBackup. */
320
+ export const backupUpdateProjectBackup = {
321
+ path: "/v2/project-backups/{projectBackupId}",
322
+ method: "PATCH",
323
+ operationId: "backup-update-project-backup",
324
+ };
319
325
  /** List database dump's for a ProjectBackup. */
320
326
  export const backupGetProjectBackupDatabaseDumps = {
321
327
  path: "/v2/project-backups/{projectBackupId}/database-dumps",
@@ -2476,12 +2482,24 @@ export const storagespaceGetProjectStatistics = {
2476
2482
  method: "GET",
2477
2483
  operationId: "storagespace-get-project-statistics",
2478
2484
  };
2485
+ /** Update a Project's storage space statistics. */
2486
+ export const storagespaceUpdateProjectStatistics = {
2487
+ path: "/v2/projects/{projectId}/storage-space-statistics",
2488
+ method: "PATCH",
2489
+ operationId: "storagespace-update-project-statistics",
2490
+ };
2479
2491
  /** Get storage space Statistics belonging to a Server. */
2480
2492
  export const storagespaceGetServerStatistics = {
2481
2493
  path: "/v2/servers/{serverId}/storage-space-statistics",
2482
2494
  method: "GET",
2483
2495
  operationId: "storagespace-get-server-statistics",
2484
2496
  };
2497
+ /** Update a Server's storage space statistics. */
2498
+ export const storagespaceUpdateServerStatistics = {
2499
+ path: "/v2/servers/{serverId}/storage-space-statistics",
2500
+ method: "PATCH",
2501
+ operationId: "storagespace-update-server-statistics",
2502
+ };
2485
2503
  /** Update a Project's storage space notification threshold. */
2486
2504
  export const storagespaceReplaceProjectNotificationThreshold = {
2487
2505
  path: "/v2/projects/{projectId}/storage-space-notification-threshold",
@@ -2824,3 +2842,9 @@ export const verificationVerifyCompany = {
2824
2842
  method: "POST",
2825
2843
  operationId: "verification-verify-company",
2826
2844
  };
2845
+ /** Add a template component to a Stack. */
2846
+ export const containerAddTemplateComponent = {
2847
+ path: "/v2/stacks/{stackId}/actions/add-template-component",
2848
+ method: "POST",
2849
+ operationId: "container-add-template-component",
2850
+ };
@@ -121,6 +121,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
121
121
  getProjectBackup: this.requestFunctionFactory(descriptors.backupGetProjectBackup),
122
122
  /** Delete a ProjectBackup. */
123
123
  deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
124
+ /** Update a ProjectBackup. */
125
+ updateProjectBackup: this.requestFunctionFactory(descriptors.backupUpdateProjectBackup),
124
126
  /** List database dump's for a ProjectBackup. */
125
127
  getProjectBackupDatabaseDumps: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumps),
126
128
  /** List paths for a ProjectBackup. */
@@ -196,6 +198,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
196
198
  startService: this.requestFunctionFactory(descriptors.containerStartService),
197
199
  /** Stop a started Service. */
198
200
  stopService: this.requestFunctionFactory(descriptors.containerStopService),
201
+ /** Add a template component to a Stack. */
202
+ addTemplateComponent: this.requestFunctionFactory(descriptors.containerAddTemplateComponent),
199
203
  };
200
204
  /** The contract API allows you to manage your contracts and orders */
201
205
  contract = {
@@ -968,8 +972,12 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
968
972
  updateServerDescription: this.requestFunctionFactory(descriptors.projectUpdateServerDescription),
969
973
  /** Get storage space Statistics belonging to a Project. */
970
974
  storagespaceGetProjectStatistics: this.requestFunctionFactory(descriptors.storagespaceGetProjectStatistics),
975
+ /** Update a Project's storage space statistics. */
976
+ storagespaceUpdateProjectStatistics: this.requestFunctionFactory(descriptors.storagespaceUpdateProjectStatistics),
971
977
  /** Get storage space Statistics belonging to a Server. */
972
978
  storagespaceGetServerStatistics: this.requestFunctionFactory(descriptors.storagespaceGetServerStatistics),
979
+ /** Update a Server's storage space statistics. */
980
+ storagespaceUpdateServerStatistics: this.requestFunctionFactory(descriptors.storagespaceUpdateServerStatistics),
973
981
  /** Update a Project's storage space notification threshold. */
974
982
  storagespaceReplaceProjectNotificationThreshold: this.requestFunctionFactory(descriptors.storagespaceReplaceProjectNotificationThreshold),
975
983
  /** Update a Server's storage space notification threshold. */
@@ -316,6 +316,12 @@ export const backupDeleteProjectBackup = {
316
316
  method: "DELETE",
317
317
  operationId: "backup-delete-project-backup",
318
318
  };
319
+ /** Update a ProjectBackup. */
320
+ export const backupUpdateProjectBackup = {
321
+ path: "/v3-next/project-backups/{projectBackupId}",
322
+ method: "PATCH",
323
+ operationId: "backup-update-project-backup",
324
+ };
319
325
  /** List database dump's for a ProjectBackup. */
320
326
  export const backupGetProjectBackupDatabaseDumps = {
321
327
  path: "/v3-next/project-backups/{projectBackupId}/database-dumps",
@@ -2476,12 +2482,24 @@ export const storagespaceGetProjectStatistics = {
2476
2482
  method: "GET",
2477
2483
  operationId: "storagespace-get-project-statistics",
2478
2484
  };
2485
+ /** Update a Project's storage space statistics. */
2486
+ export const storagespaceUpdateProjectStatistics = {
2487
+ path: "/v3-next/projects/{projectId}/storage-space-statistics",
2488
+ method: "PATCH",
2489
+ operationId: "storagespace-update-project-statistics",
2490
+ };
2479
2491
  /** Get storage space Statistics belonging to a Server. */
2480
2492
  export const storagespaceGetServerStatistics = {
2481
2493
  path: "/v3-next/servers/{serverId}/storage-space-statistics",
2482
2494
  method: "GET",
2483
2495
  operationId: "storagespace-get-server-statistics",
2484
2496
  };
2497
+ /** Update a Server's storage space statistics. */
2498
+ export const storagespaceUpdateServerStatistics = {
2499
+ path: "/v3-next/servers/{serverId}/storage-space-statistics",
2500
+ method: "PATCH",
2501
+ operationId: "storagespace-update-server-statistics",
2502
+ };
2485
2503
  /** Update a Project's storage space notification threshold. */
2486
2504
  export const storagespaceReplaceProjectNotificationThreshold = {
2487
2505
  path: "/v3-next/projects/{projectId}/storage-space-notification-threshold",
@@ -2824,3 +2842,9 @@ export const verificationVerifyCompany = {
2824
2842
  method: "POST",
2825
2843
  operationId: "verification-verify-company",
2826
2844
  };
2845
+ /** Add a template component to a Stack. */
2846
+ export const containerAddTemplateComponent = {
2847
+ path: "/v3-next/stacks/{stackId}/actions/add-template-component",
2848
+ method: "POST",
2849
+ operationId: "container-add-template-component",
2850
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.421.0';
1
+ export const MittwaldAPIClientVersion = '4.423.0';
@@ -3287,6 +3287,72 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3287
3287
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3288
3288
  [x: string]: unknown;
3289
3289
  }, 429, "application/json">>>;
3290
+ /** Update a ProjectBackup. */
3291
+ updateProjectBackup: (request: {
3292
+ projectBackupId: string;
3293
+ data?: {
3294
+ description?: string | undefined;
3295
+ expirationTime?: string | undefined;
3296
+ } | undefined;
3297
+ headers?: {
3298
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3299
+ "x-access-token"?: string | undefined;
3300
+ } | undefined;
3301
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3302
+ data: {
3303
+ description?: string | undefined;
3304
+ expirationTime?: string | undefined;
3305
+ };
3306
+ } & {
3307
+ pathParameters: {
3308
+ projectBackupId: string;
3309
+ };
3310
+ } & {
3311
+ headers?: Partial<{
3312
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3313
+ }>;
3314
+ } & {
3315
+ headers: {
3316
+ "x-access-token"?: string | undefined;
3317
+ } & Partial<{
3318
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3319
+ }>;
3320
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3321
+ [x: string]: unknown;
3322
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3323
+ [x: string]: unknown;
3324
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3325
+ [x: string]: unknown;
3326
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3327
+ [x: string]: unknown;
3328
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3329
+ data: {
3330
+ description?: string | undefined;
3331
+ expirationTime?: string | undefined;
3332
+ };
3333
+ } & {
3334
+ pathParameters: {
3335
+ projectBackupId: string;
3336
+ };
3337
+ } & {
3338
+ headers?: Partial<{
3339
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3340
+ }>;
3341
+ } & {
3342
+ headers: {
3343
+ "x-access-token"?: string | undefined;
3344
+ } & Partial<{
3345
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
3346
+ }>;
3347
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
3348
+ [x: string]: unknown;
3349
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
3350
+ [x: string]: unknown;
3351
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
3352
+ [x: string]: unknown;
3353
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3354
+ [x: string]: unknown;
3355
+ }, 429, "application/json">>>;
3290
3356
  /** List database dump's for a ProjectBackup. */
3291
3357
  getProjectBackupDatabaseDumps: (request: {
3292
3358
  projectBackupId: string;
@@ -6141,6 +6207,99 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6141
6207
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6142
6208
  [x: string]: unknown;
6143
6209
  }, 500, "application/json">>>;
6210
+ /** Add a template component to a Stack. */
6211
+ addTemplateComponent: (request: {
6212
+ data: {
6213
+ templateConfig: {
6214
+ templateId: string;
6215
+ userInputs?: {
6216
+ name: string;
6217
+ value: string;
6218
+ }[] | undefined;
6219
+ };
6220
+ };
6221
+ stackId: string;
6222
+ headers?: {
6223
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6224
+ "x-access-token"?: string | undefined;
6225
+ } | undefined;
6226
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6227
+ data: {
6228
+ templateConfig: {
6229
+ templateId: string;
6230
+ userInputs?: {
6231
+ name: string;
6232
+ value: string;
6233
+ }[];
6234
+ };
6235
+ };
6236
+ } & {
6237
+ pathParameters: {
6238
+ stackId: string;
6239
+ };
6240
+ } & {
6241
+ headers?: Partial<{
6242
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6243
+ }>;
6244
+ } & {
6245
+ headers: {
6246
+ "x-access-token"?: string | undefined;
6247
+ } & Partial<{
6248
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6249
+ }>;
6250
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6251
+ [x: string]: unknown;
6252
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6253
+ [x: string]: unknown;
6254
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6255
+ [x: string]: unknown;
6256
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6257
+ [x: string]: unknown;
6258
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
6259
+ [x: string]: unknown;
6260
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6261
+ [x: string]: unknown;
6262
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6263
+ [x: string]: unknown;
6264
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6265
+ data: {
6266
+ templateConfig: {
6267
+ templateId: string;
6268
+ userInputs?: {
6269
+ name: string;
6270
+ value: string;
6271
+ }[];
6272
+ };
6273
+ };
6274
+ } & {
6275
+ pathParameters: {
6276
+ stackId: string;
6277
+ };
6278
+ } & {
6279
+ headers?: Partial<{
6280
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6281
+ }>;
6282
+ } & {
6283
+ headers: {
6284
+ "x-access-token"?: string | undefined;
6285
+ } & Partial<{
6286
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6287
+ }>;
6288
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
6289
+ [x: string]: unknown;
6290
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6291
+ [x: string]: unknown;
6292
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6293
+ [x: string]: unknown;
6294
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6295
+ [x: string]: unknown;
6296
+ }, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
6297
+ [x: string]: unknown;
6298
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
6299
+ [x: string]: unknown;
6300
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6301
+ [x: string]: unknown;
6302
+ }, 500, "application/json">>>;
6144
6303
  };
6145
6304
  /** The contract API allows you to manage your contracts and orders */
6146
6305
  readonly contract: {
@@ -29700,6 +29859,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
29700
29859
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
29701
29860
  [x: string]: unknown;
29702
29861
  }, 500, "application/json">>>;
29862
+ /** Update a Project's storage space statistics. */
29863
+ storagespaceUpdateProjectStatistics: (request: {
29864
+ projectId: string;
29865
+ data?: {
29866
+ notificationThresholdInBytes?: number | undefined;
29867
+ } | undefined;
29868
+ headers?: {
29869
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29870
+ "x-access-token"?: string | undefined;
29871
+ } | undefined;
29872
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29873
+ data: {
29874
+ notificationThresholdInBytes?: number | undefined;
29875
+ };
29876
+ } & {
29877
+ pathParameters: {
29878
+ projectId: string;
29879
+ };
29880
+ } & {
29881
+ headers?: Partial<{
29882
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29883
+ }>;
29884
+ } & {
29885
+ headers: {
29886
+ "x-access-token"?: string | undefined;
29887
+ } & Partial<{
29888
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29889
+ }>;
29890
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29891
+ [x: string]: unknown;
29892
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29893
+ [x: string]: unknown;
29894
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
29895
+ [x: string]: unknown;
29896
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29897
+ data: {
29898
+ notificationThresholdInBytes?: number | undefined;
29899
+ };
29900
+ } & {
29901
+ pathParameters: {
29902
+ projectId: string;
29903
+ };
29904
+ } & {
29905
+ headers?: Partial<{
29906
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29907
+ }>;
29908
+ } & {
29909
+ headers: {
29910
+ "x-access-token"?: string | undefined;
29911
+ } & Partial<{
29912
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29913
+ }>;
29914
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
29915
+ [x: string]: unknown;
29916
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29917
+ [x: string]: unknown;
29918
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
29919
+ [x: string]: unknown;
29920
+ }, 500, "application/json">>>;
29703
29921
  /** Get storage space Statistics belonging to a Server. */
29704
29922
  storagespaceGetServerStatistics: (request: {
29705
29923
  serverId: string;
@@ -29774,6 +29992,65 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
29774
29992
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
29775
29993
  [x: string]: unknown;
29776
29994
  }, 500, "application/json">>>;
29995
+ /** Update a Server's storage space statistics. */
29996
+ storagespaceUpdateServerStatistics: (request: {
29997
+ serverId: string;
29998
+ data?: {
29999
+ notificationThresholdInBytes?: number | undefined;
30000
+ } | undefined;
30001
+ headers?: {
30002
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
30003
+ "x-access-token"?: string | undefined;
30004
+ } | undefined;
30005
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
30006
+ data: {
30007
+ notificationThresholdInBytes?: number | undefined;
30008
+ };
30009
+ } & {
30010
+ pathParameters: {
30011
+ serverId: string;
30012
+ };
30013
+ } & {
30014
+ headers?: Partial<{
30015
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30016
+ }>;
30017
+ } & {
30018
+ headers: {
30019
+ "x-access-token"?: string | undefined;
30020
+ } & Partial<{
30021
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30022
+ }>;
30023
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
30024
+ [x: string]: unknown;
30025
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
30026
+ [x: string]: unknown;
30027
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
30028
+ [x: string]: unknown;
30029
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
30030
+ data: {
30031
+ notificationThresholdInBytes?: number | undefined;
30032
+ };
30033
+ } & {
30034
+ pathParameters: {
30035
+ serverId: string;
30036
+ };
30037
+ } & {
30038
+ headers?: Partial<{
30039
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30040
+ }>;
30041
+ } & {
30042
+ headers: {
30043
+ "x-access-token"?: string | undefined;
30044
+ } & Partial<{
30045
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
30046
+ }>;
30047
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
30048
+ [x: string]: unknown;
30049
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
30050
+ [x: string]: unknown;
30051
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
30052
+ [x: string]: unknown;
30053
+ }, 500, "application/json">>>;
29777
30054
  /** Update a Project's storage space notification threshold. */
29778
30055
  storagespaceReplaceProjectNotificationThreshold: (request: {
29779
30056
  projectId: string;
@@ -109,6 +109,8 @@ export declare const backupUpdateProjectBackupSchedule: OpenAPIOperation<Request
109
109
  export declare const backupGetProjectBackup: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
110
110
  /** Delete a ProjectBackup. */
111
111
  export declare const backupDeleteProjectBackup: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
112
+ /** Update a ProjectBackup. */
113
+ export declare const backupUpdateProjectBackup: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
112
114
  /** List database dump's for a ProjectBackup. */
113
115
  export declare const backupGetProjectBackupDatabaseDumps: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
114
116
  /** List paths for a ProjectBackup. */
@@ -829,8 +831,12 @@ export declare const sslReplaceCertificate: OpenAPIOperation<RequestType<Simplif
829
831
  export declare const sslListCertificates: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Certificates.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
830
832
  /** Get storage space Statistics belonging to a Project. */
831
833
  export declare const storagespaceGetProjectStatistics: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
834
+ /** Update a Project's storage space statistics. */
835
+ export declare const storagespaceUpdateProjectStatistics: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceStatistics.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
832
836
  /** Get storage space Statistics belonging to a Server. */
833
837
  export declare const storagespaceGetServerStatistics: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
838
+ /** Update a Server's storage space statistics. */
839
+ export declare const storagespaceUpdateServerStatistics: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerIdStorageSpaceStatistics.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
834
840
  /** Update a Project's storage space notification threshold. */
835
841
  export declare const storagespaceReplaceProjectNotificationThreshold: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdStorageSpaceNotificationThreshold.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
836
842
  /** Update a Server's storage space notification threshold. */
@@ -945,3 +951,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
945
951
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
946
952
  /** Check if a company exists. */
947
953
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
954
+ /** Add a template component to a Stack. */
955
+ export declare const containerAddTemplateComponent: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdActionsAddTemplateComponent.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;