@mittwald/api-client 4.417.0 → 4.419.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 +6 -6
- package/dist/esm/generated/v2/client.js +11 -17
- package/dist/esm/generated/v2/descriptors.js +32 -50
- package/dist/esm/generated/v3-next/client.js +3 -9
- package/dist/esm/generated/v3-next/descriptors.js +8 -26
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +26 -26
- package/dist/types/generated/v2/client.d.ts +281 -454
- package/dist/types/generated/v2/descriptors.d.ts +11 -17
- package/dist/types/generated/v2/types.d.ts +408 -565
- package/dist/types/generated/v3-next/client.d.ts +72 -245
- package/dist/types/generated/v3-next/descriptors.d.ts +3 -9
- package/dist/types/generated/v3-next/types.d.ts +58 -215
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -16820,7 +16820,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
16820
16820
|
[x: string]: unknown;
|
|
16821
16821
|
}, 429, "application/json">>>;
|
|
16822
16822
|
/** Update a MySQLUser. */
|
|
16823
|
-
|
|
16823
|
+
replaceMysqlUser: (request: {
|
|
16824
16824
|
data: {
|
|
16825
16825
|
accessLevel: "full" | "readonly";
|
|
16826
16826
|
description: string;
|
|
@@ -16935,6 +16935,77 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
16935
16935
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16936
16936
|
[x: string]: unknown;
|
|
16937
16937
|
}, 429, "application/json">>>;
|
|
16938
|
+
/** Update a MySQLUser. */
|
|
16939
|
+
updateMysqlUser: (request: {
|
|
16940
|
+
mysqlUserId: string;
|
|
16941
|
+
data?: {
|
|
16942
|
+
accessIpMask?: string | undefined;
|
|
16943
|
+
accessLevel?: "full" | "readonly" | undefined;
|
|
16944
|
+
description?: string | undefined;
|
|
16945
|
+
externalAccess?: boolean | undefined;
|
|
16946
|
+
password?: string | undefined;
|
|
16947
|
+
} | undefined;
|
|
16948
|
+
headers?: {
|
|
16949
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16950
|
+
"x-access-token"?: string | undefined;
|
|
16951
|
+
} | undefined;
|
|
16952
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16953
|
+
data: {
|
|
16954
|
+
accessIpMask?: string | undefined;
|
|
16955
|
+
accessLevel?: "full" | "readonly" | undefined;
|
|
16956
|
+
description?: string | undefined;
|
|
16957
|
+
externalAccess?: boolean | undefined;
|
|
16958
|
+
password?: string | undefined;
|
|
16959
|
+
};
|
|
16960
|
+
} & {
|
|
16961
|
+
pathParameters: {
|
|
16962
|
+
mysqlUserId: string;
|
|
16963
|
+
};
|
|
16964
|
+
} & {
|
|
16965
|
+
headers?: Partial<{
|
|
16966
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16967
|
+
}>;
|
|
16968
|
+
} & {
|
|
16969
|
+
headers: {
|
|
16970
|
+
"x-access-token"?: string | undefined;
|
|
16971
|
+
} & Partial<{
|
|
16972
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16973
|
+
}>;
|
|
16974
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
16975
|
+
[x: string]: unknown;
|
|
16976
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16977
|
+
[x: string]: unknown;
|
|
16978
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16979
|
+
[x: string]: unknown;
|
|
16980
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16981
|
+
data: {
|
|
16982
|
+
accessIpMask?: string | undefined;
|
|
16983
|
+
accessLevel?: "full" | "readonly" | undefined;
|
|
16984
|
+
description?: string | undefined;
|
|
16985
|
+
externalAccess?: boolean | undefined;
|
|
16986
|
+
password?: string | undefined;
|
|
16987
|
+
};
|
|
16988
|
+
} & {
|
|
16989
|
+
pathParameters: {
|
|
16990
|
+
mysqlUserId: string;
|
|
16991
|
+
};
|
|
16992
|
+
} & {
|
|
16993
|
+
headers?: Partial<{
|
|
16994
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16995
|
+
}>;
|
|
16996
|
+
} & {
|
|
16997
|
+
headers: {
|
|
16998
|
+
"x-access-token"?: string | undefined;
|
|
16999
|
+
} & Partial<{
|
|
17000
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17001
|
+
}>;
|
|
17002
|
+
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17003
|
+
[x: string]: unknown;
|
|
17004
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17005
|
+
[x: string]: unknown;
|
|
17006
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17007
|
+
[x: string]: unknown;
|
|
17008
|
+
}, 429, "application/json">>>;
|
|
16938
17009
|
/** Get a RedisDatabase. */
|
|
16939
17010
|
getRedisDatabase: (request: {
|
|
16940
17011
|
redisDatabaseId: string;
|
|
@@ -17445,127 +17516,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
17445
17516
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17446
17517
|
[x: string]: unknown;
|
|
17447
17518
|
}, 429, "application/json">>>;
|
|
17448
|
-
/** Update a MySQLDatabase's default character settings. */
|
|
17449
|
-
updateMysqlDatabaseDefaultCharset: (request: {
|
|
17450
|
-
data: {
|
|
17451
|
-
characterSettings: {
|
|
17452
|
-
characterSet: string;
|
|
17453
|
-
collation: string;
|
|
17454
|
-
};
|
|
17455
|
-
};
|
|
17456
|
-
mysqlDatabaseId: string;
|
|
17457
|
-
headers?: {
|
|
17458
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17459
|
-
"x-access-token"?: string | undefined;
|
|
17460
|
-
} | undefined;
|
|
17461
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17462
|
-
data: {
|
|
17463
|
-
characterSettings: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldDatabaseCharacterSettings;
|
|
17464
|
-
};
|
|
17465
|
-
} & {
|
|
17466
|
-
pathParameters: {
|
|
17467
|
-
mysqlDatabaseId: string;
|
|
17468
|
-
};
|
|
17469
|
-
} & {
|
|
17470
|
-
headers?: Partial<{
|
|
17471
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17472
|
-
}>;
|
|
17473
|
-
} & {
|
|
17474
|
-
headers: {
|
|
17475
|
-
"x-access-token"?: string | undefined;
|
|
17476
|
-
} & Partial<{
|
|
17477
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17478
|
-
}>;
|
|
17479
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17480
|
-
[x: string]: unknown;
|
|
17481
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17482
|
-
[x: string]: unknown;
|
|
17483
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17484
|
-
[x: string]: unknown;
|
|
17485
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17486
|
-
data: {
|
|
17487
|
-
characterSettings: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldDatabaseCharacterSettings;
|
|
17488
|
-
};
|
|
17489
|
-
} & {
|
|
17490
|
-
pathParameters: {
|
|
17491
|
-
mysqlDatabaseId: string;
|
|
17492
|
-
};
|
|
17493
|
-
} & {
|
|
17494
|
-
headers?: Partial<{
|
|
17495
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17496
|
-
}>;
|
|
17497
|
-
} & {
|
|
17498
|
-
headers: {
|
|
17499
|
-
"x-access-token"?: string | undefined;
|
|
17500
|
-
} & Partial<{
|
|
17501
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17502
|
-
}>;
|
|
17503
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17504
|
-
[x: string]: unknown;
|
|
17505
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17506
|
-
[x: string]: unknown;
|
|
17507
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17508
|
-
[x: string]: unknown;
|
|
17509
|
-
}, 429, "application/json">>>;
|
|
17510
|
-
/** Update a MySQLDatabase's description. */
|
|
17511
|
-
updateMysqlDatabaseDescription: (request: {
|
|
17512
|
-
data: {
|
|
17513
|
-
description: string;
|
|
17514
|
-
};
|
|
17515
|
-
mysqlDatabaseId: string;
|
|
17516
|
-
headers?: {
|
|
17517
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17518
|
-
"x-access-token"?: string | undefined;
|
|
17519
|
-
} | undefined;
|
|
17520
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17521
|
-
data: {
|
|
17522
|
-
description: string;
|
|
17523
|
-
};
|
|
17524
|
-
} & {
|
|
17525
|
-
pathParameters: {
|
|
17526
|
-
mysqlDatabaseId: string;
|
|
17527
|
-
};
|
|
17528
|
-
} & {
|
|
17529
|
-
headers?: Partial<{
|
|
17530
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17531
|
-
}>;
|
|
17532
|
-
} & {
|
|
17533
|
-
headers: {
|
|
17534
|
-
"x-access-token"?: string | undefined;
|
|
17535
|
-
} & Partial<{
|
|
17536
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17537
|
-
}>;
|
|
17538
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17539
|
-
[x: string]: unknown;
|
|
17540
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17541
|
-
[x: string]: unknown;
|
|
17542
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17543
|
-
[x: string]: unknown;
|
|
17544
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17545
|
-
data: {
|
|
17546
|
-
description: string;
|
|
17547
|
-
};
|
|
17548
|
-
} & {
|
|
17549
|
-
pathParameters: {
|
|
17550
|
-
mysqlDatabaseId: string;
|
|
17551
|
-
};
|
|
17552
|
-
} & {
|
|
17553
|
-
headers?: Partial<{
|
|
17554
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17555
|
-
}>;
|
|
17556
|
-
} & {
|
|
17557
|
-
headers: {
|
|
17558
|
-
"x-access-token"?: string | undefined;
|
|
17559
|
-
} & Partial<{
|
|
17560
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17561
|
-
}>;
|
|
17562
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17563
|
-
[x: string]: unknown;
|
|
17564
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17565
|
-
[x: string]: unknown;
|
|
17566
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17567
|
-
[x: string]: unknown;
|
|
17568
|
-
}, 429, "application/json">>>;
|
|
17569
17519
|
/** Update a MySQLUser's password. */
|
|
17570
17520
|
updateMysqlUserPassword: (request: {
|
|
17571
17521
|
data: {
|
|
@@ -17625,129 +17575,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
17625
17575
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17626
17576
|
[x: string]: unknown;
|
|
17627
17577
|
}, 429, "application/json">>>;
|
|
17628
|
-
/** Update a RedisDatabase's configuration. */
|
|
17629
|
-
updateRedisDatabaseConfiguration: (request: {
|
|
17630
|
-
redisDatabaseId: string;
|
|
17631
|
-
data?: {
|
|
17632
|
-
configuration?: {
|
|
17633
|
-
additionalFlags?: string[] | undefined;
|
|
17634
|
-
maxMemory?: string | undefined;
|
|
17635
|
-
maxMemoryPolicy?: string | undefined;
|
|
17636
|
-
persistent?: boolean | undefined;
|
|
17637
|
-
} | undefined;
|
|
17638
|
-
} | undefined;
|
|
17639
|
-
headers?: {
|
|
17640
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17641
|
-
"x-access-token"?: string | undefined;
|
|
17642
|
-
} | undefined;
|
|
17643
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17644
|
-
data: {
|
|
17645
|
-
configuration?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldDatabaseRedisDatabaseConfiguration | undefined;
|
|
17646
|
-
};
|
|
17647
|
-
} & {
|
|
17648
|
-
pathParameters: {
|
|
17649
|
-
redisDatabaseId: string;
|
|
17650
|
-
};
|
|
17651
|
-
} & {
|
|
17652
|
-
headers?: Partial<{
|
|
17653
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17654
|
-
}>;
|
|
17655
|
-
} & {
|
|
17656
|
-
headers: {
|
|
17657
|
-
"x-access-token"?: string | undefined;
|
|
17658
|
-
} & Partial<{
|
|
17659
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17660
|
-
}>;
|
|
17661
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17662
|
-
[x: string]: unknown;
|
|
17663
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17664
|
-
[x: string]: unknown;
|
|
17665
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17666
|
-
[x: string]: unknown;
|
|
17667
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17668
|
-
data: {
|
|
17669
|
-
configuration?: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldDatabaseRedisDatabaseConfiguration | undefined;
|
|
17670
|
-
};
|
|
17671
|
-
} & {
|
|
17672
|
-
pathParameters: {
|
|
17673
|
-
redisDatabaseId: string;
|
|
17674
|
-
};
|
|
17675
|
-
} & {
|
|
17676
|
-
headers?: Partial<{
|
|
17677
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17678
|
-
}>;
|
|
17679
|
-
} & {
|
|
17680
|
-
headers: {
|
|
17681
|
-
"x-access-token"?: string | undefined;
|
|
17682
|
-
} & Partial<{
|
|
17683
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17684
|
-
}>;
|
|
17685
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17686
|
-
[x: string]: unknown;
|
|
17687
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17688
|
-
[x: string]: unknown;
|
|
17689
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17690
|
-
[x: string]: unknown;
|
|
17691
|
-
}, 429, "application/json">>>;
|
|
17692
|
-
/** Update a RedisDatabase's description. */
|
|
17693
|
-
updateRedisDatabaseDescription: (request: {
|
|
17694
|
-
data: {
|
|
17695
|
-
description: string;
|
|
17696
|
-
};
|
|
17697
|
-
redisDatabaseId: string;
|
|
17698
|
-
headers?: {
|
|
17699
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17700
|
-
"x-access-token"?: string | undefined;
|
|
17701
|
-
} | undefined;
|
|
17702
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17703
|
-
data: {
|
|
17704
|
-
description: string;
|
|
17705
|
-
};
|
|
17706
|
-
} & {
|
|
17707
|
-
pathParameters: {
|
|
17708
|
-
redisDatabaseId: string;
|
|
17709
|
-
};
|
|
17710
|
-
} & {
|
|
17711
|
-
headers?: Partial<{
|
|
17712
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17713
|
-
}>;
|
|
17714
|
-
} & {
|
|
17715
|
-
headers: {
|
|
17716
|
-
"x-access-token"?: string | undefined;
|
|
17717
|
-
} & Partial<{
|
|
17718
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17719
|
-
}>;
|
|
17720
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17721
|
-
[x: string]: unknown;
|
|
17722
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17723
|
-
[x: string]: unknown;
|
|
17724
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17725
|
-
[x: string]: unknown;
|
|
17726
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17727
|
-
data: {
|
|
17728
|
-
description: string;
|
|
17729
|
-
};
|
|
17730
|
-
} & {
|
|
17731
|
-
pathParameters: {
|
|
17732
|
-
redisDatabaseId: string;
|
|
17733
|
-
};
|
|
17734
|
-
} & {
|
|
17735
|
-
headers?: Partial<{
|
|
17736
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17737
|
-
}>;
|
|
17738
|
-
} & {
|
|
17739
|
-
headers: {
|
|
17740
|
-
"x-access-token"?: string | undefined;
|
|
17741
|
-
} & Partial<{
|
|
17742
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17743
|
-
}>;
|
|
17744
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17745
|
-
[x: string]: unknown;
|
|
17746
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17747
|
-
[x: string]: unknown;
|
|
17748
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17749
|
-
[x: string]: unknown;
|
|
17750
|
-
}, 429, "application/json">>>;
|
|
17751
17578
|
};
|
|
17752
17579
|
/** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
|
|
17753
17580
|
readonly domain: {
|
|
@@ -368,9 +368,11 @@ export declare const databasePatchMysqlDatabase: OpenAPIOperation<RequestType<Si
|
|
|
368
368
|
/** Get a MySQLUser. */
|
|
369
369
|
export declare const databaseGetMysqlUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
370
370
|
/** Update a MySQLUser. */
|
|
371
|
-
export declare const
|
|
371
|
+
export declare const databaseReplaceMysqlUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
372
372
|
/** Delete a MySQLUser. */
|
|
373
373
|
export declare const databaseDeleteMysqlUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
374
|
+
/** Update a MySQLUser. */
|
|
375
|
+
export declare const databaseUpdateMysqlUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
374
376
|
/** Get a RedisDatabase. */
|
|
375
377
|
export declare const databaseGetRedisDatabase: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
376
378
|
/** Delete a RedisDatabase. */
|
|
@@ -389,16 +391,8 @@ export declare const databaseListMysqlCharsets: OpenAPIOperation<RequestType<Sim
|
|
|
389
391
|
export declare const databaseListMysqlVersions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
390
392
|
/** List RedisVersions. */
|
|
391
393
|
export declare const databaseListRedisVersions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
392
|
-
/** Update a MySQLDatabase's default character settings. */
|
|
393
|
-
export declare const databaseUpdateMysqlDatabaseDefaultCharset: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDefaultCharset.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
394
|
-
/** Update a MySQLDatabase's description. */
|
|
395
|
-
export declare const databaseUpdateMysqlDatabaseDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
396
394
|
/** Update a MySQLUser's password. */
|
|
397
395
|
export declare const databaseUpdateMysqlUserPassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlUsersMysqlUserIdPassword.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
398
|
-
/** Update a RedisDatabase's configuration. */
|
|
399
|
-
export declare const databaseUpdateRedisDatabaseConfiguration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdConfiguration.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
400
|
-
/** Update a RedisDatabase's description. */
|
|
401
|
-
export declare const databaseUpdateRedisDatabaseDescription: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextRedisDatabasesRedisDatabaseIdDescription.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
402
396
|
/** List Domains */
|
|
403
397
|
export declare const domainListDomains: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextDomains.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextDomains.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextDomains.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextDomains.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextDomains.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextDomains.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextDomains.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
404
398
|
/** Update the nameservers of a Domain. */
|