Skip to content

Commit

Permalink
[Hub Generated] Review request for Microsoft.Devices to add version p…
Browse files Browse the repository at this point in the history
…review/2020-07-10-preview (Azure#11369)

* AddUserAssignedIdentityConfig

* MissingEncryption

* missingDescription
  • Loading branch information
joaldana authored and giromm2ms committed Dec 20, 2020
1 parent ae6eead commit 576773c
Showing 1 changed file with 56 additions and 0 deletions.
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

0 comments on commit 576773c

Please sign in to comment.