@azure/arm-streamanalytics 2.1.1 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -5
- package/dist/arm-streamanalytics.js +1050 -216
- package/dist/arm-streamanalytics.js.map +1 -1
- package/dist/arm-streamanalytics.min.js +1 -1
- package/dist/arm-streamanalytics.min.js.map +1 -1
- package/esm/models/clustersMappers.d.ts +1 -1
- package/esm/models/clustersMappers.d.ts.map +1 -1
- package/esm/models/clustersMappers.js +1 -1
- package/esm/models/clustersMappers.js.map +1 -1
- package/esm/models/functionsMappers.d.ts +1 -1
- package/esm/models/functionsMappers.d.ts.map +1 -1
- package/esm/models/functionsMappers.js +1 -1
- package/esm/models/functionsMappers.js.map +1 -1
- package/esm/models/index.d.ts +584 -92
- package/esm/models/index.d.ts.map +1 -1
- package/esm/models/inputsMappers.d.ts +1 -1
- package/esm/models/inputsMappers.d.ts.map +1 -1
- package/esm/models/inputsMappers.js +1 -1
- package/esm/models/inputsMappers.js.map +1 -1
- package/esm/models/mappers.d.ts +24 -5
- package/esm/models/mappers.d.ts.map +1 -1
- package/esm/models/mappers.js +648 -160
- package/esm/models/mappers.js.map +1 -1
- package/esm/models/operationsMappers.d.ts +1 -1
- package/esm/models/operationsMappers.d.ts.map +1 -1
- package/esm/models/operationsMappers.js +1 -1
- package/esm/models/operationsMappers.js.map +1 -1
- package/esm/models/outputsMappers.d.ts +1 -1
- package/esm/models/outputsMappers.d.ts.map +1 -1
- package/esm/models/outputsMappers.js +1 -1
- package/esm/models/outputsMappers.js.map +1 -1
- package/esm/models/privateEndpointsMappers.d.ts +1 -1
- package/esm/models/privateEndpointsMappers.d.ts.map +1 -1
- package/esm/models/privateEndpointsMappers.js +1 -1
- package/esm/models/privateEndpointsMappers.js.map +1 -1
- package/esm/models/streamingJobsMappers.d.ts +1 -1
- package/esm/models/streamingJobsMappers.d.ts.map +1 -1
- package/esm/models/streamingJobsMappers.js +1 -1
- package/esm/models/streamingJobsMappers.js.map +1 -1
- package/esm/models/subscriptionsMappers.d.ts +1 -1
- package/esm/models/subscriptionsMappers.d.ts.map +1 -1
- package/esm/models/subscriptionsMappers.js +1 -1
- package/esm/models/subscriptionsMappers.js.map +1 -1
- package/esm/models/transformationsMappers.d.ts +1 -1
- package/esm/models/transformationsMappers.d.ts.map +1 -1
- package/esm/models/transformationsMappers.js +1 -1
- package/esm/models/transformationsMappers.js.map +1 -1
- package/esm/operations/functions.js +9 -9
- package/esm/operations/inputs.js +7 -7
- package/esm/operations/operations.js +2 -2
- package/esm/operations/outputs.js +7 -7
- package/esm/operations/streamingJobs.js +10 -10
- package/esm/operations/subscriptions.d.ts +110 -9
- package/esm/operations/subscriptions.d.ts.map +1 -1
- package/esm/operations/subscriptions.js +257 -1
- package/esm/operations/subscriptions.js.map +1 -1
- package/esm/operations/transformations.js +3 -3
- package/esm/streamAnalyticsManagementClientContext.d.ts +1 -1
- package/esm/streamAnalyticsManagementClientContext.d.ts.map +1 -1
- package/esm/streamAnalyticsManagementClientContext.js +1 -1
- package/esm/streamAnalyticsManagementClientContext.js.map +1 -1
- package/package.json +1 -1
- package/src/models/clustersMappers.ts +6 -0
- package/src/models/functionsMappers.ts +9 -1
- package/src/models/index.ts +637 -108
- package/src/models/inputsMappers.ts +9 -1
- package/src/models/mappers.ts +682 -154
- package/src/models/operationsMappers.ts +7 -2
- package/src/models/outputsMappers.ts +9 -1
- package/src/models/privateEndpointsMappers.ts +6 -0
- package/src/models/streamingJobsMappers.ts +9 -1
- package/src/models/subscriptionsMappers.ts +19 -1
- package/src/models/transformationsMappers.ts +9 -1
- package/src/operations/functions.ts +9 -9
- package/src/operations/inputs.ts +7 -7
- package/src/operations/operations.ts +2 -2
- package/src/operations/outputs.ts +7 -7
- package/src/operations/streamingJobs.ts +10 -10
- package/src/operations/subscriptions.ts +334 -10
- package/src/operations/transformations.ts +3 -3
- package/src/streamAnalyticsManagementClientContext.ts +2 -2
package/esm/models/mappers.js
CHANGED
|
@@ -591,6 +591,88 @@ export var AggregateFunctionProperties = {
|
|
|
591
591
|
modelProperties: __assign({}, FunctionProperties.type.modelProperties)
|
|
592
592
|
}
|
|
593
593
|
};
|
|
594
|
+
export var ErrorDetails = {
|
|
595
|
+
serializedName: "ErrorDetails",
|
|
596
|
+
type: {
|
|
597
|
+
name: "Composite",
|
|
598
|
+
className: "ErrorDetails",
|
|
599
|
+
modelProperties: {
|
|
600
|
+
code: {
|
|
601
|
+
serializedName: "code",
|
|
602
|
+
type: {
|
|
603
|
+
name: "String"
|
|
604
|
+
}
|
|
605
|
+
},
|
|
606
|
+
target: {
|
|
607
|
+
serializedName: "target",
|
|
608
|
+
type: {
|
|
609
|
+
name: "String"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
message: {
|
|
613
|
+
serializedName: "message",
|
|
614
|
+
type: {
|
|
615
|
+
name: "String"
|
|
616
|
+
}
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
};
|
|
621
|
+
export var ErrorError = {
|
|
622
|
+
serializedName: "Error_error",
|
|
623
|
+
type: {
|
|
624
|
+
name: "Composite",
|
|
625
|
+
className: "ErrorError",
|
|
626
|
+
modelProperties: {
|
|
627
|
+
code: {
|
|
628
|
+
serializedName: "code",
|
|
629
|
+
type: {
|
|
630
|
+
name: "String"
|
|
631
|
+
}
|
|
632
|
+
},
|
|
633
|
+
message: {
|
|
634
|
+
serializedName: "message",
|
|
635
|
+
type: {
|
|
636
|
+
name: "String"
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
target: {
|
|
640
|
+
serializedName: "target",
|
|
641
|
+
type: {
|
|
642
|
+
name: "String"
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
details: {
|
|
646
|
+
serializedName: "details",
|
|
647
|
+
type: {
|
|
648
|
+
name: "Sequence",
|
|
649
|
+
element: {
|
|
650
|
+
type: {
|
|
651
|
+
name: "Composite",
|
|
652
|
+
className: "ErrorDetails"
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
};
|
|
660
|
+
export var ErrorModel = {
|
|
661
|
+
serializedName: "Error",
|
|
662
|
+
type: {
|
|
663
|
+
name: "Composite",
|
|
664
|
+
className: "ErrorModel",
|
|
665
|
+
modelProperties: {
|
|
666
|
+
error: {
|
|
667
|
+
serializedName: "error",
|
|
668
|
+
type: {
|
|
669
|
+
name: "Composite",
|
|
670
|
+
className: "ErrorError"
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
}
|
|
675
|
+
};
|
|
594
676
|
export var ErrorResponse = {
|
|
595
677
|
serializedName: "ErrorResponse",
|
|
596
678
|
type: {
|
|
@@ -1032,6 +1114,26 @@ export var IoTHubStreamInputDataSource = {
|
|
|
1032
1114
|
} })
|
|
1033
1115
|
}
|
|
1034
1116
|
};
|
|
1117
|
+
export var RawStreamInputDataSource = {
|
|
1118
|
+
serializedName: "Raw",
|
|
1119
|
+
type: {
|
|
1120
|
+
name: "Composite",
|
|
1121
|
+
polymorphicDiscriminator: StreamInputDataSource.type.polymorphicDiscriminator,
|
|
1122
|
+
uberParent: "StreamInputDataSource",
|
|
1123
|
+
className: "RawStreamInputDataSource",
|
|
1124
|
+
modelProperties: __assign(__assign({}, StreamInputDataSource.type.modelProperties), { payload: {
|
|
1125
|
+
serializedName: "properties.payload",
|
|
1126
|
+
type: {
|
|
1127
|
+
name: "String"
|
|
1128
|
+
}
|
|
1129
|
+
}, payloadUri: {
|
|
1130
|
+
serializedName: "properties.payloadUri",
|
|
1131
|
+
type: {
|
|
1132
|
+
name: "String"
|
|
1133
|
+
}
|
|
1134
|
+
} })
|
|
1135
|
+
}
|
|
1136
|
+
};
|
|
1035
1137
|
export var BlobReferenceInputDataSource = {
|
|
1036
1138
|
serializedName: "Microsoft.Storage/Blob",
|
|
1037
1139
|
type: {
|
|
@@ -1073,6 +1175,26 @@ export var BlobReferenceInputDataSource = {
|
|
|
1073
1175
|
} })
|
|
1074
1176
|
}
|
|
1075
1177
|
};
|
|
1178
|
+
export var RawReferenceInputDataSource = {
|
|
1179
|
+
serializedName: "Raw",
|
|
1180
|
+
type: {
|
|
1181
|
+
name: "Composite",
|
|
1182
|
+
polymorphicDiscriminator: ReferenceInputDataSource.type.polymorphicDiscriminator,
|
|
1183
|
+
uberParent: "ReferenceInputDataSource",
|
|
1184
|
+
className: "RawReferenceInputDataSource",
|
|
1185
|
+
modelProperties: __assign(__assign({}, ReferenceInputDataSource.type.modelProperties), { payload: {
|
|
1186
|
+
serializedName: "properties.payload",
|
|
1187
|
+
type: {
|
|
1188
|
+
name: "String"
|
|
1189
|
+
}
|
|
1190
|
+
}, payloadUri: {
|
|
1191
|
+
serializedName: "properties.payloadUri",
|
|
1192
|
+
type: {
|
|
1193
|
+
name: "String"
|
|
1194
|
+
}
|
|
1195
|
+
} })
|
|
1196
|
+
}
|
|
1197
|
+
};
|
|
1076
1198
|
export var StorageAccount = {
|
|
1077
1199
|
serializedName: "StorageAccount",
|
|
1078
1200
|
type: {
|
|
@@ -1445,6 +1567,21 @@ export var Output = {
|
|
|
1445
1567
|
} })
|
|
1446
1568
|
}
|
|
1447
1569
|
};
|
|
1570
|
+
export var RawOutputDatasource = {
|
|
1571
|
+
serializedName: "Raw",
|
|
1572
|
+
type: {
|
|
1573
|
+
name: "Composite",
|
|
1574
|
+
polymorphicDiscriminator: OutputDataSource.type.polymorphicDiscriminator,
|
|
1575
|
+
uberParent: "OutputDataSource",
|
|
1576
|
+
className: "RawOutputDatasource",
|
|
1577
|
+
modelProperties: __assign(__assign({}, OutputDataSource.type.modelProperties), { payloadUri: {
|
|
1578
|
+
serializedName: "properties.payloadUri",
|
|
1579
|
+
type: {
|
|
1580
|
+
name: "String"
|
|
1581
|
+
}
|
|
1582
|
+
} })
|
|
1583
|
+
}
|
|
1584
|
+
};
|
|
1448
1585
|
export var BlobOutputDataSource = {
|
|
1449
1586
|
serializedName: "Microsoft.Storage/Blob",
|
|
1450
1587
|
type: {
|
|
@@ -2167,67 +2304,6 @@ export var External = {
|
|
|
2167
2304
|
}
|
|
2168
2305
|
}
|
|
2169
2306
|
};
|
|
2170
|
-
export var OperationDisplay = {
|
|
2171
|
-
serializedName: "Operation_display",
|
|
2172
|
-
type: {
|
|
2173
|
-
name: "Composite",
|
|
2174
|
-
className: "OperationDisplay",
|
|
2175
|
-
modelProperties: {
|
|
2176
|
-
provider: {
|
|
2177
|
-
readOnly: true,
|
|
2178
|
-
serializedName: "provider",
|
|
2179
|
-
type: {
|
|
2180
|
-
name: "String"
|
|
2181
|
-
}
|
|
2182
|
-
},
|
|
2183
|
-
resource: {
|
|
2184
|
-
readOnly: true,
|
|
2185
|
-
serializedName: "resource",
|
|
2186
|
-
type: {
|
|
2187
|
-
name: "String"
|
|
2188
|
-
}
|
|
2189
|
-
},
|
|
2190
|
-
operation: {
|
|
2191
|
-
readOnly: true,
|
|
2192
|
-
serializedName: "operation",
|
|
2193
|
-
type: {
|
|
2194
|
-
name: "String"
|
|
2195
|
-
}
|
|
2196
|
-
},
|
|
2197
|
-
description: {
|
|
2198
|
-
readOnly: true,
|
|
2199
|
-
serializedName: "description",
|
|
2200
|
-
type: {
|
|
2201
|
-
name: "String"
|
|
2202
|
-
}
|
|
2203
|
-
}
|
|
2204
|
-
}
|
|
2205
|
-
}
|
|
2206
|
-
};
|
|
2207
|
-
export var Operation = {
|
|
2208
|
-
serializedName: "Operation",
|
|
2209
|
-
type: {
|
|
2210
|
-
name: "Composite",
|
|
2211
|
-
className: "Operation",
|
|
2212
|
-
modelProperties: {
|
|
2213
|
-
name: {
|
|
2214
|
-
readOnly: true,
|
|
2215
|
-
serializedName: "name",
|
|
2216
|
-
type: {
|
|
2217
|
-
name: "String"
|
|
2218
|
-
}
|
|
2219
|
-
},
|
|
2220
|
-
display: {
|
|
2221
|
-
readOnly: true,
|
|
2222
|
-
serializedName: "display",
|
|
2223
|
-
type: {
|
|
2224
|
-
name: "Composite",
|
|
2225
|
-
className: "OperationDisplay"
|
|
2226
|
-
}
|
|
2227
|
-
}
|
|
2228
|
-
}
|
|
2229
|
-
}
|
|
2230
|
-
};
|
|
2231
2307
|
export var StreamingJobSku = {
|
|
2232
2308
|
serializedName: "StreamingJobSku",
|
|
2233
2309
|
type: {
|
|
@@ -2582,206 +2658,615 @@ export var SubscriptionQuotasListResult = {
|
|
|
2582
2658
|
}
|
|
2583
2659
|
}
|
|
2584
2660
|
};
|
|
2585
|
-
export var
|
|
2586
|
-
serializedName: "
|
|
2661
|
+
export var TestQueryDiagnostics = {
|
|
2662
|
+
serializedName: "TestQuery_diagnostics",
|
|
2587
2663
|
type: {
|
|
2588
2664
|
name: "Composite",
|
|
2589
|
-
className: "
|
|
2665
|
+
className: "TestQueryDiagnostics",
|
|
2590
2666
|
modelProperties: {
|
|
2591
|
-
|
|
2592
|
-
|
|
2667
|
+
writeUri: {
|
|
2668
|
+
required: true,
|
|
2669
|
+
serializedName: "writeUri",
|
|
2593
2670
|
type: {
|
|
2594
2671
|
name: "String"
|
|
2595
2672
|
}
|
|
2596
2673
|
},
|
|
2597
|
-
|
|
2598
|
-
serializedName: "
|
|
2599
|
-
constraints: {
|
|
2600
|
-
InclusiveMaximum: 216,
|
|
2601
|
-
InclusiveMinimum: 36
|
|
2602
|
-
},
|
|
2674
|
+
path: {
|
|
2675
|
+
serializedName: "path",
|
|
2603
2676
|
type: {
|
|
2604
|
-
name: "
|
|
2677
|
+
name: "String"
|
|
2605
2678
|
}
|
|
2606
2679
|
}
|
|
2607
2680
|
}
|
|
2608
2681
|
}
|
|
2609
2682
|
};
|
|
2610
|
-
export var
|
|
2611
|
-
serializedName: "
|
|
2683
|
+
export var TestQuery = {
|
|
2684
|
+
serializedName: "TestQuery",
|
|
2612
2685
|
type: {
|
|
2613
2686
|
name: "Composite",
|
|
2614
|
-
className: "
|
|
2687
|
+
className: "TestQuery",
|
|
2615
2688
|
modelProperties: {
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
serializedName: "createdDate",
|
|
2619
|
-
type: {
|
|
2620
|
-
name: "DateTime"
|
|
2621
|
-
}
|
|
2622
|
-
},
|
|
2623
|
-
clusterId: {
|
|
2624
|
-
readOnly: true,
|
|
2625
|
-
serializedName: "clusterId",
|
|
2626
|
-
type: {
|
|
2627
|
-
name: "String"
|
|
2628
|
-
}
|
|
2629
|
-
},
|
|
2630
|
-
provisioningState: {
|
|
2631
|
-
serializedName: "provisioningState",
|
|
2632
|
-
type: {
|
|
2633
|
-
name: "String"
|
|
2634
|
-
}
|
|
2635
|
-
},
|
|
2636
|
-
capacityAllocated: {
|
|
2637
|
-
readOnly: true,
|
|
2638
|
-
serializedName: "capacityAllocated",
|
|
2689
|
+
diagnostics: {
|
|
2690
|
+
serializedName: "diagnostics",
|
|
2639
2691
|
type: {
|
|
2640
|
-
name: "
|
|
2692
|
+
name: "Composite",
|
|
2693
|
+
className: "TestQueryDiagnostics"
|
|
2641
2694
|
}
|
|
2642
2695
|
},
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
serializedName: "
|
|
2696
|
+
streamingJob: {
|
|
2697
|
+
required: true,
|
|
2698
|
+
serializedName: "streamingJob",
|
|
2646
2699
|
type: {
|
|
2647
|
-
name: "
|
|
2700
|
+
name: "Composite",
|
|
2701
|
+
className: "StreamingJob"
|
|
2648
2702
|
}
|
|
2649
2703
|
}
|
|
2650
2704
|
}
|
|
2651
2705
|
}
|
|
2652
2706
|
};
|
|
2653
|
-
export var
|
|
2654
|
-
serializedName: "
|
|
2707
|
+
export var QueryTestingResult = {
|
|
2708
|
+
serializedName: "QueryTestingResult",
|
|
2655
2709
|
type: {
|
|
2656
2710
|
name: "Composite",
|
|
2657
|
-
className: "
|
|
2658
|
-
modelProperties: __assign(__assign({},
|
|
2659
|
-
serializedName: "
|
|
2711
|
+
className: "QueryTestingResult",
|
|
2712
|
+
modelProperties: __assign(__assign({}, ErrorModel.type.modelProperties), { status: {
|
|
2713
|
+
serializedName: "status",
|
|
2660
2714
|
type: {
|
|
2661
|
-
name: "
|
|
2662
|
-
className: "ClusterSku"
|
|
2715
|
+
name: "String"
|
|
2663
2716
|
}
|
|
2664
|
-
},
|
|
2717
|
+
}, outputUri: {
|
|
2665
2718
|
readOnly: true,
|
|
2666
|
-
serializedName: "
|
|
2719
|
+
serializedName: "outputUri",
|
|
2667
2720
|
type: {
|
|
2668
2721
|
name: "String"
|
|
2669
2722
|
}
|
|
2670
|
-
}, properties: {
|
|
2671
|
-
serializedName: "properties",
|
|
2672
|
-
type: {
|
|
2673
|
-
name: "Composite",
|
|
2674
|
-
className: "ClusterProperties"
|
|
2675
|
-
}
|
|
2676
2723
|
} })
|
|
2677
2724
|
}
|
|
2678
2725
|
};
|
|
2679
|
-
export var
|
|
2680
|
-
serializedName: "
|
|
2726
|
+
export var QueryInput = {
|
|
2727
|
+
serializedName: "QueryInput",
|
|
2681
2728
|
type: {
|
|
2682
2729
|
name: "Composite",
|
|
2683
|
-
className: "
|
|
2730
|
+
className: "QueryInput",
|
|
2684
2731
|
modelProperties: {
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
serializedName: "
|
|
2688
|
-
type: {
|
|
2689
|
-
name: "String"
|
|
2732
|
+
name: {
|
|
2733
|
+
required: true,
|
|
2734
|
+
serializedName: "name",
|
|
2735
|
+
type: {
|
|
2736
|
+
name: "String"
|
|
2690
2737
|
}
|
|
2691
2738
|
},
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
serializedName: "
|
|
2739
|
+
type: {
|
|
2740
|
+
required: true,
|
|
2741
|
+
serializedName: "type",
|
|
2695
2742
|
type: {
|
|
2696
|
-
name: "
|
|
2743
|
+
name: "String"
|
|
2744
|
+
}
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2747
|
+
}
|
|
2748
|
+
};
|
|
2749
|
+
export var QueryFunction = {
|
|
2750
|
+
serializedName: "QueryFunction",
|
|
2751
|
+
type: {
|
|
2752
|
+
name: "Composite",
|
|
2753
|
+
className: "QueryFunction",
|
|
2754
|
+
modelProperties: {
|
|
2755
|
+
name: {
|
|
2756
|
+
required: true,
|
|
2757
|
+
serializedName: "name",
|
|
2758
|
+
type: {
|
|
2759
|
+
name: "String"
|
|
2697
2760
|
}
|
|
2698
2761
|
},
|
|
2699
|
-
|
|
2700
|
-
|
|
2762
|
+
type: {
|
|
2763
|
+
required: true,
|
|
2764
|
+
serializedName: "type",
|
|
2765
|
+
type: {
|
|
2766
|
+
name: "String"
|
|
2767
|
+
}
|
|
2768
|
+
},
|
|
2769
|
+
bindingType: {
|
|
2770
|
+
required: true,
|
|
2771
|
+
serializedName: "bindingType",
|
|
2701
2772
|
type: {
|
|
2702
2773
|
name: "String"
|
|
2703
2774
|
}
|
|
2775
|
+
},
|
|
2776
|
+
inputs: {
|
|
2777
|
+
required: true,
|
|
2778
|
+
serializedName: "inputs",
|
|
2779
|
+
type: {
|
|
2780
|
+
name: "Sequence",
|
|
2781
|
+
element: {
|
|
2782
|
+
type: {
|
|
2783
|
+
name: "Composite",
|
|
2784
|
+
className: "FunctionInput"
|
|
2785
|
+
}
|
|
2786
|
+
}
|
|
2787
|
+
}
|
|
2788
|
+
},
|
|
2789
|
+
output: {
|
|
2790
|
+
required: true,
|
|
2791
|
+
serializedName: "output",
|
|
2792
|
+
type: {
|
|
2793
|
+
name: "Composite",
|
|
2794
|
+
className: "FunctionOutput"
|
|
2795
|
+
}
|
|
2704
2796
|
}
|
|
2705
2797
|
}
|
|
2706
2798
|
}
|
|
2707
2799
|
};
|
|
2708
|
-
export var
|
|
2709
|
-
serializedName: "
|
|
2800
|
+
export var CompileQuery = {
|
|
2801
|
+
serializedName: "CompileQuery",
|
|
2710
2802
|
type: {
|
|
2711
2803
|
name: "Composite",
|
|
2712
|
-
className: "
|
|
2804
|
+
className: "CompileQuery",
|
|
2713
2805
|
modelProperties: {
|
|
2714
|
-
|
|
2715
|
-
|
|
2806
|
+
query: {
|
|
2807
|
+
required: true,
|
|
2808
|
+
serializedName: "query",
|
|
2716
2809
|
type: {
|
|
2717
2810
|
name: "String"
|
|
2718
2811
|
}
|
|
2719
2812
|
},
|
|
2720
|
-
|
|
2721
|
-
serializedName: "
|
|
2813
|
+
inputs: {
|
|
2814
|
+
serializedName: "inputs",
|
|
2815
|
+
type: {
|
|
2816
|
+
name: "Sequence",
|
|
2817
|
+
element: {
|
|
2818
|
+
type: {
|
|
2819
|
+
name: "Composite",
|
|
2820
|
+
className: "QueryInput"
|
|
2821
|
+
}
|
|
2822
|
+
}
|
|
2823
|
+
}
|
|
2824
|
+
},
|
|
2825
|
+
functions: {
|
|
2826
|
+
serializedName: "functions",
|
|
2827
|
+
type: {
|
|
2828
|
+
name: "Sequence",
|
|
2829
|
+
element: {
|
|
2830
|
+
type: {
|
|
2831
|
+
name: "Composite",
|
|
2832
|
+
className: "QueryFunction"
|
|
2833
|
+
}
|
|
2834
|
+
}
|
|
2835
|
+
}
|
|
2836
|
+
},
|
|
2837
|
+
jobType: {
|
|
2838
|
+
required: true,
|
|
2839
|
+
serializedName: "jobType",
|
|
2722
2840
|
type: {
|
|
2723
2841
|
name: "String"
|
|
2724
2842
|
}
|
|
2725
2843
|
},
|
|
2844
|
+
compatibilityLevel: {
|
|
2845
|
+
serializedName: "compatibilityLevel",
|
|
2846
|
+
type: {
|
|
2847
|
+
name: "String"
|
|
2848
|
+
}
|
|
2849
|
+
}
|
|
2850
|
+
}
|
|
2851
|
+
}
|
|
2852
|
+
};
|
|
2853
|
+
export var QueryCompilationError = {
|
|
2854
|
+
serializedName: "QueryCompilationError",
|
|
2855
|
+
type: {
|
|
2856
|
+
name: "Composite",
|
|
2857
|
+
className: "QueryCompilationError",
|
|
2858
|
+
modelProperties: {
|
|
2726
2859
|
message: {
|
|
2860
|
+
readOnly: true,
|
|
2727
2861
|
serializedName: "message",
|
|
2728
2862
|
type: {
|
|
2729
2863
|
name: "String"
|
|
2730
2864
|
}
|
|
2865
|
+
},
|
|
2866
|
+
startLine: {
|
|
2867
|
+
readOnly: true,
|
|
2868
|
+
serializedName: "startLine",
|
|
2869
|
+
type: {
|
|
2870
|
+
name: "Number"
|
|
2871
|
+
}
|
|
2872
|
+
},
|
|
2873
|
+
startColumn: {
|
|
2874
|
+
readOnly: true,
|
|
2875
|
+
serializedName: "startColumn",
|
|
2876
|
+
type: {
|
|
2877
|
+
name: "Number"
|
|
2878
|
+
}
|
|
2879
|
+
},
|
|
2880
|
+
endLine: {
|
|
2881
|
+
readOnly: true,
|
|
2882
|
+
serializedName: "endLine",
|
|
2883
|
+
type: {
|
|
2884
|
+
name: "Number"
|
|
2885
|
+
}
|
|
2886
|
+
},
|
|
2887
|
+
endColumn: {
|
|
2888
|
+
readOnly: true,
|
|
2889
|
+
serializedName: "endColumn",
|
|
2890
|
+
type: {
|
|
2891
|
+
name: "Number"
|
|
2892
|
+
}
|
|
2893
|
+
},
|
|
2894
|
+
isGlobal: {
|
|
2895
|
+
readOnly: true,
|
|
2896
|
+
serializedName: "isGlobal",
|
|
2897
|
+
type: {
|
|
2898
|
+
name: "Boolean"
|
|
2899
|
+
}
|
|
2731
2900
|
}
|
|
2732
2901
|
}
|
|
2733
2902
|
}
|
|
2734
2903
|
};
|
|
2735
|
-
export var
|
|
2736
|
-
serializedName: "
|
|
2904
|
+
export var QueryCompilationResult = {
|
|
2905
|
+
serializedName: "QueryCompilationResult",
|
|
2737
2906
|
type: {
|
|
2738
2907
|
name: "Composite",
|
|
2739
|
-
className: "
|
|
2908
|
+
className: "QueryCompilationResult",
|
|
2740
2909
|
modelProperties: {
|
|
2741
|
-
|
|
2742
|
-
|
|
2910
|
+
errors: {
|
|
2911
|
+
readOnly: true,
|
|
2912
|
+
serializedName: "errors",
|
|
2743
2913
|
type: {
|
|
2744
|
-
name: "
|
|
2914
|
+
name: "Sequence",
|
|
2915
|
+
element: {
|
|
2916
|
+
type: {
|
|
2917
|
+
name: "Composite",
|
|
2918
|
+
className: "QueryCompilationError"
|
|
2919
|
+
}
|
|
2920
|
+
}
|
|
2745
2921
|
}
|
|
2746
2922
|
},
|
|
2747
|
-
|
|
2748
|
-
|
|
2923
|
+
warnings: {
|
|
2924
|
+
readOnly: true,
|
|
2925
|
+
serializedName: "warnings",
|
|
2926
|
+
type: {
|
|
2927
|
+
name: "Sequence",
|
|
2928
|
+
element: {
|
|
2929
|
+
type: {
|
|
2930
|
+
name: "String"
|
|
2931
|
+
}
|
|
2932
|
+
}
|
|
2933
|
+
}
|
|
2934
|
+
},
|
|
2935
|
+
inputs: {
|
|
2936
|
+
readOnly: true,
|
|
2937
|
+
serializedName: "inputs",
|
|
2938
|
+
type: {
|
|
2939
|
+
name: "Sequence",
|
|
2940
|
+
element: {
|
|
2941
|
+
type: {
|
|
2942
|
+
name: "String"
|
|
2943
|
+
}
|
|
2944
|
+
}
|
|
2945
|
+
}
|
|
2946
|
+
},
|
|
2947
|
+
outputs: {
|
|
2948
|
+
readOnly: true,
|
|
2949
|
+
serializedName: "outputs",
|
|
2950
|
+
type: {
|
|
2951
|
+
name: "Sequence",
|
|
2952
|
+
element: {
|
|
2953
|
+
type: {
|
|
2954
|
+
name: "String"
|
|
2955
|
+
}
|
|
2956
|
+
}
|
|
2957
|
+
}
|
|
2958
|
+
},
|
|
2959
|
+
functions: {
|
|
2960
|
+
readOnly: true,
|
|
2961
|
+
serializedName: "functions",
|
|
2962
|
+
type: {
|
|
2963
|
+
name: "Sequence",
|
|
2964
|
+
element: {
|
|
2965
|
+
type: {
|
|
2966
|
+
name: "String"
|
|
2967
|
+
}
|
|
2968
|
+
}
|
|
2969
|
+
}
|
|
2970
|
+
}
|
|
2971
|
+
}
|
|
2972
|
+
}
|
|
2973
|
+
};
|
|
2974
|
+
export var SampleInput = {
|
|
2975
|
+
serializedName: "SampleInput",
|
|
2976
|
+
type: {
|
|
2977
|
+
name: "Composite",
|
|
2978
|
+
className: "SampleInput",
|
|
2979
|
+
modelProperties: {
|
|
2980
|
+
input: {
|
|
2981
|
+
serializedName: "input",
|
|
2982
|
+
type: {
|
|
2983
|
+
name: "Composite",
|
|
2984
|
+
className: "Input"
|
|
2985
|
+
}
|
|
2986
|
+
},
|
|
2987
|
+
compatibilityLevel: {
|
|
2988
|
+
serializedName: "compatibilityLevel",
|
|
2749
2989
|
type: {
|
|
2750
2990
|
name: "String"
|
|
2751
2991
|
}
|
|
2752
2992
|
},
|
|
2753
|
-
|
|
2754
|
-
serializedName: "
|
|
2993
|
+
eventsUri: {
|
|
2994
|
+
serializedName: "eventsUri",
|
|
2755
2995
|
type: {
|
|
2756
2996
|
name: "String"
|
|
2757
2997
|
}
|
|
2758
2998
|
},
|
|
2759
|
-
|
|
2760
|
-
serializedName: "
|
|
2999
|
+
dataLocale: {
|
|
3000
|
+
serializedName: "dataLocale",
|
|
3001
|
+
type: {
|
|
3002
|
+
name: "String"
|
|
3003
|
+
}
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
}
|
|
3007
|
+
};
|
|
3008
|
+
export var SampleInputResult = {
|
|
3009
|
+
serializedName: "SampleInputResult",
|
|
3010
|
+
type: {
|
|
3011
|
+
name: "Composite",
|
|
3012
|
+
className: "SampleInputResult",
|
|
3013
|
+
modelProperties: __assign(__assign({}, ErrorModel.type.modelProperties), { status: {
|
|
3014
|
+
serializedName: "status",
|
|
3015
|
+
type: {
|
|
3016
|
+
name: "String"
|
|
3017
|
+
}
|
|
3018
|
+
}, diagnostics: {
|
|
3019
|
+
readOnly: true,
|
|
3020
|
+
serializedName: "diagnostics",
|
|
2761
3021
|
type: {
|
|
2762
3022
|
name: "Sequence",
|
|
2763
3023
|
element: {
|
|
2764
3024
|
type: {
|
|
2765
|
-
name: "
|
|
2766
|
-
className: "ErrorDetails"
|
|
3025
|
+
name: "String"
|
|
2767
3026
|
}
|
|
2768
3027
|
}
|
|
2769
3028
|
}
|
|
3029
|
+
}, eventsDownloadUrl: {
|
|
3030
|
+
readOnly: true,
|
|
3031
|
+
serializedName: "eventsDownloadUrl",
|
|
3032
|
+
type: {
|
|
3033
|
+
name: "String"
|
|
3034
|
+
}
|
|
3035
|
+
}, lastArrivalTime: {
|
|
3036
|
+
readOnly: true,
|
|
3037
|
+
serializedName: "lastArrivalTime",
|
|
3038
|
+
type: {
|
|
3039
|
+
name: "String"
|
|
3040
|
+
}
|
|
3041
|
+
} })
|
|
3042
|
+
}
|
|
3043
|
+
};
|
|
3044
|
+
export var TestInput = {
|
|
3045
|
+
serializedName: "TestInput",
|
|
3046
|
+
type: {
|
|
3047
|
+
name: "Composite",
|
|
3048
|
+
className: "TestInput",
|
|
3049
|
+
modelProperties: {
|
|
3050
|
+
input: {
|
|
3051
|
+
required: true,
|
|
3052
|
+
serializedName: "input",
|
|
3053
|
+
type: {
|
|
3054
|
+
name: "Composite",
|
|
3055
|
+
className: "Input"
|
|
3056
|
+
}
|
|
2770
3057
|
}
|
|
2771
3058
|
}
|
|
2772
3059
|
}
|
|
2773
3060
|
};
|
|
2774
|
-
export var
|
|
2775
|
-
serializedName: "
|
|
3061
|
+
export var TestOutput = {
|
|
3062
|
+
serializedName: "TestOutput",
|
|
2776
3063
|
type: {
|
|
2777
3064
|
name: "Composite",
|
|
2778
|
-
className: "
|
|
3065
|
+
className: "TestOutput",
|
|
2779
3066
|
modelProperties: {
|
|
2780
|
-
|
|
2781
|
-
|
|
3067
|
+
output: {
|
|
3068
|
+
required: true,
|
|
3069
|
+
serializedName: "output",
|
|
2782
3070
|
type: {
|
|
2783
3071
|
name: "Composite",
|
|
2784
|
-
className: "
|
|
3072
|
+
className: "Output"
|
|
3073
|
+
}
|
|
3074
|
+
}
|
|
3075
|
+
}
|
|
3076
|
+
}
|
|
3077
|
+
};
|
|
3078
|
+
export var TestDatasourceResult = {
|
|
3079
|
+
serializedName: "TestDatasourceResult",
|
|
3080
|
+
type: {
|
|
3081
|
+
name: "Composite",
|
|
3082
|
+
className: "TestDatasourceResult",
|
|
3083
|
+
modelProperties: __assign(__assign({}, ErrorModel.type.modelProperties), { status: {
|
|
3084
|
+
serializedName: "status",
|
|
3085
|
+
type: {
|
|
3086
|
+
name: "String"
|
|
3087
|
+
}
|
|
3088
|
+
} })
|
|
3089
|
+
}
|
|
3090
|
+
};
|
|
3091
|
+
export var OperationDisplay = {
|
|
3092
|
+
serializedName: "Operation_display",
|
|
3093
|
+
type: {
|
|
3094
|
+
name: "Composite",
|
|
3095
|
+
className: "OperationDisplay",
|
|
3096
|
+
modelProperties: {
|
|
3097
|
+
provider: {
|
|
3098
|
+
readOnly: true,
|
|
3099
|
+
serializedName: "provider",
|
|
3100
|
+
type: {
|
|
3101
|
+
name: "String"
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
3104
|
+
resource: {
|
|
3105
|
+
readOnly: true,
|
|
3106
|
+
serializedName: "resource",
|
|
3107
|
+
type: {
|
|
3108
|
+
name: "String"
|
|
3109
|
+
}
|
|
3110
|
+
},
|
|
3111
|
+
operation: {
|
|
3112
|
+
readOnly: true,
|
|
3113
|
+
serializedName: "operation",
|
|
3114
|
+
type: {
|
|
3115
|
+
name: "String"
|
|
3116
|
+
}
|
|
3117
|
+
},
|
|
3118
|
+
description: {
|
|
3119
|
+
readOnly: true,
|
|
3120
|
+
serializedName: "description",
|
|
3121
|
+
type: {
|
|
3122
|
+
name: "String"
|
|
3123
|
+
}
|
|
3124
|
+
}
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
};
|
|
3128
|
+
export var Operation = {
|
|
3129
|
+
serializedName: "Operation",
|
|
3130
|
+
type: {
|
|
3131
|
+
name: "Composite",
|
|
3132
|
+
className: "Operation",
|
|
3133
|
+
modelProperties: {
|
|
3134
|
+
name: {
|
|
3135
|
+
readOnly: true,
|
|
3136
|
+
serializedName: "name",
|
|
3137
|
+
type: {
|
|
3138
|
+
name: "String"
|
|
3139
|
+
}
|
|
3140
|
+
},
|
|
3141
|
+
display: {
|
|
3142
|
+
readOnly: true,
|
|
3143
|
+
serializedName: "display",
|
|
3144
|
+
type: {
|
|
3145
|
+
name: "Composite",
|
|
3146
|
+
className: "OperationDisplay"
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
}
|
|
3150
|
+
}
|
|
3151
|
+
};
|
|
3152
|
+
export var ClusterSku = {
|
|
3153
|
+
serializedName: "ClusterSku",
|
|
3154
|
+
type: {
|
|
3155
|
+
name: "Composite",
|
|
3156
|
+
className: "ClusterSku",
|
|
3157
|
+
modelProperties: {
|
|
3158
|
+
name: {
|
|
3159
|
+
serializedName: "name",
|
|
3160
|
+
type: {
|
|
3161
|
+
name: "String"
|
|
3162
|
+
}
|
|
3163
|
+
},
|
|
3164
|
+
capacity: {
|
|
3165
|
+
serializedName: "capacity",
|
|
3166
|
+
constraints: {
|
|
3167
|
+
InclusiveMaximum: 216,
|
|
3168
|
+
InclusiveMinimum: 36
|
|
3169
|
+
},
|
|
3170
|
+
type: {
|
|
3171
|
+
name: "Number"
|
|
3172
|
+
}
|
|
3173
|
+
}
|
|
3174
|
+
}
|
|
3175
|
+
}
|
|
3176
|
+
};
|
|
3177
|
+
export var ClusterProperties = {
|
|
3178
|
+
serializedName: "ClusterProperties",
|
|
3179
|
+
type: {
|
|
3180
|
+
name: "Composite",
|
|
3181
|
+
className: "ClusterProperties",
|
|
3182
|
+
modelProperties: {
|
|
3183
|
+
createdDate: {
|
|
3184
|
+
readOnly: true,
|
|
3185
|
+
serializedName: "createdDate",
|
|
3186
|
+
type: {
|
|
3187
|
+
name: "DateTime"
|
|
3188
|
+
}
|
|
3189
|
+
},
|
|
3190
|
+
clusterId: {
|
|
3191
|
+
readOnly: true,
|
|
3192
|
+
serializedName: "clusterId",
|
|
3193
|
+
type: {
|
|
3194
|
+
name: "String"
|
|
3195
|
+
}
|
|
3196
|
+
},
|
|
3197
|
+
provisioningState: {
|
|
3198
|
+
serializedName: "provisioningState",
|
|
3199
|
+
type: {
|
|
3200
|
+
name: "String"
|
|
3201
|
+
}
|
|
3202
|
+
},
|
|
3203
|
+
capacityAllocated: {
|
|
3204
|
+
readOnly: true,
|
|
3205
|
+
serializedName: "capacityAllocated",
|
|
3206
|
+
type: {
|
|
3207
|
+
name: "Number"
|
|
3208
|
+
}
|
|
3209
|
+
},
|
|
3210
|
+
capacityAssigned: {
|
|
3211
|
+
readOnly: true,
|
|
3212
|
+
serializedName: "capacityAssigned",
|
|
3213
|
+
type: {
|
|
3214
|
+
name: "Number"
|
|
3215
|
+
}
|
|
3216
|
+
}
|
|
3217
|
+
}
|
|
3218
|
+
}
|
|
3219
|
+
};
|
|
3220
|
+
export var Cluster = {
|
|
3221
|
+
serializedName: "Cluster",
|
|
3222
|
+
type: {
|
|
3223
|
+
name: "Composite",
|
|
3224
|
+
className: "Cluster",
|
|
3225
|
+
modelProperties: __assign(__assign({}, TrackedResource.type.modelProperties), { sku: {
|
|
3226
|
+
serializedName: "sku",
|
|
3227
|
+
type: {
|
|
3228
|
+
name: "Composite",
|
|
3229
|
+
className: "ClusterSku"
|
|
3230
|
+
}
|
|
3231
|
+
}, etag: {
|
|
3232
|
+
readOnly: true,
|
|
3233
|
+
serializedName: "etag",
|
|
3234
|
+
type: {
|
|
3235
|
+
name: "String"
|
|
3236
|
+
}
|
|
3237
|
+
}, properties: {
|
|
3238
|
+
serializedName: "properties",
|
|
3239
|
+
type: {
|
|
3240
|
+
name: "Composite",
|
|
3241
|
+
className: "ClusterProperties"
|
|
3242
|
+
}
|
|
3243
|
+
} })
|
|
3244
|
+
}
|
|
3245
|
+
};
|
|
3246
|
+
export var ClusterJob = {
|
|
3247
|
+
serializedName: "ClusterJob",
|
|
3248
|
+
type: {
|
|
3249
|
+
name: "Composite",
|
|
3250
|
+
className: "ClusterJob",
|
|
3251
|
+
modelProperties: {
|
|
3252
|
+
id: {
|
|
3253
|
+
readOnly: true,
|
|
3254
|
+
serializedName: "id",
|
|
3255
|
+
type: {
|
|
3256
|
+
name: "String"
|
|
3257
|
+
}
|
|
3258
|
+
},
|
|
3259
|
+
streamingUnits: {
|
|
3260
|
+
readOnly: true,
|
|
3261
|
+
serializedName: "streamingUnits",
|
|
3262
|
+
type: {
|
|
3263
|
+
name: "Number"
|
|
3264
|
+
}
|
|
3265
|
+
},
|
|
3266
|
+
jobState: {
|
|
3267
|
+
serializedName: "jobState",
|
|
3268
|
+
type: {
|
|
3269
|
+
name: "String"
|
|
2785
3270
|
}
|
|
2786
3271
|
}
|
|
2787
3272
|
}
|
|
@@ -3385,7 +3870,9 @@ export var discriminators = {
|
|
|
3385
3870
|
'StreamInputDataSource.Microsoft.ServiceBus/EventHub': EventHubStreamInputDataSource,
|
|
3386
3871
|
'StreamInputDataSource.Microsoft.EventHub/EventHub': EventHubV2StreamInputDataSource,
|
|
3387
3872
|
'StreamInputDataSource.Microsoft.Devices/IotHubs': IoTHubStreamInputDataSource,
|
|
3873
|
+
'StreamInputDataSource.Raw': RawStreamInputDataSource,
|
|
3388
3874
|
'ReferenceInputDataSource.Microsoft.Storage/Blob': BlobReferenceInputDataSource,
|
|
3875
|
+
'ReferenceInputDataSource.Raw': RawReferenceInputDataSource,
|
|
3389
3876
|
'Serialization.Parquet': ParquetSerialization,
|
|
3390
3877
|
'Serialization.CustomClr': CustomClrSerialization,
|
|
3391
3878
|
'Serialization.Csv': CsvSerialization,
|
|
@@ -3393,6 +3880,7 @@ export var discriminators = {
|
|
|
3393
3880
|
'Serialization.Avro': AvroSerialization,
|
|
3394
3881
|
'ReferenceInputDataSource.Microsoft.Sql/Server/Database': AzureSqlReferenceInputDataSource,
|
|
3395
3882
|
'OutputDataSource': OutputDataSource,
|
|
3883
|
+
'OutputDataSource.Raw': RawOutputDatasource,
|
|
3396
3884
|
'OutputDataSource.Microsoft.Storage/Blob': BlobOutputDataSource,
|
|
3397
3885
|
'OutputDataSource.Microsoft.Storage/Table': AzureTableOutputDataSource,
|
|
3398
3886
|
'OutputDataSource.Microsoft.ServiceBus/EventHub': EventHubOutputDataSource,
|