Skip to content
Draft
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
15 changes: 0 additions & 15 deletions schemas/2021-10-01/Microsoft.Compute.json
Original file line number Diff line number Diff line change
Expand Up @@ -966,21 +966,6 @@
"GalleryImageProperties": {
"type": "object",
"properties": {
"architecture": {
"oneOf": [
{
"type": "string",
"enum": [
"x64",
"Arm64"
]
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "The architecture of the image. Applicable to OS disks only."
},
"description": {
"type": "string",
"description": "The description of this gallery image definition resource. This property is updatable."
Expand Down
44 changes: 44 additions & 0 deletions schemas/2021-11-01/Microsoft.Compute.json
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,20 @@
"enum": [
"Microsoft.Compute/proximityPlacementGroups"
]
},
"zones": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Specifies the Availability Zone where virtual machine, virtual machine scale set or availability set associated with the proximity placement group can be created."
}
},
"required": [
Expand Down Expand Up @@ -3162,6 +3176,17 @@
],
"description": "Instance view status."
},
"intent": {
"oneOf": [
{
"$ref": "#/definitions/ProximityPlacementGroupPropertiesIntent"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Specifies the user intent of the proximity placement group."
},
"proximityPlacementGroupType": {
"oneOf": [
{
Expand All @@ -3180,6 +3205,25 @@
},
"description": "Describes the properties of a Proximity Placement Group."
},
"ProximityPlacementGroupPropertiesIntent": {
"type": "object",
"properties": {
"vmSizes": {
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
}
},
"description": "Specifies the user intent of the proximity placement group."
},
"PublicIPAddressSku": {
"type": "object",
"properties": {
Expand Down
Loading