-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
bigDataPool.json
644 lines (644 loc) · 19.9 KB
/
bigDataPool.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
{
"swagger": "2.0",
"info": {
"version": "2021-06-01-preview",
"title": "SynapseManagementClient",
"description": "Azure Synapse Analytics APIs"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"securityDefinitions": {
"azure_auth": {
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"type": "oauth2",
"scopes": {
"user_impersonation": "impersonate your user account"
},
"description": "Azure Active Directory OAuth2 Flow"
}
},
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/bigDataPools/{bigDataPoolName}": {
"get": {
"operationId": "BigDataPools_Get",
"summary": "Get Big Data pool",
"description": "Get a Big Data pool.",
"tags": [
"BigDataPools"
],
"deprecated": false,
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./workspace.json#/parameters/workspaceNameParameter"
},
{
"type": "string",
"in": "path",
"name": "bigDataPoolName",
"description": "Big Data pool name",
"required": true
}
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/BigDataPoolResourceInfo"
},
"description": ""
},
"default": {
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
},
"description": ""
}
},
"consumes": [],
"produces": [
"application/json"
],
"x-ms-examples": {
"Get a Big Data pool": {
"$ref": "./examples/GetBigDataPool.json"
}
}
},
"patch": {
"operationId": "BigDataPools_Update",
"summary": "Update a Big Data pool.",
"description": "Patch a Big Data pool.",
"tags": [
"BigDataPools"
],
"deprecated": false,
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./workspace.json#/parameters/workspaceNameParameter"
},
{
"type": "string",
"in": "path",
"name": "bigDataPoolName",
"description": "Big Data pool name",
"required": true
},
{
"schema": {
"$ref": "#/definitions/BigDataPoolPatchInfo"
},
"in": "body",
"name": "bigDataPoolPatchInfo",
"description": "The updated Big Data pool properties",
"required": true
}
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/BigDataPoolResourceInfo"
},
"description": ""
},
"default": {
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
},
"description": ""
}
},
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"x-ms-examples": {
"Update a Big Data pool": {
"$ref": "./examples/UpdateBigDataPool.json"
}
}
},
"put": {
"operationId": "BigDataPools_CreateOrUpdate",
"summary": "Create a Big Data pool.",
"description": "Create a new Big Data pool.",
"tags": [
"BigDataPools"
],
"deprecated": false,
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./workspace.json#/parameters/workspaceNameParameter"
},
{
"type": "string",
"in": "path",
"name": "bigDataPoolName",
"description": "Big Data pool name",
"required": true
},
{
"name": "force",
"type": "boolean",
"in": "query",
"description": "Whether to stop any running jobs in the Big Data pool",
"required": false,
"default": false
},
{
"schema": {
"$ref": "#/definitions/BigDataPoolResourceInfo"
},
"in": "body",
"name": "bigDataPoolInfo",
"description": "The Big Data pool to create.",
"required": true
}
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/BigDataPoolResourceInfo"
},
"description": "OK"
},
"202": {
"schema": {
"$ref": "#/definitions/BigDataPoolResourceInfo"
},
"description": ""
},
"default": {
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
},
"description": ""
}
},
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"x-ms-examples": {
"Create or update a Big Data pool": {
"$ref": "./examples/CreateOrUpdateBigDataPool.json"
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "azure-async-operation"
}
},
"delete": {
"operationId": "BigDataPools_Delete",
"summary": "Delete a Big Data pool.",
"description": "Delete a Big Data pool from the workspace.",
"tags": [
"BigDataPools"
],
"deprecated": false,
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./workspace.json#/parameters/workspaceNameParameter"
},
{
"type": "string",
"in": "path",
"name": "bigDataPoolName",
"description": "Big Data pool name",
"required": true
}
],
"responses": {
"200": {
"schema": {
"type": "object"
},
"description": "OK"
},
"202": {
"schema": {
"type": "object"
},
"description": ""
},
"204": {
"description": ""
},
"default": {
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
},
"description": ""
}
},
"consumes": [],
"produces": [
"application/json"
],
"x-ms-examples": {
"Delete a Big Data pool": {
"$ref": "./examples/DeleteBigDataPool.json"
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "azure-async-operation"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Synapse/workspaces/{workspaceName}/bigDataPools": {
"get": {
"operationId": "BigDataPools_ListByWorkspace",
"summary": "List the Big Data pools in a workspace.",
"description": "List Big Data pools in a workspace.",
"tags": [
"BigDataPools"
],
"deprecated": false,
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "./workspace.json#/parameters/workspaceNameParameter"
}
],
"responses": {
"200": {
"schema": {
"$ref": "#/definitions/BigDataPoolResourceInfoListResult"
},
"description": ""
},
"default": {
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
},
"description": ""
}
},
"consumes": [],
"produces": [
"application/json"
],
"x-ms-examples": {
"List Big Data pools in a workspace": {
"$ref": "./examples/ListBigDataPoolsInWorkspace.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
}
},
"definitions": {
"BigDataPoolResourceInfoListResult": {
"type": "object",
"description": "Collection of Big Data pool information",
"title": "Collection of Big Data pools",
"properties": {
"nextLink": {
"type": "string",
"description": "Link to the next page of results"
},
"value": {
"type": "array",
"description": "List of Big Data pools",
"items": {
"$ref": "#/definitions/BigDataPoolResourceInfo"
}
}
}
},
"BigDataPoolPatchInfo": {
"type": "object",
"description": "Properties patch for a Big Data pool",
"title": "Patch for a Big Data pool",
"properties": {
"tags": {
"additionalProperties": {
"type": "string"
},
"description": "Updated tags for the Big Data pool",
"type": "object"
}
}
},
"BigDataPoolResourceInfo": {
"type": "object",
"description": "A Big Data pool",
"title": "Big Data pool",
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/TrackedResource"
}
],
"properties": {
"properties": {
"$ref": "#/definitions/BigDataPoolResourceProperties",
"description": "Big Data pool properties",
"x-ms-client-flatten": true
}
}
},
"BigDataPoolResourceProperties": {
"type": "object",
"description": "Properties of a Big Data pool powered by Apache Spark",
"title": "Spark pool properties",
"properties": {
"provisioningState": {
"type": "string",
"description": "The state of the Big Data pool."
},
"autoScale": {
"$ref": "#/definitions/AutoScaleProperties",
"description": "Auto-scaling properties"
},
"creationDate": {
"type": "string",
"format": "date-time",
"description": "The time when the Big Data pool was created."
},
"autoPause": {
"$ref": "#/definitions/AutoPauseProperties",
"description": "Auto-pausing properties"
},
"isComputeIsolationEnabled": {
"type": "boolean",
"description": "Whether compute isolation is required or not."
},
"sessionLevelPackagesEnabled": {
"type": "boolean",
"description": "Whether session level packages enabled."
},
"cacheSize": {
"type": "integer",
"format": "int32",
"description": "The cache size"
},
"dynamicExecutorAllocation": {
"$ref": "#/definitions/DynamicExecutorAllocation",
"description": "Dynamic Executor Allocation"
},
"sparkEventsFolder": {
"type": "string",
"description": "The Spark events folder"
},
"nodeCount": {
"type": "integer",
"format": "int32",
"description": "The number of nodes in the Big Data pool."
},
"libraryRequirements": {
"$ref": "#/definitions/LibraryRequirements",
"description": "Library version requirements"
},
"customLibraries": {
"description": "List of custom libraries/packages associated with the spark pool.",
"type": "array",
"items": {
"$ref": "#/definitions/LibraryInfo"
}
},
"sparkConfigProperties": {
"$ref": "#/definitions/SparkConfigProperties",
"description": "Spark configuration file to specify additional properties"
},
"sparkVersion": {
"type": "string",
"description": "The Apache Spark version."
},
"defaultSparkLogFolder": {
"type": "string",
"description": "The default folder where Spark logs will be written."
},
"nodeSize": {
"enum": [
"None",
"Small",
"Medium",
"Large",
"XLarge",
"XXLarge",
"XXXLarge"
],
"type": "string",
"description": "The level of compute power that each node in the Big Data pool has.",
"x-ms-enum": {
"name": "NodeSize",
"modelAsString": true
}
},
"nodeSizeFamily": {
"enum": [
"None",
"MemoryOptimized",
"HardwareAcceleratedFPGA",
"HardwareAcceleratedGPU"
],
"type": "string",
"description": "The kind of nodes that the Big Data pool provides.",
"x-ms-enum": {
"name": "NodeSizeFamily",
"modelAsString": true
}
},
"lastSucceededTimestamp": {
"type": "string",
"format": "date-time",
"description": "The time when the Big Data pool was updated successfully.",
"readOnly": true
}
}
},
"AutoScaleProperties": {
"type": "object",
"description": "Auto-scaling properties of a Big Data pool powered by Apache Spark",
"title": "Spark pool auto-scaling properties",
"properties": {
"minNodeCount": {
"type": "integer",
"format": "int32",
"description": "The minimum number of nodes the Big Data pool can support."
},
"enabled": {
"type": "boolean",
"description": "Whether automatic scaling is enabled for the Big Data pool."
},
"maxNodeCount": {
"type": "integer",
"format": "int32",
"description": "The maximum number of nodes the Big Data pool can support."
}
}
},
"AutoPauseProperties": {
"type": "object",
"description": "Auto-pausing properties of a Big Data pool powered by Apache Spark",
"title": "Spark pool auto-pausing properties",
"properties": {
"delayInMinutes": {
"type": "integer",
"format": "int32",
"description": "Number of minutes of idle time before the Big Data pool is automatically paused."
},
"enabled": {
"type": "boolean",
"description": "Whether auto-pausing is enabled for the Big Data pool."
}
}
},
"DynamicExecutorAllocation": {
"type": "object",
"description": "Dynamic Executor Allocation Properties",
"properties": {
"enabled": {
"type": "boolean",
"description": "Indicates whether Dynamic Executor Allocation is enabled or not."
}
}
},
"LibraryInfo": {
"type": "object",
"description": "Library/package information of a Big Data pool powered by Apache Spark",
"title": "Information about a library/package created at the workspace level.",
"properties": {
"name": {
"type": "string",
"description": "Name of the library."
},
"path": {
"type": "string",
"description": "Storage blob path of library."
},
"containerName": {
"type": "string",
"description": "Storage blob container name."
},
"uploadedTimestamp": {
"type": "string",
"format": "date-time",
"description": "The last update time of the library.",
"readOnly": true
},
"type": {
"type": "string",
"description": "Type of the library."
},
"provisioningStatus": {
"readOnly": true,
"type": "string",
"description": "Provisioning status of the library/package."
},
"creatorId": {
"readOnly": true,
"type": "string",
"description": "Creator Id of the library/package."
}
}
},
"LibraryRequirements": {
"type": "object",
"description": "Library requirements for a Big Data pool powered by Apache Spark",
"title": "Spark pool library version requirements",
"properties": {
"time": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "The last update time of the library requirements file."
},
"content": {
"type": "string",
"description": "The library requirements."
},
"filename": {
"type": "string",
"description": "The filename of the library requirements file."
}
}
},
"SparkConfigProperties": {
"type": "object",
"description": "SparkConfig Properties for a Big Data pool powered by Apache Spark",
"title": "Spark pool Config Properties",
"properties": {
"time": {
"type": "string",
"format": "date-time",
"readOnly": true,
"description": "The last update time of the spark config properties file."
},
"content": {
"type": "string",
"description": "The spark config properties."
},
"filename": {
"type": "string",
"description": "The filename of the spark config properties file."
},
"configurationType": {
"enum": [
"File",
"Artifact"
],
"type": "string",
"description": "The type of the spark config properties file.",
"x-ms-enum": {
"name": "ConfigurationType",
"modelAsString": true
}
}
}
}
}
}