@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.
@@ -214,6 +214,10 @@ export declare namespace MittwaldAPIV2 {
214
214
  type RequestData = InferredRequestData<typeof descriptors.backupDeleteProjectBackup>;
215
215
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupDeleteProjectBackup, TStatus>;
216
216
  }
217
+ namespace BackupUpdateProjectBackup {
218
+ type RequestData = InferredRequestData<typeof descriptors.backupUpdateProjectBackup>;
219
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupUpdateProjectBackup, TStatus>;
220
+ }
217
221
  namespace BackupGetProjectBackupDatabaseDumps {
218
222
  type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDatabaseDumps>;
219
223
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDatabaseDumps, TStatus>;
@@ -1654,10 +1658,18 @@ export declare namespace MittwaldAPIV2 {
1654
1658
  type RequestData = InferredRequestData<typeof descriptors.storagespaceGetProjectStatistics>;
1655
1659
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetProjectStatistics, TStatus>;
1656
1660
  }
1661
+ namespace StoragespaceUpdateProjectStatistics {
1662
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceUpdateProjectStatistics>;
1663
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceUpdateProjectStatistics, TStatus>;
1664
+ }
1657
1665
  namespace StoragespaceGetServerStatistics {
1658
1666
  type RequestData = InferredRequestData<typeof descriptors.storagespaceGetServerStatistics>;
1659
1667
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceGetServerStatistics, TStatus>;
1660
1668
  }
1669
+ namespace StoragespaceUpdateServerStatistics {
1670
+ type RequestData = InferredRequestData<typeof descriptors.storagespaceUpdateServerStatistics>;
1671
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceUpdateServerStatistics, TStatus>;
1672
+ }
1661
1673
  namespace StoragespaceReplaceProjectNotificationThreshold {
1662
1674
  type RequestData = InferredRequestData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold>;
1663
1675
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.storagespaceReplaceProjectNotificationThreshold, TStatus>;
@@ -1886,6 +1898,10 @@ export declare namespace MittwaldAPIV2 {
1886
1898
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1887
1899
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1888
1900
  }
1901
+ namespace ContainerAddTemplateComponent {
1902
+ type RequestData = InferredRequestData<typeof descriptors.containerAddTemplateComponent>;
1903
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerAddTemplateComponent, TStatus>;
1904
+ }
1889
1905
  }
1890
1906
  namespace Components {
1891
1907
  namespace Schemas {
@@ -7001,6 +7017,18 @@ export declare namespace MittwaldAPIV2 {
7001
7017
  }
7002
7018
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
7003
7019
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
7020
+ interface ContainerAddTemplateComponent {
7021
+ templateConfig: {
7022
+ templateId: string;
7023
+ /**
7024
+ * Values for template user inputs. Missing optional values are filled from template defaults.
7025
+ */
7026
+ userInputs?: {
7027
+ name: string;
7028
+ value: string;
7029
+ }[];
7030
+ };
7031
+ }
7004
7032
  interface CommonsAddress {
7005
7033
  street: string;
7006
7034
  houseNumber: string;
@@ -9786,6 +9814,67 @@ export declare namespace MittwaldAPIV2 {
9786
9814
  }
9787
9815
  }
9788
9816
  }
9817
+ namespace Patch {
9818
+ namespace Parameters {
9819
+ type Path = {
9820
+ projectBackupId: string;
9821
+ };
9822
+ interface RequestBody {
9823
+ /**
9824
+ * Description of the ProjectBackup.
9825
+ */
9826
+ description?: string;
9827
+ /**
9828
+ * Time when to expire the Backup. Must be no more than one year in the future.
9829
+ */
9830
+ expirationTime?: string;
9831
+ }
9832
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9833
+ type Query = {};
9834
+ }
9835
+ namespace Responses {
9836
+ namespace $204 {
9837
+ namespace Content {
9838
+ type Empty = unknown;
9839
+ }
9840
+ }
9841
+ namespace $400 {
9842
+ namespace Content {
9843
+ interface ApplicationJson {
9844
+ [k: string]: unknown;
9845
+ }
9846
+ }
9847
+ }
9848
+ namespace $403 {
9849
+ namespace Content {
9850
+ interface ApplicationJson {
9851
+ [k: string]: unknown;
9852
+ }
9853
+ }
9854
+ }
9855
+ namespace $404 {
9856
+ namespace Content {
9857
+ interface ApplicationJson {
9858
+ [k: string]: unknown;
9859
+ }
9860
+ }
9861
+ }
9862
+ namespace $429 {
9863
+ namespace Content {
9864
+ interface ApplicationJson {
9865
+ [k: string]: unknown;
9866
+ }
9867
+ }
9868
+ }
9869
+ namespace Default {
9870
+ namespace Content {
9871
+ interface ApplicationJson {
9872
+ [k: string]: unknown;
9873
+ }
9874
+ }
9875
+ }
9876
+ }
9877
+ }
9789
9878
  }
9790
9879
  namespace V2ProjectBackupsProjectBackupIdDatabaseDumps {
9791
9880
  namespace Get {
@@ -28731,6 +28820,53 @@ export declare namespace MittwaldAPIV2 {
28731
28820
  }
28732
28821
  }
28733
28822
  }
28823
+ namespace Patch {
28824
+ namespace Parameters {
28825
+ type Path = {
28826
+ projectId: string;
28827
+ };
28828
+ interface RequestBody {
28829
+ notificationThresholdInBytes?: number;
28830
+ }
28831
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
28832
+ type Query = {};
28833
+ }
28834
+ namespace Responses {
28835
+ namespace $204 {
28836
+ namespace Content {
28837
+ type Empty = unknown;
28838
+ }
28839
+ }
28840
+ namespace $403 {
28841
+ namespace Content {
28842
+ interface ApplicationJson {
28843
+ [k: string]: unknown;
28844
+ }
28845
+ }
28846
+ }
28847
+ namespace $429 {
28848
+ namespace Content {
28849
+ interface ApplicationJson {
28850
+ [k: string]: unknown;
28851
+ }
28852
+ }
28853
+ }
28854
+ namespace $500 {
28855
+ namespace Content {
28856
+ interface ApplicationJson {
28857
+ [k: string]: unknown;
28858
+ }
28859
+ }
28860
+ }
28861
+ namespace Default {
28862
+ namespace Content {
28863
+ interface ApplicationJson {
28864
+ [k: string]: unknown;
28865
+ }
28866
+ }
28867
+ }
28868
+ }
28869
+ }
28734
28870
  }
