@mittwald/api-client 1.0.0-alpha.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +114 -0
- package/dist/generated/v2/client.d.ts +6026 -0
- package/dist/generated/v2/client.js +696 -0
- package/dist/generated/v2/descriptors.d.ts +646 -0
- package/dist/generated/v2/descriptors.js +1921 -0
- package/dist/generated/v2/types.d.ts +16161 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/v2.d.ts +10 -0
- package/dist/v2.js +41 -0
- package/package.json +39 -0
|
@@ -0,0 +1,1921 @@
|
|
|
1
|
+
/** execute a runtime concerning action on a specific `AppInstallation` */
|
|
2
|
+
export const appExecuteAction = {
|
|
3
|
+
path: "/v2/appinstallations/{appInstallationId}/actions/{action}",
|
|
4
|
+
method: "POST",
|
|
5
|
+
operationId: "app-execute-action",
|
|
6
|
+
};
|
|
7
|
+
/** get a specific `App` */
|
|
8
|
+
export const appGetApp = {
|
|
9
|
+
path: "/v2/apps/{appId}",
|
|
10
|
+
method: "GET",
|
|
11
|
+
operationId: "app-get-app",
|
|
12
|
+
};
|
|
13
|
+
/** get a specific `AppInstallation` */
|
|
14
|
+
export const appGetAppinstallation = {
|
|
15
|
+
path: "/v2/appinstallations/{appInstallationId}",
|
|
16
|
+
method: "GET",
|
|
17
|
+
operationId: "app-get-appinstallation",
|
|
18
|
+
};
|
|
19
|
+
/** start uninstallation process for a specific `AppInstallation` */
|
|
20
|
+
export const appUninstallAppinstallation = {
|
|
21
|
+
path: "/v2/appinstallations/{appInstallationId}",
|
|
22
|
+
method: "DELETE",
|
|
23
|
+
operationId: "app-uninstall-appinstallation",
|
|
24
|
+
};
|
|
25
|
+
/** patch desired properties of a specific `AppInstallation` */
|
|
26
|
+
export const appPatchAppinstallation = {
|
|
27
|
+
path: "/v2/appinstallations/{appInstallationId}",
|
|
28
|
+
method: "PATCH",
|
|
29
|
+
operationId: "app-patch-appinstallation",
|
|
30
|
+
};
|
|
31
|
+
/** get a specific `AppVersion` */
|
|
32
|
+
export const appGetAppversion = {
|
|
33
|
+
path: "/v2/apps/{appId}/versions/{appVersionId}",
|
|
34
|
+
method: "GET",
|
|
35
|
+
operationId: "app-get-appversion",
|
|
36
|
+
};
|
|
37
|
+
/** get a specific `SystemSoftware` */
|
|
38
|
+
export const appGetSystemsoftware = {
|
|
39
|
+
path: "/v2/systemsoftwares/{systemSoftwareId}",
|
|
40
|
+
method: "GET",
|
|
41
|
+
operationId: "app-get-systemsoftware",
|
|
42
|
+
};
|
|
43
|
+
/** get a specific `SystemSoftwareVersion` */
|
|
44
|
+
export const appGetSystemsoftwareversion = {
|
|
45
|
+
path: "/v2/systemsoftware/{systemSoftwareId}/versions/{systemSoftwareVersionId}",
|
|
46
|
+
method: "GET",
|
|
47
|
+
operationId: "app-get-systemsoftwareversion",
|
|
48
|
+
};
|
|
49
|
+
/** create linkage between an `AppInstallation` and a `Database` */
|
|
50
|
+
export const appLinkDatabase = {
|
|
51
|
+
path: "/v2/appinstallations/{appInstallationId}/databases",
|
|
52
|
+
method: "PUT",
|
|
53
|
+
operationId: "app-link-database",
|
|
54
|
+
};
|
|
55
|
+
/** get all `AppInstallations` inside a specific `Project` */
|
|
56
|
+
export const appListAppinstallations = {
|
|
57
|
+
path: "/v2/projects/{projectId}/appinstallations",
|
|
58
|
+
method: "GET",
|
|
59
|
+
operationId: "app-list-appinstallations",
|
|
60
|
+
};
|
|
61
|
+
/** request a new `AppInstallation` */
|
|
62
|
+
export const appRequestAppinstallation = {
|
|
63
|
+
path: "/v2/projects/{projectId}/appinstallations",
|
|
64
|
+
method: "POST",
|
|
65
|
+
operationId: "app-request-appinstallation",
|
|
66
|
+
};
|
|
67
|
+
/** get all available `Apps` */
|
|
68
|
+
export const appListApps = {
|
|
69
|
+
path: "/v2/apps",
|
|
70
|
+
method: "GET",
|
|
71
|
+
operationId: "app-list-apps",
|
|
72
|
+
};
|
|
73
|
+
/** get all `AppVersions` of a specific `App` */
|
|
74
|
+
export const appListAppversions = {
|
|
75
|
+
path: "/v2/apps/{appId}/versions",
|
|
76
|
+
method: "GET",
|
|
77
|
+
operationId: "app-list-appversions",
|
|
78
|
+
};
|
|
79
|
+
/** get all available `SystemSoftware` */
|
|
80
|
+
export const appListSystemsoftwares = {
|
|
81
|
+
path: "/v2/systemsoftwares",
|
|
82
|
+
method: "GET",
|
|
83
|
+
operationId: "app-list-systemsoftwares",
|
|
84
|
+
};
|
|
85
|
+
/** get all available `SystemSoftwareVersions` of a specific `SystemSoftware` */
|
|
86
|
+
export const appListSystemsoftwareversions = {
|
|
87
|
+
path: "/v2/systemsoftware/{systemSoftwareId}/versions",
|
|
88
|
+
method: "GET",
|
|
89
|
+
operationId: "app-list-systemsoftwareversions",
|
|
90
|
+
};
|
|
91
|
+
/** get runtime status of a specific `AppInstallation` */
|
|
92
|
+
export const appRetrieveStatus = {
|
|
93
|
+
path: "/v2/appinstallations/{appInstallationId}/status",
|
|
94
|
+
method: "GET",
|
|
95
|
+
operationId: "app-retrieve-status",
|
|
96
|
+
};
|
|
97
|
+
/** create linkage between an `AppInstallation` and `DatabaseUsers` */
|
|
98
|
+
export const appSetDatabaseUsers = {
|
|
99
|
+
path: "/v2/appinstallations/{appInstallationId}/databases/{databaseId}",
|
|
100
|
+
method: "PUT",
|
|
101
|
+
operationId: "app-set-database-users",
|
|
102
|
+
};
|
|
103
|
+
/** remove linkage between an `AppInstallation` and a `Database` */
|
|
104
|
+
export const appUnlinkDatabase = {
|
|
105
|
+
path: "/v2/appinstallations/{appInstallationId}/databases/{databaseId}",
|
|
106
|
+
method: "DELETE",
|
|
107
|
+
operationId: "app-unlink-database",
|
|
108
|
+
};
|
|
109
|
+
/** trigger `AppInstallation` to retrieve current installation status based on an appJob */
|
|
110
|
+
export const appUpdateStatus = {
|
|
111
|
+
path: "/v2/appinstallations/{id}/actions/update-status",
|
|
112
|
+
method: "POST",
|
|
113
|
+
operationId: "app-update-status",
|
|
114
|
+
};
|
|
115
|
+
/** Get an Article. */
|
|
116
|
+
export const articleServiceGetArticle = {
|
|
117
|
+
path: "/v2/articles/{articleId}",
|
|
118
|
+
method: "GET",
|
|
119
|
+
operationId: "article-service-get-article",
|
|
120
|
+
};
|
|
121
|
+
/** List Articles. */
|
|
122
|
+
export const articleServiceListArticles = {
|
|
123
|
+
path: "/v2/articles",
|
|
124
|
+
method: "GET",
|
|
125
|
+
operationId: "article-service-list-articles",
|
|
126
|
+
};
|
|
127
|
+
/** Export a ProjectBackup for download. */
|
|
128
|
+
export const backupCreateProjectBackupExport = {
|
|
129
|
+
path: "/v2/project-backups/{projectBackupId}/export",
|
|
130
|
+
method: "POST",
|
|
131
|
+
operationId: "backup-create-project-backup-export",
|
|
132
|
+
};
|
|
133
|
+
/** Delete a ProjectBackupExport. */
|
|
134
|
+
export const backupDeleteProjectBackupExport = {
|
|
135
|
+
path: "/v2/project-backups/{projectBackupId}/export",
|
|
136
|
+
method: "DELETE",
|
|
137
|
+
operationId: "backup-delete-project-backup-export",
|
|
138
|
+
};
|
|
139
|
+
/** List BackupSchedules belonging to a given Project. */
|
|
140
|
+
export const backupListProjectBackupSchedules = {
|
|
141
|
+
path: "/v2/projects/{projectId}/backup-schedules",
|
|
142
|
+
method: "GET",
|
|
143
|
+
operationId: "backup-list-project-backup-schedules",
|
|
144
|
+
};
|
|
145
|
+
/** Create a BackupSchedule for a Project. */
|
|
146
|
+
export const backupCreateProjectBackupSchedule = {
|
|
147
|
+
path: "/v2/projects/{projectId}/backup-schedules",
|
|
148
|
+
method: "POST",
|
|
149
|
+
operationId: "backup-create-project-backup-schedule",
|
|
150
|
+
};
|
|
151
|
+
/** List Backups for a given Project. */
|
|
152
|
+
export const backupListProjectBackups = {
|
|
153
|
+
path: "/v2/projects/{projectId}/backups",
|
|
154
|
+
method: "GET",
|
|
155
|
+
operationId: "backup-list-project-backups",
|
|
156
|
+
};
|
|
157
|
+
/** Create a Backup of a Project. */
|
|
158
|
+
export const backupCreateProjectBackup = {
|
|
159
|
+
path: "/v2/projects/{projectId}/backups",
|
|
160
|
+
method: "POST",
|
|
161
|
+
operationId: "backup-create-project-backup",
|
|
162
|
+
};
|
|
163
|
+
/** Get a ProjectBackupSchedule. */
|
|
164
|
+
export const backupGetProjectBackupSchedule = {
|
|
165
|
+
path: "/v2/project-backup-schedules/{projectBackupScheduleId}",
|
|
166
|
+
method: "GET",
|
|
167
|
+
operationId: "backup-get-project-backup-schedule",
|
|
168
|
+
};
|
|
169
|
+
/** Delete a ProjectBackupSchedule. */
|
|
170
|
+
export const backupDeleteProjectBackupSchedule = {
|
|
171
|
+
path: "/v2/project-backup-schedules/{projectBackupScheduleId}",
|
|
172
|
+
method: "DELETE",
|
|
173
|
+
operationId: "backup-delete-project-backup-schedule",
|
|
174
|
+
};
|
|
175
|
+
/** Update a ProjectBackupSchedule. */
|
|
176
|
+
export const backupUpdateProjectBackupSchedule = {
|
|
177
|
+
path: "/v2/project-backup-schedules/{projectBackupScheduleId}",
|
|
178
|
+
method: "PATCH",
|
|
179
|
+
operationId: "backup-update-project-backup-schedule",
|
|
180
|
+
};
|
|
181
|
+
/** Get a ProjectBackup. */
|
|
182
|
+
export const backupGetProjectBackup = {
|
|
183
|
+
path: "/v2/project-backups/{projectBackupId}",
|
|
184
|
+
method: "GET",
|
|
185
|
+
operationId: "backup-get-project-backup",
|
|
186
|
+
};
|
|
187
|
+
/** Delete a ProjectBackup. */
|
|
188
|
+
export const backupDeleteProjectBackup = {
|
|
189
|
+
path: "/v2/project-backups/{projectBackupId}",
|
|
190
|
+
method: "DELETE",
|
|
191
|
+
operationId: "backup-delete-project-backup",
|
|
192
|
+
};
|
|
193
|
+
/** Change the description of a ProjectBackup. */
|
|
194
|
+
export const backupUpdateProjectBackupDescription = {
|
|
195
|
+
path: "/v2/project-backups/{projectBackupId}/description",
|
|
196
|
+
method: "PATCH",
|
|
197
|
+
operationId: "backup-update-project-backup-description",
|
|
198
|
+
};
|
|
199
|
+
/** Schedule the Termination of a ContractItem. */
|
|
200
|
+
export const contractTerminateContractItem = {
|
|
201
|
+
path: "/v2/contracts/{contractId}/items/{contractItemId}/termination",
|
|
202
|
+
method: "POST",
|
|
203
|
+
operationId: "contract-terminate-contract-item",
|
|
204
|
+
};
|
|
205
|
+
/** Cancel the Termination for the referred ContractItem. */
|
|
206
|
+
export const contractCancelContractItemTermination = {
|
|
207
|
+
path: "/v2/contracts/{contractId}/items/{contractItemId}/termination",
|
|
208
|
+
method: "DELETE",
|
|
209
|
+
operationId: "contract-cancel-contract-item-termination",
|
|
210
|
+
};
|
|
211
|
+
/** Cancel the TariffChange for the referred ContractItem. */
|
|
212
|
+
export const contractCancelContractTariffChange = {
|
|
213
|
+
path: "/v2/contracts/{contractId}/items/{contractItemId}/tariff-change",
|
|
214
|
+
method: "DELETE",
|
|
215
|
+
operationId: "contract-cancel-contract-tariff-change",
|
|
216
|
+
};
|
|
217
|
+
/** Schedule the Termination of a Contract. */
|
|
218
|
+
export const contractTerminateContract = {
|
|
219
|
+
path: "/v2/contracts/{contractId}/termination",
|
|
220
|
+
method: "POST",
|
|
221
|
+
operationId: "contract-terminate-contract",
|
|
222
|
+
};
|
|
223
|
+
/** Cancel the Termination for the referred Contract. */
|
|
224
|
+
export const contractCancelContractTermination = {
|
|
225
|
+
path: "/v2/contracts/{contractId}/termination",
|
|
226
|
+
method: "DELETE",
|
|
227
|
+
operationId: "contract-cancel-contract-termination",
|
|
228
|
+
};
|
|
229
|
+
/** Return the BaseItem of the Contract with the given ID. */
|
|
230
|
+
export const contractGetBaseItemOfContract = {
|
|
231
|
+
path: "/v2/contracts/{contractId}/base-items",
|
|
232
|
+
method: "GET",
|
|
233
|
+
operationId: "contract-get-base-item-of-contract",
|
|
234
|
+
};
|
|
235
|
+
/** Return the Contract for the given Domain. */
|
|
236
|
+
export const contractGetDetailOfContractByDomain = {
|
|
237
|
+
path: "/v2/domains/{domainId}/contracts",
|
|
238
|
+
method: "GET",
|
|
239
|
+
operationId: "contract-get-detail-of-contract-by-domain",
|
|
240
|
+
};
|
|
241
|
+
/** Return the Contract for the given Project. */
|
|
242
|
+
export const contractGetDetailOfContractByProject = {
|
|
243
|
+
path: "/v2/projects/{projectId}/contracts",
|
|
244
|
+
method: "GET",
|
|
245
|
+
operationId: "contract-get-detail-of-contract-by-project",
|
|
246
|
+
};
|
|
247
|
+
/** Return the Contract for the given Server. */
|
|
248
|
+
export const contractGetDetailOfContractByServer = {
|
|
249
|
+
path: "/v2/servers/{serverId}/contracts",
|
|
250
|
+
method: "GET",
|
|
251
|
+
operationId: "contract-get-detail-of-contract-by-server",
|
|
252
|
+
};
|
|
253
|
+
/** Get the ContractItem with the given ID. */
|
|
254
|
+
export const contractGetDetailOfContractItem = {
|
|
255
|
+
path: "/v2/contracts/{contractId}/items/{contractItemId}",
|
|
256
|
+
method: "GET",
|
|
257
|
+
operationId: "contract-get-detail-of-contract-item",
|
|
258
|
+
};
|
|
259
|
+
/** Returns the Contract with the given ID. */
|
|
260
|
+
export const contractGetDetailOfContract = {
|
|
261
|
+
path: "/v2/contracts/{contractId}",
|
|
262
|
+
method: "GET",
|
|
263
|
+
operationId: "contract-get-detail-of-contract",
|
|
264
|
+
};
|
|
265
|
+
/** Return the next TerminationDate for the ContractItem with the given ID. */
|
|
266
|
+
export const contractGetNextTerminationDateForItem = {
|
|
267
|
+
path: "/v2/contracts/{contractId}/items/{contractItemId}/next-termination-dates",
|
|
268
|
+
method: "GET",
|
|
269
|
+
operationId: "contract-get-next-termination-date-for-item",
|
|
270
|
+
};
|
|
271
|
+
/** Return a list of Contracts for the given Customer. */
|
|
272
|
+
export const contractListContracts = {
|
|
273
|
+
path: "/v2/customers/{customerId}/contracts",
|
|
274
|
+
method: "GET",
|
|
275
|
+
operationId: "contract-list-contracts",
|
|
276
|
+
};
|
|
277
|
+
/** Get all conversation the authenticated user has created or has access to. */
|
|
278
|
+
export const conversationListConversations = {
|
|
279
|
+
path: "/v2/conversations",
|
|
280
|
+
method: "GET",
|
|
281
|
+
operationId: "conversation-list-conversations",
|
|
282
|
+
};
|
|
283
|
+
/** Create a conversation. */
|
|
284
|
+
export const conversationCreateConversation = {
|
|
285
|
+
path: "/v2/conversations",
|
|
286
|
+
method: "POST",
|
|
287
|
+
operationId: "conversation-create-conversation",
|
|
288
|
+
};
|
|
289
|
+
/** Get all message of the conversation. */
|
|
290
|
+
export const conversationListMessagesByConversation = {
|
|
291
|
+
path: "/v2/conversations/{conversationId}/messages",
|
|
292
|
+
method: "GET",
|
|
293
|
+
operationId: "conversation-list-messages-by-conversation",
|
|
294
|
+
};
|
|
295
|
+
/** Send a new message in the conversation. */
|
|
296
|
+
export const conversationCreateMessage = {
|
|
297
|
+
path: "/v2/conversations/{conversationId}/messages",
|
|
298
|
+
method: "POST",
|
|
299
|
+
operationId: "conversation-create-message",
|
|
300
|
+
};
|
|
301
|
+
/** Get a specific conversation category. */
|
|
302
|
+
export const conversationGetCategory = {
|
|
303
|
+
path: "/v2/conversation-categories/{categoryId}",
|
|
304
|
+
method: "GET",
|
|
305
|
+
operationId: "conversation-get-category",
|
|
306
|
+
};
|
|
307
|
+
/** Get a support conversation. */
|
|
308
|
+
export const conversationGetConversation = {
|
|
309
|
+
path: "/v2/conversations/{conversationId}",
|
|
310
|
+
method: "GET",
|
|
311
|
+
operationId: "conversation-get-conversation",
|
|
312
|
+
};
|
|
313
|
+
/** Update the basic properties of the conversation. */
|
|
314
|
+
export const conversationUpdateConversation = {
|
|
315
|
+
path: "/v2/conversations/{conversationId}",
|
|
316
|
+
method: "PUT",
|
|
317
|
+
operationId: "conversation-update-conversation",
|
|
318
|
+
};
|
|
319
|
+
/** Get all conversation categories. */
|
|
320
|
+
export const conversationListCategories = {
|
|
321
|
+
path: "/v2/conversation-categories",
|
|
322
|
+
method: "GET",
|
|
323
|
+
operationId: "conversation-list-categories",
|
|
324
|
+
};
|
|
325
|
+
/** Request a file upload token for the conversation. */
|
|
326
|
+
export const conversationRequestFileUpload = {
|
|
327
|
+
path: "/v2/conversations/{conversationId}/files",
|
|
328
|
+
method: "POST",
|
|
329
|
+
operationId: "conversation-request-file-upload",
|
|
330
|
+
};
|
|
331
|
+
/** Update the status of a conversation. */
|
|
332
|
+
export const conversationSetConversationStatus = {
|
|
333
|
+
path: "/v2/conversations/{conversationId}/status",
|
|
334
|
+
method: "PUT",
|
|
335
|
+
operationId: "conversation-set-conversation-status",
|
|
336
|
+
};
|
|
337
|
+
/** Update the content of the message */
|
|
338
|
+
export const conversationUpdateMessage = {
|
|
339
|
+
path: "/v2/conversations/{conversationId}/messages/{messageId}",
|
|
340
|
+
method: "PATCH",
|
|
341
|
+
operationId: "conversation-update-message",
|
|
342
|
+
};
|
|
343
|
+
/** Abort a CronjobExecution. */
|
|
344
|
+
export const cronjobAbortExecution = {
|
|
345
|
+
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}/actions/abort",
|
|
346
|
+
method: "POST",
|
|
347
|
+
operationId: "cronjob-abort-execution",
|
|
348
|
+
};
|
|
349
|
+
/** List Cronjobs belonging to a Project. */
|
|
350
|
+
export const cronjobListCronjobs = {
|
|
351
|
+
path: "/v2/projects/{projectId}/cronjobs",
|
|
352
|
+
method: "GET",
|
|
353
|
+
operationId: "cronjob-list-cronjobs",
|
|
354
|
+
};
|
|
355
|
+
/** Create a Cronjob. */
|
|
356
|
+
export const cronjobCreateCronjob = {
|
|
357
|
+
path: "/v2/projects/{projectId}/cronjobs",
|
|
358
|
+
method: "POST",
|
|
359
|
+
operationId: "cronjob-create-cronjob",
|
|
360
|
+
};
|
|
361
|
+
/** List CronjobExecutions belonging to a Cronjob. */
|
|
362
|
+
export const cronjobListExecutions = {
|
|
363
|
+
path: "/v2/cronjobs/{cronjobId}/executions",
|
|
364
|
+
method: "GET",
|
|
365
|
+
operationId: "cronjob-list-executions",
|
|
366
|
+
};
|
|
367
|
+
/** Trigger a Cronjob. */
|
|
368
|
+
export const cronjobCreateExecution = {
|
|
369
|
+
path: "/v2/cronjobs/{cronjobId}/executions",
|
|
370
|
+
method: "POST",
|
|
371
|
+
operationId: "cronjob-create-execution",
|
|
372
|
+
};
|
|
373
|
+
/** Get a Cronjob. */
|
|
374
|
+
export const cronjobGetCronjob = {
|
|
375
|
+
path: "/v2/cronjobs/{cronjobId}",
|
|
376
|
+
method: "GET",
|
|
377
|
+
operationId: "cronjob-get-cronjob",
|
|
378
|
+
};
|
|
379
|
+
/** Delete a Cronjob. */
|
|
380
|
+
export const cronjobDeleteCronjob = {
|
|
381
|
+
path: "/v2/cronjobs/{cronjobId}",
|
|
382
|
+
method: "DELETE",
|
|
383
|
+
operationId: "cronjob-delete-cronjob",
|
|
384
|
+
};
|
|
385
|
+
/** Update a Cronjob. */
|
|
386
|
+
export const cronjobUpdateCronjob = {
|
|
387
|
+
path: "/v2/cronjobs/{cronjobId}",
|
|
388
|
+
method: "PATCH",
|
|
389
|
+
operationId: "cronjob-update-cronjob",
|
|
390
|
+
};
|
|
391
|
+
/** Get a CronjobExecution. */
|
|
392
|
+
export const cronjobGetExecution = {
|
|
393
|
+
path: "/v2/cronjobs/{cronjobId}/executions/{executionId}",
|
|
394
|
+
method: "GET",
|
|
395
|
+
operationId: "cronjob-get-execution",
|
|
396
|
+
};
|
|
397
|
+
/** Update a Cronjob's app id. */
|
|
398
|
+
export const cronjobUpdateCronjobAppId = {
|
|
399
|
+
path: "/v2/cronjobs/{cronjobId}/app-id",
|
|
400
|
+
method: "PATCH",
|
|
401
|
+
operationId: "cronjob-update-cronjob-app-id",
|
|
402
|
+
};
|
|
403
|
+
/** Accept a CustomerInvite. */
|
|
404
|
+
export const customerAcceptCustomerInvite = {
|
|
405
|
+
path: "/v2/customer-invites/{inviteId}/actions/accept",
|
|
406
|
+
method: "POST",
|
|
407
|
+
operationId: "customer-accept-customer-invite",
|
|
408
|
+
};
|
|
409
|
+
/** Get all customer categories. */
|
|
410
|
+
export const customerListOfCustomerCategoriesDeprecated = {
|
|
411
|
+
path: "/v2/customercategories",
|
|
412
|
+
method: "GET",
|
|
413
|
+
operationId: "customer-list-of-customer-categories-deprecated",
|
|
414
|
+
};
|
|
415
|
+
/** Create a new customer category. */
|
|
416
|
+
export const customerCreateCategoryDeprecated = {
|
|
417
|
+
path: "/v2/customercategories",
|
|
418
|
+
method: "POST",
|
|
419
|
+
operationId: "customer-create-category-deprecated",
|
|
420
|
+
};
|
|
421
|
+
/** Get all customer categories. */
|
|
422
|
+
export const customerListOfCustomerCategories = {
|
|
423
|
+
path: "/v2/customer-categories",
|
|
424
|
+
method: "GET",
|
|
425
|
+
operationId: "customer-list-of-customer-categories",
|
|
426
|
+
};
|
|
427
|
+
/** Create a new customer category. */
|
|
428
|
+
export const customerCreateCategory = {
|
|
429
|
+
path: "/v2/customer-categories",
|
|
430
|
+
method: "POST",
|
|
431
|
+
operationId: "customer-create-category",
|
|
432
|
+
};
|
|
433
|
+
/** Create a CustomerInvite. */
|
|
434
|
+
export const customerCreateCustomerInvite = {
|
|
435
|
+
path: "/v2/customer/{customerId}/invites",
|
|
436
|
+
method: "POST",
|
|
437
|
+
operationId: "customer-create-customer-invite",
|
|
438
|
+
};
|
|
439
|
+
/** Get all customer profiles the authenticated user has access to. */
|
|
440
|
+
export const customerListCustomers = {
|
|
441
|
+
path: "/v2/customers",
|
|
442
|
+
method: "GET",
|
|
443
|
+
operationId: "customer-list-customers",
|
|
444
|
+
};
|
|
445
|
+
/** Create a new customer profile. */
|
|
446
|
+
export const customerCreateCustomer = {
|
|
447
|
+
path: "/v2/customers",
|
|
448
|
+
method: "POST",
|
|
449
|
+
operationId: "customer-create-customer",
|
|
450
|
+
};
|
|
451
|
+
/** Get all notes for the customer profile. */
|
|
452
|
+
export const customerListOfNotes = {
|
|
453
|
+
path: "/v2/customers/{customerId}/notes",
|
|
454
|
+
method: "GET",
|
|
455
|
+
operationId: "customer-list-of-notes",
|
|
456
|
+
};
|
|
457
|
+
/** Add a note to the customer profile. */
|
|
458
|
+
export const customerCreateNote = {
|
|
459
|
+
path: "/v2/customers/{customerId}/notes",
|
|
460
|
+
method: "POST",
|
|
461
|
+
operationId: "customer-create-note",
|
|
462
|
+
};
|
|
463
|
+
/** Decline a CustomerInvite. */
|
|
464
|
+
export const customerDeclineCustomerInvite = {
|
|
465
|
+
path: "/v2/customer-invites/{inviteId}/actions/decline",
|
|
466
|
+
method: "POST",
|
|
467
|
+
operationId: "customer-decline-customer-invite",
|
|
468
|
+
};
|
|
469
|
+
/** Get a customer category. */
|
|
470
|
+
export const customerDetailOfCustomerCategoryDeprecated = {
|
|
471
|
+
path: "/v2/customercategories/{categoryId}",
|
|
472
|
+
method: "GET",
|
|
473
|
+
operationId: "customer-detail-of-customer-category-deprecated",
|
|
474
|
+
};
|
|
475
|
+
/** Update a customer category. */
|
|
476
|
+
export const customerUpdateCategoryDeprecated = {
|
|
477
|
+
path: "/v2/customercategories/{categoryId}",
|
|
478
|
+
method: "PUT",
|
|
479
|
+
operationId: "customer-update-category-deprecated",
|
|
480
|
+
};
|
|
481
|
+
/** Delete a customer category. */
|
|
482
|
+
export const customerDeleteCategoryDeprecated = {
|
|
483
|
+
path: "/v2/customercategories/{categoryId}",
|
|
484
|
+
method: "DELETE",
|
|
485
|
+
operationId: "customer-delete-category-deprecated",
|
|
486
|
+
};
|
|
487
|
+
/** Get a customer category. */
|
|
488
|
+
export const customerGetCustomerCategory = {
|
|
489
|
+
path: "/v2/customer-categories/{categoryId}",
|
|
490
|
+
method: "GET",
|
|
491
|
+
operationId: "customer-get-customer-category",
|
|
492
|
+
};
|
|
493
|
+
/** Update a customer category. */
|
|
494
|
+
export const customerUpdateCategory = {
|
|
495
|
+
path: "/v2/customer-categories/{categoryId}",
|
|
496
|
+
method: "PUT",
|
|
497
|
+
operationId: "customer-update-category",
|
|
498
|
+
};
|
|
499
|
+
/** Delete a customer category. */
|
|
500
|
+
export const customerDeleteCategory = {
|
|
501
|
+
path: "/v2/customer-categories/{categoryId}",
|
|
502
|
+
method: "DELETE",
|
|
503
|
+
operationId: "customer-delete-category",
|
|
504
|
+
};
|
|
505
|
+
/** Get a CustomerInvite. */
|
|
506
|
+
export const customerGetCustomerInvite = {
|
|
507
|
+
path: "/v2/customer-invites/{inviteId}",
|
|
508
|
+
method: "GET",
|
|
509
|
+
operationId: "customer-get-customer-invite",
|
|
510
|
+
};
|
|
511
|
+
/** Delete a CustomerInvite. */
|
|
512
|
+
export const customerDeleteCustomerInvite = {
|
|
513
|
+
path: "/v2/customer-invites/{inviteId}",
|
|
514
|
+
method: "DELETE",
|
|
515
|
+
operationId: "customer-delete-customer-invite",
|
|
516
|
+
};
|
|
517
|
+
/** Get a CustomerMembership. */
|
|
518
|
+
export const customerGetCustomerMembership = {
|
|
519
|
+
path: "/v2/customer-memberships/{membershipId}",
|
|
520
|
+
method: "GET",
|
|
521
|
+
operationId: "customer-get-customer-membership",
|
|
522
|
+
};
|
|
523
|
+
/** Delete a CustomerMembership. */
|
|
524
|
+
export const customerDeleteCustomerMembership = {
|
|
525
|
+
path: "/v2/customer-memberships/{membershipId}",
|
|
526
|
+
method: "DELETE",
|
|
527
|
+
operationId: "customer-delete-customer-membership",
|
|
528
|
+
};
|
|
529
|
+
/** Update a CustomerMembership. */
|
|
530
|
+
export const customerUpdateCustomerMembership = {
|
|
531
|
+
path: "/v2/customer-memberships/{membershipId}",
|
|
532
|
+
method: "PATCH",
|
|
533
|
+
operationId: "customer-update-customer-membership",
|
|
534
|
+
};
|
|
535
|
+
/** Get a customer profile. */
|
|
536
|
+
export const customerGetCustomer = {
|
|
537
|
+
path: "/v2/customers/{customerId}",
|
|
538
|
+
method: "GET",
|
|
539
|
+
operationId: "customer-get-customer",
|
|
540
|
+
};
|
|
541
|
+
/** Update a customer profile. */
|
|
542
|
+
export const customerUpdateCustomer = {
|
|
543
|
+
path: "/v2/customers/{customerId}",
|
|
544
|
+
method: "PUT",
|
|
545
|
+
operationId: "customer-update-customer",
|
|
546
|
+
};
|
|
547
|
+
/** Delete a customer profile. */
|
|
548
|
+
export const customerDeleteCustomer = {
|
|
549
|
+
path: "/v2/customers/{customerId}",
|
|
550
|
+
method: "DELETE",
|
|
551
|
+
operationId: "customer-delete-customer",
|
|
552
|
+
};
|
|
553
|
+
/** Update a note of the customer profile. */
|
|
554
|
+
export const customerUpdateNote = {
|
|
555
|
+
path: "/v2/customers/{customerId}/notes/{noteId}",
|
|
556
|
+
method: "POST",
|
|
557
|
+
operationId: "customer-update-note",
|
|
558
|
+
};
|
|
559
|
+
/** Delete a note from customer profile. */
|
|
560
|
+
export const customerDeleteNote = {
|
|
561
|
+
path: "/v2/customers/{customerId}/notes/{noteId}",
|
|
562
|
+
method: "DELETE",
|
|
563
|
+
operationId: "customer-delete-note",
|
|
564
|
+
};
|
|
565
|
+
/** Get a CustomerInvite by token. */
|
|
566
|
+
export const customerGetCustomerTokenInvite = {
|
|
567
|
+
path: "/v2/customer-token-invite",
|
|
568
|
+
method: "GET",
|
|
569
|
+
operationId: "customer-get-customer-token-invite",
|
|
570
|
+
};
|
|
571
|
+
/** Check if the customer profile has a valid contract partner configured. */
|
|
572
|
+
export const customerIsCustomerLegallyCompetent = {
|
|
573
|
+
path: "/v2/customers/{customerId}/legally-competent",
|
|
574
|
+
method: "GET",
|
|
575
|
+
operationId: "customer-is-customer-legally-competent",
|
|
576
|
+
};
|
|
577
|
+
/** Leave a Customer. */
|
|
578
|
+
export const customerLeaveCustomer = {
|
|
579
|
+
path: "/v2/customer/{customerId}/actions/leave",
|
|
580
|
+
method: "POST",
|
|
581
|
+
operationId: "customer-leave-customer",
|
|
582
|
+
};
|
|
583
|
+
/** List all CustomerInvites for the executing user. */
|
|
584
|
+
export const customerListCustomerInvites = {
|
|
585
|
+
path: "/v2/customer-invites",
|
|
586
|
+
method: "GET",
|
|
587
|
+
operationId: "customer-list-customer-invites",
|
|
588
|
+
};
|
|
589
|
+
/** List all CustomerMemberships for the executing user. */
|
|
590
|
+
export const customerListCustomerMemberships = {
|
|
591
|
+
path: "/v2/customer-memberships",
|
|
592
|
+
method: "GET",
|
|
593
|
+
operationId: "customer-list-customer-memberships",
|
|
594
|
+
};
|
|
595
|
+
/** List all invites for a Customer. */
|
|
596
|
+
export const customerListInvitesForCustomer = {
|
|
597
|
+
path: "/v2/customers/{customerId}/invites",
|
|
598
|
+
method: "GET",
|
|
599
|
+
operationId: "customer-list-invites-for-customer",
|
|
600
|
+
};
|
|
601
|
+
/** List all memberships belonging to a Customer. */
|
|
602
|
+
export const customerListMembershipsForCustomer = {
|
|
603
|
+
path: "/v2/customers/{customerId}/memberships",
|
|
604
|
+
method: "GET",
|
|
605
|
+
operationId: "customer-list-memberships-for-customer",
|
|
606
|
+
};
|
|
607
|
+
/** Request a new avatar upload for the customer profile. */
|
|
608
|
+
export const customerRequestAvatarUpload = {
|
|
609
|
+
path: "/v2/customers/{customerId}/avatar",
|
|
610
|
+
method: "POST",
|
|
611
|
+
operationId: "customer-request-avatar-upload",
|
|
612
|
+
};
|
|
613
|
+
/** Remove the avatar picture of the customer profile. */
|
|
614
|
+
export const customerRemoveAvatar = {
|
|
615
|
+
path: "/v2/customers/{customerId}/avatar",
|
|
616
|
+
method: "DELETE",
|
|
617
|
+
operationId: "customer-remove-avatar",
|
|
618
|
+
};
|
|
619
|
+
/** Resend the mail for a CustomerInvite. */
|
|
620
|
+
export const customerResendCustomerInviteMail = {
|
|
621
|
+
path: "/v2/customer-invites/{inviteId}/actions/resend",
|
|
622
|
+
method: "POST",
|
|
623
|
+
operationId: "customer-resend-customer-invite-mail",
|
|
624
|
+
};
|
|
625
|
+
/** List MySQLDatabases belonging to a Project. */
|
|
626
|
+
export const databaseListMysqlDatabases = {
|
|
627
|
+
path: "/v2/projects/{projectId}/mysql-databases",
|
|
628
|
+
method: "GET",
|
|
629
|
+
operationId: "database-list-mysql-databases",
|
|
630
|
+
};
|
|
631
|
+
/** Create a MySQLDatabase with an optional MySQLUser */
|
|
632
|
+
export const databaseCreateMysqlDatabase = {
|
|
633
|
+
path: "/v2/projects/{projectId}/mysql-databases",
|
|
634
|
+
method: "POST",
|
|
635
|
+
operationId: "database-create-mysql-database",
|
|
636
|
+
};
|
|
637
|
+
/** List MySQLUsers belonging to a database. */
|
|
638
|
+
export const databaseListMysqlUsers = {
|
|
639
|
+
path: "/v2/mysql-databases/{databaseId}/users",
|
|
640
|
+
method: "GET",
|
|
641
|
+
operationId: "database-list-mysql-users",
|
|
642
|
+
};
|
|
643
|
+
/** Create a MySQLUser. */
|
|
644
|
+
export const databaseCreateMysqlUser = {
|
|
645
|
+
path: "/v2/mysql-databases/{databaseId}/users",
|
|
646
|
+
method: "POST",
|
|
647
|
+
operationId: "database-create-mysql-user",
|
|
648
|
+
};
|
|
649
|
+
/** List RedisDatabases belonging to a project. */
|
|
650
|
+
export const databaseListRedisDatabases = {
|
|
651
|
+
path: "/v2/projects/{projectId}/redis-databases",
|
|
652
|
+
method: "GET",
|
|
653
|
+
operationId: "database-list-redis-databases",
|
|
654
|
+
};
|
|
655
|
+
/** Create a RedisDatabase. */
|
|
656
|
+
export const databaseCreateRedisDatabase = {
|
|
657
|
+
path: "/v2/projects/{projectId}/redis-databases",
|
|
658
|
+
method: "POST",
|
|
659
|
+
operationId: "database-create-redis-database",
|
|
660
|
+
};
|
|
661
|
+
/** Get a MySQLDatabase. */
|
|
662
|
+
export const databaseGetMysqlDatabase = {
|
|
663
|
+
path: "/v2/mysql-databases/{id}",
|
|
664
|
+
method: "GET",
|
|
665
|
+
operationId: "database-get-mysql-database",
|
|
666
|
+
};
|
|
667
|
+
/** Delete a MySQLDatabase. */
|
|
668
|
+
export const databaseDeleteMysqlDatabase = {
|
|
669
|
+
path: "/v2/mysql-databases/{id}",
|
|
670
|
+
method: "DELETE",
|
|
671
|
+
operationId: "database-delete-mysql-database",
|
|
672
|
+
};
|
|
673
|
+
/** Get a MySQLUser. */
|
|
674
|
+
export const databaseGetMysqlUser = {
|
|
675
|
+
path: "/v2/mysql-users/{id}",
|
|
676
|
+
method: "GET",
|
|
677
|
+
operationId: "database-get-mysql-user",
|
|
678
|
+
};
|
|
679
|
+
/** Update a MySQLUser. */
|
|
680
|
+
export const databaseUpdateMysqlUser = {
|
|
681
|
+
path: "/v2/mysql-users/{id}",
|
|
682
|
+
method: "PUT",
|
|
683
|
+
operationId: "database-update-mysql-user",
|
|
684
|
+
};
|
|
685
|
+
/** Delete a MySQLUser. */
|
|
686
|
+
export const databaseDeleteMysqlUser = {
|
|
687
|
+
path: "/v2/mysql-users/{id}",
|
|
688
|
+
method: "DELETE",
|
|
689
|
+
operationId: "database-delete-mysql-user",
|
|
690
|
+
};
|
|
691
|
+
/** Get a RedisDatabase. */
|
|
692
|
+
export const databaseGetRedisDatabase = {
|
|
693
|
+
path: "/v2/redis-databases/{id}",
|
|
694
|
+
method: "GET",
|
|
695
|
+
operationId: "database-get-redis-database",
|
|
696
|
+
};
|
|
697
|
+
/** Delete a RedisDatabase. */
|
|
698
|
+
export const databaseDeleteRedisDatabase = {
|
|
699
|
+
path: "/v2/redis-databases/{id}",
|
|
700
|
+
method: "DELETE",
|
|
701
|
+
operationId: "database-delete-redis-database",
|
|
702
|
+
};
|
|
703
|
+
/** Disable a MySQLUser. */
|
|
704
|
+
export const databaseDisableMysqlUser = {
|
|
705
|
+
path: "/v2/mysql-users/{id}/actions/disable",
|
|
706
|
+
method: "POST",
|
|
707
|
+
operationId: "database-disable-mysql-user",
|
|
708
|
+
};
|
|
709
|
+
/** Enable a MySQLUser. */
|
|
710
|
+
export const databaseEnableMysqlUser = {
|
|
711
|
+
path: "/v2/mysql-users/{id}/actions/enable",
|
|
712
|
+
method: "POST",
|
|
713
|
+
operationId: "database-enable-mysql-user",
|
|
714
|
+
};
|
|
715
|
+
/** Get a MySQLUser's PhpMyAdmin-URL. */
|
|
716
|
+
export const databaseGetMysqlUserPhpMyAdminUrl = {
|
|
717
|
+
path: "/v2/mysql-users/{id}/php-my-admin-url",
|
|
718
|
+
method: "GET",
|
|
719
|
+
operationId: "database-get-mysql-user-php-my-admin-url",
|
|
720
|
+
};
|
|
721
|
+
/** List available MySQL character sets and collations, optionally filtered by a MySQLVersion. */
|
|
722
|
+
export const databaseListMysqlCharsets = {
|
|
723
|
+
path: "/v2/mysql-charsets",
|
|
724
|
+
method: "GET",
|
|
725
|
+
operationId: "database-list-mysql-charsets",
|
|
726
|
+
};
|
|
727
|
+
/** List available MySQLVersions. */
|
|
728
|
+
export const databaseListMysqlVersions = {
|
|
729
|
+
path: "/v2/mysql-versions",
|
|
730
|
+
method: "GET",
|
|
731
|
+
operationId: "database-list-mysql-versions",
|
|
732
|
+
};
|
|
733
|
+
/** List available Redis versions. */
|
|
734
|
+
export const databaseListRedisVersions = {
|
|
735
|
+
path: "/v2/redis-versions",
|
|
736
|
+
method: "GET",
|
|
737
|
+
operationId: "database-list-redis-versions",
|
|
738
|
+
};
|
|
739
|
+
/** Update a MySQLDatabase's default character settings. */
|
|
740
|
+
export const databaseUpdateMysqlDatabaseDefaultCharset = {
|
|
741
|
+
path: "/v2/mysql-databases/{id}/default-charset",
|
|
742
|
+
method: "PATCH",
|
|
743
|
+
operationId: "database-update-mysql-database-default-charset",
|
|
744
|
+
};
|
|
745
|
+
/** Update a MySQLDatabase's description. */
|
|
746
|
+
export const databaseUpdateMysqlDatabaseDescription = {
|
|
747
|
+
path: "/v2/mysql-databases/{id}/description",
|
|
748
|
+
method: "PATCH",
|
|
749
|
+
operationId: "database-update-mysql-database-description",
|
|
750
|
+
};
|
|
751
|
+
/** Update a MySQLUser's password. */
|
|
752
|
+
export const databaseUpdateMysqlUserPassword = {
|
|
753
|
+
path: "/v2/mysql-users/{id}/password",
|
|
754
|
+
method: "PATCH",
|
|
755
|
+
operationId: "database-update-mysql-user-password",
|
|
756
|
+
};
|
|
757
|
+
/** Update a RedisDatabase's description. */
|
|
758
|
+
export const databaseUpdateRedisDatabaseDescription = {
|
|
759
|
+
path: "/v2/redis-databases/{id}/description",
|
|
760
|
+
method: "PATCH",
|
|
761
|
+
operationId: "database-update-redis-database-description",
|
|
762
|
+
};
|
|
763
|
+
/** Get InvoiceSettings of a Customer. */
|
|
764
|
+
export const deprecatedInvoiceInvoiceSettings = {
|
|
765
|
+
path: "/v2/customers/{customerId}/invoicesettings",
|
|
766
|
+
method: "GET",
|
|
767
|
+
operationId: "deprecated-invoice-invoice-settings",
|
|
768
|
+
};
|
|
769
|
+
/** Update InvoiceSettings of a Customer. */
|
|
770
|
+
export const deprecatedInvoiceUpdateInvoiceSettings = {
|
|
771
|
+
path: "/v2/customers/{customerId}/invoicesettings",
|
|
772
|
+
method: "PUT",
|
|
773
|
+
operationId: "deprecated-invoice-update-invoice-settings",
|
|
774
|
+
};
|
|
775
|
+
/** Prospace tariff change order */
|
|
776
|
+
export const deprecatedOrderChangeProjecthosting = {
|
|
777
|
+
path: "/v2/orders/actions/change-projecthosting",
|
|
778
|
+
method: "POST",
|
|
779
|
+
operationId: "deprecated-order-change-projecthosting",
|
|
780
|
+
};
|
|
781
|
+
/** SpaceServer order */
|
|
782
|
+
export const deprecatedOrderChangeServer = {
|
|
783
|
+
path: "/v2/orders/actions/change-server",
|
|
784
|
+
method: "POST",
|
|
785
|
+
operationId: "deprecated-order-change-server",
|
|
786
|
+
};
|
|
787
|
+
/** Order a domain. */
|
|
788
|
+
export const deprecatedOrderOrderDomain = {
|
|
789
|
+
path: "/v2/orders/actions/order-domain",
|
|
790
|
+
method: "POST",
|
|
791
|
+
operationId: "deprecated-order-order-domain",
|
|
792
|
+
};
|
|
793
|
+
/** Prospace order */
|
|
794
|
+
export const deprecatedOrderOrderProjecthosting = {
|
|
795
|
+
path: "/v2/orders/actions/order-projecthosting",
|
|
796
|
+
method: "POST",
|
|
797
|
+
operationId: "deprecated-order-order-projecthosting",
|
|
798
|
+
};
|
|
799
|
+
/** SpaceServer order */
|
|
800
|
+
export const deprecatedOrderOrderServer = {
|
|
801
|
+
path: "/v2/orders/actions/order-server",
|
|
802
|
+
method: "POST",
|
|
803
|
+
operationId: "deprecated-order-order-server",
|
|
804
|
+
};
|
|
805
|
+
/** Preview Prospace tariff change */
|
|
806
|
+
export const deprecatedOrderPreviewChangeProjecthosting = {
|
|
807
|
+
path: "/v2/orders/actions/preview-change-projecthosting",
|
|
808
|
+
method: "POST",
|
|
809
|
+
operationId: "deprecated-order-preview-change-projecthosting",
|
|
810
|
+
};
|
|
811
|
+
/** Preview SpaceServer tariff change */
|
|
812
|
+
export const deprecatedOrderPreviewChangeServer = {
|
|
813
|
+
path: "/v2/orders/actions/preview-change-server",
|
|
814
|
+
method: "POST",
|
|
815
|
+
operationId: "deprecated-order-preview-change-server",
|
|
816
|
+
};
|
|
817
|
+
/** Preview domain order. */
|
|
818
|
+
export const deprecatedOrderPreviewOrderDomain = {
|
|
819
|
+
path: "/v2/orders/actions/preview-order-domain",
|
|
820
|
+
method: "POST",
|
|
821
|
+
operationId: "deprecated-order-preview-order-domain",
|
|
822
|
+
};
|
|
823
|
+
/** Preview Prospace order */
|
|
824
|
+
export const deprecatedOrderPreviewOrderProjecthosting = {
|
|
825
|
+
path: "/v2/orders/actions/preview-order-projecthosting",
|
|
826
|
+
method: "POST",
|
|
827
|
+
operationId: "deprecated-order-preview-order-projecthosting",
|
|
828
|
+
};
|
|
829
|
+
/** Preview SpaceServer order */
|
|
830
|
+
export const deprecatedOrderPreviewOrderServer = {
|
|
831
|
+
path: "/v2/orders/actions/preview-order-server",
|
|
832
|
+
method: "POST",
|
|
833
|
+
operationId: "deprecated-order-preview-order-server",
|
|
834
|
+
};
|
|
835
|
+
/** updates a-records for a specific zone */
|
|
836
|
+
export const dnsRecordAsetCustom = {
|
|
837
|
+
path: "/v2/dns/zones/{zoneId}/recordset/acombined/custom",
|
|
838
|
+
method: "PUT",
|
|
839
|
+
operationId: "dns-record-a-set-custom",
|
|
840
|
+
};
|
|
841
|
+
/** set a-records managed by ingress for a specific zone */
|
|
842
|
+
export const dnsRecordAsetManagedByIngress = {
|
|
843
|
+
path: "/v2/dns/zones/{zoneId}/recordset/acombined/managed/ingress",
|
|
844
|
+
method: "POST",
|
|
845
|
+
operationId: "dns-record-a-set-managed-by-ingress",
|
|
846
|
+
};
|
|
847
|
+
/** updates cname-record for a specific zone */
|
|
848
|
+
export const dnsRecordCnameSet = {
|
|
849
|
+
path: "/v2/dns/zones/{zoneId}/recordset/cname",
|
|
850
|
+
method: "PUT",
|
|
851
|
+
operationId: "dns-record-cname-set",
|
|
852
|
+
};
|
|
853
|
+
/** updates mx-records for a specific zone */
|
|
854
|
+
export const dnsRecordMxSetCustom = {
|
|
855
|
+
path: "/v2/dns/zones/{zoneId}/recordset/mx/custom",
|
|
856
|
+
method: "PUT",
|
|
857
|
+
operationId: "dns-record-mx-set-custom",
|
|
858
|
+
};
|
|
859
|
+
/** sets mx-records to managed for a specific zone */
|
|
860
|
+
export const dnsRecordMxSetManaged = {
|
|
861
|
+
path: "/v2/dns/zones/{zoneId}/recordset/mx/managed",
|
|
862
|
+
method: "POST",
|
|
863
|
+
operationId: "dns-record-mx-set-managed",
|
|
864
|
+
};
|
|
865
|
+
/** updates txt-records for a specific zone */
|
|
866
|
+
export const dnsRecordTxtSet = {
|
|
867
|
+
path: "/v2/dns/zones/{zoneId}/recordset/txt",
|
|
868
|
+
method: "PUT",
|
|
869
|
+
operationId: "dns-record-txt-set",
|
|
870
|
+
};
|
|
871
|
+
/** gets a specific zone */
|
|
872
|
+
export const dnsZoneGetSpecific = {
|
|
873
|
+
path: "/v2/dns/zones/{zoneId}",
|
|
874
|
+
method: "GET",
|
|
875
|
+
operationId: "dns-zone-get-specific",
|
|
876
|
+
};
|
|
877
|
+
/** gets all dns zones by project id */
|
|
878
|
+
export const dnsZonesForProject = {
|
|
879
|
+
path: "/v2/projects/{projectId}/dns/zones",
|
|
880
|
+
method: "GET",
|
|
881
|
+
operationId: "dns-zones-for-project",
|
|
882
|
+
};
|
|
883
|
+
/** Abort a declare process. */
|
|
884
|
+
export const domainServiceAbortDeclareProcess = {
|
|
885
|
+
path: "/v2/domains/{domainId}/declarations",
|
|
886
|
+
method: "DELETE",
|
|
887
|
+
operationId: "domain-service-abort-declare-process",
|
|
888
|
+
};
|
|
889
|
+
/** Change the ownerC of a domain. */
|
|
890
|
+
export const domainServiceChangeOwnercOfDomain = {
|
|
891
|
+
path: "/v2/domains/{domainId}/handles/ownerc",
|
|
892
|
+
method: "PUT",
|
|
893
|
+
operationId: "domain-service-change-ownerc-of-domain",
|
|
894
|
+
};
|
|
895
|
+
/** Change the Project relation of a Domain. */
|
|
896
|
+
export const domainServiceChangeProjectOfDomain = {
|
|
897
|
+
path: "/v2/domains/{domainId}/projectId",
|
|
898
|
+
method: "PUT",
|
|
899
|
+
operationId: "domain-service-change-project-of-domain",
|
|
900
|
+
};
|
|
901
|
+
/** Check if a Domain is available to register. */
|
|
902
|
+
export const domainServiceCheckDomainAvailability = {
|
|
903
|
+
path: "/v2/domains",
|
|
904
|
+
method: "POST",
|
|
905
|
+
operationId: "domain-service-check-domain-availability",
|
|
906
|
+
};
|
|
907
|
+
/** Create an AuthCode for a Domains transfer out process. */
|
|
908
|
+
export const domainServiceCreateAuthcodeForDomain = {
|
|
909
|
+
path: "/v2/domains/{domainId}/actions/create-authcode",
|
|
910
|
+
method: "POST",
|
|
911
|
+
operationId: "domain-service-create-authcode-for-domain",
|
|
912
|
+
};
|
|
913
|
+
/** Create an AuthCode2. */
|
|
914
|
+
export const domainServiceCreateAuthcode2ForDomain = {
|
|
915
|
+
path: "/v2/domains/{domainId}/actions/create-authcode2",
|
|
916
|
+
method: "POST",
|
|
917
|
+
operationId: "domain-service-create-authcode2-for-domain",
|
|
918
|
+
};
|
|
919
|
+
/** Change all nameservers of a Domain. */
|
|
920
|
+
export const domainServiceDeclareNameservers = {
|
|
921
|
+
path: "/v2/domains/{domainId}/nameservers",
|
|
922
|
+
method: "PUT",
|
|
923
|
+
operationId: "domain-service-declare-nameservers",
|
|
924
|
+
};
|
|
925
|
+
/** Update an AuthCode. */
|
|
926
|
+
export const domainServiceDeclareProcessChangeAuthcode = {
|
|
927
|
+
path: "/v2/domains/{domainId}/declarations/authcode",
|
|
928
|
+
method: "PUT",
|
|
929
|
+
operationId: "domain-service-declare-process-change-authcode",
|
|
930
|
+
};
|
|
931
|
+
/** Update a Domain's OwnerC handle. */
|
|
932
|
+
export const domainServiceDeclareProcessChangeHandles = {
|
|
933
|
+
path: "/v2/domains/{domainId}/declarations/handles",
|
|
934
|
+
method: "PUT",
|
|
935
|
+
operationId: "domain-service-declare-process-change-handles",
|
|
936
|
+
};
|
|
937
|
+
/** Get a Domain. */
|
|
938
|
+
export const domainServiceGetDomain = {
|
|
939
|
+
path: "/v2/domains/{domainId}",
|
|
940
|
+
method: "GET",
|
|
941
|
+
operationId: "domain-service-get-domain",
|
|
942
|
+
};
|
|
943
|
+
/** Delete a Domain. */
|
|
944
|
+
export const domainServiceDeleteDomain = {
|
|
945
|
+
path: "/v2/domains/{domainId}",
|
|
946
|
+
method: "DELETE",
|
|
947
|
+
operationId: "domain-service-delete-domain",
|
|
948
|
+
};
|
|
949
|
+
/** Get a HandleSchema. */
|
|
950
|
+
export const domainServiceGetHandleFields = {
|
|
951
|
+
path: "/v2/domains/handle-schema/{domainName}",
|
|
952
|
+
method: "GET",
|
|
953
|
+
operationId: "domain-service-get-handle-fields",
|
|
954
|
+
};
|
|
955
|
+
/** Get a domain ownership. */
|
|
956
|
+
export const domainServiceGetSpecificDomainOwnership = {
|
|
957
|
+
path: "/v2/domain-ownerships/{domainOwnershipId}",
|
|
958
|
+
method: "GET",
|
|
959
|
+
operationId: "domain-service-get-specific-domain-ownership",
|
|
960
|
+
};
|
|
961
|
+
/** Verify a domain ownership. */
|
|
962
|
+
export const domainServiceVerifyDomainOwnership = {
|
|
963
|
+
path: "/v2/domain-ownerships/{domainOwnershipId}",
|
|
964
|
+
method: "POST",
|
|
965
|
+
operationId: "domain-service-verify-domain-ownership",
|
|
966
|
+
};
|
|
967
|
+
/** Get a toplevel domain. */
|
|
968
|
+
export const domainServiceGetToplevelDomain = {
|
|
969
|
+
path: "/v2/toplevel-domains/{tld}",
|
|
970
|
+
method: "GET",
|
|
971
|
+
operationId: "domain-service-get-toplevel-domain",
|
|
972
|
+
};
|
|
973
|
+
/** List all domain ownerships of a project. */
|
|
974
|
+
export const domainServiceListDomainOwnerships = {
|
|
975
|
+
path: "/v2/projects/{projectId}/domain-ownerships",
|
|
976
|
+
method: "GET",
|
|
977
|
+
operationId: "domain-service-list-domain-ownerships",
|
|
978
|
+
};
|
|
979
|
+
/** List Domains belonging to a Project. */
|
|
980
|
+
export const domainServiceListDomains = {
|
|
981
|
+
path: "/v2/projects/{projectId}/domains",
|
|
982
|
+
method: "GET",
|
|
983
|
+
operationId: "domain-service-list-domains",
|
|
984
|
+
};
|
|
985
|
+
/** List all supported toplevel domains. */
|
|
986
|
+
export const domainServiceListToplevelDomains = {
|
|
987
|
+
path: "/v2/toplevel-domains",
|
|
988
|
+
method: "GET",
|
|
989
|
+
operationId: "domain-service-list-toplevel-domains",
|
|
990
|
+
};
|
|
991
|
+
/** Resend a domain email. */
|
|
992
|
+
export const domainServiceResendDomainEmail = {
|
|
993
|
+
path: "/v2/domains/{domainId}/actions/resend-email",
|
|
994
|
+
method: "POST",
|
|
995
|
+
operationId: "domain-service-resend-domain-email",
|
|
996
|
+
};
|
|
997
|
+
/** Create a File. */
|
|
998
|
+
export const fileCreateFile = {
|
|
999
|
+
path: "/v2/files",
|
|
1000
|
+
method: "POST",
|
|
1001
|
+
operationId: "file-create-file",
|
|
1002
|
+
};
|
|
1003
|
+
/** Get a File's meta. */
|
|
1004
|
+
export const fileGetFileMeta = {
|
|
1005
|
+
path: "/v2/files/{id}/meta",
|
|
1006
|
+
method: "GET",
|
|
1007
|
+
operationId: "file-get-file-meta",
|
|
1008
|
+
};
|
|
1009
|
+
/** Get a Token's upload rules. */
|
|
1010
|
+
export const fileGetFileTokenRules = {
|
|
1011
|
+
path: "/v2/file-token-rules/{token}",
|
|
1012
|
+
method: "GET",
|
|
1013
|
+
operationId: "file-get-file-token-rules",
|
|
1014
|
+
};
|
|
1015
|
+
/** Get a Type's upload rules. */
|
|
1016
|
+
export const fileGetFileTypeRules = {
|
|
1017
|
+
path: "/v2/file-type-rules/{name}",
|
|
1018
|
+
method: "GET",
|
|
1019
|
+
operationId: "file-get-file-type-rules",
|
|
1020
|
+
};
|
|
1021
|
+
/** Get a File. */
|
|
1022
|
+
export const fileGetFile = {
|
|
1023
|
+
path: "/v2/files/{id}",
|
|
1024
|
+
method: "GET",
|
|
1025
|
+
operationId: "file-get-file",
|
|
1026
|
+
};
|
|
1027
|
+
/** Create an Ingress. */
|
|
1028
|
+
export const ingressServiceCreate = {
|
|
1029
|
+
path: "/v2/ingresses/",
|
|
1030
|
+
method: "POST",
|
|
1031
|
+
operationId: "ingress-service-create",
|
|
1032
|
+
};
|
|
1033
|
+
/** Get an Ingress. */
|
|
1034
|
+
export const ingressServiceGetSpecific = {
|
|
1035
|
+
path: "/v2/ingresses/{ingressId}",
|
|
1036
|
+
method: "GET",
|
|
1037
|
+
operationId: "ingress-service-get-specific",
|
|
1038
|
+
};
|
|
1039
|
+
/** Delete an Ingress. */
|
|
1040
|
+
export const ingressServiceDelete = {
|
|
1041
|
+
path: "/v2/ingresses/{ingressId}",
|
|
1042
|
+
method: "DELETE",
|
|
1043
|
+
operationId: "ingress-service-delete",
|
|
1044
|
+
};
|
|
1045
|
+
/** List Ingresses the user has access to. */
|
|
1046
|
+
export const ingressServiceListAccessible = {
|
|
1047
|
+
path: "/v2/ingresses",
|
|
1048
|
+
method: "GET",
|
|
1049
|
+
operationId: "ingress-service-list-accessible",
|
|
1050
|
+
};
|
|
1051
|
+
/** List Ingresses belonging to a project. */
|
|
1052
|
+
export const ingressServiceListForProject = {
|
|
1053
|
+
path: "/v2/projects/{projectId}/ingresses",
|
|
1054
|
+
method: "GET",
|
|
1055
|
+
operationId: "ingress-service-list-for-project",
|
|
1056
|
+
};
|
|
1057
|
+
/** Update an Ingresses paths. */
|
|
1058
|
+
export const ingressServicePaths = {
|
|
1059
|
+
path: "/v2/ingresses/{ingressId}/paths",
|
|
1060
|
+
method: "PUT",
|
|
1061
|
+
operationId: "ingress-service-paths",
|
|
1062
|
+
};
|
|
1063
|
+
/** Update an Ingresses tls settings. */
|
|
1064
|
+
export const ingressServiceTls = {
|
|
1065
|
+
path: "/v2/ingresses/{ingressId}/tls",
|
|
1066
|
+
method: "PUT",
|
|
1067
|
+
operationId: "ingress-service-tls",
|
|
1068
|
+
};
|
|
1069
|
+
/** Get details of an Invoice. */
|
|
1070
|
+
export const invoiceDetailOfInvoice = {
|
|
1071
|
+
path: "/v2/customers/{customerId}/invoices/{invoiceId}",
|
|
1072
|
+
method: "GET",
|
|
1073
|
+
operationId: "invoice-detail-of-invoice",
|
|
1074
|
+
};
|
|
1075
|
+
/** Get InvoiceSettings of a Customer. */
|
|
1076
|
+
export const invoiceGetDetailOfInvoiceSettings = {
|
|
1077
|
+
path: "/v2/customers/{customerId}/invoice-settings",
|
|
1078
|
+
method: "GET",
|
|
1079
|
+
operationId: "invoice-get-detail-of-invoice-settings",
|
|
1080
|
+
};
|
|
1081
|
+
/** Update InvoiceSettings of a Customer. */
|
|
1082
|
+
export const invoiceUpdateInvoiceSettings = {
|
|
1083
|
+
path: "/v2/customers/{customerId}/invoice-settings",
|
|
1084
|
+
method: "PUT",
|
|
1085
|
+
operationId: "invoice-update-invoice-settings",
|
|
1086
|
+
};
|
|
1087
|
+
/** List Invoices of a Customer. */
|
|
1088
|
+
export const invoiceListCustomerInvoices = {
|
|
1089
|
+
path: "/v2/customers/{customerId}/invoices",
|
|
1090
|
+
method: "GET",
|
|
1091
|
+
operationId: "invoice-list-customer-invoices",
|
|
1092
|
+
};
|
|
1093
|
+
/** Get all deliveryboxes by project ID */
|
|
1094
|
+
export const mailServiceDeliveryboxList = {
|
|
1095
|
+
path: "/v2/projects/{projectId}/deliveryboxes",
|
|
1096
|
+
method: "GET",
|
|
1097
|
+
operationId: "mail-service-deliverybox-list",
|
|
1098
|
+
};
|
|
1099
|
+
/** Create a new deliverybox */
|
|
1100
|
+
export const mailServiceDeliveryboxCreate = {
|
|
1101
|
+
path: "/v2/projects/{projectId}/deliveryboxes",
|
|
1102
|
+
method: "POST",
|
|
1103
|
+
operationId: "mail-service-deliverybox-create",
|
|
1104
|
+
};
|
|
1105
|
+
/** Get a specific deliverybox */
|
|
1106
|
+
export const mailServiceDeliveryboxGetSpecific = {
|
|
1107
|
+
path: "/v2/deliveryboxes/{id}",
|
|
1108
|
+
method: "GET",
|
|
1109
|
+
operationId: "mail-service-deliverybox-get-specific",
|
|
1110
|
+
};
|
|
1111
|
+
/** Delete a specific deliverybox */
|
|
1112
|
+
export const mailServiceDeliveryboxDelete = {
|
|
1113
|
+
path: "/v2/deliveryboxes/{id}",
|
|
1114
|
+
method: "DELETE",
|
|
1115
|
+
operationId: "mail-service-deliverybox-delete",
|
|
1116
|
+
};
|
|
1117
|
+
/** Update the description of an deliverybox */
|
|
1118
|
+
export const mailServiceDeliveryboxUpdateDescription = {
|
|
1119
|
+
path: "/v2/deliveryboxes/{id}/description",
|
|
1120
|
+
method: "PUT",
|
|
1121
|
+
operationId: "mail-service-deliverybox-update-description",
|
|
1122
|
+
};
|
|
1123
|
+
/** Update the password for a specific deliverybox */
|
|
1124
|
+
export const mailServiceDeliveryboxUpdatePassword = {
|
|
1125
|
+
path: "/v2/deliveryboxes/{id}/password",
|
|
1126
|
+
method: "PUT",
|
|
1127
|
+
operationId: "mail-service-deliverybox-update-password",
|
|
1128
|
+
};
|
|
1129
|
+
/** Get all mail addresses for a project ID */
|
|
1130
|
+
export const mailServiceMailaddressList = {
|
|
1131
|
+
path: "/v2/projects/{projectId}/mailaddresses",
|
|
1132
|
+
method: "GET",
|
|
1133
|
+
operationId: "mail-service-mailaddress-list",
|
|
1134
|
+
};
|
|
1135
|
+
/** Create a new mail address */
|
|
1136
|
+
export const mailServiceMailaddressCreate = {
|
|
1137
|
+
path: "/v2/projects/{projectId}/mailaddresses",
|
|
1138
|
+
method: "POST",
|
|
1139
|
+
operationId: "mail-service-mailaddress-create",
|
|
1140
|
+
};
|
|
1141
|
+
/** Get a specific mail address */
|
|
1142
|
+
export const mailServiceMailaddressGetSpecific = {
|
|
1143
|
+
path: "/v2/mailaddresses/{id}",
|
|
1144
|
+
method: "GET",
|
|
1145
|
+
operationId: "mail-service-mailaddress-get-specific",
|
|
1146
|
+
};
|
|
1147
|
+
/** Delete a specific mail address */
|
|
1148
|
+
export const mailServiceMailaddressDelete = {
|
|
1149
|
+
path: "/v2/mailaddresses/{id}",
|
|
1150
|
+
method: "DELETE",
|
|
1151
|
+
operationId: "mail-service-mailaddress-delete",
|
|
1152
|
+
};
|
|
1153
|
+
/** Update mail-address */
|
|
1154
|
+
export const mailServiceMailaddressUpdateAddress = {
|
|
1155
|
+
path: "/v2/mailaddresses/{id}/address",
|
|
1156
|
+
method: "PUT",
|
|
1157
|
+
operationId: "mail-service-mailaddress-update-address",
|
|
1158
|
+
};
|
|
1159
|
+
/** Update the auto responder of a mail address */
|
|
1160
|
+
export const mailServiceMailaddressUpdateAutoresponder = {
|
|
1161
|
+
path: "/v2/mailaddresses/{id}/autoResponder",
|
|
1162
|
+
method: "PUT",
|
|
1163
|
+
operationId: "mail-service-mailaddress-update-autoresponder",
|
|
1164
|
+
};
|
|
1165
|
+
/** Enable or disable the catchAll flag for a specific mail address */
|
|
1166
|
+
export const mailServiceMailaddressUpdateCatchall = {
|
|
1167
|
+
path: "/v2/mailaddresses/{id}/catchAll",
|
|
1168
|
+
method: "PUT",
|
|
1169
|
+
operationId: "mail-service-mailaddress-update-catchall",
|
|
1170
|
+
};
|
|
1171
|
+
/** Update the addresses an email is forwarded to */
|
|
1172
|
+
export const mailServiceMailaddressUpdateForwardaddresses = {
|
|
1173
|
+
path: "/v2/mailaddresses/{id}/forwardaddresses",
|
|
1174
|
+
method: "PUT",
|
|
1175
|
+
operationId: "mail-service-mailaddress-update-forwardaddresses",
|
|
1176
|
+
};
|
|
1177
|
+
/** Update the password for a specific mail address */
|
|
1178
|
+
export const mailServiceMailaddressUpdatePassword = {
|
|
1179
|
+
path: "/v2/mailaddresses/{id}/password",
|
|
1180
|
+
method: "PUT",
|
|
1181
|
+
operationId: "mail-service-mailaddress-update-password",
|
|
1182
|
+
};
|
|
1183
|
+
/** Update the quota of a mailbox */
|
|
1184
|
+
export const mailServiceMailaddressUpdateQuota = {
|
|
1185
|
+
path: "/v2/mailaddresses/{id}/quota",
|
|
1186
|
+
method: "PUT",
|
|
1187
|
+
operationId: "mail-service-mailaddress-update-quota",
|
|
1188
|
+
};
|
|
1189
|
+
/** Update the spamprotection of a mailbox */
|
|
1190
|
+
export const mailServiceMailaddressUpdateSpamprotection = {
|
|
1191
|
+
path: "/v2/mailaddresses/{id}/spamprotection",
|
|
1192
|
+
method: "PUT",
|
|
1193
|
+
operationId: "mail-service-mailaddress-update-spamprotection",
|
|
1194
|
+
};
|
|
1195
|
+
/** Get settings for a given project ID */
|
|
1196
|
+
export const mailServiceProjectsettingGetSpecific = {
|
|
1197
|
+
path: "/v2/projects/{projectId}/mailsettings",
|
|
1198
|
+
method: "GET",
|
|
1199
|
+
operationId: "mail-service-projectsetting-get-specific",
|
|
1200
|
+
};
|
|
1201
|
+
/** Update blacklist for a given project ID */
|
|
1202
|
+
export const mailServiceProjectsettingUpdateBlacklist = {
|
|
1203
|
+
path: "/v2/projects/{projectId}/mailsettings/blacklist",
|
|
1204
|
+
method: "PUT",
|
|
1205
|
+
operationId: "mail-service-projectsetting-update-blacklist",
|
|
1206
|
+
};
|
|
1207
|
+
/** Update whitelist for a given project ID */
|
|
1208
|
+
export const mailServiceProjectsettingUpdateWhitelist = {
|
|
1209
|
+
path: "/v2/projects/{projectId}/mailsettings/whitelist",
|
|
1210
|
+
method: "PUT",
|
|
1211
|
+
operationId: "mail-service-projectsetting-update-whitelist",
|
|
1212
|
+
};
|
|
1213
|
+
/** getting the subscription status of the subscription */
|
|
1214
|
+
export const newsletterGetInfo = {
|
|
1215
|
+
path: "/v2/newsletter/subscriptions/{email}",
|
|
1216
|
+
method: "GET",
|
|
1217
|
+
operationId: "newsletter-get-info",
|
|
1218
|
+
};
|
|
1219
|
+
/** unsubscribe a user from the mStudio newsletter */
|
|
1220
|
+
export const newsletterUnsubscribeUser = {
|
|
1221
|
+
path: "/v2/newsletter/subscriptions/{email}",
|
|
1222
|
+
method: "DELETE",
|
|
1223
|
+
operationId: "newsletter-unsubscribe-user",
|
|
1224
|
+
};
|
|
1225
|
+
/** subscribe a user to the mStudio newsletter */
|
|
1226
|
+
export const newsletterSubscribeUser = {
|
|
1227
|
+
path: "/v2/newsletter/subscriptions",
|
|
1228
|
+
method: "POST",
|
|
1229
|
+
operationId: "newsletter-subscribe-user",
|
|
1230
|
+
};
|
|
1231
|
+
/** Get the counts for unread notifications of the user. */
|
|
1232
|
+
export const notificationsCountUnreadNotifications = {
|
|
1233
|
+
path: "/v2/notifications/unread-counts",
|
|
1234
|
+
method: "GET",
|
|
1235
|
+
operationId: "notifications-count-unread-notifications",
|
|
1236
|
+
};
|
|
1237
|
+
/** List all unread notifications */
|
|
1238
|
+
export const notificationsListNotifications = {
|
|
1239
|
+
path: "/v2/notifications",
|
|
1240
|
+
method: "GET",
|
|
1241
|
+
operationId: "notifications-list-notifications",
|
|
1242
|
+
};
|
|
1243
|
+
/** Mark all notifications as read. */
|
|
1244
|
+
export const notificationsReadAllNotifications = {
|
|
1245
|
+
path: "/v2/notifications/status",
|
|
1246
|
+
method: "PUT",
|
|
1247
|
+
operationId: "notifications-read-all-notifications",
|
|
1248
|
+
};
|
|
1249
|
+
/** Mark notification as read. */
|
|
1250
|
+
export const notificationsReadNotification = {
|
|
1251
|
+
path: "/v2/notifications/{messageId}/status",
|
|
1252
|
+
method: "PUT",
|
|
1253
|
+
operationId: "notifications-read-notification",
|
|
1254
|
+
};
|
|
1255
|
+
/** Create an Order. */
|
|
1256
|
+
export const orderCreateOrder = {
|
|
1257
|
+
path: "/v2/orders",
|
|
1258
|
+
method: "POST",
|
|
1259
|
+
operationId: "order-create-order",
|
|
1260
|
+
};
|
|
1261
|
+
/** Create TariffChange Order. */
|
|
1262
|
+
export const orderCreateTariffChange = {
|
|
1263
|
+
path: "/v2/tariff-changes",
|
|
1264
|
+
method: "POST",
|
|
1265
|
+
operationId: "order-create-tariff-change",
|
|
1266
|
+
};
|
|
1267
|
+
/** Get Order for Customer. */
|
|
1268
|
+
export const orderGetOrder = {
|
|
1269
|
+
path: "/v2/orders/{orderId}",
|
|
1270
|
+
method: "GET",
|
|
1271
|
+
operationId: "order-get-order",
|
|
1272
|
+
};
|
|
1273
|
+
/** Get list of Orders of a Customer. */
|
|
1274
|
+
export const orderListCustomerOrders = {
|
|
1275
|
+
path: "/v2/customers/{customerId}/orders",
|
|
1276
|
+
method: "GET",
|
|
1277
|
+
operationId: "order-list-customer-orders",
|
|
1278
|
+
};
|
|
1279
|
+
/** Get list of Orders of a Project. */
|
|
1280
|
+
export const orderListProjectOrders = {
|
|
1281
|
+
path: "/v2/projects/{projectId}/orders",
|
|
1282
|
+
method: "GET",
|
|
1283
|
+
operationId: "order-list-project-orders",
|
|
1284
|
+
};
|
|
1285
|
+
/** Preview Order. */
|
|
1286
|
+
export const orderPreviewOrder = {
|
|
1287
|
+
path: "/v2/order-previews",
|
|
1288
|
+
method: "POST",
|
|
1289
|
+
operationId: "order-preview-order",
|
|
1290
|
+
};
|
|
1291
|
+
/** Preview TariffChange. */
|
|
1292
|
+
export const orderPreviewTariffChange = {
|
|
1293
|
+
path: "/v2/tariff-change-previews",
|
|
1294
|
+
method: "POST",
|
|
1295
|
+
operationId: "order-preview-tariff-change",
|
|
1296
|
+
};
|
|
1297
|
+
/** Get a password policy. */
|
|
1298
|
+
export const passwordValidationServiceGetPasswordPolicy = {
|
|
1299
|
+
path: "/v2/password/policies/{path}",
|
|
1300
|
+
method: "GET",
|
|
1301
|
+
operationId: "password-validation-service-get-password-policy",
|
|
1302
|
+
};
|
|
1303
|
+
/** Accept a ProjectInvite. */
|
|
1304
|
+
export const projectAcceptProjectInvite = {
|
|
1305
|
+
path: "/v2/project-invites/{inviteId}/actions/accept",
|
|
1306
|
+
method: "POST",
|
|
1307
|
+
operationId: "project-accept-project-invite",
|
|
1308
|
+
};
|
|
1309
|
+
/** Create a ProjectInvite. */
|
|
1310
|
+
export const projectCreateProjectInvite = {
|
|
1311
|
+
path: "/v2/project/{projectId}/invites",
|
|
1312
|
+
method: "POST",
|
|
1313
|
+
operationId: "project-create-project-invite",
|
|
1314
|
+
};
|
|
1315
|
+
/** Create a Project belonging to a Server. */
|
|
1316
|
+
export const projectCreateProject = {
|
|
1317
|
+
path: "/v2/servers/{serverId}/projects",
|
|
1318
|
+
method: "POST",
|
|
1319
|
+
operationId: "project-create-project",
|
|
1320
|
+
};
|
|
1321
|
+
/** Decline a ProjectInvite. */
|
|
1322
|
+
export const projectDeclineProjectInvite = {
|
|
1323
|
+
path: "/v2/project-invites/{inviteId}/actions/decline",
|
|
1324
|
+
method: "POST",
|
|
1325
|
+
operationId: "project-decline-project-invite",
|
|
1326
|
+
};
|
|
1327
|
+
/** Request a Project avatar upload. */
|
|
1328
|
+
export const projectRequestProjectAvatarUpload = {
|
|
1329
|
+
path: "/v2/projects/{projectId}/avatar",
|
|
1330
|
+
method: "POST",
|
|
1331
|
+
operationId: "project-request-project-avatar-upload",
|
|
1332
|
+
};
|
|
1333
|
+
/** Delete a Project's avatar. */
|
|
1334
|
+
export const projectDeleteProjectAvatar = {
|
|
1335
|
+
path: "/v2/projects/{projectId}/avatar",
|
|
1336
|
+
method: "DELETE",
|
|
1337
|
+
operationId: "project-delete-project-avatar",
|
|
1338
|
+
};
|
|
1339
|
+
/** Get a ProjectInvite. */
|
|
1340
|
+
export const projectGetProjectInvite = {
|
|
1341
|
+
path: "/v2/project-invites/{inviteId}",
|
|
1342
|
+
method: "GET",
|
|
1343
|
+
operationId: "project-get-project-invite",
|
|
1344
|
+
};
|
|
1345
|
+
/** Delete a ProjectInvite. */
|
|
1346
|
+
export const projectDeleteProjectInvite = {
|
|
1347
|
+
path: "/v2/project-invites/{inviteId}",
|
|
1348
|
+
method: "DELETE",
|
|
1349
|
+
operationId: "project-delete-project-invite",
|
|
1350
|
+
};
|
|
1351
|
+
/** Get a ProjectMembership */
|
|
1352
|
+
export const projectGetProjectMembership = {
|
|
1353
|
+
path: "/v2/project-memberships/{membershipId}",
|
|
1354
|
+
method: "GET",
|
|
1355
|
+
operationId: "project-get-project-membership",
|
|
1356
|
+
};
|
|
1357
|
+
/** Delete a ProjectMembership. */
|
|
1358
|
+
export const projectDeleteProjectMembership = {
|
|
1359
|
+
path: "/v2/project-memberships/{membershipId}",
|
|
1360
|
+
method: "DELETE",
|
|
1361
|
+
operationId: "project-delete-project-membership",
|
|
1362
|
+
};
|
|
1363
|
+
/** Update a ProjectMembership. */
|
|
1364
|
+
export const projectUpdateProjectMembership = {
|
|
1365
|
+
path: "/v2/project-memberships/{membershipId}",
|
|
1366
|
+
method: "PATCH",
|
|
1367
|
+
operationId: "project-update-project-membership",
|
|
1368
|
+
};
|
|
1369
|
+
/** Delete a Project. */
|
|
1370
|
+
export const projectDeleteProject = {
|
|
1371
|
+
path: "/v2/projects/{projectId}",
|
|
1372
|
+
method: "DELETE",
|
|
1373
|
+
operationId: "project-delete-project",
|
|
1374
|
+
};
|
|
1375
|
+
/** Request a Server avatar upload. */
|
|
1376
|
+
export const projectRequestServerAvatarUpload = {
|
|
1377
|
+
path: "/v2/servers/{serverId}/avatar",
|
|
1378
|
+
method: "POST",
|
|
1379
|
+
operationId: "project-request-server-avatar-upload",
|
|
1380
|
+
};
|
|
1381
|
+
/** Delete a Server's avatar. */
|
|
1382
|
+
export const projectDeleteServerAvatar = {
|
|
1383
|
+
path: "/v2/servers/{serverId}/avatar",
|
|
1384
|
+
method: "DELETE",
|
|
1385
|
+
operationId: "project-delete-server-avatar",
|
|
1386
|
+
};
|
|
1387
|
+
/** List the directories of a Project. */
|
|
1388
|
+
export const projectFileSystemGetDirectories = {
|
|
1389
|
+
path: "/v2/projects/{projectId}/filesystem/directories",
|
|
1390
|
+
method: "GET",
|
|
1391
|
+
operationId: "project-file-system-get-directories",
|
|
1392
|
+
};
|
|
1393
|
+
/** Get a Project directory filesystem usage. */
|
|
1394
|
+
export const projectFileSystemGetDiskUsage = {
|
|
1395
|
+
path: "/v2/projects/{projectId}/filesystem/usages/disk",
|
|
1396
|
+
method: "GET",
|
|
1397
|
+
operationId: "project-file-system-get-disk-usage",
|
|
1398
|
+
};
|
|
1399
|
+
/** Get a Project file's content. */
|
|
1400
|
+
export const projectFileSystemGetFileContent = {
|
|
1401
|
+
path: "/v2/projects/{projectId}/filesystem/files/raw",
|
|
1402
|
+
method: "GET",
|
|
1403
|
+
operationId: "project-file-system-get-file-content",
|
|
1404
|
+
};
|
|
1405
|
+
/** Get a Project's file/filesystem authorization token. */
|
|
1406
|
+
export const projectFileSystemGetJwt = {
|
|
1407
|
+
path: "/v2/projects/{projectId}/jwt",
|
|
1408
|
+
method: "GET",
|
|
1409
|
+
operationId: "project-file-system-get-jwt",
|
|
1410
|
+
};
|
|
1411
|
+
/** Get a Project file's information. */
|
|
1412
|
+
export const projectFileSystemListFiles = {
|
|
1413
|
+
path: "/v2/projects/{projectId}/filesystem/files",
|
|
1414
|
+
method: "GET",
|
|
1415
|
+
operationId: "project-file-system-list-files",
|
|
1416
|
+
};
|
|
1417
|
+
/** Get a ProjectInvite by token. */
|
|
1418
|
+
export const projectGetProjectTokenInvite = {
|
|
1419
|
+
path: "/v2/project-token-invite",
|
|
1420
|
+
method: "GET",
|
|
1421
|
+
operationId: "project-get-project-token-invite",
|
|
1422
|
+
};
|
|
1423
|
+
/** Get a Project. */
|
|
1424
|
+
export const projectGetProject = {
|
|
1425
|
+
path: "/v2/projects/{id}",
|
|
1426
|
+
method: "GET",
|
|
1427
|
+
operationId: "project-get-project",
|
|
1428
|
+
};
|
|
1429
|
+
/** Get the executing user's membership in a Project. */
|
|
1430
|
+
export const projectGetSelfMembershipForProject = {
|
|
1431
|
+
path: "/v2/projects/{projectId}/memberships/self",
|
|
1432
|
+
method: "GET",
|
|
1433
|
+
operationId: "project-get-self-membership-for-project",
|
|
1434
|
+
};
|
|
1435
|
+
/** Get a Server. */
|
|
1436
|
+
export const projectGetServer = {
|
|
1437
|
+
path: "/v2/servers/{serverId}",
|
|
1438
|
+
method: "GET",
|
|
1439
|
+
operationId: "project-get-server",
|
|
1440
|
+
};
|
|
1441
|
+
/** Leave a Project. */
|
|
1442
|
+
export const projectLeaveProject = {
|
|
1443
|
+
path: "/v2/projects/{projectId}/leave",
|
|
1444
|
+
method: "POST",
|
|
1445
|
+
operationId: "project-leave-project",
|
|
1446
|
+
};
|
|
1447
|
+
/** List all invites belonging to a Project. */
|
|
1448
|
+
export const projectListInvitesForProject = {
|
|
1449
|
+
path: "/v2/projects/{projectId}/invites",
|
|
1450
|
+
method: "GET",
|
|
1451
|
+
operationId: "project-list-invites-for-project",
|
|
1452
|
+
};
|
|
1453
|
+
/** List all memberships for a Project. */
|
|
1454
|
+
export const projectListMembershipsForProject = {
|
|
1455
|
+
path: "/v2/projects/{projectId}/memberships",
|
|
1456
|
+
method: "GET",
|
|
1457
|
+
operationId: "project-list-memberships-for-project",
|
|
1458
|
+
};
|
|
1459
|
+
/** List all ProjectInvites for the executing user. */
|
|
1460
|
+
export const projectListProjectInvites = {
|
|
1461
|
+
path: "/v2/project-invites",
|
|
1462
|
+
method: "GET",
|
|
1463
|
+
operationId: "project-list-project-invites",
|
|
1464
|
+
};
|
|
1465
|
+
/** List ProjectMemberships belonging to the executing user. */
|
|
1466
|
+
export const projectListProjectMemberships = {
|
|
1467
|
+
path: "/v2/project-memberships",
|
|
1468
|
+
method: "GET",
|
|
1469
|
+
operationId: "project-list-project-memberships",
|
|
1470
|
+
};
|
|
1471
|
+
/** List Project's for an Organization or Server. */
|
|
1472
|
+
export const projectListProjects = {
|
|
1473
|
+
path: "/v2/projects",
|
|
1474
|
+
method: "GET",
|
|
1475
|
+
operationId: "project-list-projects",
|
|
1476
|
+
};
|
|
1477
|
+
/** List Servers for an Organization or User. */
|
|
1478
|
+
export const projectListServers = {
|
|
1479
|
+
path: "/v2/servers",
|
|
1480
|
+
method: "GET",
|
|
1481
|
+
operationId: "project-list-servers",
|
|
1482
|
+
};
|
|
1483
|
+
/** Resend the mail for a ProjectInvite. */
|
|
1484
|
+
export const projectResendProjectInviteMail = {
|
|
1485
|
+
path: "/v2/project-invites/{inviteId}/actions/resend",
|
|
1486
|
+
method: "POST",
|
|
1487
|
+
operationId: "project-resend-project-invite-mail",
|
|
1488
|
+
};
|
|
1489
|
+
/** Update a Project's description. */
|
|
1490
|
+
export const projectUpdateProjectDescription = {
|
|
1491
|
+
path: "/v2/projects/{id}/description",
|
|
1492
|
+
method: "PATCH",
|
|
1493
|
+
operationId: "project-update-project-description",
|
|
1494
|
+
};
|
|
1495
|
+
/** Update a Servers's description. */
|
|
1496
|
+
export const projectUpdateServerDescription = {
|
|
1497
|
+
path: "/v2/servers/{serverId}/description",
|
|
1498
|
+
method: "PATCH",
|
|
1499
|
+
operationId: "project-update-server-description",
|
|
1500
|
+
};
|
|
1501
|
+
/** Relocate an external Project to mittwald. */
|
|
1502
|
+
export const redirectusCreateRelocation = {
|
|
1503
|
+
path: "/v2/relocation",
|
|
1504
|
+
method: "POST",
|
|
1505
|
+
operationId: "redirectus-create-relocation",
|
|
1506
|
+
};
|
|
1507
|
+
/** Create an SFTPUser for a Project. */
|
|
1508
|
+
export const sftpUserCreateSftpUser = {
|
|
1509
|
+
path: "/v2/projects/{projectId}/sftp-users",
|
|
1510
|
+
method: "POST",
|
|
1511
|
+
operationId: "sftp-user-create-sftp-user",
|
|
1512
|
+
};
|
|
1513
|
+
/** Get an SFTPUser. */
|
|
1514
|
+
export const sftpUserGetSftpUser = {
|
|
1515
|
+
path: "/v2/sftp-users/{sftpUserId}",
|
|
1516
|
+
method: "GET",
|
|
1517
|
+
operationId: "sftp-user-get-sftp-user",
|
|
1518
|
+
};
|
|
1519
|
+
/** Delete an SFTPUser. */
|
|
1520
|
+
export const sftpUserDeleteSftpUser = {
|
|
1521
|
+
path: "/v2/sftp-users/{sftpUserId}",
|
|
1522
|
+
method: "DELETE",
|
|
1523
|
+
operationId: "sftp-user-delete-sftp-user",
|
|
1524
|
+
};
|
|
1525
|
+
/** Update an SFTPUser. */
|
|
1526
|
+
export const sftpUserUpdateSftpUser = {
|
|
1527
|
+
path: "/v2/sftp-users/{sftpUserId}",
|
|
1528
|
+
method: "PATCH",
|
|
1529
|
+
operationId: "sftp-user-update-sftp-user",
|
|
1530
|
+
};
|
|
1531
|
+
/** Get all SFTPUsers for a Project. */
|
|
1532
|
+
export const sftpUserListSftpUsers = {
|
|
1533
|
+
path: "/v2/project/{projectId}/sftp-users",
|
|
1534
|
+
method: "GET",
|
|
1535
|
+
operationId: "sftp-user-list-sftp-users",
|
|
1536
|
+
};
|
|
1537
|
+
/** List all ApiTokens of the user */
|
|
1538
|
+
export const signupApiApiTokenList = {
|
|
1539
|
+
path: "/v2/signup/token/api",
|
|
1540
|
+
method: "GET",
|
|
1541
|
+
operationId: "signup-api-api-token-list",
|
|
1542
|
+
};
|
|
1543
|
+
/** Store a new ApiToken */
|
|
1544
|
+
export const signupApiApiTokenCreate = {
|
|
1545
|
+
path: "/v2/signup/token/api",
|
|
1546
|
+
method: "POST",
|
|
1547
|
+
operationId: "signup-api-api-token-create",
|
|
1548
|
+
};
|
|
1549
|
+
/** Get a specific ApiToken */
|
|
1550
|
+
export const signupApiApiTokenGet = {
|
|
1551
|
+
path: "/v2/signup/token/api/{apiTokenId}",
|
|
1552
|
+
method: "GET",
|
|
1553
|
+
operationId: "signup-api-api-token-get",
|
|
1554
|
+
};
|
|
1555
|
+
/** Update an existing `ApiToken` */
|
|
1556
|
+
export const signupApiApiTokenEdit = {
|
|
1557
|
+
path: "/v2/signup/token/api/{apiTokenId}",
|
|
1558
|
+
method: "PUT",
|
|
1559
|
+
operationId: "signup-api-api-token-edit",
|
|
1560
|
+
};
|
|
1561
|
+
/** Deletes an ApiToken */
|
|
1562
|
+
export const signupApiApiTokenDelete = {
|
|
1563
|
+
path: "/v2/signup/token/api/{apiTokenId}",
|
|
1564
|
+
method: "DELETE",
|
|
1565
|
+
operationId: "signup-api-api-token-delete",
|
|
1566
|
+
};
|
|
1567
|
+
/** Authenticate yourself to get an access token. */
|
|
1568
|
+
export const signupApiAuthenticate = {
|
|
1569
|
+
path: "/v2/signup/authentication",
|
|
1570
|
+
method: "POST",
|
|
1571
|
+
operationId: "signup-api-authenticate",
|
|
1572
|
+
};
|
|
1573
|
+
/** Authenticate yourself against your legacy account to migrate it with the '/registration'-Route */
|
|
1574
|
+
export const signupApiAuthenticateLegacy = {
|
|
1575
|
+
path: "/v2/signup/authentication/legacy",
|
|
1576
|
+
method: "POST",
|
|
1577
|
+
operationId: "signup-api-authenticate-legacy",
|
|
1578
|
+
};
|
|
1579
|
+
/** Validate your second factor. */
|
|
1580
|
+
export const signupApiAuthenticateMfa = {
|
|
1581
|
+
path: "/v2/signup/authentication/mfa",
|
|
1582
|
+
method: "POST",
|
|
1583
|
+
operationId: "signup-api-authenticate-mfa",
|
|
1584
|
+
};
|
|
1585
|
+
/** Request a new avatar upload */
|
|
1586
|
+
export const signupApiAvatarRequestUpload = {
|
|
1587
|
+
path: "/v2/signup/avatar",
|
|
1588
|
+
method: "POST",
|
|
1589
|
+
operationId: "signup-api-avatar-request-upload",
|
|
1590
|
+
};
|
|
1591
|
+
/** Remove avatar */
|
|
1592
|
+
export const signupApiAvatarRemove = {
|
|
1593
|
+
path: "/v2/signup/avatar",
|
|
1594
|
+
method: "DELETE",
|
|
1595
|
+
operationId: "signup-api-avatar-remove",
|
|
1596
|
+
};
|
|
1597
|
+
/** Get your primary verified email address */
|
|
1598
|
+
export const signupApiEmailGet = {
|
|
1599
|
+
path: "/v2/signup/email",
|
|
1600
|
+
method: "GET",
|
|
1601
|
+
operationId: "signup-api-email-get",
|
|
1602
|
+
};
|
|
1603
|
+
/** Change your email */
|
|
1604
|
+
export const signupApiEmailChange = {
|
|
1605
|
+
path: "/v2/signup/email",
|
|
1606
|
+
method: "PUT",
|
|
1607
|
+
operationId: "signup-api-email-change",
|
|
1608
|
+
};
|
|
1609
|
+
/** Resend the email address verification email */
|
|
1610
|
+
export const signupApiEmailResend = {
|
|
1611
|
+
path: "/v2/signup/email/resend",
|
|
1612
|
+
method: "POST",
|
|
1613
|
+
operationId: "signup-api-email-resend",
|
|
1614
|
+
};
|
|
1615
|
+
/** Verify an added email address */
|
|
1616
|
+
export const signupApiEmailVerify = {
|
|
1617
|
+
path: "/v2/signup/email/verify",
|
|
1618
|
+
method: "POST",
|
|
1619
|
+
operationId: "signup-api-email-verify",
|
|
1620
|
+
};
|
|
1621
|
+
/** Terminate session and invalidate access token */
|
|
1622
|
+
export const signupApiLogout = {
|
|
1623
|
+
path: "/v2/signup/logout",
|
|
1624
|
+
method: "PUT",
|
|
1625
|
+
operationId: "signup-api-logout",
|
|
1626
|
+
};
|
|
1627
|
+
/** Confirm Multi Factor Authentication */
|
|
1628
|
+
export const signupApiMfaConfirm = {
|
|
1629
|
+
path: "/v2/signup/mfa/confirm",
|
|
1630
|
+
method: "POST",
|
|
1631
|
+
operationId: "signup-api-mfa-confirm",
|
|
1632
|
+
};
|
|
1633
|
+
/** Get your current multi factor auth status */
|
|
1634
|
+
export const signupApiMfaGetStatus = {
|
|
1635
|
+
path: "/v2/signup/mfa",
|
|
1636
|
+
method: "GET",
|
|
1637
|
+
operationId: "signup-api-mfa-get-status",
|
|
1638
|
+
};
|
|
1639
|
+
/** Initialize Multi Factor Authentication. If successfull, it needs to be confirmed, before usage of mfa. */
|
|
1640
|
+
export const signupApiMfaInit = {
|
|
1641
|
+
path: "/v2/signup/mfa",
|
|
1642
|
+
method: "POST",
|
|
1643
|
+
operationId: "signup-api-mfa-init",
|
|
1644
|
+
};
|
|
1645
|
+
/** Disable Multi Factor Authentication. */
|
|
1646
|
+
export const signupApiMfaDisable = {
|
|
1647
|
+
path: "/v2/signup/mfa",
|
|
1648
|
+
method: "DELETE",
|
|
1649
|
+
operationId: "signup-api-mfa-disable",
|
|
1650
|
+
};
|
|
1651
|
+
/** Get timestamp of your latest password change */
|
|
1652
|
+
export const signupApiPasswordGetUpdatedAt = {
|
|
1653
|
+
path: "/v2/signup/password",
|
|
1654
|
+
method: "GET",
|
|
1655
|
+
operationId: "signup-api-password-get-updated-at",
|
|
1656
|
+
};
|
|
1657
|
+
/** Change your password */
|
|
1658
|
+
export const signupApiPasswordChange = {
|
|
1659
|
+
path: "/v2/signup/password",
|
|
1660
|
+
method: "PUT",
|
|
1661
|
+
operationId: "signup-api-password-change",
|
|
1662
|
+
};
|
|
1663
|
+
/** Confirm password reset */
|
|
1664
|
+
export const signupApiPasswordResetConfirm = {
|
|
1665
|
+
path: "/v2/signup/password/reset/confirm",
|
|
1666
|
+
method: "POST",
|
|
1667
|
+
operationId: "signup-api-password-reset-confirm",
|
|
1668
|
+
};
|
|
1669
|
+
/** Initialize password reset process */
|
|
1670
|
+
export const signupApiPasswordResetInit = {
|
|
1671
|
+
path: "/v2/signup/password/reset",
|
|
1672
|
+
method: "POST",
|
|
1673
|
+
operationId: "signup-api-password-reset-init",
|
|
1674
|
+
};
|
|
1675
|
+
/** Get current phone number */
|
|
1676
|
+
export const signupApiPhoneNumberGet = {
|
|
1677
|
+
path: "/v2/signup/phone",
|
|
1678
|
+
method: "GET",
|
|
1679
|
+
operationId: "signup-api-phone-number-get",
|
|
1680
|
+
};
|
|
1681
|
+
/** Initialize phone number process */
|
|
1682
|
+
export const signupApiPhoneNumberInitProcess = {
|
|
1683
|
+
path: "/v2/signup/phone",
|
|
1684
|
+
method: "POST",
|
|
1685
|
+
operationId: "signup-api-phone-number-init-process",
|
|
1686
|
+
};
|
|
1687
|
+
/** Deletes phone number */
|
|
1688
|
+
export const signupApiPhoneNumberDelete = {
|
|
1689
|
+
path: "/v2/signup/phone",
|
|
1690
|
+
method: "DELETE",
|
|
1691
|
+
operationId: "signup-api-phone-number-delete",
|
|
1692
|
+
};
|
|
1693
|
+
/** Initialize phone number process */
|
|
1694
|
+
export const signupApiPhoneNumberVerify = {
|
|
1695
|
+
path: "/v2/signup/phone/verify",
|
|
1696
|
+
method: "POST",
|
|
1697
|
+
operationId: "signup-api-phone-number-verify",
|
|
1698
|
+
};
|
|
1699
|
+
/** Get your profile information */
|
|
1700
|
+
export const signupApiProfileGet = {
|
|
1701
|
+
path: "/v2/signup/profile",
|
|
1702
|
+
method: "GET",
|
|
1703
|
+
operationId: "signup-api-profile-get",
|
|
1704
|
+
};
|
|
1705
|
+
/** Change your profile information */
|
|
1706
|
+
export const signupApiProfileChange = {
|
|
1707
|
+
path: "/v2/signup/profile",
|
|
1708
|
+
method: "PUT",
|
|
1709
|
+
operationId: "signup-api-profile-change",
|
|
1710
|
+
};
|
|
1711
|
+
/** Delete your profile and all your personal data */
|
|
1712
|
+
export const signupApiProfileDelete = {
|
|
1713
|
+
path: "/v2/signup/profile",
|
|
1714
|
+
method: "DELETE",
|
|
1715
|
+
operationId: "signup-api-profile-delete",
|
|
1716
|
+
};
|
|
1717
|
+
/** Reset Recovery-Codes for MFA */
|
|
1718
|
+
export const signupApiRecoverycodesReset = {
|
|
1719
|
+
path: "/v2/signup/mfa/reset-recoverycodes",
|
|
1720
|
+
method: "PUT",
|
|
1721
|
+
operationId: "signup-api-recoverycodes-reset",
|
|
1722
|
+
};
|
|
1723
|
+
/** Register with email and password.
|
|
1724
|
+
*/
|
|
1725
|
+
export const signupApiRegister = {
|
|
1726
|
+
path: "/v2/signup/registration",
|
|
1727
|
+
method: "POST",
|
|
1728
|
+
operationId: "signup-api-register",
|
|
1729
|
+
};
|
|
1730
|
+
/** Verify your registration */
|
|
1731
|
+
export const signupApiRegistrationVerify = {
|
|
1732
|
+
path: "/v2/signup/registration/verification",
|
|
1733
|
+
method: "POST",
|
|
1734
|
+
operationId: "signup-api-registration-verify",
|
|
1735
|
+
};
|
|
1736
|
+
/** Get a specific session of an authorized user */
|
|
1737
|
+
export const signupApiSessionGet = {
|
|
1738
|
+
path: "/v2/signup/sessions/{tokenId}",
|
|
1739
|
+
method: "GET",
|
|
1740
|
+
operationId: "signup-api-session-get",
|
|
1741
|
+
};
|
|
1742
|
+
/** Terminate a specific session of an authorized user */
|
|
1743
|
+
export const signupApiSessionTerminate = {
|
|
1744
|
+
path: "/v2/signup/sessions/{tokenId}",
|
|
1745
|
+
method: "DELETE",
|
|
1746
|
+
operationId: "signup-api-session-terminate",
|
|
1747
|
+
};
|
|
1748
|
+
/** List all active sessions of authorized user */
|
|
1749
|
+
export const signupApiSessionsList = {
|
|
1750
|
+
path: "/v2/signup/sessions",
|
|
1751
|
+
method: "GET",
|
|
1752
|
+
operationId: "signup-api-sessions-list",
|
|
1753
|
+
};
|
|
1754
|
+
/** Terminate all session of an authorized user, except his current session */
|
|
1755
|
+
export const signupApiSessionsTerminateAll = {
|
|
1756
|
+
path: "/v2/signup/sessions",
|
|
1757
|
+
method: "DELETE",
|
|
1758
|
+
operationId: "signup-api-sessions-terminate-all",
|
|
1759
|
+
};
|
|
1760
|
+
/** Get your stored ssh keys */
|
|
1761
|
+
export const signupApiSshList = {
|
|
1762
|
+
path: "/v2/signup/ssh",
|
|
1763
|
+
method: "GET",
|
|
1764
|
+
operationId: "signup-api-ssh-list",
|
|
1765
|
+
};
|
|
1766
|
+
/** Store a new SSH key */
|
|
1767
|
+
export const signupApiSshCreate = {
|
|
1768
|
+
path: "/v2/signup/ssh",
|
|
1769
|
+
method: "POST",
|
|
1770
|
+
operationId: "signup-api-ssh-create",
|
|
1771
|
+
};
|
|
1772
|
+
/** Get your stored ssh keys */
|
|
1773
|
+
export const signupApiSshGet = {
|
|
1774
|
+
path: "/v2/signup/ssh/{sshKeyId}",
|
|
1775
|
+
method: "GET",
|
|
1776
|
+
operationId: "signup-api-ssh-get",
|
|
1777
|
+
};
|
|
1778
|
+
/** Edit an existing SSH key */
|
|
1779
|
+
export const signupApiSshEdit = {
|
|
1780
|
+
path: "/v2/signup/ssh/{sshKeyId}",
|
|
1781
|
+
method: "PUT",
|
|
1782
|
+
operationId: "signup-api-ssh-edit",
|
|
1783
|
+
};
|
|
1784
|
+
/** Remove an existing SSH Key */
|
|
1785
|
+
export const signupApiSshDelete = {
|
|
1786
|
+
path: "/v2/signup/ssh/{sshKeyId}",
|
|
1787
|
+
method: "DELETE",
|
|
1788
|
+
operationId: "signup-api-ssh-delete",
|
|
1789
|
+
};
|
|
1790
|
+
/** request a support code */
|
|
1791
|
+
export const signupApiSupportCodeRequest = {
|
|
1792
|
+
path: "/v2/signup/supportcode",
|
|
1793
|
+
method: "GET",
|
|
1794
|
+
operationId: "signup-api-support-code-request",
|
|
1795
|
+
};
|
|
1796
|
+
/** Check, if the current access token is valid */
|
|
1797
|
+
export const signupApiTokenCheck = {
|
|
1798
|
+
path: "/v2/signup/token/check",
|
|
1799
|
+
method: "POST",
|
|
1800
|
+
operationId: "signup-api-token-check",
|
|
1801
|
+
};
|
|
1802
|
+
/** Get all SSHUsers for a Project. */
|
|
1803
|
+
export const sshUserListSshUsers = {
|
|
1804
|
+
path: "/v2/projects/{projectId}/ssh-users",
|
|
1805
|
+
method: "GET",
|
|
1806
|
+
operationId: "ssh-user-list-ssh-users",
|
|
1807
|
+
};
|
|
1808
|
+
/** Create an SSHUser for a Project. */
|
|
1809
|
+
export const sshUserCreateSshUser = {
|
|
1810
|
+
path: "/v2/projects/{projectId}/ssh-users",
|
|
1811
|
+
method: "POST",
|
|
1812
|
+
operationId: "ssh-user-create-ssh-user",
|
|
1813
|
+
};
|
|
1814
|
+
/** Get an SSHUser. */
|
|
1815
|
+
export const sshUserGetSshUser = {
|
|
1816
|
+
path: "/v2/ssh-users/{sshUserId}",
|
|
1817
|
+
method: "GET",
|
|
1818
|
+
operationId: "ssh-user-get-ssh-user",
|
|
1819
|
+
};
|
|
1820
|
+
/** Delete an SSHUser. */
|
|
1821
|
+
export const sshUserDeleteSshUser = {
|
|
1822
|
+
path: "/v2/ssh-users/{sshUserId}",
|
|
1823
|
+
method: "DELETE",
|
|
1824
|
+
operationId: "ssh-user-delete-ssh-user",
|
|
1825
|
+
};
|
|
1826
|
+
/** Update an SSHUser. */
|
|
1827
|
+
export const sshUserUpdateSshUser = {
|
|
1828
|
+
path: "/v2/sshusers/{sshUserId}",
|
|
1829
|
+
method: "PATCH",
|
|
1830
|
+
operationId: "ssh-user-update-ssh-user",
|
|
1831
|
+
};
|
|
1832
|
+
/** Request a new avatar upload */
|
|
1833
|
+
export const userServiceAvatarRequestUpload = {
|
|
1834
|
+
path: "/v2/user/{userId}/avatar",
|
|
1835
|
+
method: "POST",
|
|
1836
|
+
operationId: "user-service-avatar-request-upload",
|
|
1837
|
+
};
|
|
1838
|
+
/** Remove avatar */
|
|
1839
|
+
export const userServiceAvatarRemove = {
|
|
1840
|
+
path: "/v2/user/{userId}/avatar",
|
|
1841
|
+
method: "DELETE",
|
|
1842
|
+
operationId: "user-service-avatar-remove",
|
|
1843
|
+
};
|
|
1844
|
+
/** Returns your given feedback. */
|
|
1845
|
+
export const userServiceFeedbackList = {
|
|
1846
|
+
path: "/v2/user/feedback",
|
|
1847
|
+
method: "GET",
|
|
1848
|
+
operationId: "user-service-feedback-list",
|
|
1849
|
+
};
|
|
1850
|
+
/** */
|
|
1851
|
+
export const userServiceFeedbackCreate = {
|
|
1852
|
+
path: "/v2/user/feedback",
|
|
1853
|
+
method: "POST",
|
|
1854
|
+
operationId: "user-service-feedback-create",
|
|
1855
|
+
};
|
|
1856
|
+
/** create a new issue */
|
|
1857
|
+
export const userServiceIssueNew = {
|
|
1858
|
+
path: "/v2/user/issues",
|
|
1859
|
+
method: "POST",
|
|
1860
|
+
operationId: "user-service-issue-new",
|
|
1861
|
+
};
|
|
1862
|
+
/** Get profile information for the specified user */
|
|
1863
|
+
export const userServiceUserGet = {
|
|
1864
|
+
path: "/v2/user/{userId}",
|
|
1865
|
+
method: "GET",
|
|
1866
|
+
operationId: "user-service-user-get",
|
|
1867
|
+
};
|
|
1868
|
+
/** Change your personal information */
|
|
1869
|
+
export const userServicePersonalInformationUpdate = {
|
|
1870
|
+
path: "/v2/user/{userId}",
|
|
1871
|
+
method: "PUT",
|
|
1872
|
+
operationId: "user-service-personal-information-update",
|
|
1873
|
+
};
|
|
1874
|
+
/** Get personalized settings for the specified user */
|
|
1875
|
+
export const userServicePersonalizedSettingsGet = {
|
|
1876
|
+
path: "/v2/user/settings",
|
|
1877
|
+
method: "GET",
|
|
1878
|
+
operationId: "user-service-personalized-settings-get",
|
|
1879
|
+
};
|
|
1880
|
+
/** update personalized settings */
|
|
1881
|
+
export const userServicePersonalizedSettingsUpdate = {
|
|
1882
|
+
path: "/v2/user/settings",
|
|
1883
|
+
method: "PUT",
|
|
1884
|
+
operationId: "user-service-personalized-settings-update",
|
|
1885
|
+
};
|
|
1886
|
+
/** Add phone number and init verification process */
|
|
1887
|
+
export const userServicePhoneNumberAdd = {
|
|
1888
|
+
path: "/v2/user/{userId}/phone",
|
|
1889
|
+
method: "POST",
|
|
1890
|
+
operationId: "user-service-phone-number-add",
|
|
1891
|
+
};
|
|
1892
|
+
/** Deletes phone number */
|
|
1893
|
+
export const userServicePhoneNumberRemove = {
|
|
1894
|
+
path: "/v2/user/{userId}/phone",
|
|
1895
|
+
method: "DELETE",
|
|
1896
|
+
operationId: "user-service-phone-number-remove",
|
|
1897
|
+
};
|
|
1898
|
+
/** Verify phone number */
|
|
1899
|
+
export const userServicePhoneNumberVerify = {
|
|
1900
|
+
path: "/v2/user/{userId}/phone/verify",
|
|
1901
|
+
method: "POST",
|
|
1902
|
+
operationId: "user-service-phone-number-verify",
|
|
1903
|
+
};
|
|
1904
|
+
/** Get profile information for the specified user */
|
|
1905
|
+
export const userServiceUserGetOwn = {
|
|
1906
|
+
path: "/v2/user",
|
|
1907
|
+
method: "GET",
|
|
1908
|
+
operationId: "user-service-user-get-own",
|
|
1909
|
+
};
|
|
1910
|
+
/** List all available validators. */
|
|
1911
|
+
export const varnishServiceListValidators = {
|
|
1912
|
+
path: "/v2/varnish/config/validate",
|
|
1913
|
+
method: "GET",
|
|
1914
|
+
operationId: "varnish-service-list-validators",
|
|
1915
|
+
};
|
|
1916
|
+
/** validate a set of config files with a named validator against a specific version */
|
|
1917
|
+
export const varnishServiceValidate = {
|
|
1918
|
+
path: "/v2/varnish/config/validate",
|
|
1919
|
+
method: "POST",
|
|
1920
|
+
operationId: "varnish-service-validate",
|
|
1921
|
+
};
|