@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
|
@@ -142,7 +142,7 @@ var createOrReplaceOperationSpec = {
|
|
|
142
142
|
headersMapper: Mappers.FunctionsCreateOrReplaceHeaders
|
|
143
143
|
},
|
|
144
144
|
default: {
|
|
145
|
-
bodyMapper: Mappers.
|
|
145
|
+
bodyMapper: Mappers.ErrorModel,
|
|
146
146
|
headersMapper: Mappers.FunctionsCreateOrReplaceHeaders
|
|
147
147
|
}
|
|
148
148
|
},
|
|
@@ -174,7 +174,7 @@ var updateOperationSpec = {
|
|
|
174
174
|
headersMapper: Mappers.FunctionsUpdateHeaders
|
|
175
175
|
},
|
|
176
176
|
default: {
|
|
177
|
-
bodyMapper: Mappers.
|
|
177
|
+
bodyMapper: Mappers.ErrorModel,
|
|
178
178
|
headersMapper: Mappers.FunctionsUpdateHeaders
|
|
179
179
|
}
|
|
180
180
|
},
|
|
@@ -199,7 +199,7 @@ var deleteMethodOperationSpec = {
|
|
|
199
199
|
200: {},
|
|
200
200
|
204: {},
|
|
201
201
|
default: {
|
|
202
|
-
bodyMapper: Mappers.
|
|
202
|
+
bodyMapper: Mappers.ErrorModel
|
|
203
203
|
}
|
|
204
204
|
},
|
|
205
205
|
serializer: serializer
|
|
@@ -225,7 +225,7 @@ var getOperationSpec = {
|
|
|
225
225
|
headersMapper: Mappers.FunctionsGetHeaders
|
|
226
226
|
},
|
|
227
227
|
default: {
|
|
228
|
-
bodyMapper: Mappers.
|
|
228
|
+
bodyMapper: Mappers.ErrorModel,
|
|
229
229
|
headersMapper: Mappers.FunctionsGetHeaders
|
|
230
230
|
}
|
|
231
231
|
},
|
|
@@ -251,14 +251,14 @@ var listByStreamingJobOperationSpec = {
|
|
|
251
251
|
bodyMapper: Mappers.FunctionListResult
|
|
252
252
|
},
|
|
253
253
|
default: {
|
|
254
|
-
bodyMapper: Mappers.
|
|
254
|
+
bodyMapper: Mappers.ErrorModel
|
|
255
255
|
}
|
|
256
256
|
},
|
|
257
257
|
serializer: serializer
|
|
258
258
|
};
|
|
259
259
|
var retrieveDefaultDefinitionOperationSpec = {
|
|
260
260
|
httpMethod: "POST",
|
|
261
|
-
path: "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/
|
|
261
|
+
path: "subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.StreamAnalytics/streamingjobs/{jobName}/functions/{functionName}/retrieveDefaultDefinition",
|
|
262
262
|
urlParameters: [
|
|
263
263
|
Parameters.subscriptionId,
|
|
264
264
|
Parameters.resourceGroupName,
|
|
@@ -283,7 +283,7 @@ var retrieveDefaultDefinitionOperationSpec = {
|
|
|
283
283
|
bodyMapper: Mappers.FunctionModel
|
|
284
284
|
},
|
|
285
285
|
default: {
|
|
286
|
-
bodyMapper: Mappers.
|
|
286
|
+
bodyMapper: Mappers.ErrorModel
|
|
287
287
|
}
|
|
288
288
|
},
|
|
289
289
|
serializer: serializer
|
|
@@ -316,7 +316,7 @@ var beginTestOperationSpec = {
|
|
|
316
316
|
},
|
|
317
317
|
202: {},
|
|
318
318
|
default: {
|
|
319
|
-
bodyMapper: Mappers.
|
|
319
|
+
bodyMapper: Mappers.ErrorModel
|
|
320
320
|
}
|
|
321
321
|
},
|
|
322
322
|
serializer: serializer
|
|
@@ -340,7 +340,7 @@ var listByStreamingJobNextOperationSpec = {
|
|
|
340
340
|
bodyMapper: Mappers.FunctionListResult
|
|
341
341
|
},
|
|
342
342
|
default: {
|
|
343
|
-
bodyMapper: Mappers.
|
|
343
|
+
bodyMapper: Mappers.ErrorModel
|
|
344
344
|
}
|
|
345
345
|
},
|
|
346
346
|
serializer: serializer
|
package/esm/operations/inputs.js
CHANGED
|
@@ -132,7 +132,7 @@ var createOrReplaceOperationSpec = {
|
|
|
132
132
|
headersMapper: Mappers.InputsCreateOrReplaceHeaders
|
|
133
133
|
},
|
|
134
134
|
default: {
|
|
135
|
-
bodyMapper: Mappers.
|
|
135
|
+
bodyMapper: Mappers.ErrorModel,
|
|
136
136
|
headersMapper: Mappers.InputsCreateOrReplaceHeaders
|
|
137
137
|
}
|
|
138
138
|
},
|
|
@@ -164,7 +164,7 @@ var updateOperationSpec = {
|
|
|
164
164
|
headersMapper: Mappers.InputsUpdateHeaders
|
|
165
165
|
},
|
|
166
166
|
default: {
|
|
167
|
-
bodyMapper: Mappers.
|
|
167
|
+
bodyMapper: Mappers.ErrorModel,
|
|
168
168
|
headersMapper: Mappers.InputsUpdateHeaders
|
|
169
169
|
}
|
|
170
170
|
},
|
|
@@ -189,7 +189,7 @@ var deleteMethodOperationSpec = {
|
|
|
189
189
|
200: {},
|
|
190
190
|
204: {},
|
|
191
191
|
default: {
|
|
192
|
-
bodyMapper: Mappers.
|
|
192
|
+
bodyMapper: Mappers.ErrorModel
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
serializer: serializer
|
|
@@ -215,7 +215,7 @@ var getOperationSpec = {
|
|
|
215
215
|
headersMapper: Mappers.InputsGetHeaders
|
|
216
216
|
},
|
|
217
217
|
default: {
|
|
218
|
-
bodyMapper: Mappers.
|
|
218
|
+
bodyMapper: Mappers.ErrorModel,
|
|
219
219
|
headersMapper: Mappers.InputsGetHeaders
|
|
220
220
|
}
|
|
221
221
|
},
|
|
@@ -241,7 +241,7 @@ var listByStreamingJobOperationSpec = {
|
|
|
241
241
|
bodyMapper: Mappers.InputListResult
|
|
242
242
|
},
|
|
243
243
|
default: {
|
|
244
|
-
bodyMapper: Mappers.
|
|
244
|
+
bodyMapper: Mappers.ErrorModel
|
|
245
245
|
}
|
|
246
246
|
},
|
|
247
247
|
serializer: serializer
|
|
@@ -274,7 +274,7 @@ var beginTestOperationSpec = {
|
|
|
274
274
|
},
|
|
275
275
|
202: {},
|
|
276
276
|
default: {
|
|
277
|
-
bodyMapper: Mappers.
|
|
277
|
+
bodyMapper: Mappers.ErrorModel
|
|
278
278
|
}
|
|
279
279
|
},
|
|
280
280
|
serializer: serializer
|
|
@@ -298,7 +298,7 @@ var listByStreamingJobNextOperationSpec = {
|
|
|
298
298
|
bodyMapper: Mappers.InputListResult
|
|
299
299
|
},
|
|
300
300
|
default: {
|
|
301
|
-
bodyMapper: Mappers.
|
|
301
|
+
bodyMapper: Mappers.ErrorModel
|
|
302
302
|
}
|
|
303
303
|
},
|
|
304
304
|
serializer: serializer
|
|
@@ -48,7 +48,7 @@ var listOperationSpec = {
|
|
|
48
48
|
bodyMapper: Mappers.OperationListResult
|
|
49
49
|
},
|
|
50
50
|
default: {
|
|
51
|
-
bodyMapper: Mappers.
|
|
51
|
+
bodyMapper: Mappers.ErrorModel
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
serializer: serializer
|
|
@@ -71,7 +71,7 @@ var listNextOperationSpec = {
|
|
|
71
71
|
bodyMapper: Mappers.OperationListResult
|
|
72
72
|
},
|
|
73
73
|
default: {
|
|
74
|
-
bodyMapper: Mappers.
|
|
74
|
+
bodyMapper: Mappers.ErrorModel
|
|
75
75
|
}
|
|
76
76
|
},
|
|
77
77
|
serializer: serializer
|
|
@@ -132,7 +132,7 @@ var createOrReplaceOperationSpec = {
|
|
|
132
132
|
headersMapper: Mappers.OutputsCreateOrReplaceHeaders
|
|
133
133
|
},
|
|
134
134
|
default: {
|
|
135
|
-
bodyMapper: Mappers.
|
|
135
|
+
bodyMapper: Mappers.ErrorModel,
|
|
136
136
|
headersMapper: Mappers.OutputsCreateOrReplaceHeaders
|
|
137
137
|
}
|
|
138
138
|
},
|
|
@@ -164,7 +164,7 @@ var updateOperationSpec = {
|
|
|
164
164
|
headersMapper: Mappers.OutputsUpdateHeaders
|
|
165
165
|
},
|
|
166
166
|
default: {
|
|
167
|
-
bodyMapper: Mappers.
|
|
167
|
+
bodyMapper: Mappers.ErrorModel,
|
|
168
168
|
headersMapper: Mappers.OutputsUpdateHeaders
|
|
169
169
|
}
|
|
170
170
|
},
|
|
@@ -189,7 +189,7 @@ var deleteMethodOperationSpec = {
|
|
|
189
189
|
200: {},
|
|
190
190
|
204: {},
|
|
191
191
|
default: {
|
|
192
|
-
bodyMapper: Mappers.
|
|
192
|
+
bodyMapper: Mappers.ErrorModel
|
|
193
193
|
}
|
|
194
194
|
},
|
|
195
195
|
serializer: serializer
|
|
@@ -215,7 +215,7 @@ var getOperationSpec = {
|
|
|
215
215
|
headersMapper: Mappers.OutputsGetHeaders
|
|
216
216
|
},
|
|
217
217
|
default: {
|
|
218
|
-
bodyMapper: Mappers.
|
|
218
|
+
bodyMapper: Mappers.ErrorModel,
|
|
219
219
|
headersMapper: Mappers.OutputsGetHeaders
|
|
220
220
|
}
|
|
221
221
|
},
|
|
@@ -241,7 +241,7 @@ var listByStreamingJobOperationSpec = {
|
|
|
241
241
|
bodyMapper: Mappers.OutputListResult
|
|
242
242
|
},
|
|
243
243
|
default: {
|
|
244
|
-
bodyMapper: Mappers.
|
|
244
|
+
bodyMapper: Mappers.ErrorModel
|
|
245
245
|
}
|
|
246
246
|
},
|
|
247
247
|
serializer: serializer
|
|
@@ -274,7 +274,7 @@ var beginTestOperationSpec = {
|
|
|
274
274
|
},
|
|
275
275
|
202: {},
|
|
276
276
|
default: {
|
|
277
|
-
bodyMapper: Mappers.
|
|
277
|
+
bodyMapper: Mappers.ErrorModel
|
|
278
278
|
}
|
|
279
279
|
},
|
|
280
280
|
serializer: serializer
|
|
@@ -298,7 +298,7 @@ var listByStreamingJobNextOperationSpec = {
|
|
|
298
298
|
bodyMapper: Mappers.OutputListResult
|
|
299
299
|
},
|
|
300
300
|
default: {
|
|
301
|
-
bodyMapper: Mappers.
|
|
301
|
+
bodyMapper: Mappers.ErrorModel
|
|
302
302
|
}
|
|
303
303
|
},
|
|
304
304
|
serializer: serializer
|
|
@@ -196,7 +196,7 @@ var updateOperationSpec = {
|
|
|
196
196
|
headersMapper: Mappers.StreamingJobsUpdateHeaders
|
|
197
197
|
},
|
|
198
198
|
default: {
|
|
199
|
-
bodyMapper: Mappers.
|
|
199
|
+
bodyMapper: Mappers.ErrorModel,
|
|
200
200
|
headersMapper: Mappers.StreamingJobsUpdateHeaders
|
|
201
201
|
}
|
|
202
202
|
},
|
|
@@ -223,7 +223,7 @@ var getOperationSpec = {
|
|
|
223
223
|
headersMapper: Mappers.StreamingJobsGetHeaders
|
|
224
224
|
},
|
|
225
225
|
default: {
|
|
226
|
-
bodyMapper: Mappers.
|
|
226
|
+
bodyMapper: Mappers.ErrorModel,
|
|
227
227
|
headersMapper: Mappers.StreamingJobsGetHeaders
|
|
228
228
|
}
|
|
229
229
|
},
|
|
@@ -248,7 +248,7 @@ var listByResourceGroupOperationSpec = {
|
|
|
248
248
|
bodyMapper: Mappers.StreamingJobListResult
|
|
249
249
|
},
|
|
250
250
|
default: {
|
|
251
|
-
bodyMapper: Mappers.
|
|
251
|
+
bodyMapper: Mappers.ErrorModel
|
|
252
252
|
}
|
|
253
253
|
},
|
|
254
254
|
serializer: serializer
|
|
@@ -271,7 +271,7 @@ var listOperationSpec = {
|
|
|
271
271
|
bodyMapper: Mappers.StreamingJobListResult
|
|
272
272
|
},
|
|
273
273
|
default: {
|
|
274
|
-
bodyMapper: Mappers.
|
|
274
|
+
bodyMapper: Mappers.ErrorModel
|
|
275
275
|
}
|
|
276
276
|
},
|
|
277
277
|
serializer: serializer
|
|
@@ -306,7 +306,7 @@ var beginCreateOrReplaceOperationSpec = {
|
|
|
306
306
|
headersMapper: Mappers.StreamingJobsCreateOrReplaceHeaders
|
|
307
307
|
},
|
|
308
308
|
default: {
|
|
309
|
-
bodyMapper: Mappers.
|
|
309
|
+
bodyMapper: Mappers.ErrorModel,
|
|
310
310
|
headersMapper: Mappers.StreamingJobsCreateOrReplaceHeaders
|
|
311
311
|
}
|
|
312
312
|
},
|
|
@@ -331,7 +331,7 @@ var beginDeleteMethodOperationSpec = {
|
|
|
331
331
|
202: {},
|
|
332
332
|
204: {},
|
|
333
333
|
default: {
|
|
334
|
-
bodyMapper: Mappers.
|
|
334
|
+
bodyMapper: Mappers.ErrorModel
|
|
335
335
|
}
|
|
336
336
|
},
|
|
337
337
|
serializer: serializer
|
|
@@ -361,7 +361,7 @@ var beginStartOperationSpec = {
|
|
|
361
361
|
200: {},
|
|
362
362
|
202: {},
|
|
363
363
|
default: {
|
|
364
|
-
bodyMapper: Mappers.
|
|
364
|
+
bodyMapper: Mappers.ErrorModel
|
|
365
365
|
}
|
|
366
366
|
},
|
|
367
367
|
serializer: serializer
|
|
@@ -384,7 +384,7 @@ var beginStopOperationSpec = {
|
|
|
384
384
|
200: {},
|
|
385
385
|
202: {},
|
|
386
386
|
default: {
|
|
387
|
-
bodyMapper: Mappers.
|
|
387
|
+
bodyMapper: Mappers.ErrorModel
|
|
388
388
|
}
|
|
389
389
|
},
|
|
390
390
|
serializer: serializer
|
|
@@ -408,7 +408,7 @@ var listByResourceGroupNextOperationSpec = {
|
|
|
408
408
|
bodyMapper: Mappers.StreamingJobListResult
|
|
409
409
|
},
|
|
410
410
|
default: {
|
|
411
|
-
bodyMapper: Mappers.
|
|
411
|
+
bodyMapper: Mappers.ErrorModel
|
|
412
412
|
}
|
|
413
413
|
},
|
|
414
414
|
serializer: serializer
|
|
@@ -432,7 +432,7 @@ var listNextOperationSpec = {
|
|
|
432
432
|
bodyMapper: Mappers.StreamingJobListResult
|
|
433
433
|
},
|
|
434
434
|
default: {
|
|
435
|
-
bodyMapper: Mappers.
|
|
435
|
+
bodyMapper: Mappers.ErrorModel
|
|
436
436
|
}
|
|
437
437
|
},
|
|
438
438
|
serializer: serializer
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
+
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
2
3
|
import * as Models from "../models";
|
|
3
4
|
import { StreamAnalyticsManagementClientContext } from "../streamAnalyticsManagementClientContext";
|
|
4
5
|
/** Class representing a Subscriptions. */
|
|
@@ -11,27 +12,127 @@ export declare class Subscriptions {
|
|
|
11
12
|
constructor(client: StreamAnalyticsManagementClientContext);
|
|
12
13
|
/**
|
|
13
14
|
* Retrieves the subscription's current quota information in a particular region.
|
|
14
|
-
* @param location The region
|
|
15
|
-
*
|
|
16
|
-
* https://azure.microsoft.com/en-us/regions/
|
|
15
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
16
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
17
17
|
* @param [options] The optional parameters
|
|
18
18
|
* @returns Promise<Models.SubscriptionsListQuotasResponse>
|
|
19
19
|
*/
|
|
20
20
|
listQuotas(location: string, options?: msRest.RequestOptionsBase): Promise<Models.SubscriptionsListQuotasResponse>;
|
|
21
21
|
/**
|
|
22
|
-
* @param location The region
|
|
23
|
-
*
|
|
24
|
-
* https://azure.microsoft.com/en-us/regions/
|
|
22
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
23
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
25
24
|
* @param callback The callback
|
|
26
25
|
*/
|
|
27
26
|
listQuotas(location: string, callback: msRest.ServiceCallback<Models.SubscriptionQuotasListResult>): void;
|
|
28
27
|
/**
|
|
29
|
-
* @param location The region
|
|
30
|
-
*
|
|
31
|
-
* https://azure.microsoft.com/en-us/regions/
|
|
28
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
29
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
32
30
|
* @param options The optional parameters
|
|
33
31
|
* @param callback The callback
|
|
34
32
|
*/
|
|
35
33
|
listQuotas(location: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.SubscriptionQuotasListResult>): void;
|
|
34
|
+
/**
|
|
35
|
+
* Test the Stream Analytics query on a sample input.
|
|
36
|
+
* @param testQuery The query testing object that defines the input, output, and transformation for
|
|
37
|
+
* the query testing.
|
|
38
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
39
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
40
|
+
* @param [options] The optional parameters
|
|
41
|
+
* @returns Promise<Models.SubscriptionsTestQueryMethodResponse>
|
|
42
|
+
*/
|
|
43
|
+
testQueryMethod(testQuery: Models.TestQuery, location: string, options?: msRest.RequestOptionsBase): Promise<Models.SubscriptionsTestQueryMethodResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* Compile the Stream Analytics query.
|
|
46
|
+
* @param compileQuery The query compilation object which defines the input, output, and
|
|
47
|
+
* transformation for the query compilation.
|
|
48
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
49
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
50
|
+
* @param [options] The optional parameters
|
|
51
|
+
* @returns Promise<Models.SubscriptionsCompileQueryMethodResponse>
|
|
52
|
+
*/
|
|
53
|
+
compileQueryMethod(compileQuery: Models.CompileQuery, location: string, options?: msRest.RequestOptionsBase): Promise<Models.SubscriptionsCompileQueryMethodResponse>;
|
|
54
|
+
/**
|
|
55
|
+
* @param compileQuery The query compilation object which defines the input, output, and
|
|
56
|
+
* transformation for the query compilation.
|
|
57
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
58
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
59
|
+
* @param callback The callback
|
|
60
|
+
*/
|
|
61
|
+
compileQueryMethod(compileQuery: Models.CompileQuery, location: string, callback: msRest.ServiceCallback<Models.QueryCompilationResult>): void;
|
|
62
|
+
/**
|
|
63
|
+
* @param compileQuery The query compilation object which defines the input, output, and
|
|
64
|
+
* transformation for the query compilation.
|
|
65
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
66
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
67
|
+
* @param options The optional parameters
|
|
68
|
+
* @param callback The callback
|
|
69
|
+
*/
|
|
70
|
+
compileQueryMethod(compileQuery: Models.CompileQuery, location: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.QueryCompilationResult>): void;
|
|
71
|
+
/**
|
|
72
|
+
* Sample the Stream Analytics input data.
|
|
73
|
+
* @param sampleInput Defines the necessary parameters for sampling the Stream Analytics input
|
|
74
|
+
* data.
|
|
75
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
76
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
77
|
+
* @param [options] The optional parameters
|
|
78
|
+
* @returns Promise<Models.SubscriptionsSampleInputMethodResponse>
|
|
79
|
+
*/
|
|
80
|
+
sampleInputMethod(sampleInput: Models.SampleInput, location: string, options?: msRest.RequestOptionsBase): Promise<Models.SubscriptionsSampleInputMethodResponse>;
|
|
81
|
+
/**
|
|
82
|
+
* Test the Stream Analytics input.
|
|
83
|
+
* @param testInput Defines the necessary parameters for testing the Stream Analytics input.
|
|
84
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
85
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
86
|
+
* @param [options] The optional parameters
|
|
87
|
+
* @returns Promise<Models.SubscriptionsTestInputMethodResponse>
|
|
88
|
+
*/
|
|
89
|
+
testInputMethod(testInput: Models.TestInput, location: string, options?: msRest.RequestOptionsBase): Promise<Models.SubscriptionsTestInputMethodResponse>;
|
|
90
|
+
/**
|
|
91
|
+
* Test the Stream Analytics output.
|
|
92
|
+
* @param testOutput Defines the necessary parameters for testing the Stream Analytics output.
|
|
93
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
94
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
95
|
+
* @param [options] The optional parameters
|
|
96
|
+
* @returns Promise<Models.SubscriptionsTestOutputMethodResponse>
|
|
97
|
+
*/
|
|
98
|
+
testOutputMethod(testOutput: Models.TestOutput, location: string, options?: msRest.RequestOptionsBase): Promise<Models.SubscriptionsTestOutputMethodResponse>;
|
|
99
|
+
/**
|
|
100
|
+
* Test the Stream Analytics query on a sample input.
|
|
101
|
+
* @param testQuery The query testing object that defines the input, output, and transformation for
|
|
102
|
+
* the query testing.
|
|
103
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
104
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
105
|
+
* @param [options] The optional parameters
|
|
106
|
+
* @returns Promise<msRestAzure.LROPoller>
|
|
107
|
+
*/
|
|
108
|
+
beginTestQueryMethod(testQuery: Models.TestQuery, location: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
109
|
+
/**
|
|
110
|
+
* Sample the Stream Analytics input data.
|
|
111
|
+
* @param sampleInput Defines the necessary parameters for sampling the Stream Analytics input
|
|
112
|
+
* data.
|
|
113
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
114
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
115
|
+
* @param [options] The optional parameters
|
|
116
|
+
* @returns Promise<msRestAzure.LROPoller>
|
|
117
|
+
*/
|
|
118
|
+
beginSampleInputMethod(sampleInput: Models.SampleInput, location: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
119
|
+
/**
|
|
120
|
+
* Test the Stream Analytics input.
|
|
121
|
+
* @param testInput Defines the necessary parameters for testing the Stream Analytics input.
|
|
122
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
123
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
124
|
+
* @param [options] The optional parameters
|
|
125
|
+
* @returns Promise<msRestAzure.LROPoller>
|
|
126
|
+
*/
|
|
127
|
+
beginTestInputMethod(testInput: Models.TestInput, location: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
128
|
+
/**
|
|
129
|
+
* Test the Stream Analytics output.
|
|
130
|
+
* @param testOutput Defines the necessary parameters for testing the Stream Analytics output.
|
|
131
|
+
* @param location The region to which the request is sent. You can find out which regions Azure
|
|
132
|
+
* Stream Analytics is supported in here: https://azure.microsoft.com/en-us/regions/
|
|
133
|
+
* @param [options] The optional parameters
|
|
134
|
+
* @returns Promise<msRestAzure.LROPoller>
|
|
135
|
+
*/
|
|
136
|
+
beginTestOutputMethod(testOutput: Models.TestOutput, location: string, options?: msRest.RequestOptionsBase): Promise<msRestAzure.LROPoller>;
|
|
36
137
|
}
|
|
37
138
|
//# sourceMappingURL=subscriptions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscriptions.d.ts","sourceRoot":"","sources":["../../src/operations/subscriptions.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,sCAAsC,EAAE,MAAM,2CAA2C,CAAC;AAEnG,0CAA0C;AAC1C,qBAAa,aAAa;IACxB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAyC;IAEhE;;;OAGG;gBACS,MAAM,EAAE,sCAAsC;IAI1D
|
|
1
|
+
{"version":3,"file":"subscriptions.d.ts","sourceRoot":"","sources":["../../src/operations/subscriptions.ts"],"names":[],"mappings":"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"}
|