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-09-01-preview #11809

Merged
Changes from 2 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 @@ -1921,19 +1921,23 @@
]
},
"EncryptionPropertiesDescription": {
"description": "The encryption properties for the IoT DPS instance.",
"description": "The customer-managed encryption key (CMK) properties for the IoT DPS instance.",
"type": "object",
"properties": {
"keySource": {
"description": "The source of the key.",
"description": "The source of the encryption key. Typically, Microsoft.KeyVault",
"type": "string"
},
"keyVaultProperties": {
"description": "The properties of the KeyVault key.",
"description": "The properties of the encryption key configured in KeyVault.",
"type": "array",
"items": {
"$ref": "#/definitions/KeyVaultKeyProperties"
}
},
"identity": {
"description": "The identity used to access the encryption key in KeyVault.",
"$ref": "#/definitions/EncryptionKeyIdentity"
}
}
},
Expand All @@ -1947,6 +1951,16 @@
}
}
},
"EncryptionKeyIdentity": {
"description": "The properties of the identity used to access the key encryption key in KeyVault.",
"type": "object",
"properties": {
"userAssignedIdentity": {
"type": "string",
"description": "The user assigned identity."
}
}
},
"IpFilterRule": {
"description": "The IP filter rules for a provisioning Service.",
"type": "object",
Expand Down