Skip to content

Commit

Permalink
CodeGen from PR 13932 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 829c04c51af7be31eda75a229298c2ea3b49dd0f into b9a9bd639284efd82222ebf8ac12a12b7c1ba8b6
  • Loading branch information
SDKAuto committed Apr 14, 2021
1 parent b83c958 commit 0276560
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions schemas/2020-05-15/Microsoft.TimeSeriesInsights.json
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,17 @@
"type": "string",
"description": "The resource id of the event source in Azure Resource Manager."
},
"ingressStartAt": {
"oneOf": [
{
"$ref": "#/definitions/IngressStartAtProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "An object that contains the details about the starting point in time to ingest events."
},
"keyName": {
"type": "string",
"description": "The name of the SAS key that grants the Time Series Insights service access to the event hub. The shared access policies for this key must grant 'Listen' permissions to the event hub."
Expand Down Expand Up @@ -695,6 +706,32 @@
],
"description": "The storage configuration provides the connection details that allows the Time Series Insights service to connect to the customer storage account that is used to store the environment's data."
},
"IngressStartAtProperties": {
"type": "object",
"properties": {
"time": {
"type": "string",
"description": "ISO8601 UTC datetime with seconds precision (milliseconds are optional), specifying the date and time that will be the starting point for Events to be consumed."
},
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"EarliestAvailable",
"EventSourceCreationTime",
"CustomEnqueuedTime"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The type of the ingressStartAt, It can be \"EarliestAvailable\", \"EventSourceCreationTime\", \"CustomEnqueuedTime\"."
}
},
"description": "An object that contains the details about the starting point in time to ingest events."
},
"IoTHubEventSourceCreateOrUpdateParameters": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -733,6 +770,17 @@
"type": "string",
"description": "The resource id of the event source in Azure Resource Manager."
},
"ingressStartAt": {
"oneOf": [
{
"$ref": "#/definitions/IngressStartAtProperties"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "An object that contains the details about the starting point in time to ingest events."
},
"iotHubName": {
"type": "string",
"description": "The name of the iot hub."
Expand Down

0 comments on commit 0276560

Please sign in to comment.