Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -9021,6 +9021,10 @@
"type": "string"
},
"description": "The virtual machine zones."
},
"extendedLocation": {
"$ref": "#/definitions/ExtendedLocation",
"description": "The extended location of the Virtual Machine."
}
},
"allOf": [
Expand Down Expand Up @@ -9342,6 +9346,10 @@
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/ImageProperties"
},
"extendedLocation": {
"$ref": "#/definitions/ExtendedLocation",
"description": "The extended location of the Image."
}
},
"allOf": [
Expand Down Expand Up @@ -10454,6 +10462,10 @@
"type": "string"
},
"description": "The virtual machine scale set zones. NOTE: Availability zones can only be set when you create the scale set"
},
"extendedLocation": {
"$ref": "#/definitions/ExtendedLocation",
"description": "The extended location of the Virtual Machine Scale Set."
}
},
"allOf": [
Expand Down Expand Up @@ -11408,6 +11420,34 @@
},
"x-ms-azure-resource": true
},
"ExtendedLocationType": {
"type": "string",
"description": "The supported ExtendedLocation types. Currently only EdgeZone is supported in Microsoft.Compute resources.",
"enum": [
"EdgeZone"
],
"x-ms-enum": {
"name": "ExtendedLocationTypes",
"modelAsString": true
}
},
"ExtendedLocation": {
"description": "ExtendedLocation complex type.",
"properties": {
"name": {
"type": "string",
"description": "The name of the extended location."
},
"type": {
"$ref": "#/definitions/ExtendedLocationType",
"description": "The type of the extended location."
}
},
"required": [
"name",
"type"
]
},
"RecoveryWalkResponse": {
"properties": {
"walkPerformed": {
Expand Down