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
53 changes: 38 additions & 15 deletions schemas/2021-10-01/Microsoft.Compute.json
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,21 @@
"GalleryApplicationVersionPublishingProfile": {
"type": "object",
"properties": {
"advancedSettings": {
"oneOf": [
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"properties": {}
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
],
"description": "Optional. Additional settings to pass to the VMApp extension. For advanced used only."
},
"enableHealthCheck": {
"oneOf": [
{
Expand Down Expand Up @@ -776,6 +791,16 @@
],
"description": "Optional parameter which specifies the mode to be used for replication. This property is not updatable."
},
"settings": {
"oneOf": [
{
"$ref": "#/definitions/UserArtifactSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"source": {
"oneOf": [
{
Expand Down Expand Up @@ -966,21 +991,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 Expand Up @@ -1648,6 +1658,19 @@
"remove"
]
},
"UserArtifactSettings": {
"type": "object",
"properties": {
"configFileName": {
"type": "string",
"description": "Optional. The name to assign the downloaded config file on the VM. If not specified, the configuration file will be named `<gallery application name>_config`. This is limited to 4096 characters."
},
"packageFileName": {
"type": "string",
"description": "Optional. The name to assign the downloaded package file on the VM. If not specified, downloaded file will be named the same as the gallery application name. This is limited to 4096 characters."
}
}
},
"UserArtifactSource": {
"type": "object",
"properties": {
Expand Down
Loading