@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.
@@ -524,10 +524,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
524
524
  patchMysqlDatabase: this.requestFunctionFactory(descriptors.databasePatchMysqlDatabase),
525
525
  /** Get a MySQLUser. */
526
526
  getMysqlUser: this.requestFunctionFactory(descriptors.databaseGetMysqlUser),
527
- /** Update a MySQLUser. */
528
- updateMysqlUser: this.requestFunctionFactory(descriptors.databaseUpdateMysqlUser),
529
527
  /** Delete a MySQLUser. */
530
528
  deleteMysqlUser: this.requestFunctionFactory(descriptors.databaseDeleteMysqlUser),
529
+ /** Update a MySQLUser. */
530
+ updateMysqlUser: this.requestFunctionFactory(descriptors.databaseUpdateMysqlUser),
531
531
  /** Get a RedisDatabase. */
532
532
  getRedisDatabase: this.requestFunctionFactory(descriptors.databaseGetRedisDatabase),
533
533
  /** Delete a RedisDatabase. */
@@ -546,16 +546,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
546
546
  listMysqlVersions: this.requestFunctionFactory(descriptors.databaseListMysqlVersions),
547
547
  /** List RedisVersions. */
548
548
  listRedisVersions: this.requestFunctionFactory(descriptors.databaseListRedisVersions),
549
- /** Update a MySQLDatabase's default character settings. */
550
- updateMysqlDatabaseDefaultCharset: this.requestFunctionFactory(descriptors.databaseUpdateMysqlDatabaseDefaultCharset),
551
- /** Update a MySQLDatabase's description. */
552
- updateMysqlDatabaseDescription: this.requestFunctionFactory(descriptors.databaseUpdateMysqlDatabaseDescription),
553
- /** Update a MySQLUser's password. */
554
- updateMysqlUserPassword: this.requestFunctionFactory(descriptors.databaseUpdateMysqlUserPassword),
555
- /** Update a RedisDatabase's configuration. */
556
- updateRedisDatabaseConfiguration: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseConfiguration),
557
- /** Update a RedisDatabase's description. */
558
- updateRedisDatabaseDescription: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseDescription),
559
549
  };
560
550
  /** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
561
551
  domain = {
@@ -1090,18 +1090,18 @@ export const databaseGetMysqlUser = {
1090
1090
  method: "GET",
1091
1091
  operationId: "database-get-mysql-user",
1092
1092
  };
1093
- /** Update a MySQLUser. */
1094
- export const databaseUpdateMysqlUser = {
1095
- path: "/v2/mysql-users/{mysqlUserId}",
1096
- method: "PUT",
1097
- operationId: "database-update-mysql-user",
1098
- };
1099
1093
  /** Delete a MySQLUser. */
1100
1094
  export const databaseDeleteMysqlUser = {
1101
1095
  path: "/v2/mysql-users/{mysqlUserId}",
1102
1096
  method: "DELETE",
1103
1097
  operationId: "database-delete-mysql-user",
1104
1098
  };
1099
+ /** Update a MySQLUser. */
1100
+ export const databaseUpdateMysqlUser = {
1101
+ path: "/v2/mysql-users/{mysqlUserId}",
1102
+ method: "PATCH",
1103
+ operationId: "database-update-mysql-user",
1104
+ };
1105
1105
  /** Get a RedisDatabase. */
