@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/src/models/mappers.ts
CHANGED
|
@@ -664,6 +664,91 @@ export const AggregateFunctionProperties: msRest.CompositeMapper = {
|
|
|
664
664
|
}
|
|
665
665
|
};
|
|
666
666
|
|
|
667
|
+
export const ErrorDetails: msRest.CompositeMapper = {
|
|
668
|
+
serializedName: "ErrorDetails",
|
|
669
|
+
type: {
|
|
670
|
+
name: "Composite",
|
|
671
|
+
className: "ErrorDetails",
|
|
672
|
+
modelProperties: {
|
|
673
|
+
code: {
|
|
674
|
+
serializedName: "code",
|
|
675
|
+
type: {
|
|
676
|
+
name: "String"
|
|
677
|
+
}
|
|
678
|
+
},
|
|
679
|
+
target: {
|
|
680
|
+
serializedName: "target",
|
|
681
|
+
type: {
|
|
682
|
+
name: "String"
|
|
683
|
+
}
|
|
684
|
+
},
|
|
685
|
+
message: {
|
|
686
|
+
serializedName: "message",
|
|
687
|
+
type: {
|
|
688
|
+
name: "String"
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
}
|
|
693
|
+
};
|
|
694
|
+
|
|
695
|
+
export const ErrorError: msRest.CompositeMapper = {
|
|
696
|
+
serializedName: "Error_error",
|
|
697
|
+
type: {
|
|
698
|
+
name: "Composite",
|
|
699
|
+
className: "ErrorError",
|
|
700
|
+
modelProperties: {
|
|
701
|
+
code: {
|
|
702
|
+
serializedName: "code",
|
|
703
|
+
type: {
|
|
704
|
+
name: "String"
|
|
705
|
+
}
|
|
706
|
+
},
|
|
707
|
+
message: {
|
|
708
|
+
serializedName: "message",
|
|
709
|
+
type: {
|
|
710
|
+
name: "String"
|
|
711
|
+
}
|
|
712
|
+
},
|
|
713
|
+
target: {
|
|
714
|
+
serializedName: "target",
|
|
715
|
+
type: {
|
|
716
|
+
name: "String"
|
|
717
|
+
}
|
|
718
|
+
},
|
|
719
|
+
details: {
|
|
720
|
+
serializedName: "details",
|
|
721
|
+
type: {
|
|
722
|
+
name: "Sequence",
|
|
723
|
+
element: {
|
|
724
|
+
type: {
|
|
725
|
+
name: "Composite",
|
|
726
|
+
className: "ErrorDetails"
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
}
|
|
732
|
+
}
|
|
733
|
+
};
|
|
734
|
+
|
|
735
|
+
export const ErrorModel: msRest.CompositeMapper = {
|
|
736
|
+
serializedName: "Error",
|
|
737
|
+
type: {
|
|
738
|
+
name: "Composite",
|
|
739
|
+
className: "ErrorModel",
|
|
740
|
+
modelProperties: {
|
|
741
|
+
error: {
|
|
742
|
+
serializedName: "error",
|
|
743
|
+
type: {
|
|
744
|
+
name: "Composite",
|
|
745
|
+
className: "ErrorError"
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
};
|
|
751
|
+
|
|
667
752
|
export const ErrorResponse: msRest.CompositeMapper = {
|
|
668
753
|
serializedName: "ErrorResponse",
|
|
669
754
|
type: {
|
|
@@ -1161,6 +1246,31 @@ export const IoTHubStreamInputDataSource: msRest.CompositeMapper = {
|
|
|
1161
1246
|
}
|
|
1162
1247
|
};
|
|
1163
1248
|
|
|
1249
|
+
export const RawStreamInputDataSource: msRest.CompositeMapper = {
|
|
1250
|
+
serializedName: "Raw",
|
|
1251
|
+
type: {
|
|
1252
|
+
name: "Composite",
|
|
1253
|
+
polymorphicDiscriminator: StreamInputDataSource.type.polymorphicDiscriminator,
|
|
1254
|
+
uberParent: "StreamInputDataSource",
|
|
1255
|
+
className: "RawStreamInputDataSource",
|
|
1256
|
+
modelProperties: {
|
|
1257
|
+
...StreamInputDataSource.type.modelProperties,
|
|
1258
|
+
payload: {
|
|
1259
|
+
serializedName: "properties.payload",
|
|
1260
|
+
type: {
|
|
1261
|
+
name: "String"
|
|
1262
|
+
}
|
|
1263
|
+
},
|
|
1264
|
+
payloadUri: {
|
|
1265
|
+
serializedName: "properties.payloadUri",
|
|
1266
|
+
type: {
|
|
1267
|
+
name: "String"
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
}
|
|
1271
|
+
}
|
|
1272
|
+
};
|
|
1273
|
+
|
|
1164
1274
|
export const BlobReferenceInputDataSource: msRest.CompositeMapper = {
|
|
1165
1275
|
serializedName: "Microsoft.Storage/Blob",
|
|
1166
1276
|
type: {
|
|
@@ -1210,6 +1320,31 @@ export const BlobReferenceInputDataSource: msRest.CompositeMapper = {
|
|
|
1210
1320
|
}
|
|
1211
1321
|
};
|
|
1212
1322
|
|
|
1323
|
+
export const RawReferenceInputDataSource: msRest.CompositeMapper = {
|
|
1324
|
+
serializedName: "Raw",
|
|
1325
|
+
type: {
|
|
1326
|
+
name: "Composite",
|
|
1327
|
+
polymorphicDiscriminator: ReferenceInputDataSource.type.polymorphicDiscriminator,
|
|
1328
|
+
uberParent: "ReferenceInputDataSource",
|
|
1329
|
+
className: "RawReferenceInputDataSource",
|
|
1330
|
+
modelProperties: {
|
|
1331
|
+
...ReferenceInputDataSource.type.modelProperties,
|
|
1332
|
+
payload: {
|
|
1333
|
+
serializedName: "properties.payload",
|
|
1334
|
+
type: {
|
|
1335
|
+
name: "String"
|
|
1336
|
+
}
|
|
1337
|
+
},
|
|
1338
|
+
payloadUri: {
|
|
1339
|
+
serializedName: "properties.payloadUri",
|
|
1340
|
+
type: {
|
|
1341
|
+
name: "String"
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
};
|
|
1347
|
+
|
|
1213
1348
|
export const StorageAccount: msRest.CompositeMapper = {
|
|
1214
1349
|
serializedName: "StorageAccount",
|
|
1215
1350
|
type: {
|
|
@@ -1628,6 +1763,25 @@ export const Output: msRest.CompositeMapper = {
|
|
|
1628
1763
|
}
|
|
1629
1764
|
};
|
|
1630
1765
|
|
|
1766
|
+
export const RawOutputDatasource: msRest.CompositeMapper = {
|
|
1767
|
+
serializedName: "Raw",
|
|
1768
|
+
type: {
|
|
1769
|
+
name: "Composite",
|
|
1770
|
+
polymorphicDiscriminator: OutputDataSource.type.polymorphicDiscriminator,
|
|
1771
|
+
uberParent: "OutputDataSource",
|
|
1772
|
+
className: "RawOutputDatasource",
|
|
1773
|
+
modelProperties: {
|
|
1774
|
+
...OutputDataSource.type.modelProperties,
|
|
1775
|
+
payloadUri: {
|
|
1776
|
+
serializedName: "properties.payloadUri",
|
|
1777
|
+
type: {
|
|
1778
|
+
name: "String"
|
|
1779
|
+
}
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
};
|
|
1784
|
+
|
|
1631
1785
|
export const BlobOutputDataSource: msRest.CompositeMapper = {
|
|
1632
1786
|
serializedName: "Microsoft.Storage/Blob",
|
|
1633
1787
|
type: {
|
|
@@ -2472,69 +2626,6 @@ export const External: msRest.CompositeMapper = {
|
|
|
2472
2626
|
}
|
|
2473
2627
|
};
|
|
2474
2628
|
|
|
2475
|
-
export const OperationDisplay: msRest.CompositeMapper = {
|
|
2476
|
-
serializedName: "Operation_display",
|
|
2477
|
-
type: {
|
|
2478
|
-
name: "Composite",
|
|
2479
|
-
className: "OperationDisplay",
|
|
2480
|
-
modelProperties: {
|
|
2481
|
-
provider: {
|
|
2482
|
-
readOnly: true,
|
|
2483
|
-
serializedName: "provider",
|
|
2484
|
-
type: {
|
|
2485
|
-
name: "String"
|
|
2486
|
-
}
|
|
2487
|
-
},
|
|
2488
|
-
resource: {
|
|
2489
|
-
readOnly: true,
|
|
2490
|
-
serializedName: "resource",
|
|
2491
|
-
type: {
|
|
2492
|
-
name: "String"
|
|
2493
|
-
}
|
|
2494
|
-
},
|
|
2495
|
-
operation: {
|
|
2496
|
-
readOnly: true,
|
|
2497
|
-
serializedName: "operation",
|
|
2498
|
-
type: {
|
|
2499
|
-
name: "String"
|
|
2500
|
-
}
|
|
2501
|
-
},
|
|
2502
|
-
description: {
|
|
2503
|
-
readOnly: true,
|
|
2504
|
-
serializedName: "description",
|
|
2505
|
-
type: {
|
|
2506
|
-
name: "String"
|
|
2507
|
-
}
|
|
2508
|
-
}
|
|
2509
|
-
}
|
|
2510
|
-
}
|
|
2511
|
-
};
|
|
2512
|
-
|
|
2513
|
-
export const Operation: msRest.CompositeMapper = {
|
|
2514
|
-
serializedName: "Operation",
|
|
2515
|
-
type: {
|
|
2516
|
-
name: "Composite",
|
|
2517
|
-
className: "Operation",
|
|
2518
|
-
modelProperties: {
|
|
2519
|
-
name: {
|
|
2520
|
-
readOnly: true,
|
|
2521
|
-
serializedName: "name",
|
|
2522
|
-
type: {
|
|
2523
|
-
name: "String"
|
|
2524
|
-
}
|
|
2525
|
-
},
|
|
2526
|
-
display: {
|
|
2527
|
-
readOnly: true,
|
|
2528
|
-
serializedName: "display",
|
|
2529
|
-
type: {
|
|
2530
|
-
name: "Composite",
|
|
2531
|
-
className: "OperationDisplay"
|
|
2532
|
-
}
|
|
2533
|
-
}
|
|
2534
|
-
}
|
|
2535
|
-
}
|
|
2536
|
-
};
|
|
2537
|
-
|
|
2538
2629
|
export const StreamingJobSku: msRest.CompositeMapper = {
|
|
2539
2630
|
serializedName: "StreamingJobSku",
|
|
2540
2631
|
type: {
|
|
@@ -2945,217 +3036,651 @@ export const SubscriptionQuotasListResult: msRest.CompositeMapper = {
|
|
|
2945
3036
|
}
|
|
2946
3037
|
};
|
|
2947
3038
|
|
|
2948
|
-
export const
|
|
2949
|
-
serializedName: "
|
|
3039
|
+
export const TestQueryDiagnostics: msRest.CompositeMapper = {
|
|
3040
|
+
serializedName: "TestQuery_diagnostics",
|
|
2950
3041
|
type: {
|
|
2951
3042
|
name: "Composite",
|
|
2952
|
-
className: "
|
|
3043
|
+
className: "TestQueryDiagnostics",
|
|
2953
3044
|
modelProperties: {
|
|
2954
|
-
|
|
2955
|
-
|
|
3045
|
+
writeUri: {
|
|
3046
|
+
required: true,
|
|
3047
|
+
serializedName: "writeUri",
|
|
2956
3048
|
type: {
|
|
2957
3049
|
name: "String"
|
|
2958
3050
|
}
|
|
2959
3051
|
},
|
|
2960
|
-
|
|
2961
|
-
serializedName: "
|
|
2962
|
-
constraints: {
|
|
2963
|
-
InclusiveMaximum: 216,
|
|
2964
|
-
InclusiveMinimum: 36
|
|
2965
|
-
},
|
|
3052
|
+
path: {
|
|
3053
|
+
serializedName: "path",
|
|
2966
3054
|
type: {
|
|
2967
|
-
name: "
|
|
3055
|
+
name: "String"
|
|
2968
3056
|
}
|
|
2969
3057
|
}
|
|
2970
3058
|
}
|
|
2971
3059
|
}
|
|
2972
3060
|
};
|
|
2973
3061
|
|
|
2974
|
-
export const
|
|
2975
|
-
serializedName: "
|
|
3062
|
+
export const TestQuery: msRest.CompositeMapper = {
|
|
3063
|
+
serializedName: "TestQuery",
|
|
2976
3064
|
type: {
|
|
2977
3065
|
name: "Composite",
|
|
2978
|
-
className: "
|
|
3066
|
+
className: "TestQuery",
|
|
2979
3067
|
modelProperties: {
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
serializedName: "createdDate",
|
|
3068
|
+
diagnostics: {
|
|
3069
|
+
serializedName: "diagnostics",
|
|
2983
3070
|
type: {
|
|
2984
|
-
name: "
|
|
3071
|
+
name: "Composite",
|
|
3072
|
+
className: "TestQueryDiagnostics"
|
|
2985
3073
|
}
|
|
2986
3074
|
},
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
serializedName: "
|
|
3075
|
+
streamingJob: {
|
|
3076
|
+
required: true,
|
|
3077
|
+
serializedName: "streamingJob",
|
|
2990
3078
|
type: {
|
|
2991
|
-
name: "
|
|
3079
|
+
name: "Composite",
|
|
3080
|
+
className: "StreamingJob"
|
|
2992
3081
|
}
|
|
2993
|
-
}
|
|
2994
|
-
|
|
2995
|
-
|
|
3082
|
+
}
|
|
3083
|
+
}
|
|
3084
|
+
}
|
|
3085
|
+
};
|
|
3086
|
+
|
|
3087
|
+
export const QueryTestingResult: msRest.CompositeMapper = {
|
|
3088
|
+
serializedName: "QueryTestingResult",
|
|
3089
|
+
type: {
|
|
3090
|
+
name: "Composite",
|
|
3091
|
+
className: "QueryTestingResult",
|
|
3092
|
+
modelProperties: {
|
|
3093
|
+
...ErrorModel.type.modelProperties,
|
|
3094
|
+
status: {
|
|
3095
|
+
serializedName: "status",
|
|
2996
3096
|
type: {
|
|
2997
3097
|
name: "String"
|
|
2998
3098
|
}
|
|
2999
3099
|
},
|
|
3000
|
-
|
|
3001
|
-
readOnly: true,
|
|
3002
|
-
serializedName: "capacityAllocated",
|
|
3003
|
-
type: {
|
|
3004
|
-
name: "Number"
|
|
3005
|
-
}
|
|
3006
|
-
},
|
|
3007
|
-
capacityAssigned: {
|
|
3100
|
+
outputUri: {
|
|
3008
3101
|
readOnly: true,
|
|
3009
|
-
serializedName: "
|
|
3102
|
+
serializedName: "outputUri",
|
|
3010
3103
|
type: {
|
|
3011
|
-
name: "
|
|
3104
|
+
name: "String"
|
|
3012
3105
|
}
|
|
3013
3106
|
}
|
|
3014
3107
|
}
|
|
3015
3108
|
}
|
|
3016
3109
|
};
|
|
3017
3110
|
|
|
3018
|
-
export const
|
|
3019
|
-
serializedName: "
|
|
3111
|
+
export const QueryInput: msRest.CompositeMapper = {
|
|
3112
|
+
serializedName: "QueryInput",
|
|
3020
3113
|
type: {
|
|
3021
3114
|
name: "Composite",
|
|
3022
|
-
className: "
|
|
3115
|
+
className: "QueryInput",
|
|
3023
3116
|
modelProperties: {
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
serializedName: "
|
|
3117
|
+
name: {
|
|
3118
|
+
required: true,
|
|
3119
|
+
serializedName: "name",
|
|
3027
3120
|
type: {
|
|
3028
|
-
name: "
|
|
3029
|
-
className: "ClusterSku"
|
|
3121
|
+
name: "String"
|
|
3030
3122
|
}
|
|
3031
3123
|
},
|
|
3032
|
-
|
|
3033
|
-
|
|
3034
|
-
serializedName: "
|
|
3124
|
+
type: {
|
|
3125
|
+
required: true,
|
|
3126
|
+
serializedName: "type",
|
|
3127
|
+
type: {
|
|
3128
|
+
name: "String"
|
|
3129
|
+
}
|
|
3130
|
+
}
|
|
3131
|
+
}
|
|
3132
|
+
}
|
|
3133
|
+
};
|
|
3134
|
+
|
|
3135
|
+
export const QueryFunction: msRest.CompositeMapper = {
|
|
3136
|
+
serializedName: "QueryFunction",
|
|
3137
|
+
type: {
|
|
3138
|
+
name: "Composite",
|
|
3139
|
+
className: "QueryFunction",
|
|
3140
|
+
modelProperties: {
|
|
3141
|
+
name: {
|
|
3142
|
+
required: true,
|
|
3143
|
+
serializedName: "name",
|
|
3035
3144
|
type: {
|
|
3036
3145
|
name: "String"
|
|
3037
3146
|
}
|
|
3038
3147
|
},
|
|
3039
|
-
|
|
3040
|
-
|
|
3148
|
+
type: {
|
|
3149
|
+
required: true,
|
|
3150
|
+
serializedName: "type",
|
|
3151
|
+
type: {
|
|
3152
|
+
name: "String"
|
|
3153
|
+
}
|
|
3154
|
+
},
|
|
3155
|
+
bindingType: {
|
|
3156
|
+
required: true,
|
|
3157
|
+
serializedName: "bindingType",
|
|
3158
|
+
type: {
|
|
3159
|
+
name: "String"
|
|
3160
|
+
}
|
|
3161
|
+
},
|
|
3162
|
+
inputs: {
|
|
3163
|
+
required: true,
|
|
3164
|
+
serializedName: "inputs",
|
|
3165
|
+
type: {
|
|
3166
|
+
name: "Sequence",
|
|
3167
|
+
element: {
|
|
3168
|
+
type: {
|
|
3169
|
+
name: "Composite",
|
|
3170
|
+
className: "FunctionInput"
|
|
3171
|
+
}
|
|
3172
|
+
}
|
|
3173
|
+
}
|
|
3174
|
+
},
|
|
3175
|
+
output: {
|
|
3176
|
+
required: true,
|
|
3177
|
+
serializedName: "output",
|
|
3041
3178
|
type: {
|
|
3042
3179
|
name: "Composite",
|
|
3043
|
-
className: "
|
|
3180
|
+
className: "FunctionOutput"
|
|
3044
3181
|
}
|
|
3045
3182
|
}
|
|
3046
3183
|
}
|
|
3047
3184
|
}
|
|
3048
3185
|
};
|
|
3049
3186
|
|
|
3050
|
-
export const
|
|
3051
|
-
serializedName: "
|
|
3187
|
+
export const CompileQuery: msRest.CompositeMapper = {
|
|
3188
|
+
serializedName: "CompileQuery",
|
|
3052
3189
|
type: {
|
|
3053
3190
|
name: "Composite",
|
|
3054
|
-
className: "
|
|
3191
|
+
className: "CompileQuery",
|
|
3055
3192
|
modelProperties: {
|
|
3056
|
-
|
|
3193
|
+
query: {
|
|
3194
|
+
required: true,
|
|
3195
|
+
serializedName: "query",
|
|
3196
|
+
type: {
|
|
3197
|
+
name: "String"
|
|
3198
|
+
}
|
|
3199
|
+
},
|
|
3200
|
+
inputs: {
|
|
3201
|
+
serializedName: "inputs",
|
|
3202
|
+
type: {
|
|
3203
|
+
name: "Sequence",
|
|
3204
|
+
element: {
|
|
3205
|
+
type: {
|
|
3206
|
+
name: "Composite",
|
|
3207
|
+
className: "QueryInput"
|
|
3208
|
+
}
|
|
3209
|
+
}
|
|
3210
|
+
}
|
|
3211
|
+
},
|
|
3212
|
+
functions: {
|
|
3213
|
+
serializedName: "functions",
|
|
3214
|
+
type: {
|
|
3215
|
+
name: "Sequence",
|
|
3216
|
+
element: {
|
|
3217
|
+
type: {
|
|
3218
|
+
name: "Composite",
|
|
3219
|
+
className: "QueryFunction"
|
|
3220
|
+
}
|
|
3221
|
+
}
|
|
3222
|
+
}
|
|
3223
|
+
},
|
|
3224
|
+
jobType: {
|
|
3225
|
+
required: true,
|
|
3226
|
+
serializedName: "jobType",
|
|
3227
|
+
type: {
|
|
3228
|
+
name: "String"
|
|
3229
|
+
}
|
|
3230
|
+
},
|
|
3231
|
+
compatibilityLevel: {
|
|
3232
|
+
serializedName: "compatibilityLevel",
|
|
3233
|
+
type: {
|
|
3234
|
+
name: "String"
|
|
3235
|
+
}
|
|
3236
|
+
}
|
|
3237
|
+
}
|
|
3238
|
+
}
|
|
3239
|
+
};
|
|
3240
|
+
|
|
3241
|
+
export const QueryCompilationError: msRest.CompositeMapper = {
|
|
3242
|
+
serializedName: "QueryCompilationError",
|
|
3243
|
+
type: {
|
|
3244
|
+
name: "Composite",
|
|
3245
|
+
className: "QueryCompilationError",
|
|
3246
|
+
modelProperties: {
|
|
3247
|
+
message: {
|
|
3057
3248
|
readOnly: true,
|
|
3058
|
-
serializedName: "
|
|
3249
|
+
serializedName: "message",
|
|
3059
3250
|
type: {
|
|
3060
3251
|
name: "String"
|
|
3061
3252
|
}
|
|
3062
3253
|
},
|
|
3063
|
-
|
|
3254
|
+
startLine: {
|
|
3064
3255
|
readOnly: true,
|
|
3065
|
-
serializedName: "
|
|
3256
|
+
serializedName: "startLine",
|
|
3066
3257
|
type: {
|
|
3067
3258
|
name: "Number"
|
|
3068
3259
|
}
|
|
3069
3260
|
},
|
|
3070
|
-
|
|
3071
|
-
|
|
3261
|
+
startColumn: {
|
|
3262
|
+
readOnly: true,
|
|
3263
|
+
serializedName: "startColumn",
|
|
3072
3264
|
type: {
|
|
3073
|
-
name: "
|
|
3265
|
+
name: "Number"
|
|
3266
|
+
}
|
|
3267
|
+
},
|
|
3268
|
+
endLine: {
|
|
3269
|
+
readOnly: true,
|
|
3270
|
+
serializedName: "endLine",
|
|
3271
|
+
type: {
|
|
3272
|
+
name: "Number"
|
|
3273
|
+
}
|
|
3274
|
+
},
|
|
3275
|
+
endColumn: {
|
|
3276
|
+
readOnly: true,
|
|
3277
|
+
serializedName: "endColumn",
|
|
3278
|
+
type: {
|
|
3279
|
+
name: "Number"
|
|
3280
|
+
}
|
|
3281
|
+
},
|
|
3282
|
+
isGlobal: {
|
|
3283
|
+
readOnly: true,
|
|
3284
|
+
serializedName: "isGlobal",
|
|
3285
|
+
type: {
|
|
3286
|
+
name: "Boolean"
|
|
3074
3287
|
}
|
|
3075
3288
|
}
|
|
3076
3289
|
}
|
|
3077
3290
|
}
|
|
3078
3291
|
};
|
|
3079
3292
|
|
|
3080
|
-
export const
|
|
3081
|
-
serializedName: "
|
|
3293
|
+
export const QueryCompilationResult: msRest.CompositeMapper = {
|
|
3294
|
+
serializedName: "QueryCompilationResult",
|
|
3082
3295
|
type: {
|
|
3083
3296
|
name: "Composite",
|
|
3084
|
-
className: "
|
|
3297
|
+
className: "QueryCompilationResult",
|
|
3085
3298
|
modelProperties: {
|
|
3086
|
-
|
|
3087
|
-
|
|
3299
|
+
errors: {
|
|
3300
|
+
readOnly: true,
|
|
3301
|
+
serializedName: "errors",
|
|
3088
3302
|
type: {
|
|
3089
|
-
name: "
|
|
3303
|
+
name: "Sequence",
|
|
3304
|
+
element: {
|
|
3305
|
+
type: {
|
|
3306
|
+
name: "Composite",
|
|
3307
|
+
className: "QueryCompilationError"
|
|
3308
|
+
}
|
|
3309
|
+
}
|
|
3090
3310
|
}
|
|
3091
3311
|
},
|
|
3092
|
-
|
|
3093
|
-
|
|
3312
|
+
warnings: {
|
|
3313
|
+
readOnly: true,
|
|
3314
|
+
serializedName: "warnings",
|
|
3094
3315
|
type: {
|
|
3095
|
-
name: "
|
|
3316
|
+
name: "Sequence",
|
|
3317
|
+
element: {
|
|
3318
|
+
type: {
|
|
3319
|
+
name: "String"
|
|
3320
|
+
}
|
|
3321
|
+
}
|
|
3096
3322
|
}
|
|
3097
3323
|
},
|
|
3098
|
-
|
|
3099
|
-
|
|
3324
|
+
inputs: {
|
|
3325
|
+
readOnly: true,
|
|
3326
|
+
serializedName: "inputs",
|
|
3100
3327
|
type: {
|
|
3101
|
-
name: "
|
|
3328
|
+
name: "Sequence",
|
|
3329
|
+
element: {
|
|
3330
|
+
type: {
|
|
3331
|
+
name: "String"
|
|
3332
|
+
}
|
|
3333
|
+
}
|
|
3334
|
+
}
|
|
3335
|
+
},
|
|
3336
|
+
outputs: {
|
|
3337
|
+
readOnly: true,
|
|
3338
|
+
serializedName: "outputs",
|
|
3339
|
+
type: {
|
|
3340
|
+
name: "Sequence",
|
|
3341
|
+
element: {
|
|
3342
|
+
type: {
|
|
3343
|
+
name: "String"
|
|
3344
|
+
}
|
|
3345
|
+
}
|
|
3346
|
+
}
|
|
3347
|
+
},
|
|
3348
|
+
functions: {
|
|
3349
|
+
readOnly: true,
|
|
3350
|
+
serializedName: "functions",
|
|
3351
|
+
type: {
|
|
3352
|
+
name: "Sequence",
|
|
3353
|
+
element: {
|
|
3354
|
+
type: {
|
|
3355
|
+
name: "String"
|
|
3356
|
+
}
|
|
3357
|
+
}
|
|
3102
3358
|
}
|
|
3103
3359
|
}
|
|
3104
3360
|
}
|
|
3105
3361
|
}
|
|
3106
3362
|
};
|
|
3107
3363
|
|
|
3108
|
-
export const
|
|
3109
|
-
serializedName: "
|
|
3364
|
+
export const SampleInput: msRest.CompositeMapper = {
|
|
3365
|
+
serializedName: "SampleInput",
|
|
3110
3366
|
type: {
|
|
3111
3367
|
name: "Composite",
|
|
3112
|
-
className: "
|
|
3368
|
+
className: "SampleInput",
|
|
3113
3369
|
modelProperties: {
|
|
3114
|
-
|
|
3115
|
-
serializedName: "
|
|
3370
|
+
input: {
|
|
3371
|
+
serializedName: "input",
|
|
3372
|
+
type: {
|
|
3373
|
+
name: "Composite",
|
|
3374
|
+
className: "Input"
|
|
3375
|
+
}
|
|
3376
|
+
},
|
|
3377
|
+
compatibilityLevel: {
|
|
3378
|
+
serializedName: "compatibilityLevel",
|
|
3116
3379
|
type: {
|
|
3117
3380
|
name: "String"
|
|
3118
3381
|
}
|
|
3119
3382
|
},
|
|
3120
|
-
|
|
3121
|
-
serializedName: "
|
|
3383
|
+
eventsUri: {
|
|
3384
|
+
serializedName: "eventsUri",
|
|
3122
3385
|
type: {
|
|
3123
3386
|
name: "String"
|
|
3124
3387
|
}
|
|
3125
3388
|
},
|
|
3126
|
-
|
|
3127
|
-
serializedName: "
|
|
3389
|
+
dataLocale: {
|
|
3390
|
+
serializedName: "dataLocale",
|
|
3391
|
+
type: {
|
|
3392
|
+
name: "String"
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
}
|
|
3396
|
+
}
|
|
3397
|
+
};
|
|
3398
|
+
|
|
3399
|
+
export const SampleInputResult: msRest.CompositeMapper = {
|
|
3400
|
+
serializedName: "SampleInputResult",
|
|
3401
|
+
type: {
|
|
3402
|
+
name: "Composite",
|
|
3403
|
+
className: "SampleInputResult",
|
|
3404
|
+
modelProperties: {
|
|
3405
|
+
...ErrorModel.type.modelProperties,
|
|
3406
|
+
status: {
|
|
3407
|
+
serializedName: "status",
|
|
3128
3408
|
type: {
|
|
3129
3409
|
name: "String"
|
|
3130
3410
|
}
|
|
3131
3411
|
},
|
|
3132
|
-
|
|
3133
|
-
|
|
3412
|
+
diagnostics: {
|
|
3413
|
+
readOnly: true,
|
|
3414
|
+
serializedName: "diagnostics",
|
|
3134
3415
|
type: {
|
|
3135
3416
|
name: "Sequence",
|
|
3136
3417
|
element: {
|
|
3137
3418
|
type: {
|
|
3138
|
-
name: "
|
|
3139
|
-
className: "ErrorDetails"
|
|
3419
|
+
name: "String"
|
|
3140
3420
|
}
|
|
3141
3421
|
}
|
|
3142
3422
|
}
|
|
3423
|
+
},
|
|
3424
|
+
eventsDownloadUrl: {
|
|
3425
|
+
readOnly: true,
|
|
3426
|
+
serializedName: "eventsDownloadUrl",
|
|
3427
|
+
type: {
|
|
3428
|
+
name: "String"
|
|
3429
|
+
}
|
|
3430
|
+
},
|
|
3431
|
+
lastArrivalTime: {
|
|
3432
|
+
readOnly: true,
|
|
3433
|
+
serializedName: "lastArrivalTime",
|
|
3434
|
+
type: {
|
|
3435
|
+
name: "String"
|
|
3436
|
+
}
|
|
3143
3437
|
}
|
|
3144
3438
|
}
|
|
3145
3439
|
}
|
|
3146
3440
|
};
|
|
3147
3441
|
|
|
3148
|
-
export const
|
|
3149
|
-
serializedName: "
|
|
3442
|
+
export const TestInput: msRest.CompositeMapper = {
|
|
3443
|
+
serializedName: "TestInput",
|
|
3150
3444
|
type: {
|
|
3151
3445
|
name: "Composite",
|
|
3152
|
-
className: "
|
|
3446
|
+
className: "TestInput",
|
|
3153
3447
|
modelProperties: {
|
|
3154
|
-
|
|
3155
|
-
|
|
3448
|
+
input: {
|
|
3449
|
+
required: true,
|
|
3450
|
+
serializedName: "input",
|
|
3156
3451
|
type: {
|
|
3157
3452
|
name: "Composite",
|
|
3158
|
-
className: "
|
|
3453
|
+
className: "Input"
|
|
3454
|
+
}
|
|
3455
|
+
}
|
|
3456
|
+
}
|
|
3457
|
+
}
|
|
3458
|
+
};
|
|
3459
|
+
|
|
3460
|
+
export const TestOutput: msRest.CompositeMapper = {
|
|
3461
|
+
serializedName: "TestOutput",
|
|
3462
|
+
type: {
|
|
3463
|
+
name: "Composite",
|
|
3464
|
+
className: "TestOutput",
|
|
3465
|
+
modelProperties: {
|
|
3466
|
+
output: {
|
|
3467
|
+
required: true,
|
|
3468
|
+
serializedName: "output",
|
|
3469
|
+
type: {
|
|
3470
|
+
name: "Composite",
|
|
3471
|
+
className: "Output"
|
|
3472
|
+
}
|
|
3473
|
+
}
|
|
3474
|
+
}
|
|
3475
|
+
}
|
|
3476
|
+
};
|
|
3477
|
+
|
|
3478
|
+
export const TestDatasourceResult: msRest.CompositeMapper = {
|
|
3479
|
+
serializedName: "TestDatasourceResult",
|
|
3480
|
+
type: {
|
|
3481
|
+
name: "Composite",
|
|
3482
|
+
className: "TestDatasourceResult",
|
|
3483
|
+
modelProperties: {
|
|
3484
|
+
...ErrorModel.type.modelProperties,
|
|
3485
|
+
status: {
|
|
3486
|
+
serializedName: "status",
|
|
3487
|
+
type: {
|
|
3488
|
+
name: "String"
|
|
3489
|
+
}
|
|
3490
|
+
}
|
|
3491
|
+
}
|
|
3492
|
+
}
|
|
3493
|
+
};
|
|
3494
|
+
|
|
3495
|
+
export const OperationDisplay: msRest.CompositeMapper = {
|
|
3496
|
+
serializedName: "Operation_display",
|
|
3497
|
+
type: {
|
|
3498
|
+
name: "Composite",
|
|
3499
|
+
className: "OperationDisplay",
|
|
3500
|
+
modelProperties: {
|
|
3501
|
+
provider: {
|
|
3502
|
+
readOnly: true,
|
|
3503
|
+
serializedName: "provider",
|
|
3504
|
+
type: {
|
|
3505
|
+
name: "String"
|
|
3506
|
+
}
|
|
3507
|
+
},
|
|
3508
|
+
resource: {
|
|
3509
|
+
readOnly: true,
|
|
3510
|
+
serializedName: "resource",
|
|
3511
|
+
type: {
|
|
3512
|
+
name: "String"
|
|
3513
|
+
}
|
|
3514
|
+
},
|
|
3515
|
+
operation: {
|
|
3516
|
+
readOnly: true,
|
|
3517
|
+
serializedName: "operation",
|
|
3518
|
+
type: {
|
|
3519
|
+
name: "String"
|
|
3520
|
+
}
|
|
3521
|
+
},
|
|
3522
|
+
description: {
|
|
3523
|
+
readOnly: true,
|
|
3524
|
+
serializedName: "description",
|
|
3525
|
+
type: {
|
|
3526
|
+
name: "String"
|
|
3527
|
+
}
|
|
3528
|
+
}
|
|
3529
|
+
}
|
|
3530
|
+
}
|
|
3531
|
+
};
|
|
3532
|
+
|
|
3533
|
+
export const Operation: msRest.CompositeMapper = {
|
|
3534
|
+
serializedName: "Operation",
|
|
3535
|
+
type: {
|
|
3536
|
+
name: "Composite",
|
|
3537
|
+
className: "Operation",
|
|
3538
|
+
modelProperties: {
|
|
3539
|
+
name: {
|
|
3540
|
+
readOnly: true,
|
|
3541
|
+
serializedName: "name",
|
|
3542
|
+
type: {
|
|
3543
|
+
name: "String"
|
|
3544
|
+
}
|
|
3545
|
+
},
|
|
3546
|
+
display: {
|
|
3547
|
+
readOnly: true,
|
|
3548
|
+
serializedName: "display",
|
|
3549
|
+
type: {
|
|
3550
|
+
name: "Composite",
|
|
3551
|
+
className: "OperationDisplay"
|
|
3552
|
+
}
|
|
3553
|
+
}
|
|
3554
|
+
}
|
|
3555
|
+
}
|
|
3556
|
+
};
|
|
3557
|
+
|
|
3558
|
+
export const ClusterSku: msRest.CompositeMapper = {
|
|
3559
|
+
serializedName: "ClusterSku",
|
|
3560
|
+
type: {
|
|
3561
|
+
name: "Composite",
|
|
3562
|
+
className: "ClusterSku",
|
|
3563
|
+
modelProperties: {
|
|
3564
|
+
name: {
|
|
3565
|
+
serializedName: "name",
|
|
3566
|
+
type: {
|
|
3567
|
+
name: "String"
|
|
3568
|
+
}
|
|
3569
|
+
},
|
|
3570
|
+
capacity: {
|
|
3571
|
+
serializedName: "capacity",
|
|
3572
|
+
constraints: {
|
|
3573
|
+
InclusiveMaximum: 216,
|
|
3574
|
+
InclusiveMinimum: 36
|
|
3575
|
+
},
|
|
3576
|
+
type: {
|
|
3577
|
+
name: "Number"
|
|
3578
|
+
}
|
|
3579
|
+
}
|
|
3580
|
+
}
|
|
3581
|
+
}
|
|
3582
|
+
};
|
|
3583
|
+
|
|
3584
|
+
export const ClusterProperties: msRest.CompositeMapper = {
|
|
3585
|
+
serializedName: "ClusterProperties",
|
|
3586
|
+
type: {
|
|
3587
|
+
name: "Composite",
|
|
3588
|
+
className: "ClusterProperties",
|
|
3589
|
+
modelProperties: {
|
|
3590
|
+
createdDate: {
|
|
3591
|
+
readOnly: true,
|
|
3592
|
+
serializedName: "createdDate",
|
|
3593
|
+
type: {
|
|
3594
|
+
name: "DateTime"
|
|
3595
|
+
}
|
|
3596
|
+
},
|
|
3597
|
+
clusterId: {
|
|
3598
|
+
readOnly: true,
|
|
3599
|
+
serializedName: "clusterId",
|
|
3600
|
+
type: {
|
|
3601
|
+
name: "String"
|
|
3602
|
+
}
|
|
3603
|
+
},
|
|
3604
|
+
provisioningState: {
|
|
3605
|
+
serializedName: "provisioningState",
|
|
3606
|
+
type: {
|
|
3607
|
+
name: "String"
|
|
3608
|
+
}
|
|
3609
|
+
},
|
|
3610
|
+
capacityAllocated: {
|
|
3611
|
+
readOnly: true,
|
|
3612
|
+
serializedName: "capacityAllocated",
|
|
3613
|
+
type: {
|
|
3614
|
+
name: "Number"
|
|
3615
|
+
}
|
|
3616
|
+
},
|
|
3617
|
+
capacityAssigned: {
|
|
3618
|
+
readOnly: true,
|
|
3619
|
+
serializedName: "capacityAssigned",
|
|
3620
|
+
type: {
|
|
3621
|
+
name: "Number"
|
|
3622
|
+
}
|
|
3623
|
+
}
|
|
3624
|
+
}
|
|
3625
|
+
}
|
|
3626
|
+
};
|
|
3627
|
+
|
|
3628
|
+
export const Cluster: msRest.CompositeMapper = {
|
|
3629
|
+
serializedName: "Cluster",
|
|
3630
|
+
type: {
|
|
3631
|
+
name: "Composite",
|
|
3632
|
+
className: "Cluster",
|
|
3633
|
+
modelProperties: {
|
|
3634
|
+
...TrackedResource.type.modelProperties,
|
|
3635
|
+
sku: {
|
|
3636
|
+
serializedName: "sku",
|
|
3637
|
+
type: {
|
|
3638
|
+
name: "Composite",
|
|
3639
|
+
className: "ClusterSku"
|
|
3640
|
+
}
|
|
3641
|
+
},
|
|
3642
|
+
etag: {
|
|
3643
|
+
readOnly: true,
|
|
3644
|
+
serializedName: "etag",
|
|
3645
|
+
type: {
|
|
3646
|
+
name: "String"
|
|
3647
|
+
}
|
|
3648
|
+
},
|
|
3649
|
+
properties: {
|
|
3650
|
+
serializedName: "properties",
|
|
3651
|
+
type: {
|
|
3652
|
+
name: "Composite",
|
|
3653
|
+
className: "ClusterProperties"
|
|
3654
|
+
}
|
|
3655
|
+
}
|
|
3656
|
+
}
|
|
3657
|
+
}
|
|
3658
|
+
};
|
|
3659
|
+
|
|
3660
|
+
export const ClusterJob: msRest.CompositeMapper = {
|
|
3661
|
+
serializedName: "ClusterJob",
|
|
3662
|
+
type: {
|
|
3663
|
+
name: "Composite",
|
|
3664
|
+
className: "ClusterJob",
|
|
3665
|
+
modelProperties: {
|
|
3666
|
+
id: {
|
|
3667
|
+
readOnly: true,
|
|
3668
|
+
serializedName: "id",
|
|
3669
|
+
type: {
|
|
3670
|
+
name: "String"
|
|
3671
|
+
}
|
|
3672
|
+
},
|
|
3673
|
+
streamingUnits: {
|
|
3674
|
+
readOnly: true,
|
|
3675
|
+
serializedName: "streamingUnits",
|
|
3676
|
+
type: {
|
|
3677
|
+
name: "Number"
|
|
3678
|
+
}
|
|
3679
|
+
},
|
|
3680
|
+
jobState: {
|
|
3681
|
+
serializedName: "jobState",
|
|
3682
|
+
type: {
|
|
3683
|
+
name: "String"
|
|
3159
3684
|
}
|
|
3160
3685
|
}
|
|
3161
3686
|
}
|
|
@@ -3791,7 +4316,9 @@ export const discriminators = {
|
|
|
3791
4316
|
'StreamInputDataSource.Microsoft.ServiceBus/EventHub' : EventHubStreamInputDataSource,
|
|
3792
4317
|
'StreamInputDataSource.Microsoft.EventHub/EventHub' : EventHubV2StreamInputDataSource,
|
|
3793
4318
|
'StreamInputDataSource.Microsoft.Devices/IotHubs' : IoTHubStreamInputDataSource,
|
|
4319
|
+
'StreamInputDataSource.Raw' : RawStreamInputDataSource,
|
|
3794
4320
|
'ReferenceInputDataSource.Microsoft.Storage/Blob' : BlobReferenceInputDataSource,
|
|
4321
|
+
'ReferenceInputDataSource.Raw' : RawReferenceInputDataSource,
|
|
3795
4322
|
'Serialization.Parquet' : ParquetSerialization,
|
|
3796
4323
|
'Serialization.CustomClr' : CustomClrSerialization,
|
|
3797
4324
|
'Serialization.Csv' : CsvSerialization,
|
|
@@ -3799,6 +4326,7 @@ export const discriminators = {
|
|
|
3799
4326
|
'Serialization.Avro' : AvroSerialization,
|
|
3800
4327
|
'ReferenceInputDataSource.Microsoft.Sql/Server/Database' : AzureSqlReferenceInputDataSource,
|
|
3801
4328
|
'OutputDataSource' : OutputDataSource,
|
|
4329
|
+
'OutputDataSource.Raw' : RawOutputDatasource,
|
|
3802
4330
|
'OutputDataSource.Microsoft.Storage/Blob' : BlobOutputDataSource,
|
|
3803
4331
|
'OutputDataSource.Microsoft.Storage/Table' : AzureTableOutputDataSource,
|
|
3804
4332
|
'OutputDataSource.Microsoft.ServiceBus/EventHub' : EventHubOutputDataSource,
|