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

[Hub Generated] Review request for Microsoft.Devices to add version preview/2020-07-10-preview #11369

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -3185,6 +3185,10 @@
"sku": {
"description": "IotHub SKU info",
"$ref": "#/definitions/IotHubSkuInfo"
},
"identity": {
"description": "The managed identities for the IotHub.",
"$ref": "#/definitions/ArmIdentity"
}
},
"allOf": [
Expand Down Expand Up @@ -4154,6 +4158,44 @@
}
}
},
"ArmIdentity": {
"type": "object",
"properties": {
"principalId": {
"description": "Principal Id",
"type": "string",
"readOnly": true
},
"tenantId": {
"description": "Tenant Id",
"type": "string",
"readOnly": true
},
"identityType": {
"description": "Identity type. Only allowed values are SystemAssigned and UserAssigned. Comma separated if both for ex: SystemAssigned,UserAssigned",
"type": "string"
},
"userAssignedIdentities": {
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/ArmUserIdentity"
}
}
}
},
"ArmUserIdentity": {
"type": "object",
"properties": {
"principalId": {
"type": "string",
"readOnly": true
},
"clientId": {
"type": "string",
"readOnly": true
}
}
},
"EncryptionPropertiesDescription": {
"description": "The encryption properties for the IoT hub.",
"type": "object",
Expand All @@ -4178,6 +4220,20 @@
"keyIdentifier": {
"type": "string",
"description": "The identifier of the key."
},
"identity": {
"description": "The identity.",
"$ref": "#/definitions/KEKIdentity"
}
}
},
"KEKIdentity": {
"description": "The properties of the KeyVault identity.",
"type": "object",
"properties": {
"userAssignedIdentity": {
"type": "string",
"description": "The user assigned identity."
}
}
}
Expand Down