Skip to content
Merged
Show file tree
Hide file tree
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 @@ -2264,6 +2264,18 @@
"$ref": "#/definitions/GalleryImageFeature"
},
"description": "A list of gallery image features."
},
"architecture": {
"type": "string",
"description": "The architecture of the image. Applicable to OS disks only.",
"enum": [
"x64",
"Arm64"
],
"x-ms-enum": {
"name": "Architecture",
"modelAsString": true
}
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10123,6 +10123,18 @@
"modelAsString": true
}
},
"ArchitectureType": {
"type": "string",
"description": "Specifies the Architecture Type",
"enum": [
"x64",
"Arm64"
],
"x-ms-enum": {
"name": "ArchitectureTypes",
"modelAsString": true
}
},
"InstanceViewStatus": {
"properties": {
"code": {
Expand Down Expand Up @@ -11852,6 +11864,9 @@
"items": {
"$ref": "#/definitions/VirtualMachineImageFeature"
}
},
"architecture": {
"$ref": "#/definitions/ArchitectureType"
}
},
"description": "Describes the properties of a Virtual Machine Image."
Expand Down