@mittwald/api-client 4.418.0 → 4.420.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.js +2 -12
- package/dist/esm/generated/v2/descriptors.js +6 -36
- package/dist/esm/generated/v3-next/client.js +2 -12
- package/dist/esm/generated/v3-next/descriptors.js +6 -36
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client.d.ts +39 -339
- package/dist/types/generated/v2/descriptors.d.ts +2 -12
- package/dist/types/generated/v2/types.d.ts +13 -277
- package/dist/types/generated/v3-next/client.d.ts +39 -339
- package/dist/types/generated/v3-next/descriptors.d.ts +2 -12
- package/dist/types/generated/v3-next/types.d.ts +13 -277
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -16819,34 +16819,21 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
16819
16819
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16820
16820
|
[x: string]: unknown;
|
|
16821
16821
|
}, 429, "application/json">>>;
|
|
16822
|
-
/**
|
|
16823
|
-
|
|
16824
|
-
data: {
|
|
16825
|
-
accessLevel: "full" | "readonly";
|
|
16826
|
-
description: string;
|
|
16827
|
-
accessIpMask?: string | undefined;
|
|
16828
|
-
externalAccess?: boolean | undefined;
|
|
16829
|
-
};
|
|
16822
|
+
/** Delete a MySQLUser. */
|
|
16823
|
+
deleteMysqlUser: (request: {
|
|
16830
16824
|
mysqlUserId: string;
|
|
16831
16825
|
headers?: {
|
|
16832
16826
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16833
16827
|
"x-access-token"?: string | undefined;
|
|
16834
16828
|
} | undefined;
|
|
16835
16829
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16836
|
-
|
|
16837
|
-
|
|
16838
|
-
|
|
16839
|
-
description: string;
|
|
16840
|
-
externalAccess?: boolean | undefined;
|
|
16841
|
-
};
|
|
16830
|
+
headers?: Partial<{
|
|
16831
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16832
|
+
}>;
|
|
16842
16833
|
} & {
|
|
16843
16834
|
pathParameters: {
|
|
16844
16835
|
mysqlUserId: string;
|
|
16845
16836
|
};
|
|
16846
|
-
} & {
|
|
16847
|
-
headers?: Partial<{
|
|
16848
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16849
|
-
}>;
|
|
16850
16837
|
} & {
|
|
16851
16838
|
headers: {
|
|
16852
16839
|
"x-access-token"?: string | undefined;
|
|
@@ -16860,20 +16847,13 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
16860
16847
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16861
16848
|
[x: string]: unknown;
|
|
16862
16849
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16863
|
-
|
|
16864
|
-
|
|
16865
|
-
|
|
16866
|
-
description: string;
|
|
16867
|
-
externalAccess?: boolean | undefined;
|
|
16868
|
-
};
|
|
16850
|
+
headers?: Partial<{
|
|
16851
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16852
|
+
}>;
|
|
16869
16853
|
} & {
|
|
16870
16854
|
pathParameters: {
|
|
16871
16855
|
mysqlUserId: string;
|
|
16872
16856
|
};
|
|
16873
|
-
} & {
|
|
16874
|
-
headers?: Partial<{
|
|
16875
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16876
|
-
}>;
|
|
16877
16857
|
} & {
|
|
16878
16858
|
headers: {
|
|
16879
16859
|
"x-access-token"?: string | undefined;
|
|
@@ -16887,21 +16867,36 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
16887
16867
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16888
16868
|
[x: string]: unknown;
|
|
16889
16869
|
}, 429, "application/json">>>;
|
|
16890
|
-
/**
|
|
16891
|
-
|
|
16870
|
+
/** Update a MySQLUser. */
|
|
16871
|
+
updateMysqlUser: (request: {
|
|
16892
16872
|
mysqlUserId: string;
|
|
16873
|
+
data?: {
|
|
16874
|
+
accessIpMask?: string | undefined;
|
|
16875
|
+
accessLevel?: "full" | "readonly" | undefined;
|
|
16876
|
+
description?: string | undefined;
|
|
16877
|
+
externalAccess?: boolean | undefined;
|
|
16878
|
+
password?: string | undefined;
|
|
16879
|
+
} | undefined;
|
|
16893
16880
|
headers?: {
|
|
16894
16881
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16895
16882
|
"x-access-token"?: string | undefined;
|
|
16896
16883
|
} | undefined;
|
|
16897
16884
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16898
|
-
|
|
16899
|
-
|
|
16900
|
-
|
|
16885
|
+
data: {
|
|
16886
|
+
accessIpMask?: string | undefined;
|
|
16887
|
+
accessLevel?: "full" | "readonly" | undefined;
|
|
16888
|
+
description?: string | undefined;
|
|
16889
|
+
externalAccess?: boolean | undefined;
|
|
16890
|
+
password?: string | undefined;
|
|
16891
|
+
};
|
|
16901
16892
|
} & {
|
|
16902
16893
|
pathParameters: {
|
|
16903
16894
|
mysqlUserId: string;
|
|
16904
16895
|
};
|
|
16896
|
+
} & {
|
|
16897
|
+
headers?: Partial<{
|
|
16898
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16899
|
+
}>;
|
|
16905
16900
|
} & {
|
|
16906
16901
|
headers: {
|
|
16907
16902
|
"x-access-token"?: string | undefined;
|
|
@@ -16915,13 +16910,21 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
16915
16910
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16916
16911
|
[x: string]: unknown;
|
|
16917
16912
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16918
|
-
|
|
16919
|
-
|
|
16920
|
-
|
|
16913
|
+
data: {
|
|
16914
|
+
accessIpMask?: string | undefined;
|
|
16915
|
+
accessLevel?: "full" | "readonly" | undefined;
|
|
16916
|
+
description?: string | undefined;
|
|
16917
|
+
externalAccess?: boolean | undefined;
|
|
16918
|
+
password?: string | undefined;
|
|
16919
|
+
};
|
|
16921
16920
|
} & {
|
|
16922
16921
|
pathParameters: {
|
|
16923
16922
|
mysqlUserId: string;
|
|
16924
16923
|
};
|
|
16924
|
+
} & {
|
|
16925
|
+
headers?: Partial<{
|
|
16926
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16927
|
+
}>;
|
|
16925
16928
|
} & {
|
|
16926
16929
|
headers: {
|
|
16927
16930
|
"x-access-token"?: string | undefined;
|
|
@@ -17445,309 +17448,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
17445
17448
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17446
17449
|
[x: string]: unknown;
|
|
17447
17450
|
}, 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
|
-
/** Update a MySQLUser's password. */
|
|
17570
|
-
updateMysqlUserPassword: (request: {
|
|
17571
|
-
data: {
|
|
17572
|
-
password: string;
|
|
17573
|
-
};
|
|
17574
|
-
mysqlUserId: string;
|
|
17575
|
-
headers?: {
|
|
17576
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
17577
|
-
"x-access-token"?: string | undefined;
|
|
17578
|
-
} | undefined;
|
|
17579
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17580
|
-
data: {
|
|
17581
|
-
password: string;
|
|
17582
|
-
};
|
|
17583
|
-
} & {
|
|
17584
|
-
pathParameters: {
|
|
17585
|
-
mysqlUserId: string;
|
|
17586
|
-
};
|
|
17587
|
-
} & {
|
|
17588
|
-
headers?: Partial<{
|
|
17589
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17590
|
-
}>;
|
|
17591
|
-
} & {
|
|
17592
|
-
headers: {
|
|
17593
|
-
"x-access-token"?: string | undefined;
|
|
17594
|
-
} & Partial<{
|
|
17595
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17596
|
-
}>;
|
|
17597
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17598
|
-
[x: string]: unknown;
|
|
17599
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17600
|
-
[x: string]: unknown;
|
|
17601
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17602
|
-
[x: string]: unknown;
|
|
17603
|
-
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
17604
|
-
data: {
|
|
17605
|
-
password: string;
|
|
17606
|
-
};
|
|
17607
|
-
} & {
|
|
17608
|
-
pathParameters: {
|
|
17609
|
-
mysqlUserId: string;
|
|
17610
|
-
};
|
|
17611
|
-
} & {
|
|
17612
|
-
headers?: Partial<{
|
|
17613
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17614
|
-
}>;
|
|
17615
|
-
} & {
|
|
17616
|
-
headers: {
|
|
17617
|
-
"x-access-token"?: string | undefined;
|
|
17618
|
-
} & Partial<{
|
|
17619
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
17620
|
-
}>;
|
|
17621
|
-
}, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
|
|
17622
|
-
[x: string]: unknown;
|
|
17623
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17624
|
-
[x: string]: unknown;
|
|
17625
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
17626
|
-
[x: string]: unknown;
|
|
17627
|
-
}, 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
17451
|
};
|
|
17752
17452
|
/** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
|
|
17753
17453
|
readonly domain: {
|
|
@@ -367,10 +367,10 @@ export declare const databaseDeleteMysqlDatabase: OpenAPIOperation<RequestType<S
|
|
|
367
367
|
export declare const databasePatchMysqlDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextMysqlDatabasesMysqlDatabaseId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
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
|
-
/** Update a MySQLUser. */
|
|
371
|
-
export declare const databaseUpdateMysqlUser: 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
370
|
/** Delete a MySQLUser. */
|
|
373
371
|
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">>;
|
|
372
|
+
/** Update a MySQLUser. */
|
|
373
|
+
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
374
|
/** Get a RedisDatabase. */
|
|
375
375
|
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
376
|
/** Delete a RedisDatabase. */
|
|
@@ -389,16 +389,6 @@ export declare const databaseListMysqlCharsets: OpenAPIOperation<RequestType<Sim
|
|
|
389
389
|
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
390
|
/** List RedisVersions. */
|
|
391
391
|
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
|
-
/** Update a MySQLUser's password. */
|
|
397
|
-
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
392
|
/** List Domains */
|
|
403
393
|
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
394
|
/** Update the nameservers of a Domain. */
|