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 imagebuilder] [API 2023-07-01 Update] Fixing distribute in ImageTemplateUpdateParameters #2833

Closed
wants to merge 1 commit into from
Closed
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
13 changes: 7 additions & 6 deletions schemas/2022-02-14/Microsoft.VirtualMachineImages.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,6 @@
}
},
"definitions": {
"Componentsvrq145schemasimagetemplateidentitypropertiesuserassignedidentitiesadditionalproperties": {
"type": "object",
"properties": {}
},
"ImageTemplateCustomizer": {
"type": "object",
"oneOf": [
Expand Down Expand Up @@ -214,15 +210,15 @@
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Componentsvrq145schemasimagetemplateidentitypropertiesuserassignedidentitiesadditionalproperties"
"$ref": "#/definitions/UserAssignedIdentity"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The list of user identities associated with the image template. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'."
"description": "The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests."
}
},
"description": "Identity for the image template."
Expand Down Expand Up @@ -950,6 +946,11 @@
],
"description": "Purchase plan configuration for platform image."
},
"UserAssignedIdentity": {
"type": "object",
"properties": {},
"description": "User assigned identity properties"
},
"VirtualNetworkConfig": {
"type": "object",
"properties": {
Expand Down
Loading