-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
CosmosDBAccountResource.cs
3544 lines (3376 loc) · 221 KB
/
CosmosDBAccountResource.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.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
using Autorest.CSharp.Core;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.ResourceManager.CosmosDB.Models;
using Azure.ResourceManager.Resources;
namespace Azure.ResourceManager.CosmosDB
{
/// <summary>
/// A Class representing a CosmosDBAccount along with the instance operations that can be performed on it.
/// If you have a <see cref="ResourceIdentifier"/> you can construct a <see cref="CosmosDBAccountResource"/>
/// from an instance of <see cref="ArmClient"/> using the GetCosmosDBAccountResource method.
/// Otherwise you can get one from its parent resource <see cref="ResourceGroupResource"/> using the GetCosmosDBAccount method.
/// </summary>
public partial class CosmosDBAccountResource : ArmResource
{
/// <summary> Generate the resource identifier of a <see cref="CosmosDBAccountResource"/> instance. </summary>
/// <param name="subscriptionId"> The subscriptionId. </param>
/// <param name="resourceGroupName"> The resourceGroupName. </param>
/// <param name="accountName"> The accountName. </param>
public static ResourceIdentifier CreateResourceIdentifier(string subscriptionId, string resourceGroupName, string accountName)
{
var resourceId = $"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}";
return new ResourceIdentifier(resourceId);
}
private readonly ClientDiagnostics _cosmosDBAccountDatabaseAccountsClientDiagnostics;
private readonly DatabaseAccountsRestOperations _cosmosDBAccountDatabaseAccountsRestClient;
private readonly ClientDiagnostics _databaseClientDiagnostics;
private readonly DatabaseRestOperations _databaseRestClient;
private readonly ClientDiagnostics _collectionClientDiagnostics;
private readonly CollectionRestOperations _collectionRestClient;
private readonly ClientDiagnostics _collectionRegionClientDiagnostics;
private readonly CollectionRegionRestOperations _collectionRegionRestClient;
private readonly ClientDiagnostics _databaseAccountRegionClientDiagnostics;
private readonly DatabaseAccountRegionRestOperations _databaseAccountRegionRestClient;
private readonly ClientDiagnostics _percentileSourceTargetClientDiagnostics;
private readonly PercentileSourceTargetRestOperations _percentileSourceTargetRestClient;
private readonly ClientDiagnostics _percentileTargetClientDiagnostics;
private readonly PercentileTargetRestOperations _percentileTargetRestClient;
private readonly ClientDiagnostics _percentileClientDiagnostics;
private readonly PercentileRestOperations _percentileRestClient;
private readonly ClientDiagnostics _collectionPartitionRegionClientDiagnostics;
private readonly CollectionPartitionRegionRestOperations _collectionPartitionRegionRestClient;
private readonly ClientDiagnostics _collectionPartitionClientDiagnostics;
private readonly CollectionPartitionRestOperations _collectionPartitionRestClient;
private readonly ClientDiagnostics _partitionKeyRangeIdClientDiagnostics;
private readonly PartitionKeyRangeIdRestOperations _partitionKeyRangeIdRestClient;
private readonly ClientDiagnostics _partitionKeyRangeIdRegionClientDiagnostics;
private readonly PartitionKeyRangeIdRegionRestOperations _partitionKeyRangeIdRegionRestClient;
private readonly CosmosDBAccountData _data;
/// <summary> Gets the resource type for the operations. </summary>
public static readonly ResourceType ResourceType = "Microsoft.DocumentDB/databaseAccounts";
/// <summary> Initializes a new instance of the <see cref="CosmosDBAccountResource"/> class for mocking. </summary>
protected CosmosDBAccountResource()
{
}
/// <summary> Initializes a new instance of the <see cref="CosmosDBAccountResource"/> class. </summary>
/// <param name="client"> The client parameters to use in these operations. </param>
/// <param name="data"> The resource that is the target of operations. </param>
internal CosmosDBAccountResource(ArmClient client, CosmosDBAccountData data) : this(client, data.Id)
{
HasData = true;
_data = data;
}
/// <summary> Initializes a new instance of the <see cref="CosmosDBAccountResource"/> class. </summary>
/// <param name="client"> The client parameters to use in these operations. </param>
/// <param name="id"> The identifier of the resource that is the target of operations. </param>
internal CosmosDBAccountResource(ArmClient client, ResourceIdentifier id) : base(client, id)
{
_cosmosDBAccountDatabaseAccountsClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ResourceType.Namespace, Diagnostics);
TryGetApiVersion(ResourceType, out string cosmosDBAccountDatabaseAccountsApiVersion);
_cosmosDBAccountDatabaseAccountsRestClient = new DatabaseAccountsRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint, cosmosDBAccountDatabaseAccountsApiVersion);
_databaseClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_databaseRestClient = new DatabaseRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_collectionClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_collectionRestClient = new CollectionRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_collectionRegionClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_collectionRegionRestClient = new CollectionRegionRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_databaseAccountRegionClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_databaseAccountRegionRestClient = new DatabaseAccountRegionRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_percentileSourceTargetClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_percentileSourceTargetRestClient = new PercentileSourceTargetRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_percentileTargetClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_percentileTargetRestClient = new PercentileTargetRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_percentileClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_percentileRestClient = new PercentileRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_collectionPartitionRegionClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_collectionPartitionRegionRestClient = new CollectionPartitionRegionRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_collectionPartitionClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_collectionPartitionRestClient = new CollectionPartitionRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_partitionKeyRangeIdClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_partitionKeyRangeIdRestClient = new PartitionKeyRangeIdRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
_partitionKeyRangeIdRegionClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.CosmosDB", ProviderConstants.DefaultProviderNamespace, Diagnostics);
_partitionKeyRangeIdRegionRestClient = new PartitionKeyRangeIdRegionRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint);
#if DEBUG
ValidateResourceId(Id);
#endif
}
/// <summary> Gets whether or not the current instance has data. </summary>
public virtual bool HasData { get; }
/// <summary> Gets the data representing this Feature. </summary>
/// <exception cref="InvalidOperationException"> Throws if there is no data loaded in the current instance. </exception>
public virtual CosmosDBAccountData Data
{
get
{
if (!HasData)
throw new InvalidOperationException("The current instance does not have data, you must call Get first.");
return _data;
}
}
internal static void ValidateResourceId(ResourceIdentifier id)
{
if (id.ResourceType != ResourceType)
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, "Invalid resource type {0} expected {1}", id.ResourceType, ResourceType), nameof(id));
}
/// <summary> Gets a collection of GraphResourceGetResultResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of GraphResourceGetResultResources and their operations over a GraphResourceGetResultResource. </returns>
public virtual GraphResourceGetResultCollection GetGraphResourceGetResults()
{
return GetCachedClient(client => new GraphResourceGetResultCollection(client, Id));
}
/// <summary>
/// Gets the Graph resource under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/graphs/{graphName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>GraphResources_GetGraph</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="GraphResourceGetResultResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="graphName"> Cosmos DB graph resource name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="graphName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="graphName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<GraphResourceGetResultResource>> GetGraphResourceGetResultAsync(string graphName, CancellationToken cancellationToken = default)
{
return await GetGraphResourceGetResults().GetAsync(graphName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Gets the Graph resource under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/graphs/{graphName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>GraphResources_GetGraph</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="GraphResourceGetResultResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="graphName"> Cosmos DB graph resource name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="graphName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="graphName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<GraphResourceGetResultResource> GetGraphResourceGetResult(string graphName, CancellationToken cancellationToken = default)
{
return GetGraphResourceGetResults().Get(graphName, cancellationToken);
}
/// <summary> Gets a collection of CosmosDBSqlDatabaseResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of CosmosDBSqlDatabaseResources and their operations over a CosmosDBSqlDatabaseResource. </returns>
public virtual CosmosDBSqlDatabaseCollection GetCosmosDBSqlDatabases()
{
return GetCachedClient(client => new CosmosDBSqlDatabaseCollection(client, Id));
}
/// <summary>
/// Gets the SQL database under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>SqlResources_GetSqlDatabase</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBSqlDatabaseResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="databaseName"> Cosmos DB database name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="databaseName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="databaseName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<CosmosDBSqlDatabaseResource>> GetCosmosDBSqlDatabaseAsync(string databaseName, CancellationToken cancellationToken = default)
{
return await GetCosmosDBSqlDatabases().GetAsync(databaseName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Gets the SQL database under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>SqlResources_GetSqlDatabase</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBSqlDatabaseResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="databaseName"> Cosmos DB database name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="databaseName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="databaseName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<CosmosDBSqlDatabaseResource> GetCosmosDBSqlDatabase(string databaseName, CancellationToken cancellationToken = default)
{
return GetCosmosDBSqlDatabases().Get(databaseName, cancellationToken);
}
/// <summary> Gets a collection of CosmosDBSqlRoleDefinitionResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of CosmosDBSqlRoleDefinitionResources and their operations over a CosmosDBSqlRoleDefinitionResource. </returns>
public virtual CosmosDBSqlRoleDefinitionCollection GetCosmosDBSqlRoleDefinitions()
{
return GetCachedClient(client => new CosmosDBSqlRoleDefinitionCollection(client, Id));
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB SQL Role Definition with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlRoleDefinitions/{roleDefinitionId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>SqlResources_GetSqlRoleDefinition</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBSqlRoleDefinitionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="roleDefinitionId"> The GUID for the Role Definition. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="roleDefinitionId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="roleDefinitionId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<CosmosDBSqlRoleDefinitionResource>> GetCosmosDBSqlRoleDefinitionAsync(string roleDefinitionId, CancellationToken cancellationToken = default)
{
return await GetCosmosDBSqlRoleDefinitions().GetAsync(roleDefinitionId, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB SQL Role Definition with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlRoleDefinitions/{roleDefinitionId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>SqlResources_GetSqlRoleDefinition</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBSqlRoleDefinitionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="roleDefinitionId"> The GUID for the Role Definition. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="roleDefinitionId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="roleDefinitionId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<CosmosDBSqlRoleDefinitionResource> GetCosmosDBSqlRoleDefinition(string roleDefinitionId, CancellationToken cancellationToken = default)
{
return GetCosmosDBSqlRoleDefinitions().Get(roleDefinitionId, cancellationToken);
}
/// <summary> Gets a collection of CosmosDBSqlRoleAssignmentResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of CosmosDBSqlRoleAssignmentResources and their operations over a CosmosDBSqlRoleAssignmentResource. </returns>
public virtual CosmosDBSqlRoleAssignmentCollection GetCosmosDBSqlRoleAssignments()
{
return GetCachedClient(client => new CosmosDBSqlRoleAssignmentCollection(client, Id));
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB SQL Role Assignment with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlRoleAssignments/{roleAssignmentId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>SqlResources_GetSqlRoleAssignment</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBSqlRoleAssignmentResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="roleAssignmentId"> The GUID for the Role Assignment. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="roleAssignmentId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="roleAssignmentId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<CosmosDBSqlRoleAssignmentResource>> GetCosmosDBSqlRoleAssignmentAsync(string roleAssignmentId, CancellationToken cancellationToken = default)
{
return await GetCosmosDBSqlRoleAssignments().GetAsync(roleAssignmentId, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB SQL Role Assignment with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlRoleAssignments/{roleAssignmentId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>SqlResources_GetSqlRoleAssignment</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBSqlRoleAssignmentResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="roleAssignmentId"> The GUID for the Role Assignment. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="roleAssignmentId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="roleAssignmentId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<CosmosDBSqlRoleAssignmentResource> GetCosmosDBSqlRoleAssignment(string roleAssignmentId, CancellationToken cancellationToken = default)
{
return GetCosmosDBSqlRoleAssignments().Get(roleAssignmentId, cancellationToken);
}
/// <summary> Gets a collection of MongoDBDatabaseResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of MongoDBDatabaseResources and their operations over a MongoDBDatabaseResource. </returns>
public virtual MongoDBDatabaseCollection GetMongoDBDatabases()
{
return GetCachedClient(client => new MongoDBDatabaseCollection(client, Id));
}
/// <summary>
/// Gets the MongoDB databases under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>MongoDBResources_GetMongoDBDatabase</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="MongoDBDatabaseResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="databaseName"> Cosmos DB database name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="databaseName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="databaseName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<MongoDBDatabaseResource>> GetMongoDBDatabaseAsync(string databaseName, CancellationToken cancellationToken = default)
{
return await GetMongoDBDatabases().GetAsync(databaseName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Gets the MongoDB databases under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbDatabases/{databaseName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>MongoDBResources_GetMongoDBDatabase</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="MongoDBDatabaseResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="databaseName"> Cosmos DB database name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="databaseName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="databaseName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<MongoDBDatabaseResource> GetMongoDBDatabase(string databaseName, CancellationToken cancellationToken = default)
{
return GetMongoDBDatabases().Get(databaseName, cancellationToken);
}
/// <summary> Gets a collection of MongoDBRoleDefinitionResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of MongoDBRoleDefinitionResources and their operations over a MongoDBRoleDefinitionResource. </returns>
public virtual MongoDBRoleDefinitionCollection GetMongoDBRoleDefinitions()
{
return GetCachedClient(client => new MongoDBRoleDefinitionCollection(client, Id));
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB Mongo Role Definition with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>MongoDBResources_GetMongoRoleDefinition</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="MongoDBRoleDefinitionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="mongoRoleDefinitionId"> The ID for the Role Definition {dbName.roleName}. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="mongoRoleDefinitionId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="mongoRoleDefinitionId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<MongoDBRoleDefinitionResource>> GetMongoDBRoleDefinitionAsync(string mongoRoleDefinitionId, CancellationToken cancellationToken = default)
{
return await GetMongoDBRoleDefinitions().GetAsync(mongoRoleDefinitionId, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB Mongo Role Definition with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbRoleDefinitions/{mongoRoleDefinitionId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>MongoDBResources_GetMongoRoleDefinition</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="MongoDBRoleDefinitionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="mongoRoleDefinitionId"> The ID for the Role Definition {dbName.roleName}. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="mongoRoleDefinitionId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="mongoRoleDefinitionId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<MongoDBRoleDefinitionResource> GetMongoDBRoleDefinition(string mongoRoleDefinitionId, CancellationToken cancellationToken = default)
{
return GetMongoDBRoleDefinitions().Get(mongoRoleDefinitionId, cancellationToken);
}
/// <summary> Gets a collection of MongoDBUserDefinitionResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of MongoDBUserDefinitionResources and their operations over a MongoDBUserDefinitionResource. </returns>
public virtual MongoDBUserDefinitionCollection GetMongoDBUserDefinitions()
{
return GetCachedClient(client => new MongoDBUserDefinitionCollection(client, Id));
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB Mongo User Definition with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>MongoDBResources_GetMongoUserDefinition</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="MongoDBUserDefinitionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="mongoUserDefinitionId"> The ID for the User Definition {dbName.userName}. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="mongoUserDefinitionId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="mongoUserDefinitionId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<MongoDBUserDefinitionResource>> GetMongoDBUserDefinitionAsync(string mongoUserDefinitionId, CancellationToken cancellationToken = default)
{
return await GetMongoDBUserDefinitions().GetAsync(mongoUserDefinitionId, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Retrieves the properties of an existing Azure Cosmos DB Mongo User Definition with the given Id.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/mongodbUserDefinitions/{mongoUserDefinitionId}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>MongoDBResources_GetMongoUserDefinition</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="MongoDBUserDefinitionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="mongoUserDefinitionId"> The ID for the User Definition {dbName.userName}. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="mongoUserDefinitionId"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="mongoUserDefinitionId"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<MongoDBUserDefinitionResource> GetMongoDBUserDefinition(string mongoUserDefinitionId, CancellationToken cancellationToken = default)
{
return GetMongoDBUserDefinitions().Get(mongoUserDefinitionId, cancellationToken);
}
/// <summary> Gets a collection of CosmosDBTableResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of CosmosDBTableResources and their operations over a CosmosDBTableResource. </returns>
public virtual CosmosDBTableCollection GetCosmosDBTables()
{
return GetCachedClient(client => new CosmosDBTableCollection(client, Id));
}
/// <summary>
/// Gets the Tables under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>TableResources_GetTable</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBTableResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="tableName"> Cosmos DB table name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="tableName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="tableName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<CosmosDBTableResource>> GetCosmosDBTableAsync(string tableName, CancellationToken cancellationToken = default)
{
return await GetCosmosDBTables().GetAsync(tableName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Gets the Tables under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/tables/{tableName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>TableResources_GetTable</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBTableResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="tableName"> Cosmos DB table name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="tableName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="tableName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<CosmosDBTableResource> GetCosmosDBTable(string tableName, CancellationToken cancellationToken = default)
{
return GetCosmosDBTables().Get(tableName, cancellationToken);
}
/// <summary> Gets a collection of CassandraKeyspaceResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of CassandraKeyspaceResources and their operations over a CassandraKeyspaceResource. </returns>
public virtual CassandraKeyspaceCollection GetCassandraKeyspaces()
{
return GetCachedClient(client => new CassandraKeyspaceCollection(client, Id));
}
/// <summary>
/// Gets the Cassandra keyspaces under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/cassandraKeyspaces/{keyspaceName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>CassandraResources_GetCassandraKeyspace</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CassandraKeyspaceResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="keyspaceName"> Cosmos DB keyspace name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="keyspaceName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="keyspaceName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<CassandraKeyspaceResource>> GetCassandraKeyspaceAsync(string keyspaceName, CancellationToken cancellationToken = default)
{
return await GetCassandraKeyspaces().GetAsync(keyspaceName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Gets the Cassandra keyspaces under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/cassandraKeyspaces/{keyspaceName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>CassandraResources_GetCassandraKeyspace</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CassandraKeyspaceResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="keyspaceName"> Cosmos DB keyspace name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="keyspaceName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="keyspaceName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<CassandraKeyspaceResource> GetCassandraKeyspace(string keyspaceName, CancellationToken cancellationToken = default)
{
return GetCassandraKeyspaces().Get(keyspaceName, cancellationToken);
}
/// <summary> Gets a collection of GremlinDatabaseResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of GremlinDatabaseResources and their operations over a GremlinDatabaseResource. </returns>
public virtual GremlinDatabaseCollection GetGremlinDatabases()
{
return GetCachedClient(client => new GremlinDatabaseCollection(client, Id));
}
/// <summary>
/// Gets the Gremlin databases under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/gremlinDatabases/{databaseName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>GremlinResources_GetGremlinDatabase</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="GremlinDatabaseResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="databaseName"> Cosmos DB database name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="databaseName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="databaseName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<GremlinDatabaseResource>> GetGremlinDatabaseAsync(string databaseName, CancellationToken cancellationToken = default)
{
return await GetGremlinDatabases().GetAsync(databaseName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Gets the Gremlin databases under an existing Azure Cosmos DB database account with the provided name.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/gremlinDatabases/{databaseName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>GremlinResources_GetGremlinDatabase</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="GremlinDatabaseResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="databaseName"> Cosmos DB database name. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="databaseName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="databaseName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<GremlinDatabaseResource> GetGremlinDatabase(string databaseName, CancellationToken cancellationToken = default)
{
return GetGremlinDatabases().Get(databaseName, cancellationToken);
}
/// <summary> Gets a collection of DataTransferJobGetResultResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of DataTransferJobGetResultResources and their operations over a DataTransferJobGetResultResource. </returns>
public virtual DataTransferJobGetResultCollection GetDataTransferJobGetResults()
{
return GetCachedClient(client => new DataTransferJobGetResultCollection(client, Id));
}
/// <summary>
/// Get a Data Transfer Job.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>DataTransferJobs_Get</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="DataTransferJobGetResultResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="jobName"> Name of the Data Transfer Job. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="jobName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="jobName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<DataTransferJobGetResultResource>> GetDataTransferJobGetResultAsync(string jobName, CancellationToken cancellationToken = default)
{
return await GetDataTransferJobGetResults().GetAsync(jobName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Get a Data Transfer Job.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/dataTransferJobs/{jobName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>DataTransferJobs_Get</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="DataTransferJobGetResultResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="jobName"> Name of the Data Transfer Job. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="jobName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="jobName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<DataTransferJobGetResultResource> GetDataTransferJobGetResult(string jobName, CancellationToken cancellationToken = default)
{
return GetDataTransferJobGetResults().Get(jobName, cancellationToken);
}
/// <summary> Gets a collection of CosmosDBPrivateEndpointConnectionResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of CosmosDBPrivateEndpointConnectionResources and their operations over a CosmosDBPrivateEndpointConnectionResource. </returns>
public virtual CosmosDBPrivateEndpointConnectionCollection GetCosmosDBPrivateEndpointConnections()
{
return GetCachedClient(client => new CosmosDBPrivateEndpointConnectionCollection(client, Id));
}
/// <summary>
/// Gets a private endpoint connection.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>PrivateEndpointConnections_Get</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBPrivateEndpointConnectionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="privateEndpointConnectionName"> The name of the private endpoint connection. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="privateEndpointConnectionName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="privateEndpointConnectionName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<CosmosDBPrivateEndpointConnectionResource>> GetCosmosDBPrivateEndpointConnectionAsync(string privateEndpointConnectionName, CancellationToken cancellationToken = default)
{
return await GetCosmosDBPrivateEndpointConnections().GetAsync(privateEndpointConnectionName, cancellationToken).ConfigureAwait(false);
}
/// <summary>
/// Gets a private endpoint connection.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>PrivateEndpointConnections_Get</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBPrivateEndpointConnectionResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="privateEndpointConnectionName"> The name of the private endpoint connection. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="privateEndpointConnectionName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="privateEndpointConnectionName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual Response<CosmosDBPrivateEndpointConnectionResource> GetCosmosDBPrivateEndpointConnection(string privateEndpointConnectionName, CancellationToken cancellationToken = default)
{
return GetCosmosDBPrivateEndpointConnections().Get(privateEndpointConnectionName, cancellationToken);
}
/// <summary> Gets a collection of CosmosDBPrivateLinkResources in the CosmosDBAccount. </summary>
/// <returns> An object representing collection of CosmosDBPrivateLinkResources and their operations over a CosmosDBPrivateLinkResource. </returns>
public virtual CosmosDBPrivateLinkResourceCollection GetCosmosDBPrivateLinkResources()
{
return GetCachedClient(client => new CosmosDBPrivateLinkResourceCollection(client, Id));
}
/// <summary>
/// Gets the private link resources that need to be created for a Cosmos DB account.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/privateLinkResources/{groupName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>PrivateLinkResources_Get</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2024-02-15-preview</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="CosmosDBPrivateLinkResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="groupName"> The name of the private link resource. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="groupName"/> is null. </exception>
/// <exception cref="ArgumentException"> <paramref name="groupName"/> is an empty string, and was expected to be non-empty. </exception>
[ForwardsClientCalls]
public virtual async Task<Response<CosmosDBPrivateLinkResource>> GetCosmosDBPrivateLinkResourceAsync(string groupName, CancellationToken cancellationToken = default)
{