Skip to content

Commit

Permalink
Zone mappings fix (Azure#16667)
Browse files Browse the repository at this point in the history
* remove name validation from client side

* remove name check from deploymentScripts swagger

* remove name check from previous swagger versions

* remove pattern from resourcegroupname parameter

* add missing zoneMappings property to resources

* fix linter errors
  • Loading branch information
tjegbejimba authored and LeiWang3 committed Mar 31, 2022
1 parent 613972a commit 0af8c72
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4976,6 +4976,12 @@
"readOnly": true,
"description": "The default API version."
},
"zoneMappings": {
"type": "array",
"items": {
"$ref": "#/definitions/ZoneMapping"
}
},
"apiProfiles": {
"type": "array",
"readOnly": true,
Expand Down Expand Up @@ -6374,6 +6380,21 @@
}
},
"description": "Specifies whether template expressions are evaluated within the scope of the parent template or nested template."
},
"ZoneMapping": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The location of the zone mapping."
},
"zones": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5012,6 +5012,12 @@
"readOnly": true,
"description": "The default API version."
},
"zoneMappings": {
"type": "array",
"items": {
"$ref": "#/definitions/ZoneMapping"
}
},
"apiProfiles": {
"type": "array",
"readOnly": true,
Expand Down Expand Up @@ -6560,6 +6566,21 @@
}
},
"description": "Specifies whether template expressions are evaluated within the scope of the parent template or nested template."
},
"ZoneMapping": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The location of the zone mapping."
},
"zones": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
},
"parameters": {
Expand Down

0 comments on commit 0af8c72

Please sign in to comment.