IContentfulManagementClient.cs
60.3 KB
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
using System.Collections.Generic;
using System.Threading.Tasks;
using Contentful.Core.Models;
using Contentful.Core.Models.Management;
using Contentful.Core.Search;
using System.Threading;
namespace Contentful.Core
{
/// <summary>
/// Interface for methods to interact with the Contentful Management API.
/// </summary>
public interface IContentfulManagementClient
{
/// <summary>
/// Activates a <see cref="ContentType"/> by the specified id.
/// </summary>
/// <param name="contentTypeId">The id of the content type.</param>
/// <param name="version">The last known version of the content type.</param>
/// <param name="spaceId">The id of the space to activate the content type in. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into a <see cref="ContentType"/>.</returns>
Task<ContentType> ActivateContentType(string contentTypeId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Archives an asset by the specified id.
/// </summary>
/// <param name="assetId">The id of the asset to archive.</param>
/// <param name="version">The last known version of the asset.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.ManagementAsset"/> archived.</returns>
Task<ManagementAsset> ArchiveAsset(string assetId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Archives an entry by the specified id.
/// </summary>
/// <param name="entryId">The id of the entry.</param>
/// <param name="version">The last known version of the entry.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into <see cref="Entry{dynamic}"/></returns>
Task<Entry<dynamic>> ArchiveEntry(string entryId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates an <see cref="Contentful.Core.Models.Management.ApiKey"/> in a space.
/// </summary>
/// <param name="name">The name of the API key to create.</param>
/// <param name="description">The description of the API key to create.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.ApiKey"/>.</returns>
Task<ApiKey> CreateApiKey(string name, string description, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates a locale in the specified <see cref="Space"/>.
/// </summary>
/// <param name="locale">The <see cref="Contentful.Core.Models.Management.Locale"/> to create.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.Locale"/>.</returns>
Task<Locale> CreateLocale(Locale locale, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates or updates an <see cref="Contentful.Core.Models.Management.ManagementAsset"/>. Updates if an asset with the same id already exists.
/// </summary>
/// <param name="asset">The asset to create or update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="version">The last known version of the entry. Must be set when updating an asset.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The updated <see cref="Contentful.Core.Models.Management.ManagementAsset"/></returns>
Task<ManagementAsset> CreateOrUpdateAsset(ManagementAsset asset, string spaceId = null, int? version = default(int?), CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates an <see cref="Contentful.Core.Models.Management.ManagementAsset"/> with a randomly created id.
/// </summary>
/// <param name="asset">The asset to create.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.ManagementAsset"/></returns>
Task<ManagementAsset> CreateAsset(ManagementAsset asset, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates or updates a ContentType. Updates if a content type with the same id already exists.
/// </summary>
/// <param name="contentType">The <see cref="ContentType"/> to create or update. **Remember to set the id property.**</param>
/// <param name="spaceId">The id of the space to create the content type in. Will default to the one set when creating the client.</param>
/// <param name="version">The last version known of the content type. Must be set for existing content types. Should be null if one is created.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created or updated <see cref="ContentType"/>.</returns>
Task<ContentType> CreateOrUpdateContentType(ContentType contentType, string spaceId = null, int? version = default(int?), CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates an <see cref="Entry{T}"/>.
/// </summary>
/// <param name="entry">The entry to create or update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="contentTypeId">The id of the <see cref="ContentType"/> of the entry.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Entry{T}"/>.</returns>
Task<Entry<dynamic>> CreateEntry(Entry<dynamic> entry, string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates an entry.
/// </summary>
/// <param name="entry">The object to create an entry from.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="contentTypeId">The id of the <see cref="ContentType"/> of the entry.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created entry.</returns>
Task<T> CreateEntry<T>(T entry, string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates or updates an <see cref="Entry{T}"/>. Updates if an entry with the same id already exists.
/// </summary>
/// <param name="entry">The entry to create or update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="contentTypeId">The id of the <see cref="ContentType"/> of the entry. Need only be set if you are creating a new entry.</param>
/// <param name="version">The last known version of the entry. Must be set when updating an entry.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created or updated <see cref="Entry{T}"/>.</returns>
Task<Entry<dynamic>> CreateOrUpdateEntry(Entry<dynamic> entry, string spaceId = null, string contentTypeId = null, int? version = default(int?), CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates or updates an entry. Updates if an entry with the same id already exists.
/// </summary>
/// <param name="entry">The entry to create or update.</param>
/// <param name="id">The id of the entry to create or update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="contentTypeId">The id of the <see cref="ContentType"/> of the entry. Need only be set if you are creating a new entry.</param>
/// <param name="version">The last known version of the entry. Must be set when updating an entry.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created or updated entry.</returns>
Task<T> CreateOrUpdateEntry<T>(T entry, string id, string spaceId = null, string contentTypeId = null, int? version = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates an entry with values for a certain locale from the provided object.
/// </summary>
/// <param name="entry">The object to use as values for the entry fields.</param>
/// <param name="id">The of the entry to create.</param>
/// <param name="contentTypeId">The id of the content type to create an entry for.</param>
/// <param name="locale">The locale to set fields for. The default locale for the space will be used if this parameter is null or empty.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Entry{T}"/>.</returns>
Task<Entry<dynamic>> CreateEntryForLocale(object entry, string id, string contentTypeId, string locale = null, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates an entry fields for a certain locale using the values from the provided object.
/// </summary>
/// <param name="entry">The object to use as values for the entry fields.</param>
/// <param name="id">The id of the entry to update.</param>
/// <param name="locale">The locale to set the fields for. The default locale for the space will be used if this parameter is null.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created or updated <see cref="Entry{T}"/>.</returns>
Task<Entry<dynamic>> UpdateEntryForLocale(object entry, string id, string locale = null, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates or updates a webhook in a <see cref="Space"/>. Updates if a webhook with the same id already exists.
/// </summary>
/// <param name="webhook">The webhook to create or update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.Webhook"/>.</returns>
Task<Webhook> CreateOrUpdateWebhook(Webhook webhook, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates a role in a <see cref="Space"/>.
/// </summary>
/// <param name="role">The role to create.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.Role"/>.</returns>
Task<Role> CreateRole(Role role, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates a new space in Contentful.
/// </summary>
/// <param name="name">The name of the space to create.</param>
/// <param name="defaultLocale">The default locale for this space.</param>
/// <param name="organisation">The organisation to create a space for. Not required if the account belongs to only one organisation.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Space"/></returns>
Task<Space> CreateSpace(string name, string defaultLocale, string organisation = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates a membership in a <see cref="Space"/>.
/// </summary>
/// <param name="spaceMembership">The membership to create.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.SpaceMembership"/>.</returns>
Task<SpaceMembership> CreateSpaceMembership(SpaceMembership spaceMembership, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates a webhook in a <see cref="Space"/>.
/// </summary>
/// <param name="webhook">The webhook to create.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.Webhook"/>.</returns>
Task<Webhook> CreateWebhook(Webhook webhook, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deactivates a <see cref="ContentType"/> by the specified id.
/// </summary>
/// <param name="contentTypeId">The id of the content type.</param>
/// <param name="spaceId">The id of the space to deactivate the content type in. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into a <see cref="ContentType"/>.</returns>
Task DeactivateContentType(string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes an asset by the specified id.
/// </summary>
/// <param name="assetId">The id of the asset to delete.</param>
/// <param name="version">The last known version of the asset.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task DeleteAsset(string assetId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a <see cref="ContentType"/> by the specified id.
/// </summary>
/// <param name="contentTypeId">The id of the content type.</param>
/// <param name="spaceId">The id of the space to delete the content type in. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into a <see cref="ContentType"/>.</returns>
Task DeleteContentType(string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a single entry by the specified id.
/// </summary>
/// <param name="entryId">The id of the entry.</param>
/// <param name="version">The last known version of the entry.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task DeleteEntry(string entryId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a locale by the specified id.
/// </summary>
/// <param name="localeId">The id of the locale to delete.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task DeleteLocale(string localeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a role by the specified id.
/// </summary>
/// <param name="roleId">The id of the role to delete.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task DeleteRole(string roleId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a space in Contentful.
/// </summary>
/// <param name="id">The id of the space to delete.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns></returns>
Task DeleteSpace(string id, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a <see cref="Contentful.Core.Models.Management.SpaceMembership"/> for a space.
/// </summary>
/// <param name="spaceMembershipId">The id of the space membership to delete.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task DeleteSpaceMembership(string spaceMembershipId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a webhook from a <see cref="Space"/>.
/// </summary>
/// <param name="webhookId">The id of the webhook to delete.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task DeleteWebhook(string webhookId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Get all activated content types of a space.
/// </summary>
/// <param name="spaceId">The id of the space to get the activated content types of. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>An <see cref="IEnumerable{T}"/> of <see cref="ContentType"/>.</returns>
Task<IEnumerable<ContentType>> GetActivatedContentTypes(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a collection of all <see cref="Contentful.Core.Models.Management.ApiKey"/> in a space.
/// </summary>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.ApiKey"/>.</returns>
Task<ContentfulCollection<ApiKey>> GetAllApiKeys(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all <see cref="Contentful.Core.Models.Management.Role">roles</see> of a space.
/// </summary>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.Role"/>.</returns>
Task<ContentfulCollection<Role>> GetAllRoles(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all snapsohts for an <see cref="Entry{T}"/>.
/// </summary>
/// <param name="entryId">The id of the entry to get snapshots for.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A collection of <see cref="Contentful.Core.Models.Management.Snapshot"/>.</returns>
Task<ContentfulCollection<Snapshot>> GetAllSnapshotsForEntry(string entryId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets an asset by the specified id.
/// </summary>
/// <param name="assetId">The id of the asset to get.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.ManagementAsset"/>.</returns>
Task<ManagementAsset> GetAsset(string assetId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all assets of a space, filtered by an optional <see cref="QueryBuilder{T}"/>.
/// </summary>
/// <param name="queryBuilder">The optional <see cref="QueryBuilder{T}"/> to add additional filtering to the query.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.ManagementAsset"/>.</returns>
/// <exception cref="Contentful.Core.Errors.ContentfulException">There was an error when communicating with the Contentful API.</exception>
Task<ContentfulCollection<ManagementAsset>> GetAssetsCollection(QueryBuilder<Asset> queryBuilder, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all assets in the space.
/// </summary>
/// <param name="queryString">The optional querystring to add additional filtering to the query.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.ManagementAsset"/>.</returns>
Task<ContentfulCollection<ManagementAsset>> GetAssetsCollection(string queryString, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a <see cref="ContentType"/> by the specified id.
/// </summary>
/// <param name="contentTypeId">The id of the content type.</param>
/// <param name="spaceId">The id of the space to get the content type from. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into a <see cref="ContentType"/>.</returns>
Task<ContentType> GetContentType(string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Get all content types of a space.
/// </summary>
/// <param name="spaceId">The id of the space to get the content types of. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>An <see cref="IEnumerable{T}"/> of <see cref="ContentType"/>.</returns>
Task<IEnumerable<ContentType>> GetContentTypes(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a <see cref="Contentful.Core.Models.Management.EditorInterface"/> for a specific <seealso cref="ContentType"/>.
/// </summary>
/// <param name="contentTypeId">The id of the content type.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into a <see cref="Contentful.Core.Models.Management.EditorInterface"/>.</returns>
Task<EditorInterface> GetEditorInterface(string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all the entries of a space, filtered by an optional <see cref="QueryBuilder{T}"/>.
/// </summary>
/// <typeparam name="T">The <see cref="IContentfulResource"/> to serialize the response into.</typeparam>
/// <param name="queryBuilder">The optional <see cref="QueryBuilder{T}"/> to add additional filtering to the query.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of items.</returns>
Task<ContentfulCollection<T>> GetEntriesCollection<T>(QueryBuilder<T> queryBuilder, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all the entries of a space, filtered by an optional querystring. A simpler approach than
/// to construct a query manually is to use the <see cref="QueryBuilder{T}"/> class.
/// </summary>
/// <typeparam name="T">The <see cref="IContentfulResource"/> to serialize the response into.</typeparam>
/// <param name="queryString">The optional querystring to add additional filtering to the query.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of items.</returns>
Task<ContentfulCollection<T>> GetEntriesCollection<T>(string queryString = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Get a single entry by the specified id.
/// </summary>
/// <param name="entryId">The id of the entry.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into <see cref="Entry{dynamic}"/></returns>
Task<Entry<dynamic>> GetEntry(string entryId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a locale in the specified <see cref="Space"/>.
/// </summary>
/// <param name="localeId">The id of the locale to get.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The requested <see cref="Contentful.Core.Models.Management.Locale"/>.</returns>
Task<Locale> GetLocale(string localeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all locales in a <see cref="Space"/>.
/// </summary>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{Locale}"/> of locales.</returns>
Task<ContentfulCollection<Locale>> GetLocalesCollection(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all published assets in the space.
/// </summary>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.ManagementAsset"/>.</returns>
Task<ContentfulCollection<ManagementAsset>> GetPublishedAssetsCollection(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a role by the specified id.
/// </summary>
/// <param name="roleId">The id of the role.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.Role"/></returns>
Task<Role> GetRole(string roleId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a single snapshot for an <see cref="Entry{T}"/>
/// </summary>
/// <param name="snapshotId">The id of the snapshot to get.</param>
/// <param name="entryId">The id of entry the snapshot belongs to.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.Snapshot"/>.</returns>
Task<Snapshot> GetSnapshotForEntry(string snapshotId, string entryId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all snapshots for a <see cref="ContentType"/>.
/// </summary>
/// <param name="contentTypeId">The id of the content type to get snapshots for.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A collection of <see cref="Contentful.Core.Models.Management.SnapshotContentType"/>.</returns>
Task<ContentfulCollection<SnapshotContentType>> GetAllSnapshotsForContentType(string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a single snapshot for a <see cref="ContentType"/>
/// </summary>
/// <param name="snapshotId">The id of the snapshot to get.</param>
/// <param name="contentTypeId">The id of content type the snapshot belongs to.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.SnapshotContentType"/>.</returns>
Task<SnapshotContentType> GetSnapshotForContentType(string snapshotId, string contentTypeId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a space in Contentful.
/// </summary>
/// <param name="id">The id of the space to get.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Space" /></returns>
Task<Space> GetSpace(string id, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a single <see cref="Contentful.Core.Models.Management.SpaceMembership"/> for a space.
/// </summary>
/// <param name="spaceMembershipId">The id of the space membership to get.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.SpaceMembership"/>.</returns>
Task<SpaceMembership> GetSpaceMembership(string spaceMembershipId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a collection of <see cref="Contentful.Core.Models.Management.SpaceMembership"/> for the user.
/// </summary>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A collection of <see cref="Contentful.Core.Models.Management.SpaceMembership"/>.</returns>
Task<ContentfulCollection<SpaceMembership>> GetSpaceMemberships(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all spaces in Contentful.
/// </summary>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>An <see cref="IEnumerable{T}"/> of <see cref="Space"/>.</returns>
Task<IEnumerable<Space>> GetSpaces(CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a single webhook from a <see cref="Space"/>.
/// </summary>
/// <param name="webhookId">The id of the webhook to get.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.Webhook"/>.</returns>
Task<Webhook> GetWebhook(string webhookId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets the details of a specific webhook call.
/// </summary>
/// <param name="callId">The id of the call to get details for.</param>
/// <param name="webhookId">The id of the webhook to get details for.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.WebhookCallDetails"/>.</returns>
Task<WebhookCallDetails> GetWebhookCallDetails(string callId, string webhookId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all recent call details for a webhook.
/// </summary>
/// <param name="webhookId">The id of the webhook to get details for.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.WebhookCallDetails"/>.</returns>
Task<ContentfulCollection<WebhookCallDetails>> GetWebhookCallDetailsCollection(string webhookId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a response containing an overview of the recent webhook calls.
/// </summary>
/// <param name="webhookId">The id of the webhook to get health details for.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="Contentful.Core.Models.Management.WebhookHealthResponse"/>.</returns>
Task<WebhookHealthResponse> GetWebhookHealth(string webhookId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets all webhooks for a <see cref="Space"/>.
/// </summary>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.Webhook"/>.</returns>
Task<ContentfulCollection<Webhook>> GetWebhooksCollection(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Processes an asset by the specified id and keeps polling the API until it has finished processing. **Note that this might result in multiple API calls.**
/// </summary>
/// <param name="assetId">The id of the asset to process.</param>
/// <param name="version">The last known version of the asset.</param>
/// <param name="locale">The locale for which files should be processed.</param>
/// <param name="maxDelay">The maximum number of milliseconds allowed for the operation.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.ManagementAsset"/> that has been processed.</returns>
/// <exception cref="System.ArgumentException">The <see name="assetId">assetId</see> parameter was null or empty.</exception>
/// <exception cref="Contentful.Core.Errors.ContentfulException">There was an error when communicating with the Contentful API.</exception>
/// <exception cref="System.TimeoutException">The processing of the asset did not finish within the allotted time.</exception>
Task<ManagementAsset> ProcessAssetUntilCompleted(string assetId, int version, string locale, int maxDelay = 2000, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Processes an asset by the specified id.
/// </summary>
/// <param name="assetId">The id of the asset to process.</param>
/// <param name="version">The last known version of the asset.</param>
/// <param name="locale">The locale for which files should be processed.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task ProcessAsset(string assetId, int version, string locale, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Publishes an asset by the specified id.
/// </summary>
/// <param name="assetId">The id of the asset to publish.</param>
/// <param name="version">The last known version of the asset.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.ManagementAsset"/> published.</returns>
Task<ManagementAsset> PublishAsset(string assetId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Publishes an entry by the specified id.
/// </summary>
/// <param name="entryId">The id of the entry.</param>
/// <param name="version">The last known version of the entry.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into <see cref="Entry{dynamic}"/></returns>
Task<Entry<dynamic>> PublishEntry(string entryId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Unarchives an asset by the specified id.
/// </summary>
/// <param name="assetId">The id of the asset to unarchive.</param>
/// <param name="version">The last known version of the asset.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.ManagementAsset"/> unarchived.</returns>
Task<ManagementAsset> UnarchiveAsset(string assetId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Unarchives an entry by the specified id.
/// </summary>
/// <param name="entryId">The id of the entry.</param>
/// <param name="version">The last known version of the entry.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into <see cref="Entry{dynamic}"/></returns>
Task<Entry<dynamic>> UnarchiveEntry(string entryId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Unpublishes an asset by the specified id.
/// </summary>
/// <param name="assetId">The id of the asset to unpublish.</param>
/// <param name="version">The last known version of the asset.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.ManagementAsset"/> unpublished.</returns>
Task<ManagementAsset> UnpublishAsset(string assetId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Unpublishes an entry by the specified id.
/// </summary>
/// <param name="entryId">The id of the entry.</param>
/// <param name="version">The last known version of the entry.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into <see cref="Entry{dynamic}"/></returns>
Task<Entry<dynamic>> UnpublishEntry(string entryId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates a <see cref="Contentful.Core.Models.Management.EditorInterface"/> for a specific <see cref="ContentType"/>.
/// </summary>
/// <param name="editorInterface">The editor interface to update.</param>
/// <param name="contentTypeId">The id of the content type.</param>
/// <param name="version">The last known version of the content type.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The response from the API serialized into a <see cref="Contentful.Core.Models.Management.EditorInterface"/>.</returns>
Task<EditorInterface> UpdateEditorInterface(EditorInterface editorInterface, string contentTypeId, int version, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates a locale in the specified <see cref="Space"/>.
/// </summary>
/// <param name="locale">The <see cref="Contentful.Core.Models.Management.Locale"/> to update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.Locale"/>.</returns>
Task<Locale> UpdateLocale(Locale locale, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates a role in a <see cref="Space"/>.
/// </summary>
/// <param name="role">The role to update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The updated <see cref="Contentful.Core.Models.Management.Role"/>.</returns>
Task<Role> UpdateRole(Role role, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates a <see cref="Contentful.Core.Models.Management.SpaceMembership"/> for a space.
/// </summary>
/// <param name="spaceMembership">The membership to update.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.SpaceMembership"/>.</returns>
Task<SpaceMembership> UpdateSpaceMembership(SpaceMembership spaceMembership, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates the name of a space in Contentful.
/// </summary>
/// <param name="space">The space to update, needs to contain at minimum name, Id and version.</param>
/// <param name="organisation">The organisation to update a space for. Not required if the account belongs to only one organisation.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The updated <see cref="Space"/></returns>
Task<Space> UpdateSpaceName(Space space, string organisation = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Updates a space in Contentful.
/// </summary>
/// <param name="id">The id of the space to update.</param>
/// <param name="name">The name to update to.</param>
/// <param name="version">The version of the space that will be updated.</param>
/// <param name="organisation">The organisation to update a space for. Not required if the account belongs to only one organisation.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The updated <see cref="Space"/></returns>
Task<Space> UpdateSpaceName(string id, string name, int version, string organisation = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets an upload <see cref="SystemProperties"/> by the specified id.
/// </summary>
/// <param name="uploadId">The id of the uploaded file.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="SystemProperties"/> with metadata of the upload.</returns>
Task<UploadReference> GetUpload(string uploadId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Uploads the specified bytes to Contentful.
/// </summary>
/// <param name="bytes">The bytes to upload.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="SystemProperties"/> with an id of the created upload.</returns>
Task<UploadReference> UploadFile(byte[] bytes, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets an upload <see cref="SystemProperties"/> by the specified id.
/// </summary>
/// <param name="uploadId">The id of the uploaded file.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="SystemProperties"/> with metadata of the upload.</returns>
Task DeleteUpload(string uploadId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Uploads an array of bytes and creates an asset in Contentful as well as processing that asset.
/// </summary>
/// <param name="asset">The asset to create</param>
/// <param name="bytes">The bytes to upload.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.ManagementAsset"/>.</returns>
Task<ManagementAsset> UploadFileAndCreateAsset(ManagementAsset asset, byte[] bytes, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a collection of all <see cref="Contentful.Core.Models.Management.UiExtension"/> for a space.
/// </summary>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.UiExtension"/>.</returns>
Task<ContentfulCollection<UiExtension>> GetAllExtensions(string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates a UiExtension in a <see cref="Space"/>.
/// </summary>
/// <param name="extension">The UI extension to create.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.UiExtension"/>.</returns>
Task<UiExtension> CreateExtension(UiExtension extension, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates or updates a UI extension. Updates if an extension with the same id already exists.
/// </summary>
/// <param name="extension">The <see cref="Contentful.Core.Models.Management.UiExtension"/> to create or update. **Remember to set the id property.**</param>
/// <param name="spaceId">The id of the space to create the content type in. Will default to the one set when creating the client.</param>
/// <param name="version">The last version known of the extension. Must be set for existing extensions. Should be null if one is created.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created or updated <see cref="Contentful.Core.Models.Management.UiExtension"/>.</returns>
Task<UiExtension> CreateOrUpdateExtension(UiExtension extension, string spaceId = null, int? version = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a single <see cref="Contentful.Core.Models.Management.UiExtension"/> for a space.
/// </summary>
/// <param name="extensionId">The id of the extension to get.</param>
/// <param name="spaceId">The id of the space. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.User"/>.</returns>
Task<UiExtension> GetExtension(string extensionId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Deletes a <see cref="Contentful.Core.Models.Management.UiExtension"/> by the specified id.
/// </summary>
/// <param name="extensionId">The id of the extension.</param>
/// <param name="spaceId">The id of the space to delete the extension in. Will default to the one set when creating the client.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
Task DeleteExtension(string extensionId, string spaceId = null, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Creates a CMA management token that can be used to access the Contentful Management API.
/// </summary>
/// <param name="token">The token to create.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The created <see cref="Contentful.Core.Models.Management.ManagementToken"/>.</returns>
Task<ManagementToken> CreateManagementToken(ManagementToken token, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a collection of all <see cref="Contentful.Core.Models.Management.ManagementToken"/> for a user. **Note that the actual token will not be part of the response.
/// It is only available directly after creation of a token for security reasons.**
/// </summary>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.UiExtension"/>.</returns>
Task<ContentfulCollection<ManagementToken>> GetAllManagementTokens(CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a single <see cref="Contentful.Core.Models.Management.ManagementToken"/> for a user. **Note that the actual token will not be part of the response.
/// It is only available directly after creation of a token for security reasons.**
/// </summary>
/// <param name="managementTokenId">The id of the management token to get.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.ManagementToken"/>.</returns>
Task<ManagementToken> GetManagementToken(string managementTokenId, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Revokes a single <see cref="Contentful.Core.Models.Management.ManagementToken"/> for a user.
/// </summary>
/// <param name="managementTokenId">The id of the management token to revoke.</param>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The revoked <see cref="Contentful.Core.Models.Management.ManagementToken"/>.</returns>
Task<ManagementToken> RevokeManagementToken(string managementTokenId, CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a single <see cref="Contentful.Core.Models.Management.User"/> for the currently logged in user.
/// </summary>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>The <see cref="Contentful.Core.Models.Management.User"/>.</returns>
Task<User> GetCurrentUser(CancellationToken cancellationToken = default(CancellationToken));
/// <summary>
/// Gets a collection of all <see cref="Contentful.Core.Models.Management.Organization"/> for a user.
/// </summary>
/// <param name="cancellationToken">The optional cancellation token to cancel the operation.</param>
/// <returns>A <see cref="ContentfulCollection{T}"/> of <see cref="Contentful.Core.Models.Management.Organization"/>.</returns>
Task<ContentfulCollection<Organization>> GetOrganizations(CancellationToken cancellationToken = default(CancellationToken));
}
}