Skip to content

Commit

Permalink
[ReleasePR streamanalytics] [Stream Analytics] Add Subscription Level…
Browse files Browse the repository at this point in the history
  • Loading branch information
msftbot[bot] authored Jul 7, 2021
2 parents f6466af + 853638f commit b62872f
Showing 1 changed file with 115 additions and 2 deletions.
117 changes: 115 additions & 2 deletions schemas/2017-04-01-preview/Microsoft.StreamAnalytics.json
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,8 @@
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
],
"description": "Describes Azure SQL database reference input data source properties."
},
"type": {
"type": "string",
Expand Down Expand Up @@ -864,7 +865,8 @@
"type": "string",
"description": "This element is associated with the datasource element. This is the user name that will be used to connect to the SQL Database instance."
}
}
},
"description": "Describes Azure SQL database reference input data source properties."
},
"AzureSynapseOutputDataSource": {
"type": "object",
Expand Down Expand Up @@ -2062,6 +2064,9 @@
"OutputDataSource": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/RawOutputDatasource"
},
{
"$ref": "#/definitions/BlobOutputDataSource"
},
Expand Down Expand Up @@ -2239,12 +2244,117 @@
},
"description": "The properties that are associated with a Power BI output."
},
"RawInputDatasourceProperties": {
"type": "object",
"properties": {
"payload": {
"type": "string",
"description": "The JSON serialized content of the input data. Either payload or payloadUri must be set, but not both. "
},
"payloadUri": {
"type": "string",
"description": "The SAS URL to a blob containing the JSON serialized content of the input data. Either payload or payloadUri must be set, but not both."
}
},
"description": "The properties that are associated with a raw input."
},
"RawOutputDatasource": {
"type": "object",
"properties": {
"properties": {
"oneOf": [
{
"$ref": "#/definitions/RawOutputDatasourceProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties that are associated with a raw output."
},
"type": {
"type": "string",
"enum": [
"Raw"
]
}
},
"required": [
"type"
],
"description": "Describes a raw output data source. This data source type is only applicable/usable when using the query testing API. You cannot create a job with this data source type or add an output of this data source type to an existing job."
},
"RawOutputDatasourceProperties": {
"type": "object",
"properties": {
"payloadUri": {
"type": "string",
"description": "The SAS URL to a blob where the output should be written. If this property is not set, output data will be written into a temporary storage, and a SAS URL to that temporary storage will be included in the result."
}
},
"description": "The properties that are associated with a raw output."
},
"RawReferenceInputDataSource": {
"type": "object",
"properties": {
"properties": {
"oneOf": [
{
"$ref": "#/definitions/RawInputDatasourceProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties that are associated with a raw input."
},
"type": {
"type": "string",
"enum": [
"Raw"
]
}
},
"required": [
"type"
],
"description": "Describes a raw input data source that contains reference data. This data source type is only applicable/usable when using the query testing API. You cannot create a job with this data source type or add an input of this data source type to an existing job."
},
"RawStreamInputDataSource": {
"type": "object",
"properties": {
"properties": {
"oneOf": [
{
"$ref": "#/definitions/RawInputDatasourceProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties that are associated with a raw input."
},
"type": {
"type": "string",
"enum": [
"Raw"
]
}
},
"required": [
"type"
],
"description": "Describes a raw input data source that contains stream data. This data source type is only applicable/usable when using the query testing API. You cannot create a job with this data source type or add an input of this data source type to an existing job."
},
"ReferenceInputDataSource": {
"type": "object",
"oneOf": [
{
"$ref": "#/definitions/BlobReferenceInputDataSource"
},
{
"$ref": "#/definitions/RawReferenceInputDataSource"
},
{
"$ref": "#/definitions/AzureSqlReferenceInputDataSource"
}
Expand Down Expand Up @@ -2927,6 +3037,9 @@
},
{
"$ref": "#/definitions/IoTHubStreamInputDataSource"
},
{
"$ref": "#/definitions/RawStreamInputDataSource"
}
],
"properties": {},
Expand Down

0 comments on commit b62872f

Please sign in to comment.