-
Notifications
You must be signed in to change notification settings - Fork 502
/
Copy pathDatabase.cs
1042 lines (1010 loc) · 54.8 KB
/
Database.cs
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
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace Microsoft.Azure.Cosmos
{
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.Cosmos.Fluent;
/// <summary>
/// Operations for reading or deleting an existing database.
///
/// See <see cref="Client"/> for creating new databases, and reading/querying all databases; use `client.Databases`.
/// </summary>
/// <remarks>
/// Note: all these operations make calls against a fixed budget.
/// You should design your system such that these calls scale sub-linearly with your application.
/// For instance, do not call `database.ReadAsync()` before every single `container.ReadItemAsync()` call to ensure the database exists;
/// do this once on application start up.
/// </remarks>
public abstract class Database
{
/// <summary>
/// The Id of the Cosmos database
/// </summary>
public abstract string Id { get; }
/// <summary>
/// The parent Cosmos client instance related the database instance
/// </summary>
public abstract CosmosClient Client { get; }
/// <summary>
/// Reads a <see cref="DatabaseResponse"/> from the Azure Cosmos service as an asynchronous operation.
/// </summary>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>
/// A <see cref="Task"/> containing a <see cref="DatabaseResponse"/> which wraps a <see cref="DatabaseProperties"/> containing the read resource record.
/// </returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <remarks>
/// <see cref="DatabaseResponse.Resource"/> contains the <see cref="DatabaseProperties"/> that include the resource information.
/// </remarks>
/// <example>
/// <code language="c#">
/// <![CDATA[
/// // Reads a Database resource where database_id is the ID property of the Database resource you wish to read.
/// Database database = this.cosmosClient.GetDatabase(database_id);
/// DatabaseResponse response = await database.ReadAsync();
/// ]]>
/// </code>
/// </example>
public abstract Task<DatabaseResponse> ReadAsync(
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Delete a Database from the Azure Cosmos DB service as an asynchronous operation.
/// </summary>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="DatabaseResponse"/> which will contain information about the request issued.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// <code language="c#">
/// <![CDATA[
/// // Delete a Cosmos database
/// Database database = cosmosClient.GetDatabase("myDbId");
/// DatabaseResponse response = await database.DeleteAsync();
/// ]]>
/// </code>
/// </example>
public abstract Task<DatabaseResponse> DeleteAsync(
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Gets database throughput in measurement of request units per second in the Azure Cosmos service.
/// </summary>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>Provisioned throughput in request units per second</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <value>
/// The provisioned throughput for this database.
/// </value>
/// <remarks>
/// Null value indicates a database with no throughput provisioned.
/// </remarks>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/set-throughput#set-throughput-on-a-database">Set throughput on a database</seealso>
/// <example>
/// The following example shows how to get database throughput.
/// <code language="c#">
/// <![CDATA[
/// int? throughput = await database.ReadThroughputAsync();
/// ]]>
/// </code>
/// </example>
public abstract Task<int?> ReadThroughputAsync(
CancellationToken cancellationToken = default);
/// <summary>
/// Gets database throughput in measurement of request units per second in the Azure Cosmos service.
/// </summary>
/// <param name="requestOptions">The options for the throughput request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>The throughput response.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions#typed-api</exception>
/// <exception cref="CosmosException">
/// This exception can encapsulate many different types of errors.
/// To determine the specific error always look at the StatusCode property.
/// Some common codes you may get when reading a client encryption key are:
/// <list type="table">
/// <listheader>
/// <term>StatusCode</term>
/// <description>Reason for exception</description>
/// </listheader>
/// <item>
/// <term>404</term>
/// <description>
/// NotFound - This means the database does not exist or has no throughput assigned.
/// </description>
/// </item>
/// </list>
/// </exception>
/// <value>
/// The provisioned throughput for this database.
/// </value>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/set-throughput#set-throughput-on-a-database">Set throughput on a database</seealso>
/// <example>
/// The following example shows how to get the throughput
/// <code language="c#">
/// <![CDATA[
/// RequestOptions requestOptions = new RequestOptions();
/// ThroughputProperties throughputProperties = await database.ReadThroughputAsync(requestOptions);
/// Console.WriteLine($"Throughput: {throughputProperties?.Throughput}");
/// ]]>
/// </code>
/// </example>
/// <example>
/// The following example shows how to get throughput, MinThroughput and is replace in progress
/// <code language="c#">
/// <![CDATA[
/// RequestOptions requestOptions = new RequestOptions();
/// ThroughputResponse response = await database.ReadThroughputAsync(requestOptions);
/// Console.WriteLine($"Throughput: {response.Resource?.Throughput}");
/// Console.WriteLine($"MinThroughput: {response.MinThroughput}");
/// Console.WriteLine($"IsReplacePending: {response.IsReplacePending}");
/// ]]>
/// </code>
/// </example>
public abstract Task<ThroughputResponse> ReadThroughputAsync(
RequestOptions requestOptions,
CancellationToken cancellationToken = default);
/// <summary>
/// Sets throughput provisioned for a database in measurement of request units per second in the Azure Cosmos service.
/// </summary>
/// <param name="throughputProperties">The Cosmos database throughput expressed in Request Units per second.</param>
/// <param name="requestOptions">(Optional) The options for the throughput request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>The throughput response.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <value>
/// The provisioned throughput for this database.
/// </value>
/// <example>
/// The following example shows how to replace the manual throughput.
/// <code language="c#">
/// <![CDATA[
/// ThroughputResponse throughput = await this.cosmosDatabase.ReplaceThroughputAsync(
/// ThroughputProperties.CreateManualThroughput(10000));
/// ]]>
/// </code>
/// </example>
/// <example>
/// The following example shows how to replace the autoscale provisioned throughput.
/// <code language="c#">
/// <![CDATA[
/// ThroughputResponse throughput = await this.cosmosDatabase.ReplaceThroughputAsync(
/// ThroughputProperties.CreateAutoscaleThroughput(10000));
/// ]]>
/// </code>
/// </example>
/// <remarks>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/set-throughput#set-throughput-on-a-database">Set throughput on a database</seealso>
/// </remarks>
public abstract Task<ThroughputResponse> ReplaceThroughputAsync(
ThroughputProperties throughputProperties,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Creates a container as an asynchronous operation in the Azure Cosmos service.
/// </summary>
/// <param name="containerProperties">The <see cref="ContainerProperties"/> object.</param>
/// <param name="throughputProperties">(Optional) The throughput provisioned for a container in measurement of Requests Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ContainerResponse"/> which wraps a <see cref="ContainerProperties"/> containing the read resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// ContainerProperties containerProperties = new ContainerProperties()
/// {
/// Id = Guid.NewGuid().ToString(),
/// PartitionKeyPath = "/pk",
/// IndexingPolicy = new IndexingPolicy()
/// {
/// Automatic = false,
/// IndexingMode = IndexingMode.Lazy,
/// }
/// };
///
/// ContainerResponse response = await this.cosmosDatabase.CreateContainerAsync(
/// containerProperties,
/// ThroughputProperties.CreateAutoscaleThroughput(10000));
/// ]]>
/// </code>
/// </example>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ContainerResponse> CreateContainerAsync(
ContainerProperties containerProperties,
ThroughputProperties throughputProperties,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// <para>Check if a container exists, and if it doesn't, create it.
/// Only the container id is used to verify if there is an existing container. Other container properties such as throughput are not validated and can be different then the passed properties.</para>
/// </summary>
/// <param name="containerProperties">The <see cref="ContainerProperties"/> object.</param>
/// <param name="throughputProperties">(Optional) The throughput provisioned for a container in measurement of Requests Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ContainerResponse"/> which wraps a <see cref="ContainerProperties"/> containing the read resource record.
/// <list type="table">
/// <listheader>
/// <term>StatusCode</term><description>Common success StatusCodes for the CreateDatabaseIfNotExistsAsync operation</description>
/// </listheader>
/// <item>
/// <term>201</term><description>Created - New database is created.</description>
/// </item>
/// <item>
/// <term>200</term><description>OK - This means the database already exists.</description>
/// </item>
/// </list>
/// </returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// ContainerProperties containerProperties = new ContainerProperties()
/// {
/// Id = Guid.NewGuid().ToString(),
/// PartitionKeyPath = "/pk",
/// IndexingPolicy = new IndexingPolicy()
/// {
/// Automatic = false,
/// IndexingMode = IndexingMode.Lazy,
/// }
/// };
///
/// ContainerResponse response = await this.cosmosDatabase.CreateContainerIfNotExistsAsync(
/// containerProperties,
/// ThroughputProperties.CreateAutoscaleThroughput(5000));
/// ]]>
/// </code>
/// </example>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ContainerResponse> CreateContainerIfNotExistsAsync(
ContainerProperties containerProperties,
ThroughputProperties throughputProperties,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Creates a container as an asynchronous operation in the Azure Cosmos service.
/// </summary>
/// <param name="containerProperties">The <see cref="ContainerProperties"/> object.</param>
/// <param name="throughputProperties">(Optional) The throughput provisioned for a container in measurement of Request Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the container request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ResponseMessage"/> containing the created resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// Creates a container as an asynchronous operation in the Azure Cosmos service and return stream response.
/// <code language="c#">
/// <![CDATA[
/// ContainerProperties containerProperties = new ContainerProperties()
/// {
/// Id = Guid.NewGuid().ToString(),
/// PartitionKeyPath = "/pk",
/// };
///
/// using(ResponseMessage response = await this.cosmosDatabase.CreateContainerStreamAsync(
/// containerProperties,
/// ThroughputProperties.CreateAutoscaleThroughput(10000)))
/// {
/// }
/// ]]>
/// </code>
/// </example>
/// <seealso cref="DefineContainer(string, string)"/>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ResponseMessage> CreateContainerStreamAsync(
ContainerProperties containerProperties,
ThroughputProperties throughputProperties,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Sets throughput provisioned for a database in measurement of request units per second in the Azure Cosmos service.
/// </summary>
/// <param name="throughput">The Cosmos database throughput expressed in Request Units per second.</param>
/// <param name="requestOptions">(Optional) The options for the throughput request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>The throughput response.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <value>
/// The provisioned throughput for this database.
/// </value>
/// <example>
/// The following example shows how to get the throughput.
/// <code language="c#">
/// <![CDATA[
/// ThroughputResponse throughput = await this.cosmosDatabase.ReplaceThroughputAsync(10000);
/// ]]>
/// </code>
/// </example>
/// <remarks>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
/// </remarks>
public abstract Task<ThroughputResponse> ReplaceThroughputAsync(
int throughput,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Reads a <see cref="DatabaseProperties"/> from the Azure Cosmos service as an asynchronous operation.
/// </summary>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>
/// A <see cref="Task"/> containing a <see cref="ResponseMessage"/> containing the read resource record.
/// </returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// <code language="c#">
/// <![CDATA[
/// // Reads a Database resource where database_id is the ID property of the Database resource you wish to read.
/// Database database = this.cosmosClient.GetDatabase(database_id);
/// ResponseMessage response = await database.ReadContainerStreamAsync();
/// ]]>
/// </code>
/// </example>
public abstract Task<ResponseMessage> ReadStreamAsync(
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Delete a <see cref="DatabaseProperties"/> from the Azure Cosmos DB service as an asynchronous operation.
/// </summary>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ResponseMessage"/> which will contain information about the request issued.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// <code language="c#">
/// <![CDATA[
/// // Delete a Database resource where database_id is the ID property of the Database resource you wish to delete.
/// Database database = this.cosmosClient.GetDatabase(database_id);
/// await database.DeleteStreamAsync();
/// ]]>
/// </code>
/// </example>
public abstract Task<ResponseMessage> DeleteStreamAsync(
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Returns a reference to a container object.
/// </summary>
/// <param name="id">The Cosmos container id.</param>
/// <returns>Cosmos container reference</returns>
/// <remarks>
/// Returns a Container reference. Reference doesn't guarantee existence.
/// Please ensure container already exists or is created through a create operation.
/// </remarks>
/// <example>
/// <code language="c#">
/// <![CDATA[
/// Database db = this.cosmosClient.GetDatabase("myDatabaseId");
/// Container container = db.GetContainer("testcontainer");
/// ]]>
/// </code>
/// </example>
public abstract Container GetContainer(string id);
/// <summary>
/// Creates a container as an asynchronous operation in the Azure Cosmos service.
/// </summary>
/// <param name="containerProperties">The <see cref="ContainerProperties"/> object.</param>
/// <param name="throughput">(Optional) The throughput provisioned for a container in measurement of Requests Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ContainerResponse"/> which wraps a <see cref="ContainerProperties"/> containing the read resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// ContainerProperties containerProperties = new ContainerProperties()
/// {
/// Id = Guid.NewGuid().ToString(),
/// PartitionKeyPath = "/pk",
/// IndexingPolicy = new IndexingPolicy()
/// {
/// Automatic = false,
/// IndexingMode = IndexingMode.Lazy,
/// }
/// };
///
/// ContainerResponse response = await this.cosmosDatabase.CreateContainerAsync(containerProperties);
/// ]]>
/// </code>
/// </example>
/// <seealso cref="DefineContainer(string, string)"/>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ContainerResponse> CreateContainerAsync(
ContainerProperties containerProperties,
int? throughput = null,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Creates a container as an asynchronous operation in the Azure Cosmos service.
/// </summary>
/// <param name="id">The Cosmos container id</param>
/// <param name="partitionKeyPath">The path to the partition key. Example: /location</param>
/// <param name="throughput">(Optional) The throughput provisioned for a container in measurement of Requests Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ContainerResponse"/> which wraps a <see cref="ContainerProperties"/> containing the read resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// ContainerResponse response = await this.cosmosDatabase.CreateContainerAsync(Guid.NewGuid().ToString(), "/pk");
/// ]]>
/// </code>
/// </example>
/// <seealso cref="DefineContainer(string, string)"/>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ContainerResponse> CreateContainerAsync(
string id,
string partitionKeyPath,
int? throughput = null,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// <para>Check if a container exists, and if it doesn't, create it.
/// Only the container id is used to verify if there is an existing container. Other container properties such as throughput are not validated and can be different then the passed properties.</para>
/// </summary>
/// <param name="containerProperties">The <see cref="ContainerProperties"/> object.</param>
/// <param name="throughput">(Optional) The throughput provisioned for a container in measurement of Requests Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ContainerResponse"/> which wraps a <see cref="ContainerProperties"/> containing the read resource record.
/// <list type="table">
/// <listheader>
/// <term>StatusCode</term><description>Common success StatusCodes for the CreateDatabaseIfNotExistsAsync operation</description>
/// </listheader>
/// <item>
/// <term>201</term><description>Created - New database is created.</description>
/// </item>
/// <item>
/// <term>200</term><description>OK - This means the database already exists.</description>
/// </item>
/// </list>
/// </returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// ContainerProperties containerProperties = new ContainerProperties()
/// {
/// Id = Guid.NewGuid().ToString(),
/// PartitionKeyPath = "/pk",
/// IndexingPolicy = new IndexingPolicy()
/// {
/// Automatic = false,
/// IndexingMode = IndexingMode.Lazy,
/// }
/// };
///
/// ContainerResponse response = await this.cosmosDatabase.CreateContainerIfNotExistsAsync(containerProperties);
/// ]]>
/// </code>
/// </example>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ContainerResponse> CreateContainerIfNotExistsAsync(
ContainerProperties containerProperties,
int? throughput = null,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Check if a container exists, and if it doesn't, create it.
/// This will make a read operation, and if the container is not found it will do a create operation.
/// </summary>
/// <param name="id">The Cosmos container id</param>
/// <param name="partitionKeyPath">The path to the partition key. Example: /location</param>
/// <param name="throughput">(Optional) The throughput provisioned for a container in measurement of Request Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ContainerResponse"/> which wraps a <see cref="ContainerProperties"/> containing the read resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// ContainerResponse response = await this.cosmosDatabase.CreateContainerIfNotExistsAsync(Guid.NewGuid().ToString(), "/pk");
/// ]]>
/// </code>
/// </example>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ContainerResponse> CreateContainerIfNotExistsAsync(
string id,
string partitionKeyPath,
int? throughput = null,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Creates a container as an asynchronous operation in the Azure Cosmos service.
/// </summary>
/// <param name="containerProperties">The <see cref="ContainerProperties"/> object.</param>
/// <param name="throughput">(Optional) The throughput provisioned for a container in measurement of Request Units per second in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the container request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="ResponseMessage"/> containing the created resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// Creates a container as an asynchronous operation in the Azure Cosmos service and return stream response.
/// <code language="c#">
/// <![CDATA[
/// ContainerProperties containerProperties = new ContainerProperties()
/// {
/// Id = Guid.NewGuid().ToString(),
/// PartitionKeyPath = "/pk",
/// };
///
/// using(ResponseMessage response = await this.cosmosDatabase.CreateContainerStreamAsync(containerProperties))
/// {
/// }
/// ]]>
/// </code>
/// </example>
/// <seealso cref="DefineContainer(string, string)"/>
/// <seealso href="https://docs.microsoft.com/azure/cosmos-db/request-units">Request Units</seealso>
public abstract Task<ResponseMessage> CreateContainerStreamAsync(
ContainerProperties containerProperties,
int? throughput = null,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Returns a reference to a user object.
/// </summary>
/// <param name="id">The Cosmos user id.</param>
/// <returns>Cosmos user reference</returns>
/// <remarks>
/// Returns a User reference. Reference doesn't guarantee existence.
/// Please ensure user already exists or is created through a create operation.
/// </remarks>
/// <example>
/// <code language="c#">
/// <![CDATA[
/// Database db = this.cosmosClient.GetDatabase("myDatabaseId");
/// User user = await db.GetUser("userId");
/// UserResponse response = await user.ReadAsync();
/// ]]>
/// </code>
/// </example>
public abstract User GetUser(string id);
/// <summary>
/// Creates a user as an asynchronous operation in the Azure Cosmos service.
/// </summary>
/// <param name="id">The Cosmos user id</param>
/// <param name="requestOptions">(Optional) The options for the user request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="UserResponse"/> which wraps a <see cref="UserProperties"/> containing the read resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// UserResponse response = await this.cosmosDatabase.CreateUserAsync(Guid.NewGuid().ToString());
/// ]]>
/// </code>
/// </example>
public abstract Task<UserResponse> CreateUserAsync(
string id,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// Upserts a user as an asynchronous operation in the Azure Cosmos service.
/// </summary>
/// <param name="id">The Cosmos user id.</param>
/// <param name="requestOptions">(Optional) The options for the user request.</param>
/// <param name="cancellationToken">(Optional) <see cref="CancellationToken"/> representing request cancellation.</param>
/// <returns>A <see cref="Task"/> containing a <see cref="UserResponse"/> which wraps a <see cref="UserProperties"/> containing the read resource record.</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// UserResponse response = await this.cosmosDatabase.UpsertUserAsync(Guid.NewGuid().ToString());
/// ]]>
/// </code>
/// </example>
public abstract Task<UserResponse> UpsertUserAsync(string id,
RequestOptions requestOptions = null,
CancellationToken cancellationToken = default);
/// <summary>
/// This method creates a query for containers under an database using a SQL statement with parameterized values. It returns a FeedIterator.
/// For more information on preparing SQL statements with parameterized values, please see <see cref="QueryDefinition"/> overload.
/// </summary>
/// <param name="queryDefinition">The Cosmos SQL query definition.</param>
/// <param name="continuationToken">(Optional) The continuation token in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the item query request.</param>
/// <returns>An iterator to go through the containers</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// This create the type feed iterator for containers with queryDefinition as input.
/// <code language="c#">
/// <![CDATA[
/// QueryDefinition queryDefinition = new QueryDefinition("SELECT * FROM c where c.status like @status");
/// .WithParameter("@status", "start%");
/// using (FeedIterator<ContainerProperties> feedIterator = this.cosmosDatabase.GetContainerQueryIterator<ContainerProperties>(queryDefinition))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// FeedResponse<ContainerProperties> response = await feedIterator.ReadNextAsync();
/// foreach (var container in response)
/// {
/// Console.WriteLine(container);
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <remarks>
/// Refer to https://docs.microsoft.com/azure/cosmos-db/sql-query-getting-started for syntax and examples.
/// <para>
/// <see cref="Container.ReadContainerAsync(ContainerRequestOptions, CancellationToken)" /> is recommended for single container look-up.
/// </para>
/// </remarks>
public abstract FeedIterator<T> GetContainerQueryIterator<T>(
QueryDefinition queryDefinition,
string continuationToken = null,
QueryRequestOptions requestOptions = null);
/// <summary>
/// This method creates a query for containers under an database using a SQL statement with parameterized values. It returns a FeedIterator.
/// For more information on preparing SQL statements with parameterized values, please see <see cref="QueryDefinition"/> overload.
/// </summary>
/// <param name="queryDefinition">The Cosmos SQL query definition.</param>
/// <param name="continuationToken">The continuation token in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the container request.</param>
/// <returns>An iterator to go through the containers</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// This create the stream feed iterator for containers with queryDefinition as input.
/// <code language="c#">
/// <![CDATA[
/// string queryText = "SELECT c.id FROM c where c.status like 'start%'";
/// QueryDefinition queryDefinition = new QueryDefinition(queryText);
/// using (FeedIterator feedIterator = this.cosmosDatabase.GetContainerQueryStreamIterator(queryDefinition))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// using (ResponseMessage response = await feedIterator.ReadNextAsync())
/// {
/// response.EnsureSuccessStatusCode();
/// using (StreamReader sr = new StreamReader(response.Content))
/// using (JsonTextReader jtr = new JsonTextReader(sr))
/// {
/// // The stream content contains the following JSON structure
/// // {"_rid":"FwsdAA==","DocumentCollections":[{"id":"container1"},{"id":"container2"}],"_count":2}
/// JObject result = JObject.Load(jtr);
/// }
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <example>
/// This creates feed iterator to get a list of all the container ids
/// <code language="c#">
/// <![CDATA[
/// using (FeedIterator feedIterator = this.cosmosDatabase.GetContainerQueryStreamIterator(
/// new QueryDefinition("select value c.id From c ")))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// using (ResponseMessage response = await feedIterator.ReadNextAsync())
/// {
/// response.EnsureSuccessStatusCode();
/// using (StreamReader streamReader = new StreamReader(response.Content))
/// using (JsonTextReader jsonTextReader = new JsonTextReader(streamReader))
/// {
/// // The stream content contains the following JSON structure
/// // {"_rid":"7p8wAA==","DocumentCollections":["container1","container2"],"_count":2}
/// JObject jObject = await JObject.LoadAsync(jsonTextReader);
/// }
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <remarks>
/// Refer to https://docs.microsoft.com/azure/cosmos-db/sql-query-getting-started for syntax and examples.
/// <para>
/// <see cref="Container.ReadContainerStreamAsync(ContainerRequestOptions, CancellationToken)" /> is recommended for single container look-up.
/// </para>
/// </remarks>
public abstract FeedIterator GetContainerQueryStreamIterator(
QueryDefinition queryDefinition,
string continuationToken = null,
QueryRequestOptions requestOptions = null);
/// <summary>
/// This method creates a query for containers under an database using a SQL statement. It returns a FeedIterator.
/// </summary>
/// <param name="queryText">The Cosmos SQL query text.</param>
/// <param name="continuationToken">(Optional) The continuation token in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the item query request.</param>
/// <returns>An iterator to go through the containers</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// 1. This create the type feed iterator for containers with queryText as input,
/// <code language="c#">
/// <![CDATA[
/// string queryText = "SELECT * FROM c where c.status like 'start%'";
/// using (FeedIterator<ContainerProperties> feedIterator = this.cosmosDatabase.GetContainerQueryIterator<ContainerProperties>(queryText))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// FeedResponse<ContainerProperties> response = await feedIterator.ReadNextAsync();
/// foreach (var container in response)
/// {
/// Console.WriteLine(container);
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <example>
/// 2. This create the type feed iterator for containers without queryText, retrieving all containers.
/// <code language="c#">
/// <![CDATA[
/// using (FeedIterator<ContainerProperties> feedIterator = this.cosmosDatabase.GetContainerQueryIterator<ContainerProperties>())
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// FeedResponse<ContainerProperties> response = await feedIterator.ReadNextAsync();
/// foreach (var container in response)
/// {
/// Console.WriteLine(container);
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <remarks>
/// Refer to https://docs.microsoft.com/azure/cosmos-db/sql-query-getting-started for syntax and examples.
/// <para>
/// <see cref="Container.ReadContainerAsync(ContainerRequestOptions, CancellationToken)" /> is recommended for single container look-up.
/// </para>
/// </remarks>
public abstract FeedIterator<T> GetContainerQueryIterator<T>(
string queryText = null,
string continuationToken = null,
QueryRequestOptions requestOptions = null);
/// <summary>
/// This method creates a query for containers under an database using a SQL statement. It returns a FeedIterator.
/// </summary>
/// <param name="queryText">The Cosmos SQL query text.</param>
/// <param name="continuationToken">The continuation token in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the container request.</param>
/// <returns>An iterator to go through the containers</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// This create the stream feed iterator for containers with queryDefinition as input.
/// <code language="c#">
/// <![CDATA[
/// using (FeedIterator feedIterator = this.cosmosDatabase.GetContainerQueryStreamIterator(
/// "SELECT c.id FROM c where c.status like 'start%'"))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// using (ResponseMessage response = await feedIterator.ReadNextAsync())
/// {
/// response.EnsureSuccessStatusCode();
/// using (StreamReader sr = new StreamReader(response.Content))
/// using (JsonTextReader jtr = new JsonTextReader(sr))
/// {
/// // The stream content contains the following JSON structure
/// // {"_rid":"FwsdAA==","DocumentCollections":[{"id":"container1"},{"id":"container2"}],"_count":2}
/// JObject result = JObject.Load(jtr);
/// }
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <example>
/// This creates feed iterator to get a list of all the container ids
/// <code language="c#">
/// <![CDATA[
/// using (FeedIterator feedIterator = this.cosmosDatabase.GetContainerQueryStreamIterator(
/// "select value c.id From c "))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// using (ResponseMessage response = await feedIterator.ReadNextAsync())
/// {
/// response.EnsureSuccessStatusCode();
/// using (StreamReader streamReader = new StreamReader(response.Content))
/// using (JsonTextReader jsonTextReader = new JsonTextReader(streamReader))
/// {
/// // The stream content contains the following JSON structure
/// // {"_rid":"7p8wAA==","DocumentCollections":["container1","container2"],"_count":2}
/// JObject jObject = await JObject.LoadAsync(jsonTextReader);
/// }
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <remarks>
/// Refer to https://docs.microsoft.com/azure/cosmos-db/sql-query-getting-started for syntax and examples.
/// <para>
/// <see cref="Container.ReadContainerStreamAsync(ContainerRequestOptions, CancellationToken)" /> is recommended for single container look-up.
/// </para>
/// </remarks>
public abstract FeedIterator GetContainerQueryStreamIterator(
string queryText = null,
string continuationToken = null,
QueryRequestOptions requestOptions = null);
/// <summary>
/// This method creates a query for users under an database using a SQL statement. It returns a FeedIterator.
/// </summary>
/// <param name="queryText">The Cosmos SQL query text.</param>
/// <param name="continuationToken">(Optional) The continuation token in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the user query request.</param>
/// <returns>An iterator to go through the users</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// 1. This create the type feed iterator for users with queryText as input,
/// <code language="c#">
/// <![CDATA[
/// string queryText = "SELECT * FROM c where c.status like 'start%'";
/// using (FeedIterator<UserProperties> HasMoreResults = this.cosmosDatabase.GetUserQueryIterator<UserProperties>(queryText))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// FeedResponse<UserProperties> response = await feedIterator.ReadNextAsync();
/// foreach (var user in response)
/// {
/// Console.WriteLine(user);
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
/// <example>
/// 2. This create the type feed iterator for users without queryText, retrieving all users.
/// <code language="c#">
/// <![CDATA[
/// using (FeedIterator<UserProperties> feedIterator = this.cosmosDatabase.GetUserQueryIterator<UserProperties>())
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// FeedResponse<UserProperties> response = await feedIterator.ReadNextAsync();
/// foreach (var user in response)
/// {
/// Console.WriteLine(user);
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
public abstract FeedIterator<T> GetUserQueryIterator<T>(
string queryText = null,
string continuationToken = null,
QueryRequestOptions requestOptions = null);
/// <summary>
/// This method creates a query for users under an database using a SQL statement with parameterized values. It returns a FeedIterator.
/// For more information on preparing SQL statements with parameterized values, please see <see cref="QueryDefinition"/> overload.
/// </summary>
/// <param name="queryDefinition">The Cosmos SQL query definition.</param>
/// <param name="continuationToken">(Optional) The continuation token in the Azure Cosmos DB service.</param>
/// <param name="requestOptions">(Optional) The options for the user query request.</param>
/// <returns>An iterator to go through the users</returns>
/// <exception>https://aka.ms/cosmosdb-dot-net-exceptions</exception>
/// <example>
/// This create the type feed iterator for users with queryDefinition as input.
/// <code language="c#">
/// <![CDATA[
/// QueryDefinition queryDefinition = new QueryDefinition("SELECT * FROM c where c.status like @status")
/// .WithParameter("@status", "start%");
/// using (FeedIterator<UserProperties> resultSet = this.cosmosDatabase.GetUserQueryIterator<UserProperties>(queryDefinition))
/// {
/// while (feedIterator.HasMoreResults)
/// {
/// foreach (UserProperties properties in await feedIterator.ReadNextAsync())
/// {
/// Console.WriteLine(properties.Id);
/// }
/// }
/// }
/// ]]>
/// </code>
/// </example>
public abstract FeedIterator<T> GetUserQueryIterator<T>(
QueryDefinition queryDefinition,
string continuationToken = null,
QueryRequestOptions requestOptions = null);
/// <summary>
/// Creates a containerBuilder.
/// </summary>
/// <param name="name">Azure Cosmos container name to create.</param>
/// <param name="partitionKeyPath">The path to the partition key. Example: /partitionKey</param>
/// <returns>A fluent definition of an Azure Cosmos container.</returns>
/// <example>
///
/// <code language="c#">
/// <![CDATA[
/// CosmosContainerResponse container = await this.cosmosDatabase.DefineContainer("TestContainer", "/partitionKey")
/// .UniqueKey()
/// .Path("/path1")
/// .Path("/path2")
/// .Attach()
/// .IndexingPolicy()
/// .IndexingMode(IndexingMode.Consistent)
/// .AutomaticIndexing(false)
/// .IncludedPaths()
/// .Path("/includepath1")
/// .Path("/includepath2")
/// .Attach()
/// .ExcludedPaths()
/// .Path("/excludepath1")
/// .Path("/excludepath2")
/// .Attach()
/// .CompositeIndex()
/// .Path("/root/leaf1")
/// .Path("/root/leaf2", CompositePathSortOrder.Descending)
/// .Attach()
/// .CompositeIndex()
/// .Path("/root/leaf3")
/// .Path("/root/leaf4")
/// .Attach()
/// .Attach()
/// .CreateAsync(5000 /* throughput /*);
/// ]]>
/// </code>
/// </example>
public abstract ContainerBuilder DefineContainer(
string name,
string partitionKeyPath);
/// <summary>