em-client 4.0.2

This crate provides rust bindings for Enclave Manager API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
/* Copyright (c) Fortanix, Inc.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

pub mod responses {
    use hyper::mime::*;

    // The macro is called per-operation to beat the recursion limit

    lazy_static! {
        /// Create Mime objects for the response content types for CreateAccount
        pub static ref CREATE_ACCOUNT_THE_DETAILS_OF_THE_ACCOUNT_CREATED: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAccount
        pub static ref GET_ACCOUNT_PARTICULAR_ACCOUNT_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAccounts
        pub static ref GET_ACCOUNTS_ALL_ACCOUNT_DETAILS_FOR_THE_CURRENT_USER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateAccount
        pub static ref UPDATE_ACCOUNT_UPDATED_ACCOUNT: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for AddApplication
        pub static ref ADD_APPLICATION_DETAILS_OF_AN_APP: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllApps
        pub static ref GET_ALL_APPS_SEARCH_RESULT_FOR_APP_OBJECTS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetApp
        pub static ref GET_APP_DETAILS_OF_AN_APP: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAppCertificate
        pub static ref GET_APP_CERTIFICATE_APP_CERTIFICATE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAppNodeCertificateDetails
        pub static ref GET_APP_NODE_CERTIFICATE_DETAILS_APP_CERTIFICATE_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAppsUniqueLabels
        pub static ref GET_APPS_UNIQUE_LABELS_APPLICATIONS_LABELS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateApp
        pub static ref UPDATE_APP_DETAILS_OF_AN_APP: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateApplicationConfig
        pub static ref CREATE_APPLICATION_CONFIG_DETAILS_OF_AN_APP_CONFIG: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllApplicationConfigs
        pub static ref GET_ALL_APPLICATION_CONFIGS_SEARCH_RESULT_FOR_APP_CONFIG_OBJECTS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetApplicationConfig
        pub static ref GET_APPLICATION_CONFIG_DETAILS_OF_AN_APP_CONFIG: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetRuntimeApplicationConfig
        pub static ref GET_RUNTIME_APPLICATION_CONFIG_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetSpecificRuntimeApplicationConfig
        pub static ref GET_SPECIFIC_RUNTIME_APPLICATION_CONFIG_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateApplicationConfig
        pub static ref UPDATE_APPLICATION_CONFIG_DETAILS_OF_AN_APP_CONFIG: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for ApproveApprovalRequest
        pub static ref APPROVE_APPROVAL_REQUEST_DETAILS_ABOUT_THE_SPECIFIED_APPROVAL_REQUEST: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateApprovalRequest
        pub static ref CREATE_APPROVAL_REQUEST_A_NEWLY_CREATED_APPROVAL_REQUEST: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for DenyApprovalRequest
        pub static ref DENY_APPROVAL_REQUEST_DETAILS_ABOUT_THE_SPECIFIED_APPROVAL_REQUEST: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllApprovalRequests
        pub static ref GET_ALL_APPROVAL_REQUESTS_SEARCH_RESULT_FOR_APPROVAL_REQUEST_OBJECTS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetApprovalRequest
        pub static ref GET_APPROVAL_REQUEST_DETAILS_ABOUT_THE_SPECIFIED_APPROVAL_REQUEST: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetApprovalRequestResult
        pub static ref GET_APPROVAL_REQUEST_RESULT_DETAILS_ABOUT_THE_SPECIFIED_APPROVAL_REQUEST_RESULT: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for AuthenticateUser
        pub static ref AUTHENTICATE_USER_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for ConvertAppBuild
        pub static ref CONVERT_APP_BUILD_DETAILS_OF_THE_CREATED_IMAGE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateBuild
        pub static ref CREATE_BUILD_DETAILS_OF_THE_CREATED_IMAGE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllBuilds
        pub static ref GET_ALL_BUILDS_SEARCH_RESULT_FOR_IMAGE_OBJECTS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetBuild
        pub static ref GET_BUILD_DETAILS_OF_AN_IMAGE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetBuildDeployments
        pub static ref GET_BUILD_DEPLOYMENTS_DETAILS_OF_IMAGE_DEPLOYMENTS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateBuild
        pub static ref UPDATE_BUILD_DETAILS_OF_A_COMPUTE_NODE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetCertificate
        pub static ref GET_CERTIFICATE_CERTIFICATE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for NewCertificate
        pub static ref NEW_CERTIFICATE_CERTIFICATE_ISSUANCE_TASK: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateDataset
        pub static ref CREATE_DATASET_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllDatasets
        pub static ref GET_ALL_DATASETS_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetDataset
        pub static ref GET_DATASET_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateDataset
        pub static ref UPDATE_DATASET_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllNodes
        pub static ref GET_ALL_NODES_SEARCH_RESULT_FOR_COMPUTE_NODE_OBJECTS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetNode
        pub static ref GET_NODE_DETAILS_OF_A_COMPUTE_NODE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetNodeCertificate
        pub static ref GET_NODE_CERTIFICATE_COMPUTE_NODE_CERTIFICATE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetNodeCertificateDetails
        pub static ref GET_NODE_CERTIFICATE_DETAILS_CERTIFICATE_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetNodesUniqueLabels
        pub static ref GET_NODES_UNIQUE_LABELS_NODES_LABELS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for ProvisionNode
        pub static ref PROVISION_NODE_COMPUTE_NODE_CREATION_TASK: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateNode
        pub static ref UPDATE_NODE_DETAILS_OF_A_COMPUTE_NODE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateNodeStatus
        pub static ref UPDATE_NODE_STATUS_CONFIGURATION_INFORMATION_FOR_THE_NODE_AGENT: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateRegistry
        pub static ref CREATE_REGISTRY_REGISTRY_INFORMATION: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllRegistries
        pub static ref GET_ALL_REGISTRIES_GET_DETAILS_OF_ALL_REGISTRY_IN_THE_ACCOUNT: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetRegistry
        pub static ref GET_REGISTRY_DETAILS_OF_A_REGISTRY: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetRegistryForApp
        pub static ref GET_REGISTRY_FOR_APP_REGISTRY_DETAILS_THAT_WILL_BE_USED_FROM_SAVED_REGISTRY_CREDENTIALS_FOR_THE_PARTICULAR_APP_IMAGES: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetRegistryForImage
        pub static ref GET_REGISTRY_FOR_IMAGE_REGISTRY_DETAIL_THAT_WILL_BE_USED_FROM_SAVED_REGISTRY_CREDENTIALS_FOR_THE_PARTICULAR_IMAGE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateRegistry
        pub static ref UPDATE_REGISTRY_REGISTRY_INFORMATION: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetManagerVersion
        pub static ref GET_MANAGER_VERSION_MANAGER_VERSION: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllTasks
        pub static ref GET_ALL_TASKS_SEARCH_RESULT_FOR_TASK_OBJECTS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetTask
        pub static ref GET_TASK_TASK_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetTaskStatus
        pub static ref GET_TASK_STATUS_TASK_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateTask
        pub static ref UPDATE_TASK_UPDATED_TASK_STATUS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for ConvertApp
        pub static ref CONVERT_APP_REGISTRY_AND_IMAGE_NAME_FOR_THE_OUTPUT_CONTAINER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for ConfirmEmail
        pub static ref CONFIRM_EMAIL_CONFIRMS_USER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateUser
        pub static ref CREATE_USER_CREATED_USER_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllUsers
        pub static ref GET_ALL_USERS_SEARCH_RESULT_FOR_USER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetLoggedInUser
        pub static ref GET_LOGGED_IN_USER_USER_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetUser
        pub static ref GET_USER_USER_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for InviteUser
        pub static ref INVITE_USER_INVITED_USER_DETAILS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateUser
        pub static ref UPDATE_USER_UPDATED_USER_STATUS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for ValidatePasswordResetToken
        pub static ref VALIDATE_PASSWORD_RESET_TOKEN_VALIDATES_PASSWORD_RESET_TOKEN_FOR_THE_USER_RESPONSE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateWorkflowGraph
        pub static ref CREATE_WORKFLOW_GRAPH_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllWorkflowGraphs
        pub static ref GET_ALL_WORKFLOW_GRAPHS_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetWorkflowGraph
        pub static ref GET_WORKFLOW_GRAPH_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateWorkflowGraph
        pub static ref UPDATE_WORKFLOW_GRAPH_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for CreateFinalWorkflowGraph
        pub static ref CREATE_FINAL_WORKFLOW_GRAPH_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetAllFinalWorkflowGraphs
        pub static ref GET_ALL_FINAL_WORKFLOW_GRAPHS_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetFinalWorkflowGraph
        pub static ref GET_FINAL_WORKFLOW_GRAPH_: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetFullFinalWorkflowGraph
        pub static ref GET_FULL_FINAL_WORKFLOW_GRAPH_THE_WORKFLOW_WITH_ALL_CONTAINED_GRAPH_VERSIONS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for UpdateFinalWorkflowGraph
        pub static ref UPDATE_FINAL_WORKFLOW_GRAPH_THE_DATA_FOR_THE_CREATED_VERSION_WITHIN_THE_WORKFLOW: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetZone
        pub static ref GET_ZONE_DETAILS_OF_THE_ZONE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetZoneJoinToken
        pub static ref GET_ZONE_JOIN_TOKEN_JOIN_TOKEN_FOR_THE_ZONE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the response content types for GetZones
        pub static ref GET_ZONES_DETAILS_OF_ALL_THE_ZONES: Mime = "application/json".parse().unwrap();
    }
}

pub mod requests {
    use hyper::mime::*;

    lazy_static! {
        /// Create Mime objects for the request content types for CreateAccount
        pub static ref CREATE_ACCOUNT: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateAccount
        pub static ref UPDATE_ACCOUNT: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for AddApplication
        pub static ref ADD_APPLICATION: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateApp
        pub static ref UPDATE_APP: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateApplicationConfig
        pub static ref CREATE_APPLICATION_CONFIG: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateApplicationConfig
        pub static ref UPDATE_APPLICATION_CONFIG: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ApproveApprovalRequest
        pub static ref APPROVE_APPROVAL_REQUEST: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateApprovalRequest
        pub static ref CREATE_APPROVAL_REQUEST: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for DenyApprovalRequest
        pub static ref DENY_APPROVAL_REQUEST: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for AuthenticateUser
        pub static ref AUTHENTICATE_USER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ConvertAppBuild
        pub static ref CONVERT_APP_BUILD: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateBuild
        pub static ref CREATE_BUILD: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateBuild
        pub static ref UPDATE_BUILD: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for NewCertificate
        pub static ref NEW_CERTIFICATE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateDataset
        pub static ref CREATE_DATASET: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateDataset
        pub static ref UPDATE_DATASET: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ProvisionNode
        pub static ref PROVISION_NODE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateNode
        pub static ref UPDATE_NODE: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateNodeStatus
        pub static ref UPDATE_NODE_STATUS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateRegistry
        pub static ref CREATE_REGISTRY: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateRegistry
        pub static ref UPDATE_REGISTRY: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateTask
        pub static ref UPDATE_TASK: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ConvertApp
        pub static ref CONVERT_APP: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ChangePassword
        pub static ref CHANGE_PASSWORD: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ConfirmEmail
        pub static ref CONFIRM_EMAIL: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateUser
        pub static ref CREATE_USER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ForgotPassword
        pub static ref FORGOT_PASSWORD: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for InviteUser
        pub static ref INVITE_USER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ProcessInvitations
        pub static ref PROCESS_INVITATIONS: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ResetPassword
        pub static ref RESET_PASSWORD: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateUser
        pub static ref UPDATE_USER: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for ValidatePasswordResetToken
        pub static ref VALIDATE_PASSWORD_RESET_TOKEN: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateWorkflowGraph
        pub static ref CREATE_WORKFLOW_GRAPH: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateWorkflowGraph
        pub static ref UPDATE_WORKFLOW_GRAPH: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for CreateFinalWorkflowGraph
        pub static ref CREATE_FINAL_WORKFLOW_GRAPH: Mime = "application/json".parse().unwrap();
    }

    lazy_static! {
        /// Create Mime objects for the request content types for UpdateFinalWorkflowGraph
        pub static ref UPDATE_FINAL_WORKFLOW_GRAPH: Mime = "application/json".parse().unwrap();
    }
}