Skip to content
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

[AutoPR iothub] add iothub track2 config #823

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion schemas/2016-02-03/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -542,4 +542,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2017-01-19/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -872,4 +872,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2017-07-01/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1047,4 +1047,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2018-01-22/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1040,4 +1040,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2018-04-01/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1045,4 +1045,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2018-12-01-preview/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1090,4 +1090,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2019-03-22-preview/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1098,4 +1098,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2019-03-22/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1020,4 +1020,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2019-07-01-preview/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1100,4 +1100,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2019-11-04/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1067,4 +1067,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2020-03-01/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1387,4 +1387,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2020-04-01/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1387,4 +1387,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2020-06-15/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1435,4 +1435,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
60 changes: 59 additions & 1 deletion schemas/2020-07-10-preview/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@
"type": "string",
"description": "The Etag field is *not* required. If it is provided in the response body, it must also be provided as a header per the normal ETag convention."
},
"identity": {
"oneOf": [
{
"$ref": "#/definitions/ArmIdentity"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"location": {
"type": "string",
"description": "The resource location."
Expand Down Expand Up @@ -219,6 +229,33 @@
}
},
"definitions": {
"ArmIdentity": {
"type": "object",
"properties": {
"identityType": {
"type": "string",
"description": "Identity type. Only allowed values are SystemAssigned and UserAssigned. Comma separated if both for ex: SystemAssigned,UserAssigned"
},
"userAssignedIdentities": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/ArmUserIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
}
}
},
"ArmUserIdentity": {
"type": "object",
"properties": {}
},
"CertificateProperties": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -817,9 +854,30 @@
],
"description": "The IP filter rules for the IoT hub."
},
"KEKIdentity": {
"type": "object",
"properties": {
"userAssignedIdentity": {
"type": "string",
"description": "The user assigned identity."
}
},
"description": "The properties of the KeyVault identity."
},
"KeyVaultKeyProperties": {
"type": "object",
"properties": {
"identity": {
"oneOf": [
{
"$ref": "#/definitions/KEKIdentity"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The properties of the KeyVault identity."
},
"keyIdentifier": {
"type": "string",
"description": "The identifier of the key."
Expand Down Expand Up @@ -1513,4 +1571,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}
2 changes: 1 addition & 1 deletion schemas/2020-08-01/Microsoft.Devices.json
Original file line number Diff line number Diff line change
Expand Up @@ -1435,4 +1435,4 @@
"description": "The properties of the Azure Storage endpoint for file upload."
}
}
}
}