1106
1106
  export const databaseGetRedisDatabase = {
1107
1107
  path: "/v2/redis-databases/{redisDatabaseId}",
@@ -1156,36 +1156,6 @@ export const databaseListRedisVersions = {
1156
1156
  method: "GET",
1157
1157
  operationId: "database-list-redis-versions",
1158
1158
  };
1159
- /** Update a MySQLDatabase's default character settings. */
1160
- export const databaseUpdateMysqlDatabaseDefaultCharset = {
1161
- path: "/v2/mysql-databases/{mysqlDatabaseId}/default-charset",
1162
- method: "PATCH",
1163
- operationId: "database-update-mysql-database-default-charset",
1164
- };
1165
- /** Update a MySQLDatabase's description. */
1166
- export const databaseUpdateMysqlDatabaseDescription = {
1167
- path: "/v2/mysql-databases/{mysqlDatabaseId}/description",
1168
- method: "PATCH",
1169
- operationId: "database-update-mysql-database-description",
1170
- };
1171
- /** Update a MySQLUser's password. */
1172
- export const databaseUpdateMysqlUserPassword = {
1173
- path: "/v2/mysql-users/{mysqlUserId}/password",
1174
- method: "PATCH",
1175
- operationId: "database-update-mysql-user-password",
1176
- };
1177
- /** Update a RedisDatabase's configuration. */
1178
- export const databaseUpdateRedisDatabaseConfiguration = {
1179
- path: "/v2/redis-databases/{redisDatabaseId}/configuration",
1180
- method: "PATCH",
1181
- operationId: "database-update-redis-database-configuration",
1182
- };
1183
- /** Update a RedisDatabase's description. */
1184
- export const databaseUpdateRedisDatabaseDescription = {
1185
- path: "/v2/redis-databases/{redisDatabaseId}/description",
1186
- method: "PATCH",
1187
- operationId: "database-update-redis-database-description",
1188
- };
1189
1159
  /** List Domains */
1190
1160
  export const domainListDomains = {
1191
1161
  path: "/v2/domains",
@@ -524,10 +524,10 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
524
524
  patchMysqlDatabase: this.requestFunctionFactory(descriptors.databasePatchMysqlDatabase),
525
525
  /** Get a MySQLUser. */
526
526
  getMysqlUser: this.requestFunctionFactory(descriptors.databaseGetMysqlUser),
527
- /** Update a MySQLUser. */
528
- updateMysqlUser: this.requestFunctionFactory(descriptors.databaseUpdateMysqlUser),
529
527
  /** Delete a MySQLUser. */
530
528
  deleteMysqlUser: this.requestFunctionFactory(descriptors.databaseDeleteMysqlUser),
529
+ /** Update a MySQLUser. */
530
+ updateMysqlUser: this.requestFunctionFactory(descriptors.databaseUpdateMysqlUser),
531
531
  /** Get a RedisDatabase. */
532
532
  getRedisDatabase: this.requestFunctionFactory(descriptors.databaseGetRedisDatabase),
533
533
  /** Delete a RedisDatabase. */
@@ -546,16 +546,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
546
546
  listMysqlVersions: this.requestFunctionFactory(descriptors.databaseListMysqlVersions),
547
547
  /** List RedisVersions. */
548
548
  listRedisVersions: this.requestFunctionFactory(descriptors.databaseListRedisVersions),
549
- /** Update a MySQLDatabase's default character settings. */
550
- updateMysqlDatabaseDefaultCharset: this.requestFunctionFactory(descriptors.databaseUpdateMysqlDatabaseDefaultCharset),
551
- /** Update a MySQLDatabase's description. */
552
- updateMysqlDatabaseDescription: this.requestFunctionFactory(descriptors.databaseUpdateMysqlDatabaseDescription),
553
- /** Update a MySQLUser's password. */
554
- updateMysqlUserPassword: this.requestFunctionFactory(descriptors.databaseUpdateMysqlUserPassword),
555
- /** Update a RedisDatabase's configuration. */
556
- updateRedisDatabaseConfiguration: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseConfiguration),
557
- /** Update a RedisDatabase's description. */
558
- updateRedisDatabaseDescription: this.requestFunctionFactory(descriptors.databaseUpdateRedisDatabaseDescription),
559
549
  };
560
550
  /** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
561
551
  domain = {
@@ -1090,18 +1090,18 @@ export const databaseGetMysqlUser = {
1090
1090
  method: "GET",
1091
1091
  operationId: "database-get-mysql-user",
1092
1092
  };
1093
- /** Update a MySQLUser. */
1094
- export const databaseUpdateMysqlUser = {
1095
- path: "/v3-next/mysql-users/{mysqlUserId}",
1096
- method: "PUT",
1097
- operationId: "database-update-mysql-user",
1098
- };
1099
1093
  /** Delete a MySQLUser. */
