@mittwald/api-client 2.0.19 → 2.0.21

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.
@@ -4148,7 +4148,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4148
4148
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4149
4149
  [x: string]: unknown;
4150
4150
  }, 404, "application/json">>>;
4151
- /** List RedisDatabases belonging to a project. */
4151
+ /** List RedisDatabases belonging to a Project. */
4152
4152
  listRedisDatabases: (request: {
4153
4153
  pathParameters: {
4154
4154
  projectId: string;
@@ -4613,7 +4613,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4613
4613
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4614
4614
  [x: string]: unknown;
4615
4615
  }, 404, "application/json">>>;
4616
- /** List available MySQLVersions. */
4616
+ /** List MySQLVersions. */
4617
4617
  listMysqlVersions: (request?: {
4618
4618
  headers?: {
4619
4619
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -4644,7 +4644,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4644
4644
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4645
4645
  [x: string]: unknown;
4646
4646
  }, 404, "application/json">>>;
4647
- /** List available Redis versions. */
4647
+ /** List RedisVersions. */
4648
4648
  listRedisVersions: (request?: {
4649
4649
  headers?: {
4650
4650
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5076,6 +5076,59 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5076
5076
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5077
5077
  [x: string]: unknown;
5078
5078
  }, 400, "application/json">>>;
5079
+ /** updates srv-records for a specific zone */
5080
+ dnsRecordSrvSet: (request: {
5081
+ pathParameters: {
5082
+ zoneId: string;
5083
+ };
5084
+ headers?: {
5085
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5086
+ "x-access-token"?: string | undefined;
5087
+ } | undefined;
5088
+ } | {
5089
+ data: {
5090
+ records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
5091
+ settings: {
5092
+ ttl?: {
5093
+ seconds: number;
5094
+ } | {
5095
+ auto: boolean;
5096
+ } | undefined;
5097
+ };
5098
+ };
5099
+ pathParameters: {
5100
+ zoneId: string;
5101
+ };
5102
+ headers?: {
5103
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5104
+ "x-access-token"?: string | undefined;
5105
+ } | undefined;
5106
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
5107
+ headers?: Partial<{
5108
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5109
+ }> | undefined;
5110
+ } | {
5111
+ data: {
5112
+ records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
5113
+ settings: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
5114
+ };
5115
+ }) & {
5116
+ pathParameters: {
5117
+ zoneId: string;
5118
+ };
5119
+ } & {
5120
+ headers?: Partial<{
5121
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5122
+ }> | undefined;
5123
+ } & {
5124
+ headers: {
5125
+ "x-access-token"?: string | undefined;
5126
+ } & Partial<{
5127
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5128
+ }>;
5129
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5130
+ [x: string]: unknown;
5131
+ }, 400, "application/json">>>;
5079
5132
  /** updates txt-records for a specific zone */
5080
5133
  dnsRecordTxtSet: (request: {
5081
5134
  pathParameters: {
@@ -5129,6 +5182,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5129
5182
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5130
5183
  [x: string]: unknown;
5131
5184
  }, 400, "application/json">>>;
5185
+ /** creates a sub zone for a given dns zone */
5186
+ dnsSubZoneCreate: (request: {
5187
+ data: {
5188
+ name: string;
5189
+ parentZoneId: string;
5190
+ };
5191
+ headers?: {
5192
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5193
+ "x-access-token"?: string | undefined;
5194
+ } | undefined;
5195
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5196
+ data: {
5197
+ name: string;
5198
+ parentZoneId: string;
5199
+ };
5200
+ } & {
5201
+ headers?: Partial<{
5202
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5203
+ }> | undefined;
5204
+ } & {
5205
+ headers: {
5206
+ "x-access-token"?: string | undefined;
5207
+ } & Partial<{
5208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5209
+ }>;
5210
+ }, import("@mittwald/api-client-commons").Response<{
5211
+ id: string;
5212
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
5213
+ [x: string]: unknown;
5214
+ }, 400, "application/json">>>;
5132
5215
  /** gets a specific zone */
5133
5216
  dnsZoneGetSpecific: (request: {
5134
5217
  pathParameters: {
@@ -5159,6 +5242,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5159
5242
  cname: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCNAME;
5160
5243
  combinedARecords: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
5161
5244
  mx: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordMX;
5245
+ srv: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRV;
5162
5246
  txt: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordTXT;
5163
5247
  };
5164
5248
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5524,7 +5608,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5524
5608
  domainId: string;
5525
5609
  handles: {
5526
5610
  adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable | undefined;
5527
- ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
5611
+ ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable; /** Mark all notifications as read. */
5528
5612
  };
5529
5613
  hasAuthCode: boolean;
5530
5614
  nameservers: [string, string, ...string[]];
@@ -6506,7 +6590,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6506
6590
  }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6507
6591
  address: string;
6508
6592
  autoResponder: {
6509
- active: boolean; /** List all of your ApiTokens. */
6593
+ active: boolean;
6594
+ /** Store a new ssh-key. */
6510
6595
  expiresAt?: string | undefined;
6511
6596
  message: string;
6512
6597
  startsAt?: string | undefined;
@@ -258,7 +258,7 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
258
258
  listMysqlUsers: this.requestFunctionFactory(descriptors.databaseListMysqlUsers),
259
259
  /** Create a MySQLUser. */
260
260
  createMysqlUser: this.requestFunctionFactory(descriptors.databaseCreateMysqlUser),
261
- /** List RedisDatabases belonging to a project. */
261
+ /** List RedisDatabases belonging to a Project. */
262
262
  listRedisDatabases: this.requestFunctionFactory(descriptors.databaseListRedisDatabases),
263
263
  /** Create a RedisDatabase. */
264
264
  createRedisDatabase: this.requestFunctionFactory(descriptors.databaseCreateRedisDatabase),
@@ -284,9 +284,9 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
284
284
  getMysqlUserPhpMyAdminUrl: this.requestFunctionFactory(descriptors.databaseGetMysqlUserPhpMyAdminUrl),
285
285
  /** List available MySQL character sets and collations, optionally filtered by a MySQLVersion. */
286
286
  listMysqlCharsets: this.requestFunctionFactory(descriptors.databaseListMysqlCharsets),
287
- /** List available MySQLVersions. */
287
+ /** List MySQLVersions. */
288
288
  listMysqlVersions: this.requestFunctionFactory(descriptors.databaseListMysqlVersions),
289
- /** List available Redis versions. */
289
+ /** List RedisVersions. */
290
290
  listRedisVersions: this.requestFunctionFactory(descriptors.databaseListRedisVersions),
291
291
  /** Update a MySQLDatabase's default character settings. */
292
292
  updateMysqlDatabaseDefaultCharset: this.requestFunctionFactory(descriptors.databaseUpdateMysqlDatabaseDefaultCharset),
@@ -311,8 +311,12 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
311
311
  dnsRecordMxSetCustom: this.requestFunctionFactory(descriptors.dnsRecordMxSetCustom),
312
312
  /** sets mx-records to managed for a specific zone */
313
313
  dnsRecordMxSetManaged: this.requestFunctionFactory(descriptors.dnsRecordMxSetManaged),
314
+ /** updates srv-records for a specific zone */
315
+ dnsRecordSrvSet: this.requestFunctionFactory(descriptors.dnsRecordSrvSet),
314
316
  /** updates txt-records for a specific zone */
315
317
  dnsRecordTxtSet: this.requestFunctionFactory(descriptors.dnsRecordTxtSet),
318
+ /** creates a sub zone for a given dns zone */
319
+ dnsSubZoneCreate: this.requestFunctionFactory(descriptors.dnsSubZoneCreate),
316
320
  /** gets a specific zone */
317
321
  dnsZoneGetSpecific: this.requestFunctionFactory(descriptors.dnsZoneGetSpecific),
318
322
  /** gets all dns zones by project id */
@@ -207,7 +207,7 @@ export declare const databaseCreateMysqlDatabase: OpenAPIOperation<RequestType<S
207
207
  export declare const databaseListMysqlUsers: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
208
208
  /** Create a MySQLUser. */
209
209
  export declare const databaseCreateMysqlUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
210
- /** List RedisDatabases belonging to a project. */
210
+ /** List RedisDatabases belonging to a Project. */
211
211
  export declare const databaseListRedisDatabases: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
212
212
  /** Create a RedisDatabase. */
213
213
  export declare const databaseCreateRedisDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -233,9 +233,9 @@ export declare const databaseEnableMysqlUser: OpenAPIOperation<RequestType<Simpl
233
233
  export declare const databaseGetMysqlUserPhpMyAdminUrl: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
234
234
  /** List available MySQL character sets and collations, optionally filtered by a MySQLVersion. */
235
235
  export declare const databaseListMysqlCharsets: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
236
- /** List available MySQLVersions. */
236
+ /** List MySQLVersions. */
237
237
  export declare const databaseListMysqlVersions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
238
- /** List available Redis versions. */
238
+ /** List RedisVersions. */
239
239
  export declare const databaseListRedisVersions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
240
240
  /** Update a MySQLDatabase's default character settings. */
241
241
  export declare const databaseUpdateMysqlDatabaseDefaultCharset: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -257,8 +257,12 @@ export declare const dnsRecordCnameSet: OpenAPIOperation<RequestType<Simplify<Mi
257
257
  export declare const dnsRecordMxSetCustom: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
258
258
  /** sets mx-records to managed for a specific zone */
259
259
  export declare const dnsRecordMxSetManaged: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
260
+ /** updates srv-records for a specific zone */
261
+ export declare const dnsRecordSrvSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
260
262
  /** updates txt-records for a specific zone */
261
263
  export declare const dnsRecordTxtSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
264
+ /** creates a sub zone for a given dns zone */
265
+ export declare const dnsSubZoneCreate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
262
266
  /** gets a specific zone */
263
267
  export declare const dnsZoneGetSpecific: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
264
268
  /** gets all dns zones by project id */
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appReconcileDetectedApps = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetMissingDependenciesForAppinstallation = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
4
4
  exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = exports.conversationCreateConversation = void 0;
5
- exports.fileGetFileMeta = exports.fileCreateFile = exports.domainResendDomainEmail = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainVerifyDomainOwnership = exports.domainGetSpecificDomainOwnership = exports.domainGetScreenshotForDomain = exports.domainGetHandleFields = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainDeclareProcessChangeHandles = exports.domainDeclareProcessChangeAuthcode = exports.domainDeclareNameservers = exports.domainCreateAuthcode2ForDomain = exports.domainCreateAuthcodeForDomain = exports.domainCheckDomainAvailability = exports.domainChangeProjectOfDomain = exports.domainChangeOwnercOfDomain = exports.domainAbortDeclareProcess = exports.dnsZonesForProject = exports.dnsZoneGetSpecific = exports.dnsRecordTxtSet = exports.dnsRecordMxSetManaged = exports.dnsRecordMxSetCustom = exports.dnsRecordCnameSet = exports.dnsRecordAsetManagedByIngress = exports.dnsRecordAsetCustom = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
- exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterSubscribeUser = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailProjectsettingUpdateWhitelist = exports.mailProjectsettingUpdateBlacklist = exports.mailProjectsettingGetSpecific = exports.mailMailaddressUpdateSpamprotection = exports.mailMailaddressUpdateQuota = exports.mailMailaddressUpdatePassword = exports.mailMailaddressUpdateForwardaddresses = exports.mailMailaddressUpdateCatchall = exports.mailMailaddressUpdateAutoresponder = exports.mailMailaddressUpdateAddress = exports.mailMailaddressDelete = exports.mailMailaddressGetSpecific = exports.mailMailaddressCreate = exports.mailMailaddressList = exports.mailDeliveryboxUpdatePassword = exports.mailDeliveryboxUpdateDescription = exports.mailDeliveryboxDelete = exports.mailDeliveryboxGetSpecific = exports.mailDeliveryboxCreate = exports.mailDeliveryboxList = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressTls = exports.ingressRequestAcmeCertificateIssuance = exports.ingressPaths = exports.ingressListForProject = exports.ingressListAccessible = exports.ingressDelete = exports.ingressGetSpecific = exports.ingressCreate = exports.fileGetFile = exports.fileGetFileTypeRules = exports.fileGetFileTokenRules = void 0;
7
- exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateLegacyTariffChange = exports.redirectusCreateRelocation = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = void 0;
8
- exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = void 0;
5
+ exports.domainResendDomainEmail = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainVerifyDomainOwnership = exports.domainGetSpecificDomainOwnership = exports.domainGetScreenshotForDomain = exports.domainGetHandleFields = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainDeclareProcessChangeHandles = exports.domainDeclareProcessChangeAuthcode = exports.domainDeclareNameservers = exports.domainCreateAuthcode2ForDomain = exports.domainCreateAuthcodeForDomain = exports.domainCheckDomainAvailability = exports.domainChangeProjectOfDomain = exports.domainChangeOwnercOfDomain = exports.domainAbortDeclareProcess = exports.dnsZonesForProject = exports.dnsZoneGetSpecific = exports.dnsSubZoneCreate = exports.dnsRecordTxtSet = exports.dnsRecordSrvSet = exports.dnsRecordMxSetManaged = exports.dnsRecordMxSetCustom = exports.dnsRecordCnameSet = exports.dnsRecordAsetManagedByIngress = exports.dnsRecordAsetCustom = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
+ exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterSubscribeUser = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailProjectsettingUpdateWhitelist = exports.mailProjectsettingUpdateBlacklist = exports.mailProjectsettingGetSpecific = exports.mailMailaddressUpdateSpamprotection = exports.mailMailaddressUpdateQuota = exports.mailMailaddressUpdatePassword = exports.mailMailaddressUpdateForwardaddresses = exports.mailMailaddressUpdateCatchall = exports.mailMailaddressUpdateAutoresponder = exports.mailMailaddressUpdateAddress = exports.mailMailaddressDelete = exports.mailMailaddressGetSpecific = exports.mailMailaddressCreate = exports.mailMailaddressList = exports.mailDeliveryboxUpdatePassword = exports.mailDeliveryboxUpdateDescription = exports.mailDeliveryboxDelete = exports.mailDeliveryboxGetSpecific = exports.mailDeliveryboxCreate = exports.mailDeliveryboxList = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressTls = exports.ingressRequestAcmeCertificateIssuance = exports.ingressPaths = exports.ingressListForProject = exports.ingressListAccessible = exports.ingressDelete = exports.ingressGetSpecific = exports.ingressCreate = exports.fileGetFile = exports.fileGetFileTypeRules = exports.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = void 0;
7
+ exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateLegacyTariffChange = exports.redirectusCreateRelocation = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = void 0;
8
+ exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = void 0;
9
9
  /** execute a runtime concerning action on a specific `AppInstallation` */
10
10
  exports.appExecuteAction = {
11
11
  path: "/v2/appinstallations/{appInstallationId}/actions/{action}",
@@ -618,7 +618,7 @@ exports.databaseCreateMysqlUser = {
618
618
  method: "POST",
619
619
  operationId: "database-create-mysql-user",
620
620
  };
621
- /** List RedisDatabases belonging to a project. */
621
+ /** List RedisDatabases belonging to a Project. */
622
622
  exports.databaseListRedisDatabases = {
623
623
  path: "/v2/projects/{projectId}/redis-databases",
624
624
  method: "GET",
@@ -696,13 +696,13 @@ exports.databaseListMysqlCharsets = {
696
696
  method: "GET",
697
697
  operationId: "database-list-mysql-charsets",
698
698
  };
699
- /** List available MySQLVersions. */
699
+ /** List MySQLVersions. */
700
700
  exports.databaseListMysqlVersions = {
701
701
  path: "/v2/mysql-versions",
702
702
  method: "GET",
703
703
  operationId: "database-list-mysql-versions",
704
704
  };
705
- /** List available Redis versions. */
705
+ /** List RedisVersions. */
706
706
  exports.databaseListRedisVersions = {
707
707
  path: "/v2/redis-versions",
708
708
  method: "GET",
@@ -768,12 +768,24 @@ exports.dnsRecordMxSetManaged = {
768
768
  method: "POST",
769
769
  operationId: "dns-record-mx-set-managed",
770
770
  };
771
+ /** updates srv-records for a specific zone */
772
+ exports.dnsRecordSrvSet = {
773
+ path: "/v2/dns/zones/{zoneId}/recordset/srv",
774
+ method: "PATCH",
775
+ operationId: "dns-record-srv-set",
776
+ };
771
777
  /** updates txt-records for a specific zone */
772
778
  exports.dnsRecordTxtSet = {
773
779
  path: "/v2/dns/zones/{zoneId}/recordset/txt",
774
780
  method: "PUT",
775
781
  operationId: "dns-record-txt-set",
776
782
  };
783
+ /** creates a sub zone for a given dns zone */
784
+ exports.dnsSubZoneCreate = {
785
+ path: "/v2/dns/zones",
786
+ method: "POST",
787
+ operationId: "dns-sub-zone-create",
788
+ };
777
789
  /** gets a specific zone */
778
790
  exports.dnsZoneGetSpecific = {
779
791
  path: "/v2/dns/zones/{zoneId}",
@@ -757,6 +757,23 @@ export declare module MittwaldAPIV2 {
757
757
  interface DnsRecordSettings {
758
758
  ttl?: MittwaldAPIV2.Components.Schemas.DnsTtlSeconds | MittwaldAPIV2.Components.Schemas.DnsTtlAuto;
759
759
  }
760
+ type DnsRecordSRV = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
761
+ interface DnsRecordSRVComponent {
762
+ /**
763
+ * @minItems 1
764
+ */
765
+ records: [
766
+ MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord,
767
+ ...MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]
768
+ ];
769
+ settings: MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
770
+ }
771
+ interface DnsRecordSRVRecord {
772
+ fqdn: string;
773
+ port: number;
774
+ priority: number;
775
+ weight: number;
776
+ }
760
777
  type DnsRecordTXT = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordTXTComponent;
761
778
  interface DnsRecordTXTComponent {
762
779
  /**
@@ -783,6 +800,7 @@ export declare module MittwaldAPIV2 {
783
800
  cname: MittwaldAPIV2.Components.Schemas.DnsRecordCNAME;
784
801
  combinedARecords: MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
785
802
  mx: MittwaldAPIV2.Components.Schemas.DnsRecordMX;
803
+ srv: MittwaldAPIV2.Components.Schemas.DnsRecordSRV;
786
804
  txt: MittwaldAPIV2.Components.Schemas.DnsRecordTXT;
787
805
  };
788
806
  }
@@ -6812,6 +6830,39 @@ export declare module MittwaldAPIV2 {
6812
6830
  }
6813
6831
  }
6814
6832
  }
6833
+ namespace V2DnsZonesZoneIdRecordsetSrv {
6834
+ namespace Patch {
6835
+ namespace Parameters {
6836
+ type Path = {
6837
+ zoneId: string;
6838
+ };
6839
+ type RequestBody = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
6840
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6841
+ type Query = {};
6842
+ }
6843
+ namespace Responses {
6844
+ namespace $204 {
6845
+ namespace Content {
6846
+ type Empty = unknown;
6847
+ }
6848
+ }
6849
+ namespace $400 {
6850
+ namespace Content {
6851
+ interface ApplicationJson {
6852
+ [k: string]: unknown;
6853
+ }
6854
+ }
6855
+ }
6856
+ namespace Default {
6857
+ namespace Content {
6858
+ interface ApplicationJson {
6859
+ [k: string]: unknown;
6860
+ }
6861
+ }
6862
+ }
6863
+ }
6864
+ }
6865
+ }
6815
6866
  namespace V2DnsZonesZoneIdRecordsetTxt {
6816
6867
  namespace Put {
6817
6868
  namespace Parameters {
@@ -6845,6 +6896,42 @@ export declare module MittwaldAPIV2 {
6845
6896
  }
6846
6897
  }
6847
6898
  }
6899
+ namespace V2DnsZones {
6900
+ namespace Post {
6901
+ namespace Parameters {
6902
+ type Path = {};
6903
+ interface RequestBody {
6904
+ name: string;
6905
+ parentZoneId: string;
6906
+ }
6907
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6908
+ type Query = {};
6909
+ }
6910
+ namespace Responses {
6911
+ namespace $201 {
6912
+ namespace Content {
6913
+ interface ApplicationJson {
6914
+ id: string;
6915
+ }
6916
+ }
6917
+ }
6918
+ namespace $400 {
6919
+ namespace Content {
6920
+ interface ApplicationJson {
6921
+ [k: string]: unknown;
6922
+ }
6923
+ }
6924
+ }
6925
+ namespace Default {
6926
+ namespace Content {
6927
+ interface ApplicationJson {
6928
+ [k: string]: unknown;
6929
+ }
6930
+ }
6931
+ }
6932
+ }
6933
+ }
6934
+ }
6848
6935
  namespace V2DnsZonesZoneId {
6849
6936
  namespace Get {
6850
6937
  namespace Parameters {
@@ -4148,7 +4148,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4148
4148
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4149
4149
  [x: string]: unknown;
4150
4150
  }, 404, "application/json">>>;
4151
- /** List RedisDatabases belonging to a project. */
4151
+ /** List RedisDatabases belonging to a Project. */
4152
4152
  listRedisDatabases: (request: {
4153
4153
  pathParameters: {
4154
4154
  projectId: string;
@@ -4613,7 +4613,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4613
4613
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4614
4614
  [x: string]: unknown;
4615
4615
  }, 404, "application/json">>>;
4616
- /** List available MySQLVersions. */
4616
+ /** List MySQLVersions. */
4617
4617
  listMysqlVersions: (request?: {
4618
4618
  headers?: {
4619
4619
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -4644,7 +4644,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4644
4644
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4645
4645
  [x: string]: unknown;
4646
4646
  }, 404, "application/json">>>;
4647
- /** List available Redis versions. */
4647
+ /** List RedisVersions. */
4648
4648
  listRedisVersions: (request?: {
4649
4649
  headers?: {
4650
4650
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5076,6 +5076,59 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5076
5076
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5077
5077
  [x: string]: unknown;
5078
5078
  }, 400, "application/json">>>;
5079
+ /** updates srv-records for a specific zone */
5080
+ dnsRecordSrvSet: (request: {
5081
+ pathParameters: {
5082
+ zoneId: string;
5083
+ };
5084
+ headers?: {
5085
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5086
+ "x-access-token"?: string | undefined;
5087
+ } | undefined;
5088
+ } | {
5089
+ data: {
5090
+ records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
5091
+ settings: {
5092
+ ttl?: {
5093
+ seconds: number;
5094
+ } | {
5095
+ auto: boolean;
5096
+ } | undefined;
5097
+ };
5098
+ };
5099
+ pathParameters: {
5100
+ zoneId: string;
5101
+ };
5102
+ headers?: {
5103
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5104
+ "x-access-token"?: string | undefined;
5105
+ } | undefined;
5106
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
5107
+ headers?: Partial<{
5108
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5109
+ }> | undefined;
5110
+ } | {
5111
+ data: {
5112
+ records: [import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord, ...import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]];
5113
+ settings: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
5114
+ };
5115
+ }) & {
5116
+ pathParameters: {
5117
+ zoneId: string;
5118
+ };
5119
+ } & {
5120
+ headers?: Partial<{
5121
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5122
+ }> | undefined;
5123
+ } & {
5124
+ headers: {
5125
+ "x-access-token"?: string | undefined;
5126
+ } & Partial<{
5127
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5128
+ }>;
5129
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5130
+ [x: string]: unknown;
5131
+ }, 400, "application/json">>>;
5079
5132
  /** updates txt-records for a specific zone */
5080
5133
  dnsRecordTxtSet: (request: {
5081
5134
  pathParameters: {
@@ -5129,6 +5182,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5129
5182
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5130
5183
  [x: string]: unknown;
5131
5184
  }, 400, "application/json">>>;
5185
+ /** creates a sub zone for a given dns zone */
5186
+ dnsSubZoneCreate: (request: {
5187
+ data: {
5188
+ name: string;
5189
+ parentZoneId: string;
5190
+ };
5191
+ headers?: {
5192
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5193
+ "x-access-token"?: string | undefined;
5194
+ } | undefined;
5195
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5196
+ data: {
5197
+ name: string;
5198
+ parentZoneId: string;
5199
+ };
5200
+ } & {
5201
+ headers?: Partial<{
5202
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5203
+ }> | undefined;
5204
+ } & {
5205
+ headers: {
5206
+ "x-access-token"?: string | undefined;
5207
+ } & Partial<{
5208
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5209
+ }>;
5210
+ }, import("@mittwald/api-client-commons").Response<{
5211
+ id: string;
5212
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
5213
+ [x: string]: unknown;
5214
+ }, 400, "application/json">>>;
5132
5215
  /** gets a specific zone */
5133
5216
  dnsZoneGetSpecific: (request: {
5134
5217
  pathParameters: {
@@ -5159,6 +5242,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5159
5242
  cname: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCNAME;
5160
5243
  combinedARecords: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
5161
5244
  mx: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordMX;
5245
+ srv: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordSRV;
5162
5246
  txt: import("./types.js").MittwaldAPIV2.Components.Schemas.DnsRecordTXT;
5163
5247
  };
5164
5248
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5524,7 +5608,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5524
5608
  domainId: string;
5525
5609
  handles: {
5526
5610
  adminC?: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable | undefined;
5527
- ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable;
5611
+ ownerC: import("./types.js").MittwaldAPIV2.Components.Schemas.DomainHandleReadable; /** Mark all notifications as read. */
5528
5612
  };
5529
5613
  hasAuthCode: boolean;
5530
5614
  nameservers: [string, string, ...string[]];
@@ -6506,7 +6590,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6506
6590
  }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6507
6591
  address: string;
6508
6592
  autoResponder: {
6509
- active: boolean; /** List all of your ApiTokens. */
6593
+ active: boolean;
6594
+ /** Store a new ssh-key. */
6510
6595
  expiresAt?: string | undefined;
6511
6596
  message: string;
6512
6597
  startsAt?: string | undefined;
@@ -253,7 +253,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
253
253
  listMysqlUsers: this.requestFunctionFactory(descriptors.databaseListMysqlUsers),
254
254
  /** Create a MySQLUser. */
255
255
  createMysqlUser: this.requestFunctionFactory(descriptors.databaseCreateMysqlUser),
256
- /** List RedisDatabases belonging to a project. */
256
+ /** List RedisDatabases belonging to a Project. */
257
257
  listRedisDatabases: this.requestFunctionFactory(descriptors.databaseListRedisDatabases),
258
258
  /** Create a RedisDatabase. */
259
259
  createRedisDatabase: this.requestFunctionFactory(descriptors.databaseCreateRedisDatabase),
@@ -279,9 +279,9 @@ export class MittwaldAPIV2Client extends ApiClientBase {
279
279
  getMysqlUserPhpMyAdminUrl: this.requestFunctionFactory(descriptors.databaseGetMysqlUserPhpMyAdminUrl),
280
280
  /** List available MySQL character sets and collations, optionally filtered by a MySQLVersion. */
281
281
  listMysqlCharsets: this.requestFunctionFactory(descriptors.databaseListMysqlCharsets),
282
- /** List available MySQLVersions. */
282
+ /** List MySQLVersions. */
283
283
  listMysqlVersions: this.requestFunctionFactory(descriptors.databaseListMysqlVersions),
284
- /** List available Redis versions. */
284
+ /** List RedisVersions. */
285
285
  listRedisVersions: this.requestFunctionFactory(descriptors.databaseListRedisVersions),
286
286
  /** Update a MySQLDatabase's default character settings. */
287
287
  updateMysqlDatabaseDefaultCharset: this.requestFunctionFactory(descriptors.databaseUpdateMysqlDatabaseDefaultCharset),
@@ -306,8 +306,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
306
306
  dnsRecordMxSetCustom: this.requestFunctionFactory(descriptors.dnsRecordMxSetCustom),
307
307
  /** sets mx-records to managed for a specific zone */
308
308
  dnsRecordMxSetManaged: this.requestFunctionFactory(descriptors.dnsRecordMxSetManaged),
309
+ /** updates srv-records for a specific zone */
310
+ dnsRecordSrvSet: this.requestFunctionFactory(descriptors.dnsRecordSrvSet),
309
311
  /** updates txt-records for a specific zone */
310
312
  dnsRecordTxtSet: this.requestFunctionFactory(descriptors.dnsRecordTxtSet),
313
+ /** creates a sub zone for a given dns zone */
314
+ dnsSubZoneCreate: this.requestFunctionFactory(descriptors.dnsSubZoneCreate),
311
315
  /** gets a specific zone */
312
316
  dnsZoneGetSpecific: this.requestFunctionFactory(descriptors.dnsZoneGetSpecific),
313
317
  /** gets all dns zones by project id */
@@ -207,7 +207,7 @@ export declare const databaseCreateMysqlDatabase: OpenAPIOperation<RequestType<S
207
207
  export declare const databaseListMysqlUsers: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
208
208
  /** Create a MySQLUser. */
209
209
  export declare const databaseCreateMysqlUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesDatabaseIdUsers.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
210
- /** List RedisDatabases belonging to a project. */
210
+ /** List RedisDatabases belonging to a Project. */
211
211
  export declare const databaseListRedisDatabases: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
212
212
  /** Create a RedisDatabase. */
213
213
  export declare const databaseCreateRedisDatabase: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdRedisDatabases.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -233,9 +233,9 @@ export declare const databaseEnableMysqlUser: OpenAPIOperation<RequestType<Simpl
233
233
  export declare const databaseGetMysqlUserPhpMyAdminUrl: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlUsersIdPhpMyAdminUrl.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
234
234
  /** List available MySQL character sets and collations, optionally filtered by a MySQLVersion. */
235
235
  export declare const databaseListMysqlCharsets: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlCharsets.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
236
- /** List available MySQLVersions. */
236
+ /** List MySQLVersions. */
237
237
  export declare const databaseListMysqlVersions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
238
- /** List available Redis versions. */
238
+ /** List RedisVersions. */
239
239
  export declare const databaseListRedisVersions: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2RedisVersions.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
240
240
  /** Update a MySQLDatabase's default character settings. */
241
241
  export declare const databaseUpdateMysqlDatabaseDefaultCharset: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MysqlDatabasesIdDefaultCharset.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -257,8 +257,12 @@ export declare const dnsRecordCnameSet: OpenAPIOperation<RequestType<Simplify<Mi
257
257
  export declare const dnsRecordMxSetCustom: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxCustom.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
258
258
  /** sets mx-records to managed for a specific zone */
259
259
  export declare const dnsRecordMxSetManaged: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetMxManaged.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
260
+ /** updates srv-records for a specific zone */
261
+ export declare const dnsRecordSrvSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetSrv.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
260
262
  /** updates txt-records for a specific zone */
261
263
  export declare const dnsRecordTxtSet: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneIdRecordsetTxt.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
264
+ /** creates a sub zone for a given dns zone */
265
+ export declare const dnsSubZoneCreate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZones.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
262
266
  /** gets a specific zone */
263
267
  export declare const dnsZoneGetSpecific: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DnsZonesZoneId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
264
268
  /** gets all dns zones by project id */
@@ -610,7 +610,7 @@ export const databaseCreateMysqlUser = {
610
610
  method: "POST",
611
611
  operationId: "database-create-mysql-user",
612
612
  };
613
- /** List RedisDatabases belonging to a project. */
613
+ /** List RedisDatabases belonging to a Project. */
614
614
  export const databaseListRedisDatabases = {
615
615
  path: "/v2/projects/{projectId}/redis-databases",
616
616
  method: "GET",
@@ -688,13 +688,13 @@ export const databaseListMysqlCharsets = {
688
688
  method: "GET",
689
689
  operationId: "database-list-mysql-charsets",
690
690
  };
691
- /** List available MySQLVersions. */
691
+ /** List MySQLVersions. */
692
692
  export const databaseListMysqlVersions = {
693
693
  path: "/v2/mysql-versions",
694
694
  method: "GET",
695
695
  operationId: "database-list-mysql-versions",
696
696
  };
697
- /** List available Redis versions. */
697
+ /** List RedisVersions. */
698
698
  export const databaseListRedisVersions = {
699
699
  path: "/v2/redis-versions",
700
700
  method: "GET",
@@ -760,12 +760,24 @@ export const dnsRecordMxSetManaged = {
760
760
  method: "POST",
761
761
  operationId: "dns-record-mx-set-managed",
762
762
  };
763
+ /** updates srv-records for a specific zone */
764
+ export const dnsRecordSrvSet = {
765
+ path: "/v2/dns/zones/{zoneId}/recordset/srv",
766
+ method: "PATCH",
767
+ operationId: "dns-record-srv-set",
768
+ };
763
769
  /** updates txt-records for a specific zone */
764
770
  export const dnsRecordTxtSet = {
765
771
  path: "/v2/dns/zones/{zoneId}/recordset/txt",
766
772
  method: "PUT",
767
773
  operationId: "dns-record-txt-set",
768
774
  };
775
+ /** creates a sub zone for a given dns zone */
776
+ export const dnsSubZoneCreate = {
777
+ path: "/v2/dns/zones",
778
+ method: "POST",
779
+ operationId: "dns-sub-zone-create",
780
+ };
769
781
  /** gets a specific zone */
770
782
  export const dnsZoneGetSpecific = {
771
783
  path: "/v2/dns/zones/{zoneId}",
@@ -757,6 +757,23 @@ export declare module MittwaldAPIV2 {
757
757
  interface DnsRecordSettings {
758
758
  ttl?: MittwaldAPIV2.Components.Schemas.DnsTtlSeconds | MittwaldAPIV2.Components.Schemas.DnsTtlAuto;
759
759
  }
760
+ type DnsRecordSRV = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
761
+ interface DnsRecordSRVComponent {
762
+ /**
763
+ * @minItems 1
764
+ */
765
+ records: [
766
+ MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord,
767
+ ...MittwaldAPIV2.Components.Schemas.DnsRecordSRVRecord[]
768
+ ];
769
+ settings: MittwaldAPIV2.Components.Schemas.DnsRecordSettings;
770
+ }
771
+ interface DnsRecordSRVRecord {
772
+ fqdn: string;
773
+ port: number;
774
+ priority: number;
775
+ weight: number;
776
+ }
760
777
  type DnsRecordTXT = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordTXTComponent;
761
778
  interface DnsRecordTXTComponent {
762
779
  /**
@@ -783,6 +800,7 @@ export declare module MittwaldAPIV2 {
783
800
  cname: MittwaldAPIV2.Components.Schemas.DnsRecordCNAME;
784
801
  combinedARecords: MittwaldAPIV2.Components.Schemas.DnsRecordCombinedA;
785
802
  mx: MittwaldAPIV2.Components.Schemas.DnsRecordMX;
803
+ srv: MittwaldAPIV2.Components.Schemas.DnsRecordSRV;
786
804
  txt: MittwaldAPIV2.Components.Schemas.DnsRecordTXT;
787
805
  };
788
806
  }
@@ -6812,6 +6830,39 @@ export declare module MittwaldAPIV2 {
6812
6830
  }
6813
6831
  }
6814
6832
  }
6833
+ namespace V2DnsZonesZoneIdRecordsetSrv {
6834
+ namespace Patch {
6835
+ namespace Parameters {
6836
+ type Path = {
6837
+ zoneId: string;
6838
+ };
6839
+ type RequestBody = MittwaldAPIV2.Components.Schemas.DnsRecordUnset | MittwaldAPIV2.Components.Schemas.DnsRecordSRVComponent;
6840
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6841
+ type Query = {};
6842
+ }
6843
+ namespace Responses {
6844
+ namespace $204 {
6845
+ namespace Content {
6846
+ type Empty = unknown;
6847
+ }
6848
+ }
6849
+ namespace $400 {
6850
+ namespace Content {
6851
+ interface ApplicationJson {
6852
+ [k: string]: unknown;
6853
+ }
6854
+ }
6855
+ }
6856
+ namespace Default {
6857
+ namespace Content {
6858
+ interface ApplicationJson {
6859
+ [k: string]: unknown;
6860
+ }
6861
+ }
6862
+ }
6863
+ }
6864
+ }
6865
+ }
6815
6866
  namespace V2DnsZonesZoneIdRecordsetTxt {
6816
6867
  namespace Put {
6817
6868
  namespace Parameters {
@@ -6845,6 +6896,42 @@ export declare module MittwaldAPIV2 {
6845
6896
  }
6846
6897
  }
6847
6898
  }
6899
+ namespace V2DnsZones {
6900
+ namespace Post {
6901
+ namespace Parameters {
6902
+ type Path = {};
6903
+ interface RequestBody {
6904
+ name: string;
6905
+ parentZoneId: string;
6906
+ }
6907
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
6908
+ type Query = {};
6909
+ }
6910
+ namespace Responses {
6911
+ namespace $201 {
6912
+ namespace Content {
6913
+ interface ApplicationJson {
6914
+ id: string;
6915
+ }
6916
+ }
6917
+ }
6918
+ namespace $400 {
6919
+ namespace Content {
6920
+ interface ApplicationJson {
6921
+ [k: string]: unknown;
6922
+ }
6923
+ }
6924
+ }
6925
+ namespace Default {
6926
+ namespace Content {
6927
+ interface ApplicationJson {
6928
+ [k: string]: unknown;
6929
+ }
6930
+ }
6931
+ }
6932
+ }
6933
+ }
6934
+ }
6848
6935
  namespace V2DnsZonesZoneId {
6849
6936
  namespace Get {
6850
6937
  namespace Parameters {
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '2.0.19';
1
+ export declare const MittwaldAPIClientVersion = '2.0.21';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '2.0.19';
1
+ export const MittwaldAPIClientVersion = '2.0.21';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "2.0.19",
3
+ "version": "2.0.21",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",