-
Notifications
You must be signed in to change notification settings - Fork 5.2k
/
Copy pathquota.json
888 lines (888 loc) · 28.2 KB
/
quota.json
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
{
"swagger": "2.0",
"info": {
"version": "2020-10-25",
"title": "Azure Reservation API",
"description": "Microsoft Azure Quota Resource Provider"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"flow": "implicit",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"user_impersonation": "impersonate your user account"
},
"type": "oauth2",
"description": "Azure Active Directory OAuth2 Flow"
}
},
"paths": {
"/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimits/{resourceName}": {
"get": {
"tags": [
"QuotaInformation"
],
"description": "Get the current quota (service limit) and usage of a resource. You can use the response from the GET operation to submit quota update request.",
"operationId": "Quota_Get",
"x-ms-examples": {
"Quotas_Request_ForCompute": {
"$ref": "./examples/getComputeOneSkuUsages.json"
}
},
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdInParameters"
},
{
"$ref": "#/parameters/ProviderIdInParameters"
},
{
"$ref": "#/parameters/LocationIdInParameters"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/ResourceNameInParameters"
}
],
"responses": {
"200": {
"description": "OK. Returns the paginated quota information.",
"schema": {
"$ref": "#/definitions/CurrentQuotaLimitBase"
},
"headers": {
"ETag": {
"description": "Current entity state version. It should be treated as opaque and used to make conditional HTTP requests.",
"type": "string"
}
}
},
"default": {
"description": "Error description in the response.",
"schema": {
"$ref": "#/definitions/ExceptionResponse"
}
}
}
},
"put": {
"tags": [
"QuotaInformation"
],
"description": "Create or update the quota (service limits) of a resource to the requested value.\n Steps:\n\r 1. Make the Get request to get the quota information for specific resource.\n\r 2. To increase the quota, update the limit field in the response from Get request to new value.\n\r 3. Submit the JSON to the quota request API to update the quota.\r\n The Create quota request may be constructed as follows. The PUT operation can be used to update the quota.",
"operationId": "Quota_CreateOrUpdate",
"x-ms-examples": {
"Quotas_Request_PutForCompute": {
"$ref": "./examples/putComputeOneSkuQuotaRequest.json"
},
"Quotas_Request_PutForMachineLearningServices_DedicatedResource": {
"$ref": "./examples/putMachineLearningServicesQuotaRequestDedicated.json"
},
"Quotas_Request_PutForMachineLearningServices_LowPriorityResource": {
"$ref": "./examples/putMachineLearningServicesQuotaRequestLowPriority.json"
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
},
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdInParameters"
},
{
"$ref": "#/parameters/ProviderIdInParameters"
},
{
"$ref": "#/parameters/LocationIdInParameters"
},
{
"$ref": "#/parameters/ResourceNameInParameters"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"name": "createQuotaRequest",
"in": "body",
"description": "Quota requests payload.",
"required": true,
"schema": {
"$ref": "#/definitions/CurrentQuotaLimitBase"
}
}
],
"responses": {
"200": {
"description": "OK. Returns details of the quota request.",
"schema": {
"$ref": "#/definitions/QuotaRequestOneResourceSubmitResponse"
}
},
"201": {
"description": "The request is accepted and being processed. Use the requestId parameter to check the status of the request.",
"schema": {
"$ref": "#/definitions/QuotaRequestSubmitResponse201"
}
},
"default": {
"description": "Error description in the response.",
"schema": {
"$ref": "#/definitions/ExceptionResponse"
}
}
}
},
"patch": {
"tags": [
"QuotaInformation"
],
"description": "Update the quota (service limits) of this resource to the requested value.\n\r • To get the quota information for specific resource, send a GET request.\n\r • To increase the quota, update the limit field from the GET response to a new value.\n\r • To update the quota value, submit the JSON response to the quota request API to update the quota.\r\n • To update the quota. use the PATCH operation.",
"operationId": "Quota_Update",
"x-ms-examples": {
"Quotas_Request_PatchForCompute": {
"$ref": "./examples/patchComputeQuotaRequest.json"
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
},
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdInParameters"
},
{
"$ref": "#/parameters/ProviderIdInParameters"
},
{
"$ref": "#/parameters/LocationIdInParameters"
},
{
"$ref": "#/parameters/ResourceNameInParameters"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"name": "createQuotaRequest",
"in": "body",
"description": "Payload for the quota request.",
"required": true,
"schema": {
"$ref": "#/definitions/CurrentQuotaLimitBase"
}
}
],
"responses": {
"200": {
"description": "OK. Returns details of the quota request.",
"schema": {
"$ref": "#/definitions/QuotaRequestOneResourceSubmitResponse"
}
},
"201": {
"description": "The request is accepted and is being processed. Use the requestId parameter to check the status.",
"schema": {
"$ref": "#/definitions/QuotaRequestSubmitResponse201"
}
},
"default": {
"description": "Error description in the response.",
"schema": {
"$ref": "#/definitions/ExceptionResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimits": {
"get": {
"tags": [
"QuotaInformation"
],
"description": "Gets a list of current quotas (service limits) and usage for all resources. The response from the list quota operation can be leveraged to request quota updates.",
"operationId": "Quota_List",
"x-ms-examples": {
"Quotas_listUsagesForCompute": {
"$ref": "./examples/getComputeUsages.json"
},
"Quotas_listUsagesMachineLearningServices": {
"$ref": "./examples/getMachineLearningServicesUsages.json"
}
},
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdInParameters"
},
{
"$ref": "#/parameters/ProviderIdInParameters"
},
{
"$ref": "#/parameters/LocationIdInParameters"
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK. Returns the paginated quota information.",
"schema": {
"$ref": "#/definitions/QuotaLimits"
},
"headers": {
"ETag": {
"description": "Current entity state version. Should be treated as opaque and used to make conditional HTTP requests.",
"type": "string"
}
}
},
"default": {
"description": "Error description in the response.",
"schema": {
"$ref": "#/definitions/ExceptionResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimitsRequests/{id}": {
"get": {
"tags": [
"QuotaRequests"
],
"x-ms-examples": {
"QuotaRequestStatus": {
"$ref": "./examples/getQuotaRequestStatusById.json"
},
"QuotaRequestInProgress": {
"$ref": "./examples/getQuotaRequestStatusInProgress.json"
},
"QuotaRequestFailed": {
"$ref": "./examples/getQuotaRequestStatusFailed.json"
}
},
"description": "For the specified Azure region (location), get the details and status of the quota request by the quota request ID for the resources of the resource provider. The PUT request for the quota (service limit) returns a response with the requestId parameter.",
"operationId": "QuotaRequestStatus_Get",
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdInParameters"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/ProviderIdInParameters"
},
{
"$ref": "#/parameters/LocationIdInParameters"
},
{
"$ref": "#/parameters/RequestIdInParameters"
}
],
"responses": {
"200": {
"description": "Ok. Returns the status of the quota request.",
"schema": {
"$ref": "#/definitions/QuotaRequestDetails"
}
},
"default": {
"description": "Error description in the response.",
"schema": {
"$ref": "#/definitions/ExceptionResponse"
}
}
}
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.Capacity/resourceProviders/{providerId}/locations/{location}/serviceLimitsRequests": {
"get": {
"tags": [
"QuotaRequests"
],
"x-ms-examples": {
"QuotaRequestHistory": {
"$ref": "./examples/getQuotaRequestsHistory.json"
}
},
"description": "For the specified Azure region (location), subscription, and resource provider, get the history of the quota requests for the past year. To select specific quota requests, use the oData filter.",
"operationId": "QuotaRequestStatus_List",
"parameters": [
{
"$ref": "#/parameters/SubscriptionIdInParameters"
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/ProviderIdInParameters"
},
{
"$ref": "#/parameters/LocationIdInParameters"
},
{
"name": "$filter",
"in": "query",
"required": false,
"type": "string",
"description": "| Field | Supported operators \n|---------------------|------------------------\n\r\n|requestSubmitTime | ge, le, eq, gt, lt\n"
},
{
"$ref": "#/parameters/TopQueryParameter"
},
{
"$ref": "#/parameters/SkipTokenParameter"
}
],
"responses": {
"200": {
"description": "Ok. Returns details and status of the quota request.",
"schema": {
"$ref": "#/definitions/QuotaRequestDetailsList"
}
},
"default": {
"description": "Error description in the response.",
"schema": {
"$ref": "#/definitions/ExceptionResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
}
},
"definitions": {
"CurrentQuotaLimit": {
"type": "object",
"description": "Current quota limits.",
"x-ms-azure-resource": true,
"properties": {
"quotaInformation": {
"description": "Quota details.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/CurrentQuotaLimitBase"
},
"properties": {
"description": "Additional properties for the quota status for the resource.",
"$ref": "#/definitions/QuotaRequestStatusDetails",
"x-ms-client-flatten": true
}
}
},
"CurrentQuotaLimitBase": {
"type": "object",
"description": "Quota properties.",
"x-ms-azure-resource": true,
"properties": {
"properties": {
"description": "Quota properties for the resource.",
"$ref": "#/definitions/QuotaProperties"
}
}
},
"QuotaProperties": {
"description": "Quota properties for the resource.",
"type": "object",
"properties": {
"limit": {
"description": "Quota properties.",
"type": "integer"
},
"currentValue": {
"description": "Current usage value for the resource.",
"type": "integer",
"readOnly": true
},
"unit": {
"description": " The limit units, such as **count** and **bytes**. Use the unit field provided in the response of the GET quota operation.",
"type": "string",
"readOnly": false
},
"name": {
"description": "Name of the resource provide by the resource provider. Use this property for quotaRequests resource operations.",
"$ref": "#/definitions/ResourceName"
},
"resourceType": {
"description": "The name of the resource type.",
"$ref": "#/definitions/ResourceTypesName",
"readOnly": false
},
"quotaPeriod": {
"description": "The time period over which the quota usage values are summarized. For example, P1D (per one day), PT1M (per one minute), and PT1S (per one second). This parameter is optional because, for some resources such as compute, the time period is irrelevant.",
"type": "string",
"readOnly": true
},
"properties": {
"description": "Additional properties for the specified resource provider.",
"type": "object"
}
}
},
"ResourceName": {
"description": "Resource name provided by the resource provider. Use this property for quotaRequest parameter.",
"properties": {
"value": {
"description": "Resource name.",
"type": "string",
"readOnly": false
},
"localizedValue": {
"description": "Resource display localized name.",
"type": "string",
"readOnly": true
}
}
},
"QuotaLimits": {
"description": "Quota limits.",
"properties": {
"value": {
"description": "List of quotas (service limits).",
"type": "array",
"items": {
"$ref": "#/definitions/CurrentQuotaLimitBase"
}
},
"nextLink": {
"description": "The URI for fetching the next page of quotas (service limits). When no more pages exist, the value is null.",
"type": "string"
}
}
},
"QuotaLimitsResponse": {
"description": "Quotas (service limits) in the request response.",
"properties": {
"value": {
"description": "List of quotas with the quota request status.",
"type": "array",
"items": {
"$ref": "#/definitions/CurrentQuotaLimit"
}
},
"nextLink": {
"description": "The URI for fetching the next page of quota limits. When no more pages exist, the value is null.",
"type": "string"
}
}
},
"CreateGenericQuotaRequestParameters": {
"type": "object",
"description": "Quota change requests information.",
"properties": {
"value": {
"description": "Quota change requests.",
"type": "array",
"items": {
"$ref": "#/definitions/CurrentQuotaLimitBase"
}
}
}
},
"SubRequest": {
"type": "object",
"description": "The sub-request submitted with the quota request.",
"properties": {
"limit": {
"description": "Quota (resource limit).",
"type": "integer",
"readOnly": true
},
"name": {
"description": "The resource name.",
"$ref": "#/definitions/ResourceName"
},
"resourceType": {
"description": "Resource type for which the quota check was made.",
"type": "string",
"readOnly": true
},
"unit": {
"description": " The limit units, such as **count** and **bytes**. Use the unit field provided in the response of the GET quota operation.",
"type": "string"
},
"provisioningState": {
"description": "The quota request status.",
"$ref": "#/definitions/QuotaRequestState"
},
"message": {
"description": "User-friendly status message.",
"type": "string",
"readOnly": true
},
"subRequestId": {
"description": "Sub request ID for individual request.",
"type": "string",
"readOnly": true
}
}
},
"QuotaRequestOneResourceSubmitResponse": {
"description": "Response for the quota submission request.",
"type": "object",
"x-ms-azure-resource": true,
"properties": {
"id": {
"description": "The quota request ID.",
"type": "string",
"readOnly": true
},
"name": {
"description": "The name of the quota request.",
"type": "string",
"readOnly": true
},
"type": {
"type": "string",
"readOnly": true,
"description": "Type of resource. \"Microsoft.Capacity/ServiceLimits\""
},
"properties": {
"description": "The details for quota request.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/quotaRequestOneResourceProperties"
}
}
},
"QuotaRequestSubmitResponse": {
"description": "Response for the quota submission request.",
"type": "object",
"x-ms-azure-resource": true,
"properties": {
"id": {
"description": "The quota request ID.",
"type": "string",
"readOnly": true
},
"name": {
"description": "The name of the quota request.",
"type": "string",
"readOnly": true
},
"properties": {
"description": "The quota request details.",
"type": "object",
"$ref": "#/definitions/QuotaRequestProperties"
},
"type": {
"type": "string",
"readOnly": true,
"description": "Type of resource. \"Microsoft.Capacity/serviceLimits\""
}
}
},
"QuotaRequestSubmitResponse201": {
"description": "Response with request ID that the quota request was accepted.",
"type": "object",
"properties": {
"id": {
"description": "The quota request ID. Use the requestId parameter to check the request status.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Operation ID",
"type": "string",
"readOnly": true
},
"type": {
"description": "Resource type",
"type": "string",
"readOnly": true
},
"properties": {
"description": "Quota request status.",
"$ref": "#/definitions/QuotaRequestStatusDetails",
"x-ms-client-flatten": true
}
}
},
"QuotaRequestStatusDetails": {
"description": "Quota request status details.",
"type": "object",
"properties": {
"provisioningState": {
"description": "The details of the quota request status.",
"$ref": "#/definitions/QuotaRequestState",
"readOnly": true
},
"message": {
"description": "A user friendly message.",
"type": "string",
"readOnly": true
}
}
},
"QuotaRequestDetails": {
"type": "object",
"description": "Quota request details.",
"x-ms-azure-resource": true,
"properties": {
"id": {
"description": "Quota request ID.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Quota request name.",
"type": "string",
"readOnly": true
},
"properties": {
"description": "Quota request details.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/QuotaRequestProperties"
},
"type": {
"type": "string",
"readOnly": true,
"description": "Resource type"
}
}
},
"QuotaRequestDetailsList": {
"description": "Quota request details.",
"type": "object",
"properties": {
"value": {
"description": "The quota requests.",
"type": "array",
"items": {
"$ref": "#/definitions/QuotaRequestDetails"
}
},
"nextLink": {
"description": "The URI to fetch the next page of quota limits. When there are no more pages, this is null.",
"type": "string"
}
}
},
"QuotaRequestProperties": {
"type": "object",
"description": "The details of quota request.",
"properties": {
"provisioningState": {
"description": "The quota request status.",
"$ref": "#/definitions/QuotaRequestState"
},
"message": {
"description": "User friendly status message.",
"type": "string",
"readOnly": true
},
"requestSubmitTime": {
"description": "The time when the quota request was submitted using format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.",
"type": "string",
"readOnly": true,
"format": "date-time"
},
"value": {
"description": "The quotaRequests.",
"type": "array",
"items": {
"$ref": "#/definitions/SubRequest"
}
}
}
},
"quotaRequestOneResourceProperties": {
"type": "object",
"description": "The details of quota request.",
"properties": {
"provisioningState": {
"description": "The quota request status.",
"readOnly": true,
"$ref": "#/definitions/QuotaRequestState"
},
"message": {
"description": "User friendly status message.",
"type": "string",
"readOnly": true
},
"requestSubmitTime": {
"description": "The time when the quota request was submitted using format: yyyy-MM-ddTHH:mm:ssZ as specified by the ISO 8601 standard.",
"type": "string",
"readOnly": true,
"format": "date-time"
},
"properties": {
"description": "The quota request addition properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/CurrentQuotaLimitBase"
}
}
},
"QuotaRequestState": {
"description": "The quota request status.",
"enum": [
"Accepted",
"Invalid",
"Succeeded",
"Failed",
"InProgress"
],
"type": "string",
"x-ms-enum": {
"name": "QuotaRequestState",
"modelAsString": true
}
},
"ResourceTypesName": {
"description": "The resource types.",
"enum": [
"standard",
"dedicated",
"lowPriority",
"shared",
"serviceSpecific"
],
"type": "string",
"x-ms-enum": {
"name": "ResourceType",
"modelAsString": true
}
},
"ExceptionResponse": {
"type": "object",
"properties": {
"error": {
"$ref": "#/definitions/ServiceError",
"description": "The API error details."
}
},
"description": "The API error."
},
"ServiceError": {
"description": "The API error details.",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "The error code."
},
"message": {
"type": "string",
"description": "The error message text."
},
"details": {
"type": "array",
"items": {
"$ref": "#/definitions/ServiceErrorDetail"
},
"description": "The list of error details.",
"readOnly": true
}
}
},
"ServiceErrorDetail": {
"description": "The error details.",
"type": "object",
"properties": {
"code": {
"type": "string",
"readOnly": true,
"description": "The error code."
},
"message": {
"type": "string",
"readOnly": true,
"description": "The error message."
}
}
}
},
"parameters": {
"SubscriptionIdInParameters": {
"name": "subscriptionId",
"x-ms-parameter-location": "method",
"in": "path",
"required": true,
"type": "string",
"description": "Azure subscription ID."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "API version."
},
"LocationIdInParameters": {
"name": "location",
"in": "path",
"required": true,
"type": "string",
"description": "Azure region.",
"x-ms-parameter-location": "method"
},
"ProviderIdInParameters": {
"name": "providerId",
"in": "path",
"required": true,
"type": "string",
"description": "Azure resource provider ID.",
"x-ms-parameter-location": "method"
},
"ResourceNameInParameters": {
"name": "resourceName",
"in": "path",
"required": true,
"type": "string",
"description": "The resource name for a resource provider, such as SKU name for Microsoft.Compute, Sku or TotalLowPriorityCores for Microsoft.MachineLearningServices",
"x-ms-parameter-location": "method"
},
"RequestIdInParameters": {
"name": "id",
"in": "path",
"required": true,
"type": "string",
"description": "Quota Request ID.",
"x-ms-parameter-location": "method"
},
"TopQueryParameter": {
"name": "$top",
"in": "query",
"required": false,
"type": "integer",
"format": "int32",
"description": "Number of records to return.",
"minimum": 1,
"x-ms-parameter-location": "method"
},
"SkipTokenParameter": {
"name": "$skiptoken",
"in": "query",
"type": "string",
"required": false,
"description": "Skiptoken is only used if a previous operation returned a partial result. If a previous response contains a nextLink element, the value of the nextLink element includes a skiptoken parameter that specifies a starting point to use for subsequent calls.",
"x-ms-parameter-location": "method"
}
}
}