1100
1094
  export const databaseDeleteMysqlUser = {
1101
1095
  path: "/v3-next/mysql-users/{mysqlUserId}",
1102
1096
  method: "DELETE",
1103
1097
  operationId: "database-delete-mysql-user",
1104
1098
  };
1099
+ /** Update a MySQLUser. */
1100
+ export const databaseUpdateMysqlUser = {
1101
+ path: "/v3-next/mysql-users/{mysqlUserId}",
1102
+ method: "PATCH",
1103
+ operationId: "database-update-mysql-user",
1104
+ };
1105
1105
  /** Get a RedisDatabase. */
1106
1106
  export const databaseGetRedisDatabase = {
1107
1107
  path: "/v3-next/redis-databases/{redisDatabaseId}",
@@ -1156,36 +1156,6 @@ export const databaseListRedisVersions = {
1156
1156
  method: "GET",
1157
1157
  operationId: "database-list-redis-versions",
1158
1158
  };
1159
- /** Update a MySQLDatabase's default character settings. */
1160
- export const databaseUpdateMysqlDatabaseDefaultCharset = {
1161
- path: "/v3-next/mysql-databases/{mysqlDatabaseId}/default-charset",
1162
- method: "PATCH",
1163
- operationId: "database-update-mysql-database-default-charset",
1164
- };
1165
- /** Update a MySQLDatabase's description. */
1166
- export const databaseUpdateMysqlDatabaseDescription = {
1167
- path: "/v3-next/mysql-databases/{mysqlDatabaseId}/description",
1168
- method: "PATCH",
1169
- operationId: "database-update-mysql-database-description",
1170
- };
1171
- /** Update a MySQLUser's password. */
1172
- export const databaseUpdateMysqlUserPassword = {
1173
- path: "/v3-next/mysql-users/{mysqlUserId}/password",
1174
- method: "PATCH",
1175
- operationId: "database-update-mysql-user-password",
1176
- };
1177
- /** Update a RedisDatabase's configuration. */
1178
- export const databaseUpdateRedisDatabaseConfiguration = {
1179
- path: "/v3-next/redis-databases/{redisDatabaseId}/configuration",
1180
- method: "PATCH",
1181
- operationId: "database-update-redis-database-configuration",
1182
- };
1183
- /** Update a RedisDatabase's description. */
1184
- export const databaseUpdateRedisDatabaseDescription = {
1185
- path: "/v3-next/redis-databases/{redisDatabaseId}/description",
1186
- method: "PATCH",
1187
- operationId: "database-update-redis-database-description",
1188
- };
1189
1159
  /** List Domains */
1190
1160
  export const domainListDomains = {
1191
1161
  path: "/v3-next/domains",
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.417.0';
1
+ export const MittwaldAPIClientVersion = '4.419.0';
@@ -16819,34 +16819,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16819
16819
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
16820
16820
  [x: string]: unknown;
16821
16821
  }, 429, "application/json">>>;
16822
- /** Update a MySQLUser. */
16823
- updateMysqlUser: (request: {
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
- data: {
16837
- accessIpMask?: string | undefined;
16838
- accessLevel: "full" | "readonly";
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 MittwaldAPIV2Client 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
- data: {
16864
- accessIpMask?: string | undefined;
16865
- accessLevel: "full" | "readonly";
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 MittwaldAPIV2Client extends ApiClientBase {
16887
16867
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
16888
16868
  [x: string]: unknown;
16889
16869
  }, 429, "application/json">>>;
16890
- /** Delete a MySQLUser. */
16891
- deleteMysqlUser: (request: {
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
- headers?: Partial<{
16899
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
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 MittwaldAPIV2Client 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
- headers?: Partial<{
16919
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
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 MittwaldAPIV2Client 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").MittwaldAPIV2.Components.Schemas.DatabaseCharacterSettings;
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").MittwaldAPIV2.Components.Schemas.DatabaseCharacterSettings;
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").MittwaldAPIV2.Components.Schemas.DatabaseRedisDatabaseConfiguration | 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").MittwaldAPIV2.Components.Schemas.DatabaseRedisDatabaseConfiguration | 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: {