Skip to content

Commit

Permalink
add AzPowerShellSetup and its TypeProperties (Azure#9893)
Browse files Browse the repository at this point in the history
Co-authored-by: Ivan Liu <liubing@microsoft.com>
  • Loading branch information
2 people authored and 00Kai0 committed Oct 12, 2020
1 parent 863ac9e commit 6e4d59e
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,38 @@
"componentName"
]
},
"AzPowerShellSetup": {
"description": "The express custom setup of installing Azure PowerShell.",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/CustomSetupBase"
}
],
"properties": {
"typeProperties": {
"description": "Install Azure PowerShell type properties.",
"x-ms-client-flatten": true,
"$ref": "#/definitions/AzPowerShellSetupTypeProperties"
}
},
"required": [
"typeProperties"
]
},
"AzPowerShellSetupTypeProperties": {
"description": "Installation of Azure PowerShell type properties.",
"type": "object",
"properties": {
"version": {
"description": "The required version of Azure PowerShell to install.",
"type": "string"
}
},
"required": [
"version"
]
},
"EntityReference": {
"description": "The entity reference.",
"type": "object",
Expand Down

0 comments on commit 6e4d59e

Please sign in to comment.