Skip to content

Commit

Permalink
Added Extended location property to Microsoft.Compute VM, VMSS & Imag…
Browse files Browse the repository at this point in the history
…e resources
  • Loading branch information
Pavan Rachapudy committed Oct 16, 2020
1 parent d0e81d2 commit 1391d7c
Showing 1 changed file with 40 additions and 0 deletions.
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

0 comments on commit 1391d7c

Please sign in to comment.