-
Notifications
You must be signed in to change notification settings - Fork 5.6k
[Stream Analytics] Add Subscription Level APIs #13322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 13 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
a17ac88
add query testing apis
9fa9fa0
add operationId and outputURI
80e6fb3
fix some linter errors
66b57b3
fix model validation
d8901e0
address some PR comments
f68a943
address some comments
92a858f
delete getoperationresults example
011afb0
try adding raw input datasource wrappers
39bbfcb
add inputs
8b18c5e
refactor input structure
85f1d43
add outputs
2d9a1a5
modify some descriptions
8f3a9f5
address more comments
dfb1d2a
add 200 response
3dbb616
fix formatting
a4779ca
Delete package-lock.json
roslynlu d6ebfb5
restore package-lock.json
5f61bfc
merge
c7e303f
address final comments
7493ff5
add compile query
df95394
add sample input api
66ddd06
add test input and test output apis
6c9986b
fix validation errors
5249e06
update testQuery and compileQuery
a65c1a9
update sample input and test input/output
4974d12
final fixes
287c36d
fix linter errors pt1
68ba23e
fix small bugs
c18917b
remove duplicate operations def
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
...Microsoft.StreamAnalytics/preview/2017-04-01-preview/examples/Subscription_TestQuery.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| { | ||
| "parameters": { | ||
| "api-version": "2017-04-01-preview", | ||
| "subscriptionId": "56b5e0a9-b645-407d-99b0-c64f86013e3d", | ||
| "location": "West US", | ||
| "streamingJob": { | ||
| "properties": { | ||
| "sku": { | ||
| "name": "Standard" | ||
| }, | ||
| "eventsOutOfOrderPolicy": "Drop", | ||
| "outputErrorPolicy": "Drop", | ||
| "eventsOutOfOrderMaxDelayInSeconds": 0, | ||
| "eventsLateArrivalMaxDelayInSeconds": 5, | ||
| "dataLocale": "en-US", | ||
| "compatibilityLevel": "1.0", | ||
| "inputs": [ | ||
| { | ||
| "properties": { | ||
| "type": "Stream", | ||
| "datasource": { | ||
| "type": "Raw", | ||
| "properties": { | ||
| "payloadUri": "http://myinput.com" | ||
| } | ||
| }, | ||
| "serialization": { | ||
| "type": "Json", | ||
| "properties": { | ||
| "encoding": "UTF8" | ||
| } | ||
| } | ||
| }, | ||
| "name": "inputtest" | ||
| } | ||
| ], | ||
| "transformation": { | ||
| "properties": { | ||
| "streamingUnits": 1, | ||
| "query": "Select Id, Name from inputtest" | ||
| }, | ||
| "name": "transformationtest" | ||
| }, | ||
| "outputs": [ | ||
| { | ||
| "properties": { | ||
| "datasource": { | ||
| "type": "Raw", | ||
| "properties": { | ||
| "payloadUri": "http://myoutput.com" | ||
| } | ||
| }, | ||
| "serialization": { | ||
| "type": "Json" | ||
| } | ||
| }, | ||
| "name": "outputtest" | ||
| } | ||
| ], | ||
| "functions": [] | ||
| }, | ||
| "location": "West US", | ||
| "tags": { | ||
| "key1": "value1", | ||
| "randomKey": "randomValue", | ||
| "key3": "value3" | ||
| } | ||
| } | ||
| }, | ||
| "responses": { | ||
| "202": {} | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.