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

[ReleasePR iotcentral] [Hub Generated] Review request for Microsoft.IoTCentral to add version stable/2021-06-01 #1952

Merged
1 commit merged into from
Oct 9, 2021
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
34 changes: 34 additions & 0 deletions schemas/2021-06-01/Microsoft.IotCentral.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@
"2021-06-01"
]
},
"identity": {
"oneOf": [
{
"$ref": "#/definitions/SystemAssignedServiceIdentity"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Managed service identity (either system assigned, or none)"
},
"location": {
"type": "string",
"description": "The resource location."
Expand Down Expand Up @@ -134,6 +145,29 @@
"name"
],
"description": "Information about the SKU of the IoT Central application."
},
"SystemAssignedServiceIdentity": {
"type": "object",
"properties": {
"type": {
"oneOf": [
{
"type": "string",
"enum": [
"None",
"SystemAssigned"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
}
},
"required": [
"type"
],
"description": "Managed service identity (either system assigned, or none)"
}
}
}