28735
28871
  namespace V2ServersServerIdStorageSpaceStatistics {
28736
28872
  namespace Get {
@@ -28791,6 +28927,53 @@ export declare namespace MittwaldAPIV2 {
28791
28927
  }
28792
28928
  }
28793
28929
  }
28930
+ namespace Patch {
28931
+ namespace Parameters {
28932
+ type Path = {
28933
+ serverId: string;
28934
+ };
28935
+ interface RequestBody {
28936
+ notificationThresholdInBytes?: number;
28937
+ }
28938
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
28939
+ type Query = {};
28940
+ }
28941
+ namespace Responses {
28942
+ namespace $204 {
28943
+ namespace Content {
28944
+ type Empty = unknown;
28945
+ }
28946
+ }
28947
+ namespace $403 {
28948
+ namespace Content {
28949
+ interface ApplicationJson {
28950
+ [k: string]: unknown;
28951
+ }
28952
+ }
28953
+ }
28954
+ namespace $429 {
28955
+ namespace Content {
28956
+ interface ApplicationJson {
28957
+ [k: string]: unknown;
28958
+ }
28959
+ }
28960
+ }
28961
+ namespace $500 {
28962
+ namespace Content {
28963
+ interface ApplicationJson {
28964
+ [k: string]: unknown;
28965
+ }
28966
+ }
28967
+ }
28968
+ namespace Default {
28969
+ namespace Content {
28970
+ interface ApplicationJson {
28971
+ [k: string]: unknown;
28972
+ }
28973
+ }
28974
+ }
28975
+ }
28976
+ }
28794
28977
  }
28795
28978
  namespace V2ProjectsProjectIdStorageSpaceNotificationThreshold {
28796
28979
  namespace Put {
@@ -31463,5 +31646,80 @@ export declare namespace MittwaldAPIV2 {
31463
31646
  }
31464
31647
  }
31465
31648
  }
31649
+ namespace V2StacksStackIdActionsAddTemplateComponent {
31650
+ namespace Post {
31651
+ namespace Parameters {
31652
+ type Path = {
31653
+ stackId: string;
31654
+ };
31655
+ type RequestBody = MittwaldAPIV2.Components.Schemas.ContainerAddTemplateComponent;
31656
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31657
+ type Query = {};
31658
+ }
31659
+ namespace Responses {
31660
+ namespace $204 {
31661
+ namespace Content {
31662
+ type Empty = unknown;
31663
+ }
31664
+ }
31665
+ namespace $400 {
31666
+ namespace Content {
31667
+ interface ApplicationJson {
31668
+ [k: string]: unknown;
31669
+ }
31670
+ }
31671
+ }
31672
+ namespace $403 {
31673
+ namespace Content {
31674
+ interface ApplicationJson {
31675
+ [k: string]: unknown;
31676
+ }
31677
+ }
31678
+ }
31679
+ namespace $404 {
31680
+ namespace Content {
31681
+ interface ApplicationJson {
31682
+ [k: string]: unknown;
31683
+ }
31684
+ }
31685
+ }
31686
+ namespace $409 {
31687
+ namespace Content {
31688
+ interface ApplicationJson {
31689
+ [k: string]: unknown;
31690
+ }
31691
+ }
31692
+ }
31693
+ namespace $412 {
31694
+ namespace Content {
31695
+ interface ApplicationJson {
31696
+ [k: string]: unknown;
31697
+ }
31698
+ }
31699
+ }
31700
+ namespace $429 {
31701
+ namespace Content {
31702
+ interface ApplicationJson {
31703
+ [k: string]: unknown;
31704
+ }
31705
+ }
31706
+ }
31707
+ namespace $500 {
31708
+ namespace Content {
31709
+ interface ApplicationJson {
31710
+ [k: string]: unknown;
31711
+ }
31712
+ }
31713
+ }
31714
+ namespace Default {
31715
+ namespace Content {
31716
+ interface ApplicationJson {
31717
+ [k: string]: unknown;
31718
+ }
31719
+ }
31720
+ }
31721
+ }
31722
+ }
31723
+ }
31466
31724
  }
31467
31725
  }
@@ -3287,6 +3287,72 @@ export declare class MittwaldAPIV3NextClient 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 MittwaldAPIV3NextClient 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 MittwaldAPIV3NextClient 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 MittwaldAPIV3NextClient 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;