From 3aa59c7b27bd64eb59c1613d329e702d3ffa87c8 Mon Sep 17 00:00:00 2001 From: huangpf Date: Tue, 1 Mar 2016 11:32:17 -0800 Subject: [PATCH 1/7] Update --- .../Automation/Invoke-CodeGeneration.ps1 | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Invoke-CodeGeneration.ps1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Invoke-CodeGeneration.ps1 index 546e596e6ebf..92abcabd1082 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Invoke-CodeGeneration.ps1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Invoke-CodeGeneration.ps1 @@ -212,11 +212,6 @@ else } $SKIP_VERB_NOUN_CMDLET_LIST = $operationSettings[$operation_nomalized_name]; - $methodAnnotationSuffix = ''; - if ($SKIP_VERB_NOUN_CMDLET_LIST -contains $methodInfo.Name) - { - $methodAnnotationSuffix = ' *'; - } $qualified_methods = @(); $total_method_count = 0; @@ -233,11 +228,15 @@ else { continue; } - else + + $methodAnnotationSuffix = ''; + if ($SKIP_VERB_NOUN_CMDLET_LIST -contains $methodInfo.Name) { - Write-Verbose ($methodInfo.Name + $methodAnnotationSuffix); + $methodAnnotationSuffix = ' *'; } + Write-Verbose ($methodInfo.Name + $methodAnnotationSuffix); + $qualified_methods += $mtItem; $total_method_count++; @@ -286,6 +285,11 @@ else { [System.Reflection.MethodInfo]$methodInfo = $mtItem; $method_count++; + $methodAnnotationSuffix = ''; + if ($SKIP_VERB_NOUN_CMDLET_LIST -contains $methodInfo.Name) + { + $methodAnnotationSuffix = ' *'; + } # Get Friend Method (if any) $friendMethodInfo = $null; From a547483987f5497463c0e059f4fdbf6d31116130 Mon Sep 17 00:00:00 2001 From: huangpf Date: Tue, 1 Mar 2016 14:50:05 -0800 Subject: [PATCH 2/7] Update --- .../Compute/Commands.Compute/Generated/cli.js | 56 +++++++++++++++++-- .../Automation/Generate-FunctionCommand.ps1 | 19 ++++++- 2 files changed, 69 insertions(+), 6 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js b/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js index add1e444976e..b6eebf4409d0 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js @@ -6021,7 +6021,19 @@ exports.init = function (cli) { }); nextPageLink = pageResult.nextPageLink; } - cli.output.json(result); + + if (cli.output.format().json) { + cli.output.json(result); + } + else { + cli.output.table(result, function (row, item) { + var rgName = item.id ? utils.parseResourceReferenceUri(item.id).resourceGroupName : null; + row.cell($('ResourceGroupName'), rgName); + row.cell($('Name'), item.name); + row.cell($('ProvisioningState'), item.provisioningState); + row.cell($('Location'), item.location); + }); + } }); /* VirtualMachineScaleSets ListAll @@ -6045,7 +6057,19 @@ exports.init = function (cli) { }); nextPageLink = pageResult.nextPageLink; } - cli.output.json(result); + + if (cli.output.format().json) { + cli.output.json(result); + } + else { + cli.output.table(result, function (row, item) { + var rgName = item.id ? utils.parseResourceReferenceUri(item.id).resourceGroupName : null; + row.cell($('ResourceGroupName'), rgName); + row.cell($('Name'), item.name); + row.cell($('ProvisioningState'), item.provisioningState); + row.cell($('Location'), item.location); + }); + } }); /* VirtualMachineScaleSets ListSkus @@ -6075,7 +6099,19 @@ exports.init = function (cli) { }); nextPageLink = pageResult.nextPageLink; } - cli.output.json(result); + + if (cli.output.format().json) { + cli.output.json(result); + } + else { + cli.output.table(result, function (row, item) { + var rgName = item.id ? utils.parseResourceReferenceUri(item.id).resourceGroupName : null; + row.cell($('ResourceGroupName'), rgName); + row.cell($('Name'), item.name); + row.cell($('ProvisioningState'), item.provisioningState); + row.cell($('Location'), item.location); + }); + } }); /* VirtualMachineScaleSets PowerOff @@ -6387,7 +6423,19 @@ exports.init = function (cli) { }); nextPageLink = pageResult.nextPageLink; } - cli.output.json(result); + + if (cli.output.format().json) { + cli.output.json(result); + } + else { + cli.output.table(result, function (row, item) { + var rgName = item.id ? utils.parseResourceReferenceUri(item.id).resourceGroupName : null; + row.cell($('ResourceGroupName'), rgName); + row.cell($('Name'), item.name); + row.cell($('ProvisioningState'), item.provisioningState); + row.cell($('Location'), item.location); + }); + } }); /* VirtualMachineScaleSetVMs PowerOff diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 index 6cb743537b2a..adfd7182bdcb 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 @@ -1276,9 +1276,24 @@ function Generate-CliFunctionCommandImpl $code += " });" + $NEW_LINE; $code += " nextPageLink = pageResult.nextPageLink;" + $NEW_LINE; $code += " }" + $NEW_LINE; + $code += "" + $NEW_LINE; + $code += " if (cli.output.format().json) {" + $NEW_LINE; + $code += " cli.output.json(result);" + $NEW_LINE; + $code += " }" + $NEW_LINE; + $code += " else {" + $NEW_LINE; + $code += " cli.output.table(result, function (row, item) {" + $NEW_LINE; + $code += " var rgName = item.id ? utils.parseResourceReferenceUri(item.id).resourceGroupName : null;" + $NEW_LINE; + $code += " row.cell(`$('ResourceGroupName'), rgName);" + $NEW_LINE; + $code += " row.cell(`$('Name'), item.name);" + $NEW_LINE; + $code += " row.cell(`$('ProvisioningState'), item.provisioningState);" + $NEW_LINE; + $code += " row.cell(`$('Location'), item.location);" + $NEW_LINE; + $code += " });" + $NEW_LINE; + $code += " }" + $NEW_LINE; + } + else + { + $code += " cli.output.json(result);" + $NEW_LINE; } - - $code += " cli.output.json(result);" + $NEW_LINE; $code += " });" + $NEW_LINE; # 3.3 Parameters From de309f62113e93a6d8e3879738072e29dae93567 Mon Sep 17 00:00:00 2001 From: huangpf Date: Tue, 1 Mar 2016 16:33:35 -0800 Subject: [PATCH 3/7] Update --- .../Compute/Commands.Compute/Generated/cli.js | 46 ++-- .../Automation/Generate-FunctionCommand.ps1 | 21 +- .../Automation/Import-CommonVariables.ps1 | 9 + .../Generated/cli.js | 202 +++++++++--------- 4 files changed, 153 insertions(+), 125 deletions(-) diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js b/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js index b6eebf4409d0..7454b277249e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js @@ -180,7 +180,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsCreateOrUpdate = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsCreateOrUpdate.command('create-or-update [resource-group-name] [name] [parameters]') - .description($('Commands to manage your virtual machine scale sets by the create-or-update method.')) + .description($('The operation to create or update a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --name ', $('name')) @@ -5859,7 +5859,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsDeallocate = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsDeallocate.command('deallocate [resource-group-name] [vm-scale-set-name] [instance-ids]') - .description($('Commands to manage your virtual machine scale sets by the deallocate method.')) + .description($('The operation to deallocate virtual machines in a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -5898,7 +5898,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsDelete = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsDelete.command('delete [resource-group-name] [vm-scale-set-name]') - .description($('Commands to manage your virtual machine scale sets by the delete method.')) + .description($('The operation to delete a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -5921,7 +5921,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsDeleteInstances = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsDeleteInstances.command('delete-instances [resource-group-name] [vm-scale-set-name] [instance-ids]') - .description($('Commands to manage your virtual machine scale sets by the delete-instances method.')) + .description($('The operation to delete virtual machines in a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -5960,7 +5960,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsGet = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsGet.command('get [resource-group-name] [vm-scale-set-name]') - .description($('Commands to manage your virtual machine scale sets by the get method.')) + .description($('The operation to get a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -5982,7 +5982,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsGetInstanceView = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsGetInstanceView.command('get-instance-view [resource-group-name] [vm-scale-set-name]') - .description($('Commands to manage your virtual machine scale sets by the get-instance-view method.')) + .description($('The operation to get a virtual machine scale set instance view.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6003,7 +6003,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsList = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsList.command('list [resource-group-name]') - .description($('Commands to manage your virtual machine scale sets by the list method.')) + .description($('The operation to list virtual machine scale sets under a resource group.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('--parameter-file ', $('the input parameter file')) @@ -6041,7 +6041,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsListAll = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsListAll.command('list-all') - .description($('Commands to manage your virtual machine scale sets by the list-all method.')) + .description($('Gets the list of Virtual Machine Scale Sets in the subscription. Use nextLink property in the response to get the next page of Virtual Machine Scale Sets. Do this till nextLink is not null to fetch all the Virtual Machine Scale Sets.')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -6079,7 +6079,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsListSkus = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsListSkus.command('list-skus [resource-group-name] [vm-scale-set-name]') - .description($('Commands to manage your virtual machine scale sets by the list-skus method.')) + .description($('The operation to list available skus for a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6122,7 +6122,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsPowerOff = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsPowerOff.command('power-off [resource-group-name] [vm-scale-set-name] [instance-ids]') - .description($('Commands to manage your virtual machine scale sets by the power-off method.')) + .description($('The operation to power off (stop) virtual machines in a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6161,7 +6161,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsReimage = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsReimage.command('reimage [resource-group-name] [vm-scale-set-name]') - .description($('Commands to manage your virtual machine scale sets by the reimage method.')) + .description($('The operation to re-image virtual machines in a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6184,7 +6184,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsRestart = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsRestart.command('restart [resource-group-name] [vm-scale-set-name] [instance-ids]') - .description($('Commands to manage your virtual machine scale sets by the restart method.')) + .description($('The operation to restart virtual machines in a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6224,7 +6224,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsStart = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsStart.command('start [resource-group-name] [vm-scale-set-name] [instance-ids]') - .description($('Commands to manage your virtual machine scale sets by the start method.')) + .description($('The operation to start virtual machines in a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6264,7 +6264,7 @@ exports.init = function (cli) { var virtualMachineScaleSetsUpdateInstances = cli.category('vmss') .description($('Commands to manage your virtual machine scale sets. ')); virtualMachineScaleSetsUpdateInstances.command('update-instances [resource-group-name] [vm-scale-set-name] [instance-ids]') - .description($('Commands to manage your virtual machine scale sets by the update-instances method.')) + .description($('The operation to manually upgrade virtual machines in a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6304,7 +6304,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsDeallocate = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsDeallocate.command('deallocate [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the deallocate method.')) + .description($('The operation to deallocate a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6329,7 +6329,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsDelete = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsDelete.command('delete [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the delete method.')) + .description($('The operation to delete a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6354,7 +6354,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsGet = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsGet.command('get [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the get method.')) + .description($('The operation to get a virtual machine scale set virtual machine.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6379,7 +6379,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsGetInstanceView = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsGetInstanceView.command('get-instance-view [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the get-instance-view method.')) + .description($('The operation to get a virtual machine scale set virtual machine.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6403,7 +6403,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsList = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsList.command('list [resource-group-name] [virtual-machine-scale-set-name]') - .description($('Commands to manage your virtual machine scale set vm by the list method.')) + .description($('The operation to list virtual machine scale sets VMs.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --virtual-machine-scale-set-name ', $('virtual-machine-scale-set-name')) @@ -6446,7 +6446,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsPowerOff = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsPowerOff.command('power-off [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the power-off method.')) + .description($('The operation to power off (stop) a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6471,7 +6471,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsReimage = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsReimage.command('reimage [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the reimage method.')) + .description($('The operation to re-image a virtual machine scale set instance.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6496,7 +6496,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsRestart = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsRestart.command('restart [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the restart method.')) + .description($('The operation to restart a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) @@ -6521,7 +6521,7 @@ exports.init = function (cli) { var virtualMachineScaleSetVMsStart = cli.category('vmssvm') .description($('Commands to manage your virtual machine scale set vm. ')); virtualMachineScaleSetVMsStart.command('start [resource-group-name] [vm-scale-set-name] [instance-id]') - .description($('Commands to manage your virtual machine scale set vm by the start method.')) + .description($('The operation to start a virtual machine scale set.')) .usage('[options] ') .option('-g, --resource-group-name ', $('resource-group-name')) .option('-n, --vm-scale-set-name ', $('vm-scale-set-name')) diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 index adfd7182bdcb..7bfb01d24f25 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-FunctionCommand.ps1 @@ -1124,9 +1124,28 @@ function Generate-CliFunctionCommandImpl $optionParamString = ([string]::Join(", ", $requireParamNormalizedNames)) + ", "; } + if ($xmlDocItems -ne $null) + { + $xmlHelpText = ""; + foreach ($helpItem in $xmlDocItems) + { + $helpSearchStr = "M:${ClientNameSpace}.${OperationName}OperationsExtensions.${methodName}(*)"; + if ($helpItem.name -like $helpSearchStr) + { + $helpLines = $helpItem.summary.Split("`r").Split("`n"); + foreach ($helpLine in $helpLines) + { + $xmlHelpText += (' ' + $helpLine.Trim()); + } + $xmlHelpText = $xmlHelpText.Trim(); + break; + } + } + } $code += " ${cliCategoryVarName}.command('${cliMethodOption}${requireParamsString}')" + $NEW_LINE; - $code += " .description(`$('Commands to manage your $cliOperationDescription by the ${cliMethodOption} method.'))" + $NEW_LINE; + #$code += " .description(`$('Commands to manage your $cliOperationDescription by the ${cliMethodOption} method.${xmlHelpText}'))" + $NEW_LINE; + $code += " .description(`$('${xmlHelpText}'))" + $NEW_LINE; $code += " .usage('[options]${usageParamsString}')" + $NEW_LINE; for ($index = 0; $index -lt $methodParamNameList.Count; $index++) { diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Import-CommonVariables.ps1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Import-CommonVariables.ps1 index dd78e479b156..d1ab59e6cc3c 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Import-CommonVariables.ps1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Import-CommonVariables.ps1 @@ -102,9 +102,18 @@ if ($clientNameSpace -eq "Microsoft.WindowsAzure.Management.${component_name}") # Initialize other variables $all_return_type_names = @(); +# XML Documentation +if (Test-Path -Path $dllFileFullPath.Replace('.dll', '.xml')) +{ + $xmlFileFullPath = $dllFileFullPath.Replace('.dll', '.xml'); + [xml]$xmlDoc = Get-Content $xmlFileFullPath; + $xmlDocItems = $xmlDoc.SelectNodes('doc/members/*'); +} + Write-Verbose $BAR_LINE; Write-Verbose "Input Parameters:"; Write-Verbose "DLL File = $dllFileFullPath"; +Write-Verbose "XML File = $xmlFileFullPath"; Write-Verbose "Out Folder = $outFolder"; Write-Verbose "Config Path = $ConfigPath"; Write-Verbose "Client NameSpace = $clientNameSpace"; diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js index 4c4ea6eb61c8..195a0c6fc6ef 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js @@ -71,7 +71,7 @@ exports.init = function (cli) { var deploymentChangeConfigurationByName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentChangeConfigurationByName.command('change-configuration-by-name [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your deployment by the change-configuration-by-name method.')) + .description($('The Change Deployment Configuration By Name operation initiates a change to the deployment configuration. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460809.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -1095,7 +1095,7 @@ exports.init = function (cli) { var deploymentChangeConfigurationBySlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentChangeConfigurationBySlot.command('change-configuration-by-slot [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the change-configuration-by-slot method.')) + .description($('The Change Deployment Configuration By Slot operation initiates a change to the deployment configuration. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460809.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -2122,7 +2122,7 @@ exports.init = function (cli) { var deploymentCreate = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentCreate.command('create [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the create method.')) + .description($('The Create Deployment operation uploads a new service package and creates a new deployment in the staging or production environments. This operation is an asynchronous operation. To determine whether the management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460813.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -3202,7 +3202,7 @@ exports.init = function (cli) { var deploymentDeleteByName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentDeleteByName.command('delete-by-name [service-name] [deployment-name]') - .description($('Commands to manage your deployment by the delete-by-name method.')) + .description($('The Delete Deployment By Name operation deletes the specified deployment. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460815.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -3236,7 +3236,7 @@ exports.init = function (cli) { var deploymentDeleteBySlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentDeleteBySlot.command('delete-by-slot [service-name] [deployment-slot]') - .description($('Commands to manage your deployment by the delete-by-slot method.')) + .description($('The Delete Deployment By Slot operation deletes the specified deployment. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460815.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -3265,7 +3265,7 @@ exports.init = function (cli) { var deploymentDeleteRoleInstanceByDeploymentName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentDeleteRoleInstanceByDeploymentName.command('delete-role-instance-by-deployment-name [service-name] [deployment-name] [role-instance-name]') - .description($('Commands to manage your deployment by the delete-role-instance-by-deployment-name method.')) + .description($('The Delete Role Instances operation deletes a role instance from a deployment in a cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn469418.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -3296,7 +3296,7 @@ exports.init = function (cli) { var deploymentDeleteRoleInstanceByDeploymentSlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentDeleteRoleInstanceByDeploymentSlot.command('delete-role-instance-by-deployment-slot [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the delete-role-instance-by-deployment-slot method.')) + .description($('The Delete Role Instances operation deletes the role instances from a deployment in a cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn469418.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -3660,7 +3660,7 @@ exports.init = function (cli) { var deploymentGetByName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentGetByName.command('get-by-name [service-name] [deployment-name]') - .description($('Commands to manage your deployment by the get-by-name method.')) + .description($('The Get Deployment By Name operation returns configuration information, status, and system properties for a deployment. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460804.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -3684,7 +3684,7 @@ exports.init = function (cli) { var deploymentGetBySlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentGetBySlot.command('get-by-slot [service-name] [deployment-slot]') - .description($('Commands to manage your deployment by the get-by-slot method.')) + .description($('The Get Deployment By Slot operation returns configuration information, status, and system properties for a deployment. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460804.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -3712,7 +3712,7 @@ exports.init = function (cli) { var deploymentGetPackageByName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentGetPackageByName.command('get-package-by-name [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your deployment by the get-package-by-name method.')) + .description($('The Get Package By Name operation retrieves a cloud service package for a deployment and stores the package files in Azure Blob storage. The following package files are placed in storage: the cloud service configuration file (.cscfg), providing configuration settings for the cloud service and individual roles, including the number of role instances; and the service package (.cspkg), containing the application code and the service definition file. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj154121.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -3989,7 +3989,7 @@ exports.init = function (cli) { var deploymentGetPackageBySlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentGetPackageBySlot.command('get-package-by-slot [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the get-package-by-slot method.')) + .description($('The Get Package By Slot operation retrieves a cloud service package for a deployment and stores the package files in Azure Blob storage. The following package files are placed in storage: the cloud service configuration file (.cscfg), providing configuration settings for the cloud service and individual roles, including the number of role instances; and the service package (.cspkg), containing the application code and the service definition file. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj154121.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -4262,7 +4262,7 @@ exports.init = function (cli) { var deploymentListEvents = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentListEvents.command('list-events [service-name] [deployment-name] [start-time] [end-time]') - .description($('Commands to manage your deployment by the list-events method.')) + .description($('Identifies the list of reboot events due to planned maintenance that impacted a deployment in the optionally provided timeframe.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -4292,7 +4292,7 @@ exports.init = function (cli) { var deploymentListEventsBySlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentListEventsBySlot.command('list-events-by-slot [service-name] [deployment-slot] [start-time] [end-time]') - .description($('Commands to manage your deployment by the list-events-by-slot method.')) + .description($('Identifies the list of reboot events due to planned maintenance that impacted a deployment in the optionally provided timeframe.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -4319,7 +4319,7 @@ exports.init = function (cli) { var deploymentRebootRoleInstanceByDeploymentName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentRebootRoleInstanceByDeploymentName.command('reboot-role-instance-by-deployment-name [service-name] [deployment-name] [role-instance-name]') - .description($('Commands to manage your deployment by the reboot-role-instance-by-deployment-name method.')) + .description($('The Reboot Role Instance By Deployment Name operation requests a reboot of a role instance that is running in a deployment. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441298.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -4346,7 +4346,7 @@ exports.init = function (cli) { var deploymentRebootRoleInstanceByDeploymentSlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentRebootRoleInstanceByDeploymentSlot.command('reboot-role-instance-by-deployment-slot [service-name] [deployment-slot] [role-instance-name]') - .description($('Commands to manage your deployment by the reboot-role-instance-by-deployment-slot method.')) + .description($('The Reboot Role Instance By Deployment Slot operation requests a reboot of a role instance that is running in a deployment. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441298.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -4372,7 +4372,7 @@ exports.init = function (cli) { var deploymentRebuildRoleInstanceByDeploymentName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentRebuildRoleInstanceByDeploymentName.command('rebuild-role-instance-by-deployment-name [service-name] [deployment-name] [role-instance-name] [resources]') - .description($('Commands to manage your deployment by the rebuild-role-instance-by-deployment-name method.')) + .description($('The Rebuild Role Instance asynchronous operation reinstalls the operating system on instances of web roles or worker roles and initializes the storage resources that are used by them. If you do not want to initialize storage resources, you can use Reimage Role Instance athttp://msdn.microsoft.com/en-us/library/azure/gg441292.aspx.For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/azure/dn627518.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -4400,7 +4400,7 @@ exports.init = function (cli) { var deploymentRebuildRoleInstanceByDeploymentSlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentRebuildRoleInstanceByDeploymentSlot.command('rebuild-role-instance-by-deployment-slot [service-name] [deployment-slot] [role-instance-name] [resources]') - .description($('Commands to manage your deployment by the rebuild-role-instance-by-deployment-slot method.')) + .description($('The Rebuild Role Instance asynchronous operation reinstalls the operating system on instances of web roles or worker roles and initializes the storage resources that are used by them. If you do not want to initialize storage resources, you can use Reimage Role Instance athttp://msdn.microsoft.com/en-us/library/azure/gg441292.aspx.For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/azure/dn627518.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -4427,7 +4427,7 @@ exports.init = function (cli) { var deploymentReimageRoleInstanceByDeploymentName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentReimageRoleInstanceByDeploymentName.command('reimage-role-instance-by-deployment-name [service-name] [deployment-name] [role-instance-name]') - .description($('Commands to manage your deployment by the reimage-role-instance-by-deployment-name method.')) + .description($('The Reimage Role Instance By Deployment Name operation requests a reimage of a role instance that is running in a deployment.This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441292.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -4454,7 +4454,7 @@ exports.init = function (cli) { var deploymentReimageRoleInstanceByDeploymentSlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentReimageRoleInstanceByDeploymentSlot.command('reimage-role-instance-by-deployment-slot [service-name] [deployment-slot] [role-instance-name]') - .description($('Commands to manage your deployment by the reimage-role-instance-by-deployment-slot method.')) + .description($('The Reimage Role Instance By Deployment Slot operation requests a reimage of a role instance that is running in a deployment. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441292.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -4484,7 +4484,7 @@ exports.init = function (cli) { var deploymentRollbackUpdateOrUpgradeByDeploymentName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentRollbackUpdateOrUpgradeByDeploymentName.command('rollback-update-or-upgrade-by-deployment-name [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your deployment by the rollback-update-or-upgrade-by-deployment-name method.')) + .description($('The Rollback Update Or Upgrade By Deployment Name operation cancels an in-progress configuration update and returns the deployment to its state before the update was started. This operation can only be called when an update is in progress on the deployment. The deployment status can be detected by calling the Get Deployment operation or Get Hosted Service Properties operation and inspecting the RollbackAllowed element. If the value returned is true a rollback can be performed. (see http://msdn.microsoft.com/en-us/library/windowsazure/hh403977.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -5003,7 +5003,7 @@ exports.init = function (cli) { var deploymentRollbackUpdateOrUpgradeByDeploymentSlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentRollbackUpdateOrUpgradeByDeploymentSlot.command('rollback-update-or-upgrade-by-deployment-slot [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the rollback-update-or-upgrade-by-deployment-slot method.')) + .description($('The Rollback Update Or Upgrade By Deployment Slot operation cancels an in-progress configuration update and returns the deployment to its state before the update was started. This operation can only be called when an update is in progress on the deployment. The deployment status can be detected by calling the Get Deployment operation or Get Hosted Service Properties operation and inspecting the RollbackAllowed element. If the value returned is true a rollback can be performed. (see http://msdn.microsoft.com/en-us/library/windowsazure/hh403977.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -5521,7 +5521,7 @@ exports.init = function (cli) { var deploymentSwap = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentSwap.command('swap [service-name] [production-deployment] [source-deployment]') - .description($('Commands to manage your deployment by the swap method.')) + .description($('The Swap Deployment operation initiates a virtual IP address swap between the staging and production deployment environments for a service. If the service is currently running in the staging environment, it will be swapped to the production environment. If it is running in the production environment, it will be swapped to staging. For more information on this type of upgrade, see Performing Virtual IP Swap Upgrades at http://msdn.microsoft.com/en-us/library/windowsazure/ee517253.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460814.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--production-deployment ', $('production-deployment')) @@ -5562,7 +5562,7 @@ exports.init = function (cli) { var deploymentUpdateStatusByDeploymentName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentUpdateStatusByDeploymentName.command('update-status-by-deployment-name [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your deployment by the update-status-by-deployment-name method.')) + .description($('The Update Deployment Status By Deployment Name operation initiates a change in the running status of a deployment. The status of a deployment can be running or suspended. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460808.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -6026,7 +6026,7 @@ exports.init = function (cli) { var deploymentUpdateStatusByDeploymentSlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentUpdateStatusByDeploymentSlot.command('update-status-by-deployment-slot [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the update-status-by-deployment-slot method.')) + .description($('The Update Deployment Status By Deployment Slot operation initiates a change in the running status of a deployment. The status of a deployment can be running or suspended. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460808.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -6516,7 +6516,7 @@ exports.init = function (cli) { var deploymentUpgradeByName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentUpgradeByName.command('upgrade-by-name [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your deployment by the upgrade-by-name method.')) + .description($('The Upgrade Deployment By Name operation initiates an update of role instances in a deployment using the package and configuration that you specify. For more information about updating role instances, see Update an Azure Service at http://msdn.microsoft.com/en-us/library/windowsazure/hh472157.aspx. This operation is an asynchronous operation. To determine whether the request has been processed, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. To perform an automatic update of a deployment, call Upgrade Deployment or Change Deployment Configuration with the Mode element set to automatic. The update proceeds from that point without a need for further input. You can call Get Operation Status to determine when the update is complete. To perform a manual update, first call Upgrade Deployment with the Mode element set to manual. Next, call Walk Upgrade Domain to update each domain within the deployment. You should make sure that the operation is complete by calling Get Operation Status before updating the next domain. Important: An update that adds or removes role instances will result in a configuration update to all roles that are deployed in the cloud service. Existing role instances need to be notified of new role instances so that all role instances can communicate together in the cloud service. By default, a cloud service is deployed with five update domains, which are updated one at a time during an in-place update. For information on modifying the number of update domains in the service definition file, see the Azure Service Definition Schema (.csdef File). To determine the update domain in which a particular instance is running in Windows Azure, use the UpdateDomain property of the RoleInstance class. See the Azure Managed Library Reference at http://msdn.microsoft.com/en-us/library/windowsazure/dd179380.aspx for more information. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460793.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -8672,7 +8672,7 @@ exports.init = function (cli) { var deploymentUpgradeBySlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentUpgradeBySlot.command('upgrade-by-slot [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the upgrade-by-slot method.')) + .description($('The Upgrade Deployment By Slot operation initiates an update of role instances in a deployment using the package and configuration that you specify. For more information about updating role instances, see Update an Azure Service at http://msdn.microsoft.com/en-us/library/windowsazure/hh472157.aspx. This operation is an asynchronous operation. To determine whether the request has been processed, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. To perform an automatic update of a deployment, call Upgrade Deployment or Change Deployment Configuration with the Mode element set to automatic. The update proceeds from that point without a need for further input. You can call Get Operation Status to determine when the update is complete. To perform a manual update, first call Upgrade Deployment with the Mode element set to manual. Next, call Walk Upgrade Domain to update each domain within the deployment. You should make sure that the operation is complete by calling Get Operation Status before updating the next domain. Important: An update that adds or removes role instances will result in a configuration update to all roles that are deployed in the cloud service. Existing role instances need to be notified of new role instances so that all role instances can communicate together in the cloud service. By default, a cloud service is deployed with five update domains, which are updated one at a time during an in-place update. For information on modifying the number of update domains in the service definition file, see the Azure Service Definition Schema (.csdef File). To determine the update domain in which a particular instance is running in Windows Azure, use the UpdateDomain property of the RoleInstance class. See the Azure Managed Library Reference at http://msdn.microsoft.com/en-us/library/windowsazure/dd179380.aspx for more information. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460793.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -10802,7 +10802,7 @@ exports.init = function (cli) { var deploymentWalkUpgradeDomainByDeploymentName = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentWalkUpgradeDomainByDeploymentName.command('walk-upgrade-domain-by-deployment-name [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your deployment by the walk-upgrade-domain-by-deployment-name method.')) + .description($('The Walk Upgrade Domain By Deployment Name operation specifies an update domain in which a role instance must be updated. For more information about updating role instances, see Update an Azure Service at http://msdn.microsoft.com/en-us/library/windowsazure/hh472157.aspx. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. Prior to calling the Walk Upgrade Domain operation you must have called Upgrade Deployment, Change Deployment Configuration, or Rollback Update Or Upgrade. By default, a service is deployed with five update domains, which are updated one at a time during an in-place update. For information on modifying the number of update domains in the service definition file, see the Azure Service Definition Schema (.csdef File). To perform a manual update of your deployment, proceed in this order: Call Upgrade Deployment with the Mode element set to manual. Call Walk Upgrade Domain to update each domain within the deployment. Update domains must be updated in order. For example, begin with domain 0, proceed to domain 1, and so on. Important: An update that adds or removes role instances will result in a configuration update to all roles that are deployed in the cloud service. Existing role instances need to be notified of new role instances so that all role instances can communicate together in the cloud service. While an update is in progress, call Get Deployment to determine its status. If the update is in progress, Get Deployment returns an UpgradeStatus element that contains information about the update. If the update is complete, or if no update is in progress, then the UpgradeStatus element is null. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460800.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -11049,7 +11049,7 @@ exports.init = function (cli) { var deploymentWalkUpgradeDomainByDeploymentSlot = cli.category('invoke').description('Commands to invoke service management operations.').category('deployment') .description($('Commands to manage your deployment. ')); deploymentWalkUpgradeDomainByDeploymentSlot.command('walk-upgrade-domain-by-deployment-slot [service-name] [deployment-slot] [parameters]') - .description($('Commands to manage your deployment by the walk-upgrade-domain-by-deployment-slot method.')) + .description($('The Walk Upgrade Domain By Deployment Slot operation specifies an update domain in which a role instance must be updated. For more information about updating role instances, see Update an Azure Service at http://msdn.microsoft.com/en-us/library/windowsazure/hh472157.aspx. This operation is an asynchronous operation. To determine whether the Management service has finished processing the request, call Get Operation Status. For more information on asynchronous operations, see Tracking Asynchronous Service Management Requests at http://msdn.microsoft.com/en-us/library/windowsazure/ee460791.aspx. Prior to calling the Walk Upgrade Domain operation you must have called Upgrade Deployment, Change Deployment Configuration, or Rollback Update Or Upgrade. By default, a service is deployed with five update domains, which are updated one at a time during an in-place update. For information on modifying the number of update domains in the service definition file, see the Azure Service Definition Schema (.csdef File). To perform a manual update of your deployment, proceed in this order: Call Upgrade Deployment with the Mode element set to manual. Call Walk Upgrade Domain to update each domain within the deployment. Update domains must be updated in order. For example, begin with domain 0, proceed to domain 1, and so on. Important: An update that adds or removes role instances will result in a configuration update to all roles that are deployed in the cloud service. Existing role instances need to be notified of new role instances so that all role instances can communicate together in the cloud service. While an update is in progress, call Get Deployment to determine its status. If the update is in progress, Get Deployment returns an UpgradeStatus element that contains information about the update. If the update is complete, or if no update is in progress, then the UpgradeStatus element is null. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460800.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-slot ', $('deployment-slot')) @@ -11297,7 +11297,7 @@ exports.init = function (cli) { var dnsServerAddDNSServer = cli.category('invoke').description('Commands to invoke service management operations.').category('dns-server') .description($('Commands to manage your dns server. ')); dnsServerAddDNSServer.command('add-dns-server [service-name] [deployment-name] [address] [name]') - .description($('Commands to manage your dns server by the add-dns-server method.')) + .description($('Add a definition for a DNS server to an existing deployment. VM's in this deployment will be programmed to use this DNS server for all DNS resolutions')) .usage('[options]
') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -11336,7 +11336,7 @@ exports.init = function (cli) { var dnsServerDeleteDNSServer = cli.category('invoke').description('Commands to invoke service management operations.').category('dns-server') .description($('Commands to manage your dns server. ')); dnsServerDeleteDNSServer.command('delete-dns-server [service-name] [deployment-name] [dns-server-name]') - .description($('Commands to manage your dns server by the delete-dns-server method.')) + .description($('Deletes a definition for an existing DNS server from the deployment')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -11367,7 +11367,7 @@ exports.init = function (cli) { var dnsServerUpdateDNSServer = cli.category('invoke').description('Commands to invoke service management operations.').category('dns-server') .description($('Commands to manage your dns server. ')); dnsServerUpdateDNSServer.command('update-dns-server [service-name] [deployment-name] [dns-server-name] [address] [name]') - .description($('Commands to manage your dns server by the update-dns-server method.')) + .description($('Updates a definition for an existing DNS server. Updates to address is the only change allowed. DNS server name cannot be changed')) .usage('[options]
') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -11470,7 +11470,7 @@ exports.init = function (cli) { var extensionImageRegister = cli.category('invoke').description('Commands to invoke service management operations.').category('extension-image') .description($('Commands to manage your extension image. ')); extensionImageRegister.command('register [parameters]') - .description($('Commands to manage your extension image by the register method.')) + .description($('Register a new extension. An extension is identified by the combination of its ProviderNamespace and Type (case-sensitive string). It is not allowed to register an extension with the same identity (i.e. combination of ProviderNamespace and Type) of an already-registered extension. To register new version of an existing extension, the Update Extension API should be used.')) .usage('[options] ') .option('-p, --parameters ', $('parameters')) .option('--parameter-file ', $('the input parameter file')) @@ -13689,7 +13689,7 @@ exports.init = function (cli) { var extensionImageUnregister = cli.category('invoke').description('Commands to invoke service management operations.').category('extension-image') .description($('Commands to manage your extension image. ')); extensionImageUnregister.command('unregister [provider-namespace] [type] [version]') - .description($('Commands to manage your extension image by the unregister method.')) + .description($('Unregister a version of an extension that was previously registered using either the Register Extension or Update Extension APIs. An extension version is identified by the combination of its ProviderNamespace, Type and Version which are specified when registering the extension. Unregistering is only allowed for internal extensions, that is, the extensions for which the IsInternalExtension field is set to 'true' during registration or during an update. There is a quota (15) on the number of extensions that can be registered per subscription. If your subscription runs out of quota, you will wither need to unregister some of the internal extensions or contact Azure (same email used to become a publisher) to increase the quota.')) .usage('[options] ') .option('--provider-namespace ', $('provider-namespace')) .option('--type ', $('type')) @@ -13776,7 +13776,7 @@ exports.init = function (cli) { var extensionImageUpdate = cli.category('invoke').description('Commands to invoke service management operations.').category('extension-image') .description($('Commands to manage your extension image. ')); extensionImageUpdate.command('update [parameters]') - .description($('Commands to manage your extension image by the update method.')) + .description($('Update a new extension. It is allowed to update an extension which had already been registered with the same identity (i.e. combination of ProviderNamespace and Type) but with different version. It will fail if the extension to update has an identity that has not been registered before, or there is already an extension with the same identity and same version.')) .usage('[options] ') .option('-p, --parameters ', $('parameters')) .option('--parameter-file ', $('the input parameter file')) @@ -16005,7 +16005,7 @@ exports.init = function (cli) { var hostedServiceAddExtension = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceAddExtension.command('add-extension [service-name] [id] [private-configuration] [provider-namespace] [public-configuration] [thumbprint] [thumbprint-algorithm] [type] [version]') - .description($('Commands to manage your hosted service by the add-extension method.')) + .description($('The Add Extension operation adds an available extension to your cloud service. In Azure, a process can run as an extension of a cloud service. For example, Remote Desktop Access or the Azure Diagnostics Agent can run as extensions to the cloud service. You can find the available extension by using the List Available Extensions operation. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn169558.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--id ', $('id')) @@ -16058,7 +16058,7 @@ exports.init = function (cli) { var hostedServiceCheckNameAvailability = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceCheckNameAvailability.command('check-name-availability [service-name]') - .description($('Commands to manage your hosted service by the check-name-availability method.')) + .description($('The Check Hosted Service Name Availability operation checks for the availability of the specified cloud service name. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj154116.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--parameter-file ', $('the input parameter file')) @@ -16088,7 +16088,7 @@ exports.init = function (cli) { var hostedServiceCreate = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceCreate.command('create [parameters]') - .description($('Commands to manage your hosted service by the create method.')) + .description($('The Create Hosted Service operation creates a new cloud service in Azure. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441304.aspx for more information)')) .usage('[options] ') .option('-p, --parameters ', $('parameters')) .option('--parameter-file ', $('the input parameter file')) @@ -16487,7 +16487,7 @@ exports.init = function (cli) { var hostedServiceDelete = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceDelete.command('delete [service-name]') - .description($('Commands to manage your hosted service by the delete method.')) + .description($('The Delete Hosted Service operation deletes the specified cloud service from Azure. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441305.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--parameter-file ', $('the input parameter file')) @@ -16506,7 +16506,7 @@ exports.init = function (cli) { var hostedServiceDeleteAll = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceDeleteAll.command('delete-all [service-name]') - .description($('Commands to manage your hosted service by the delete-all method.')) + .description($('The DeleteAll Hosted Service operation deletes the specified cloud service as well as operating system disk, attached data disks, and the source blobs for the disks from storage from Microsoft Azure. (see 'http://msdn.microsoft.com/en-us/library/windowsazure/gg441305.aspx' for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--parameter-file ', $('the input parameter file')) @@ -16526,7 +16526,7 @@ exports.init = function (cli) { var hostedServiceDeleteExtension = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceDeleteExtension.command('delete-extension [service-name] [extension-id]') - .description($('Commands to manage your hosted service by the delete-extension method.')) + .description($('The Delete Extension operation deletes the specified extension from a cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn169560.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--extension-id ', $('extension-id')) @@ -16547,7 +16547,7 @@ exports.init = function (cli) { var hostedServiceGet = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceGet.command('get [service-name]') - .description($('Commands to manage your hosted service by the get method.')) + .description($('The Get Hosted Service Properties operation retrieves system properties for the specified cloud service. These properties include the service name and service type; and the name of the affinity group to which the service belongs, or its location if it is not part of an affinity group. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460806.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--parameter-file ', $('the input parameter file')) @@ -16566,7 +16566,7 @@ exports.init = function (cli) { var hostedServiceGetDetailed = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceGetDetailed.command('get-detailed [service-name]') - .description($('Commands to manage your hosted service by the get-detailed method.')) + .description($('The Get Detailed Hosted Service Properties operation retrieves system properties for the specified cloud service. These properties include the service name and service type; the name of the affinity group to which the service belongs, or its location if it is not part of an affinity group; and information on the deployments of the service. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460806.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--parameter-file ', $('the input parameter file')) @@ -16586,7 +16586,7 @@ exports.init = function (cli) { var hostedServiceGetExtension = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceGetExtension.command('get-extension [service-name] [extension-id]') - .description($('Commands to manage your hosted service by the get-extension method.')) + .description($('The Get Extension operation retrieves information about a specified extension that was added to a cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn169557.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--extension-id ', $('extension-id')) @@ -16606,7 +16606,7 @@ exports.init = function (cli) { var hostedServiceList = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceList.command('list') - .description($('Commands to manage your hosted service by the list method.')) + .description($('The List Hosted Services operation lists the cloud services available under the current subscription. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460781.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -16622,7 +16622,7 @@ exports.init = function (cli) { var hostedServiceListAvailableExtensions = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceListAvailableExtensions.command('list-available-extensions') - .description($('Commands to manage your hosted service by the list-available-extensions method.')) + .description($('The List Available Extensions operation lists the extensions that are available to add to your cloud service. In Windows Azure, a process can run as an extension of a cloud service. For example, Remote Desktop Access or the Azure Diagnostics Agent can run as extensions to the cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn169559.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -16639,7 +16639,7 @@ exports.init = function (cli) { var hostedServiceListExtensions = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceListExtensions.command('list-extensions [service-name]') - .description($('Commands to manage your hosted service by the list-extensions method.')) + .description($('The List Extensions operation lists all of the extensions that were added to a cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn169561.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--parameter-file ', $('the input parameter file')) @@ -16659,7 +16659,7 @@ exports.init = function (cli) { var hostedServiceListExtensionVersions = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceListExtensionVersions.command('list-extension-versions [provider-namespace] [extension-type]') - .description($('Commands to manage your hosted service by the list-extension-versions method.')) + .description($('The List Extension Versions operation lists the versions of an extension that are available to add to a cloud service. In Azure, a process can run as an extension of a cloud service. For example, Remote Desktop Access or the Azure Diagnostics Agent can run as extensions to the cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn495437.aspx for more information)')) .usage('[options] ') .option('--provider-namespace ', $('provider-namespace')) .option('--extension-type ', $('extension-type')) @@ -16679,7 +16679,7 @@ exports.init = function (cli) { var hostedServiceListPublisherExtensions = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceListPublisherExtensions.command('list-publisher-extensions') - .description($('Commands to manage your hosted service by the list-publisher-extensions method.')) + .description($('The List Available Extensions operation lists the extensions that are available to add to your cloud service. In Windows Azure, a process can run as an extension of a cloud service. For example, Remote Desktop Access or the Azure Diagnostics Agent can run as extensions to the cloud service. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn169559.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -16705,7 +16705,7 @@ exports.init = function (cli) { var hostedServiceUpdate = cli.category('invoke').description('Commands to invoke service management operations.').category('hosted-service') .description($('Commands to manage your hosted service. ')); hostedServiceUpdate.command('update [service-name] [parameters]') - .description($('Commands to manage your hosted service by the update method.')) + .description($('The Update Hosted Service operation can update the label or description of a cloud service in Azure. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441303.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('-p, --parameters ', $('parameters')) @@ -17036,7 +17036,7 @@ exports.init = function (cli) { var loadBalancerCreate = cli.category('invoke').description('Commands to invoke service management operations.').category('load-balancer') .description($('Commands to manage your load balancer. ')); loadBalancerCreate.command('create [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your load balancer by the create method.')) + .description($('Add an internal load balancer to a an existing deployment. When used by an input endpoint, the internal load balancer will provide an additional private VIP that can be used for load balancing to the roles in this deployment.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -17504,7 +17504,7 @@ exports.init = function (cli) { var loadBalancerDelete = cli.category('invoke').description('Commands to invoke service management operations.').category('load-balancer') .description($('Commands to manage your load balancer. ')); loadBalancerDelete.command('delete [service-name] [deployment-name] [load-balancer-name]') - .description($('Commands to manage your load balancer by the delete method.')) + .description($('Delete an internal load balancer from the deployment.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -17539,7 +17539,7 @@ exports.init = function (cli) { var loadBalancerUpdate = cli.category('invoke').description('Commands to invoke service management operations.').category('load-balancer') .description($('Commands to manage your load balancer. ')); loadBalancerUpdate.command('update [service-name] [deployment-name] [load-balancer-name] [parameters]') - .description($('Commands to manage your load balancer by the update method.')) + .description($('Updates an internal load balancer associated with an existing deployment.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -18006,7 +18006,7 @@ exports.init = function (cli) { var operatingSystemList = cli.category('invoke').description('Commands to invoke service management operations.').category('operating-system') .description($('Commands to manage your operating system. ')); operatingSystemList.command('list') - .description($('Commands to manage your operating system by the list method.')) + .description($('The List Operating Systems operation lists the versions of the guest operating system that are currently available in Windows Azure. The 2010-10-28 version of List Operating Systems also indicates what family an operating system version belongs to. Currently Azure supports two operating system families: the Azure guest operating system that is substantially compatible with Windows Server 2008 SP2, and the Azure guest operating system that is substantially compatible with Windows Server 2008 R2. (see http://msdn.microsoft.com/en-us/library/windowsazure/ff684168.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -18022,7 +18022,7 @@ exports.init = function (cli) { var operatingSystemListFamilies = cli.category('invoke').description('Commands to invoke service management operations.').category('operating-system') .description($('Commands to manage your operating system. ')); operatingSystemListFamilies.command('list-families') - .description($('Commands to manage your operating system by the list-families method.')) + .description($('The List OS Families operation lists the guest operating system families available in Azure, and also lists the operating system versions available for each family. Currently Azure supports two operating system families: the Azure guest operating system that is substantially compatible with Windows Server 2008 SP2, and the Azure guest operating system that is substantially compatible with Windows Server 2008 R2. (see http://msdn.microsoft.com/en-us/library/windowsazure/gg441291.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -18046,7 +18046,7 @@ exports.init = function (cli) { var serviceCertificateCreate = cli.category('invoke').description('Commands to invoke service management operations.').category('service-certificate') .description($('Commands to manage your service certificate. ')); serviceCertificateCreate.command('create [service-name] [parameters]') - .description($('Commands to manage your service certificate by the create method.')) + .description($('The Create Service Certificate operation adds a certificate to a hosted service. This operation is an asynchronous operation. To determine whether the management service has finished processing the request, call Get Operation Status. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460817.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('-p, --parameters ', $('parameters')) @@ -18616,7 +18616,7 @@ exports.init = function (cli) { var serviceCertificateDelete = cli.category('invoke').description('Commands to invoke service management operations.').category('service-certificate') .description($('Commands to manage your service certificate. ')); serviceCertificateDelete.command('delete [service-name] [thumbprint] [thumbprint-algorithm]') - .description($('Commands to manage your service certificate by the delete method.')) + .description($('The Delete Service Certificate operation deletes a service certificate from the certificate store of a hosted service. This operation is an asynchronous operation. To determine whether the management service has finished processing the request, call Get Operation Status. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460803.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--thumbprint ', $('thumbprint')) @@ -18658,7 +18658,7 @@ exports.init = function (cli) { var serviceCertificateGet = cli.category('invoke').description('Commands to invoke service management operations.').category('service-certificate') .description($('Commands to manage your service certificate. ')); serviceCertificateGet.command('get [service-name] [thumbprint] [thumbprint-algorithm]') - .description($('Commands to manage your service certificate by the get method.')) + .description($('The Get Service Certificate operation returns the public data for the specified X.509 certificate associated with a hosted service. (see http://msdn.microsoft.com/en-us/library/windowsazure/ee460792.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--thumbprint ', $('thumbprint')) @@ -18694,7 +18694,7 @@ exports.init = function (cli) { var serviceCertificateList = cli.category('invoke').description('Commands to invoke service management operations.').category('service-certificate') .description($('Commands to manage your service certificate. ')); serviceCertificateList.command('list [service-name]') - .description($('Commands to manage your service certificate by the list method.')) + .description($('The List Service Certificates operation lists all of the service certificates associated with the specified hosted service. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj154105.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--parameter-file ', $('the input parameter file')) @@ -18726,7 +18726,7 @@ exports.init = function (cli) { var virtualMachineDiskCreateDataDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskCreateDataDisk.command('create-data-disk [service-name] [deployment-name] [role-name] [parameters]') - .description($('Commands to manage your virtual machine disk by the create-data-disk method.')) + .description($('The Create Data Disk operation adds a data disk to a virtual machine. There are three ways to create the data disk using the Add Data Disk operation. Option 1 - Attach an empty data disk to the role by specifying the disk label and location of the disk image. Do not include the DiskName and SourceMediaLink elements in the request body. Include the MediaLink element and reference a blob that is in the same geographical region as the role. You can also omit the MediaLink element. In this usage, Azure will create the data disk in the storage account configured as default for the role. Option 2 - Attach an existing data disk that is in the image repository. Do not include the DiskName and SourceMediaLink elements in the request body. Specify the data disk to use by including the DiskName element. Note: If included the in the response body, the MediaLink and LogicalDiskSizeInGB elements are ignored. Option 3 - Specify the location of a blob in your storage account that contain a disk image to use. Include the SourceMediaLink element. Note: If the MediaLink element isincluded, it is ignored. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157199.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -19138,7 +19138,7 @@ exports.init = function (cli) { var virtualMachineDiskCreateDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskCreateDisk.command('create-disk [parameters]') - .description($('Commands to manage your virtual machine disk by the create-disk method.')) + .description($('The Create Disk operation adds a disk to the user image repository. The disk can be an operating system disk or a data disk. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157178.aspx for more information)')) .usage('[options] ') .option('-p, --parameters ', $('parameters')) .option('--parameter-file ', $('the input parameter file')) @@ -19460,7 +19460,7 @@ exports.init = function (cli) { var virtualMachineDiskDeleteDataDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskDeleteDataDisk.command('delete-data-disk [service-name] [deployment-name] [role-name]') - .description($('Commands to manage your virtual machine disk by the delete-data-disk method.')) + .description($('The Delete Data Disk operation removes the specified data disk from a virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157179.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -19504,7 +19504,7 @@ exports.init = function (cli) { var virtualMachineDiskDeleteDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskDeleteDisk.command('delete-disk [name]') - .description($('Commands to manage your virtual machine disk by the delete-disk method.')) + .description($('The Delete Disk operation deletes the specified data or operating system disk from your image repository. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157200.aspx for more information)')) .usage('[options] ') .option('-n, --name ', $('name')) .option('--parameter-file ', $('the input parameter file')) @@ -19536,7 +19536,7 @@ exports.init = function (cli) { var virtualMachineDiskGetDataDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskGetDataDisk.command('get-data-disk [service-name] [deployment-name] [role-name]') - .description($('Commands to manage your virtual machine disk by the get-data-disk method.')) + .description($('The Get Data Disk operation retrieves the specified data disk from a virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157180.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -19569,7 +19569,7 @@ exports.init = function (cli) { var virtualMachineDiskGetDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskGetDisk.command('get-disk [name]') - .description($('Commands to manage your virtual machine disk by the get-disk method.')) + .description($('The Get Disk operation retrieves a disk from the user image repository. The disk can be an operating system disk or a data disk. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157178.aspx for more information)')) .usage('[options] ') .option('-n, --name ', $('name')) .option('--parameter-file ', $('the input parameter file')) @@ -19587,7 +19587,7 @@ exports.init = function (cli) { var virtualMachineDiskListDisks = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskListDisks.command('list-disks') - .description($('Commands to manage your virtual machine disk by the list-disks method.')) + .description($('The List Disks operation retrieves a list of the disks in your image repository. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157176.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -19617,7 +19617,7 @@ exports.init = function (cli) { var virtualMachineDiskUpdateDataDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskUpdateDataDisk.command('update-data-disk [service-name] [deployment-name] [role-name] [parameters]') - .description($('Commands to manage your virtual machine disk by the update-data-disk method.')) + .description($('The Update Data Disk operation updates the specified data disk attached to the specified virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157190.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -20015,7 +20015,7 @@ exports.init = function (cli) { var virtualMachineDiskUpdateDisk = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskUpdateDisk.command('update-disk [name] [parameters]') - .description($('Commands to manage your virtual machine disk by the update-disk method.')) + .description($('The Add Disk operation adds a disk to the user image repository. The disk can be an operating system disk or a data disk. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157178.aspx for more information)')) .usage('[options] ') .option('-n, --name ', $('name')) .option('-p, --parameters ', $('parameters')) @@ -20401,7 +20401,7 @@ exports.init = function (cli) { var virtualMachineDiskUpdateDiskSize = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-disk') .description($('Commands to manage your virtual machine disk. ')); virtualMachineDiskUpdateDiskSize.command('update-disk-size [name] [parameters]') - .description($('Commands to manage your virtual machine disk by the update-disk-size method.')) + .description($('The Add Disk operation adds a disk to the user image repository. The disk can be an operating system disk or a data disk. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157178.aspx for more information)')) .usage('[options] ') .option('-n, --name ', $('name')) .option('-p, --parameters ', $('parameters')) @@ -20776,7 +20776,7 @@ exports.init = function (cli) { var virtualMachineExtensionList = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-extension') .description($('Commands to manage your virtual machine extension. ')); virtualMachineExtensionList.command('list') - .description($('Commands to manage your virtual machine extension by the list method.')) + .description($('The List Resource Extensions operation lists the resource extensions that are available to add to a Virtual Machine. In Azure, a process can run as a resource extension of a Virtual Machine. For example, Remote Desktop Access or the Azure Diagnostics Agent can run as resource extensions to the Virtual Machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn495441.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -20794,7 +20794,7 @@ exports.init = function (cli) { var virtualMachineExtensionListVersions = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-extension') .description($('Commands to manage your virtual machine extension. ')); virtualMachineExtensionListVersions.command('list-versions [publisher-name] [extension-name]') - .description($('Commands to manage your virtual machine extension by the list-versions method.')) + .description($('The List Resource Extension Versions operation lists the versions of a resource extension that are available to add to a Virtual Machine. In Azure, a process can run as a resource extension of a Virtual Machine. For example, Remote Desktop Access or the Azure Diagnostics Agent can run as resource extensions to the Virtual Machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/dn495440.aspx for more information)')) .usage('[options] ') .option('--publisher-name ', $('publisher-name')) .option('--extension-name ', $('extension-name')) @@ -20954,7 +20954,7 @@ exports.init = function (cli) { var virtualMachineCaptureOSImage = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineCaptureOSImage.command('capture-os-image [service-name] [deployment-name] [virtual-machine-name] [parameters]') - .description($('Commands to manage your virtual machine by the capture-os-image method.')) + .description($('The Capture Role operation creates a copy of the operating system virtual hard disk (VHD) that is deployed in the virtual machine, saves the VHD copy in the same storage location as the operating system VHD, and registers the copy as an image in your image gallery. From the captured image, you can create additional customized virtual machines. For more information about images and disks, see Manage Disks and Images at http://msdn.microsoft.com/en-us/library/windowsazure/jj672979.aspx. For more information about capturing images, see How to Capture an Image of a Virtual Machine Running Windows Server 2008 R2 at http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-capture-image-windows-server/ or How to Capture an Image of a Virtual Machine Running Linux at http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-linux-capture-image/. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157201.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -27051,7 +27051,7 @@ exports.init = function (cli) { var virtualMachineCaptureVMImage = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineCaptureVMImage.command('capture-vm-image [service-name] [deployment-name] [virtual-machine-name] [parameters]') - .description($('Commands to manage your virtual machine by the capture-vm-image method.')) + .description($('Capture role as VM template.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -27628,7 +27628,7 @@ exports.init = function (cli) { var virtualMachineCreate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineCreate.command('create [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your virtual machine by the create method.')) + .description($('The Create Role operation adds a virtual machine to an existing deployment. You can refer to the OSDisk in the Add Role operation in the following ways: Platform/User Image - Set the SourceImageName to a platform or user image. You can optionally specify the DiskName and MediaLink values as part the operation to control the name and location of target disk. When DiskName and MediaLink are specified in this mode, they must not already exist in the system, otherwise a conflict fault is returned; UserDisk - Set DiskName to a user supplied image in image repository. SourceImageName must be set to NULL. All other properties are ignored; or Blob in a Storage Account - Set MediaLink to a blob containing the image. SourceImageName and DiskName are set to NULL. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157186.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -35823,7 +35823,7 @@ exports.init = function (cli) { var virtualMachineCreateDeployment = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineCreateDeployment.command('create-deployment [service-name] [parameters]') - .description($('Commands to manage your virtual machine by the create-deployment method.')) + .description($('The Create Virtual Machine Deployment operation provisions a virtual machine based on the supplied configuration. When you create a deployment of a virtual machine, you should make sure that the cloud service and the disk or image that you use are located in the same region. For example, if the cloud service was created in the West US region, the disk or image that you use should also be located in a storage account in the West US region. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157194.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('-p, --parameters ', $('parameters')) @@ -45407,7 +45407,7 @@ exports.init = function (cli) { var virtualMachineDelete = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineDelete.command('delete [service-name] [deployment-name] [virtual-machine-name]') - .description($('Commands to manage your virtual machine by the delete method.')) + .description($('The Delete Role operation deletes the specified virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157184.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -45442,7 +45442,7 @@ exports.init = function (cli) { var virtualMachineGet = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineGet.command('get [service-name] [deployment-name] [virtual-machine-name]') - .description($('Commands to manage your virtual machine by the get method.')) + .description($('The Get Role operation retrieves information about the specified virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157193.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -45467,7 +45467,7 @@ exports.init = function (cli) { var virtualMachineGetRemoteDesktopFile = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineGetRemoteDesktopFile.command('get-remote-desktop-file [service-name] [deployment-name] [virtual-machine-name]') - .description($('Commands to manage your virtual machine by the get-remote-desktop-file method.')) + .description($('The Download RDP file operation retrieves the Remote Desktop Protocol configuration file from the specified virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157183.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -45492,7 +45492,7 @@ exports.init = function (cli) { var virtualMachineRestart = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineRestart.command('restart [service-name] [deployment-name] [virtual-machine-name]') - .description($('Commands to manage your virtual machine by the restart method.')) + .description($('The Restart role operation restarts the specified virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157197.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -45522,7 +45522,7 @@ exports.init = function (cli) { var virtualMachineShutdown = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineShutdown.command('shutdown [service-name] [deployment-name] [virtual-machine-name] [parameters]') - .description($('Commands to manage your virtual machine by the shutdown method.')) + .description($('The Shutdown Role operation shuts down the specified virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157195.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -45991,7 +45991,7 @@ exports.init = function (cli) { var virtualMachineShutdownRoles = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineShutdownRoles.command('shutdown-roles [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your virtual machine by the shutdown-roles method.')) + .description($('The Shutdown Roles operation stops the specified set of virtual machines.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -46378,7 +46378,7 @@ exports.init = function (cli) { var virtualMachineStart = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineStart.command('start [service-name] [deployment-name] [virtual-machine-name]') - .description($('Commands to manage your virtual machine by the start method.')) + .description($('The Start Role operation starts the specified virtual machine. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157189.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -46409,7 +46409,7 @@ exports.init = function (cli) { var virtualMachineStartRoles = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineStartRoles.command('start-roles [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your virtual machine by the start-roles method.')) + .description($('The Start Roles operation starts the specified set of virtual machines.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -46960,7 +46960,7 @@ exports.init = function (cli) { var virtualMachineUpdate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineUpdate.command('update [service-name] [deployment-name] [virtual-machine-name] [parameters]') - .description($('Commands to manage your virtual machine by the update method.')) + .description($('The Update Role operation adds a virtual machine to an existing deployment. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157187.aspx for more information)')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -54417,7 +54417,7 @@ exports.init = function (cli) { var virtualMachineUpdateLoadBalancedEndpointSet = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine') .description($('Commands to manage your virtual machine. ')); virtualMachineUpdateLoadBalancedEndpointSet.command('update-load-balanced-endpoint-set [service-name] [deployment-name] [parameters]') - .description($('Commands to manage your virtual machine by the update-load-balanced-endpoint-set method.')) + .description($('The Update Load Balanced Endpoint Set operation changes the specified load-balanced InputEndpoints on all the roles of an Infrastructure as a Service deployment. Non-load-balanced endpoints must be changed using UpdateRole.')) .usage('[options] ') .option('--service-name ', $('service-name')) .option('--deployment-name ', $('deployment-name')) @@ -55968,7 +55968,7 @@ exports.init = function (cli) { var virtualMachineOSImageCreate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageCreate.command('create [parameters]') - .description($('Commands to manage your virtual machine os image by the create method.')) + .description($('The Create OS Image operation adds an operating system image that is stored in a storage account and is available from the image repository. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157192.aspx for more information)')) .usage('[options] ') .option('-p, --parameters ', $('parameters')) .option('--parameter-file ', $('the input parameter file')) @@ -56584,7 +56584,7 @@ exports.init = function (cli) { var virtualMachineOSImageDelete = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageDelete.command('delete [image-name]') - .description($('Commands to manage your virtual machine os image by the delete method.')) + .description($('The Delete OS Image operation deletes the specified OS image from your image repository. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157203.aspx for more information)')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('--parameter-file ', $('the input parameter file')) @@ -56613,7 +56613,7 @@ exports.init = function (cli) { var virtualMachineOSImageGet = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageGet.command('get [image-name]') - .description($('Commands to manage your virtual machine os image by the get method.')) + .description($('The Get OS Image operation retrieves the details for an operating system image from the image repository. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157191.aspx for more information)')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('--parameter-file ', $('the input parameter file')) @@ -56632,7 +56632,7 @@ exports.init = function (cli) { var virtualMachineOSImageGetDetails = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageGetDetails.command('get-details [image-name]') - .description($('Commands to manage your virtual machine os image by the get-details method.')) + .description($('Gets OS Image's properties and its replication details. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this.')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('--parameter-file ', $('the input parameter file')) @@ -56650,7 +56650,7 @@ exports.init = function (cli) { var virtualMachineOSImageList = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageList.command('list') - .description($('Commands to manage your virtual machine os image by the list method.')) + .description($('The List OS Images operation retrieves a list of the operating system images from the image repository. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157191.aspx for more information)')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -56687,7 +56687,7 @@ exports.init = function (cli) { var virtualMachineOSImageReplicate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageReplicate.command('replicate [image-name] [parameters]') - .description($('Commands to manage your virtual machine os image by the replicate method.')) + .description($('Replicate an OS image to multiple target locations. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this.')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('-p, --parameters ', $('parameters')) @@ -57665,7 +57665,7 @@ exports.init = function (cli) { var virtualMachineOSImageShare = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageShare.command('share [image-name] [permission]') - .description($('Commands to manage your virtual machine os image by the share method.')) + .description($('Share an already replicated OS image. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this.')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('--permission ', $('permission')) @@ -57686,7 +57686,7 @@ exports.init = function (cli) { var virtualMachineOSImageUnreplicate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageUnreplicate.command('unreplicate [image-name]') - .description($('Commands to manage your virtual machine os image by the unreplicate method.')) + .description($('Unreplicate an OS image to multiple target locations. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this. Note: The operation removes the published copies of the user OS Image. It does not remove the actual user OS Image. To remove the actual user OS Image, the publisher will have to call Delete OS Image.')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('--parameter-file ', $('the input parameter file')) @@ -57721,7 +57721,7 @@ exports.init = function (cli) { var virtualMachineOSImageUpdate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-os-image') .description($('Commands to manage your virtual machine os image. ')); virtualMachineOSImageUpdate.command('update [image-name] [parameters]') - .description($('Commands to manage your virtual machine os image by the update method.')) + .description($('The Update OS Image operation updates an OS image that in your image repository. (see http://msdn.microsoft.com/en-us/library/windowsazure/jj157198.aspx for more information)')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('-p, --parameters ', $('parameters')) @@ -58289,7 +58289,7 @@ exports.init = function (cli) { var virtualMachineVMImageCreate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageCreate.command('create [parameters]') - .description($('Commands to manage your virtual machine vm image by the create method.')) + .description($('The Create VM Image operation creates a VM image that in your image repository. (see http://msdn.microsoft.com/en-us/library/azure/dn775054.aspx for more information)')) .usage('[options] ') .option('-p, --parameters ', $('parameters')) .option('--parameter-file ', $('the input parameter file')) @@ -59309,7 +59309,7 @@ exports.init = function (cli) { var virtualMachineVMImageDelete = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageDelete.command('delete [vm-image-name]') - .description($('Commands to manage your virtual machine vm image by the delete method.')) + .description($('The Delete Virtual Machine Image operation deletes the specified virtual machine image.')) .usage('[options] ') .option('--vm-image-name ', $('vm-image-name')) .option('--parameter-file ', $('the input parameter file')) @@ -59338,7 +59338,7 @@ exports.init = function (cli) { var virtualMachineVMImageGetDetails = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageGetDetails.command('get-details [vm-image-name]') - .description($('Commands to manage your virtual machine vm image by the get-details method.')) + .description($('Gets VMImage's properties and its replication details. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this.')) .usage('[options] ') .option('--vm-image-name ', $('vm-image-name')) .option('--parameter-file ', $('the input parameter file')) @@ -59356,7 +59356,7 @@ exports.init = function (cli) { var virtualMachineVMImageList = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageList.command('list') - .description($('Commands to manage your virtual machine vm image by the list method.')) + .description($('The List Virtual Machine Images operation retrieves a list of the virtual machine images.')) .usage('[options]') .option('--parameter-file ', $('the input parameter file')) .option('-s, --subscription ', $('the subscription identifier')) @@ -59393,7 +59393,7 @@ exports.init = function (cli) { var virtualMachineVMImageReplicate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageReplicate.command('replicate [vm-image-name] [parameters]') - .description($('Commands to manage your virtual machine vm image by the replicate method.')) + .description($('Replicate an VM image to multiple target locations. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this.')) .usage('[options] ') .option('--vm-image-name ', $('vm-image-name')) .option('-p, --parameters ', $('parameters')) @@ -60371,7 +60371,7 @@ exports.init = function (cli) { var virtualMachineVMImageShare = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageShare.command('share [vm-image-name] [permission]') - .description($('Commands to manage your virtual machine vm image by the share method.')) + .description($('Share an already replicated VM image. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this.')) .usage('[options] ') .option('--vm-image-name ', $('vm-image-name')) .option('--permission ', $('permission')) @@ -60392,7 +60392,7 @@ exports.init = function (cli) { var virtualMachineVMImageUnreplicate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageUnreplicate.command('unreplicate [vm-image-name]') - .description($('Commands to manage your virtual machine vm image by the unreplicate method.')) + .description($('Unreplicate an VM image to multiple target locations. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this. Note: The operation removes the published copies of the user VM Image. It does not remove the actual user VM Image. To remove the actual user VM Image, the publisher will have to call Delete VM Image.')) .usage('[options] ') .option('--vm-image-name ', $('vm-image-name')) .option('--parameter-file ', $('the input parameter file')) @@ -60436,7 +60436,7 @@ exports.init = function (cli) { var virtualMachineVMImageUpdate = cli.category('invoke').description('Commands to invoke service management operations.').category('virtual-machine-vm-image') .description($('Commands to manage your virtual machine vm image. ')); virtualMachineVMImageUpdate.command('update [image-name] [parameters]') - .description($('Commands to manage your virtual machine vm image by the update method.')) + .description($('The Update VM Image operation updates a VM image that in your image repository.')) .usage('[options] ') .option('--image-name ', $('image-name')) .option('-p, --parameters ', $('parameters')) From 18fd043922b82c468fdafb59f534afcad560f277 Mon Sep 17 00:00:00 2001 From: huangpf Date: Wed, 2 Mar 2016 10:00:17 -0800 Subject: [PATCH 4/7] Update --- .../Compute/Commands.Compute/Generated/cli.js | 84 ++ .../Automation/Generate-ParameterCommand.ps1 | 3 + .../Generated/cli.js | 740 ++++++++++++++++++ 3 files changed, 827 insertions(+) diff --git a/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js b/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js index 7454b277249e..c3ed44a4012e 100644 --- a/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js +++ b/src/ResourceManager/Compute/Commands.Compute/Generated/cli.js @@ -290,6 +290,7 @@ exports.init = function (cli) { .option('--location ', $('Set the location value.')) .option('--tags ', $('Set the tags value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -425,6 +426,7 @@ exports.init = function (cli) { .option('--location', $('Remove the location value.')) .option('--tags', $('Remove the tags value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -512,6 +514,7 @@ exports.init = function (cli) { .option('--location ', $('Add the location value.')) .option('--tags ', $('Add the tags value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -644,6 +647,7 @@ exports.init = function (cli) { .option('--tier ', $('Set the tier value.')) .option('--capacity ', $('Set the capacity value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -714,6 +718,7 @@ exports.init = function (cli) { .option('--tier', $('Remove the tier value.')) .option('--capacity', $('Remove the capacity value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -771,6 +776,7 @@ exports.init = function (cli) { .option('--tier ', $('Add the tier value.')) .option('--capacity ', $('Add the capacity value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -842,6 +848,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--mode ', $('Set the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -889,6 +896,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--mode', $('Remove the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -936,6 +944,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--mode ', $('Add the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -989,6 +998,7 @@ exports.init = function (cli) { .option('--network-profile ', $('Set the network-profile value.')) .option('--extension-profile ', $('Set the extension-profile value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1069,6 +1079,7 @@ exports.init = function (cli) { .option('--network-profile', $('Remove the network-profile value.')) .option('--extension-profile', $('Remove the extension-profile value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1131,6 +1142,7 @@ exports.init = function (cli) { .option('--network-profile ', $('Add the network-profile value.')) .option('--extension-profile ', $('Add the extension-profile value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1217,6 +1229,7 @@ exports.init = function (cli) { .option('--linux-configuration ', $('Set the linux-configuration value.')) .option('--secrets ', $('Set the secrets value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1330,6 +1343,7 @@ exports.init = function (cli) { .option('--linux-configuration', $('Remove the linux-configuration value.')) .option('--secrets', $('Remove the secrets value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1407,6 +1421,7 @@ exports.init = function (cli) { .option('--linux-configuration ', $('Add the linux-configuration value.')) .option('--secrets ', $('Add the secrets value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1521,6 +1536,7 @@ exports.init = function (cli) { .option('--additional-unattend-content ', $('Set the additional-unattend-content value.')) .option('--win-rm ', $('Set the win-rm value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1614,6 +1630,7 @@ exports.init = function (cli) { .option('--additional-unattend-content', $('Remove the additional-unattend-content value.')) .option('--win-rm', $('Remove the win-rm value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1681,6 +1698,7 @@ exports.init = function (cli) { .option('--additional-unattend-content ', $('Add the additional-unattend-content value.')) .option('--win-rm ', $('Add the win-rm value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1778,6 +1796,7 @@ exports.init = function (cli) { .option('--setting-name ', $('Set the setting-name value.')) .option('--content ', $('Set the content value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1862,6 +1881,7 @@ exports.init = function (cli) { .option('--setting-name', $('Remove the setting-name value.')) .option('--content', $('Remove the content value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1924,6 +1944,7 @@ exports.init = function (cli) { .option('--setting-name ', $('Add the setting-name value.')) .option('--content ', $('Add the content value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2004,6 +2025,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--listeners ', $('Set the listeners value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2051,6 +2073,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--listeners', $('Remove the listeners value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2098,6 +2121,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--listeners ', $('Add the listeners value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2151,6 +2175,7 @@ exports.init = function (cli) { .option('--protocol ', $('Set the protocol value.')) .option('--certificate-url ', $('Set the certificate-url value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2213,6 +2238,7 @@ exports.init = function (cli) { .option('--protocol', $('Remove the protocol value.')) .option('--certificate-url', $('Remove the certificate-url value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2265,6 +2291,7 @@ exports.init = function (cli) { .option('--protocol ', $('Add the protocol value.')) .option('--certificate-url ', $('Add the certificate-url value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2326,6 +2353,7 @@ exports.init = function (cli) { .option('--disable-password-authentication ', $('Set the disable-password-authentication value.')) .option('--ssh ', $('Set the ssh value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2385,6 +2413,7 @@ exports.init = function (cli) { .option('--disable-password-authentication', $('Remove the disable-password-authentication value.')) .option('--ssh', $('Remove the ssh value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2437,6 +2466,7 @@ exports.init = function (cli) { .option('--disable-password-authentication ', $('Add the disable-password-authentication value.')) .option('--ssh ', $('Add the ssh value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2498,6 +2528,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--public-keys ', $('Set the public-keys value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2545,6 +2576,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--public-keys', $('Remove the public-keys value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2592,6 +2624,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--public-keys ', $('Add the public-keys value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2645,6 +2678,7 @@ exports.init = function (cli) { .option('--path ', $('Set the path value.')) .option('--key-data ', $('Set the key-data value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2707,6 +2741,7 @@ exports.init = function (cli) { .option('--path', $('Remove the path value.')) .option('--key-data', $('Remove the key-data value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2759,6 +2794,7 @@ exports.init = function (cli) { .option('--path ', $('Add the path value.')) .option('--key-data ', $('Add the key-data value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2822,6 +2858,7 @@ exports.init = function (cli) { .option('--source-vault ', $('Set the source-vault value.')) .option('--vault-certificates ', $('Set the vault-certificates value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2884,6 +2921,7 @@ exports.init = function (cli) { .option('--source-vault', $('Remove the source-vault value.')) .option('--vault-certificates', $('Remove the vault-certificates value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2936,6 +2974,7 @@ exports.init = function (cli) { .option('--source-vault ', $('Add the source-vault value.')) .option('--vault-certificates ', $('Add the vault-certificates value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2997,6 +3036,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Set the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3045,6 +3085,7 @@ exports.init = function (cli) { .option('--secrets-index ', $('Indexer: secrets-index.')) .option('--id', $('Remove the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3092,6 +3133,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Add the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3146,6 +3188,7 @@ exports.init = function (cli) { .option('--certificate-url ', $('Set the certificate-url value.')) .option('--certificate-store ', $('Set the certificate-store value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3209,6 +3252,7 @@ exports.init = function (cli) { .option('--certificate-url', $('Remove the certificate-url value.')) .option('--certificate-store', $('Remove the certificate-store value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3261,6 +3305,7 @@ exports.init = function (cli) { .option('--certificate-url ', $('Add the certificate-url value.')) .option('--certificate-store ', $('Add the certificate-store value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3322,6 +3367,7 @@ exports.init = function (cli) { .option('--image-reference ', $('Set the image-reference value.')) .option('--os-disk ', $('Set the os-disk value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3380,6 +3426,7 @@ exports.init = function (cli) { .option('--image-reference', $('Remove the image-reference value.')) .option('--os-disk', $('Remove the os-disk value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3432,6 +3479,7 @@ exports.init = function (cli) { .option('--image-reference ', $('Add the image-reference value.')) .option('--os-disk ', $('Add the os-disk value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3495,6 +3543,7 @@ exports.init = function (cli) { .option('--sku ', $('Set the sku value.')) .option('--version ', $('Set the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3575,6 +3624,7 @@ exports.init = function (cli) { .option('--sku', $('Remove the sku value.')) .option('--version', $('Remove the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3637,6 +3687,7 @@ exports.init = function (cli) { .option('--sku ', $('Add the sku value.')) .option('--version ', $('Add the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3722,6 +3773,7 @@ exports.init = function (cli) { .option('--image ', $('Set the image value.')) .option('--vhd-containers ', $('Set the vhd-containers value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3824,6 +3876,7 @@ exports.init = function (cli) { .option('--image', $('Remove the image value.')) .option('--vhd-containers', $('Remove the vhd-containers value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3896,6 +3949,7 @@ exports.init = function (cli) { .option('--image ', $('Add the image value.')) .option('--vhd-containers ', $('Add the vhd-containers value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3996,6 +4050,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--uri ', $('Set the uri value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4043,6 +4098,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--uri', $('Remove the uri value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4090,6 +4146,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--uri ', $('Add the uri value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4141,6 +4198,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4181,6 +4239,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--index ', $('Indexer: index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4217,6 +4276,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4257,6 +4317,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--network-interface-configurations ', $('Set the network-interface-configurations value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4304,6 +4365,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--network-interface-configurations', $('Remove the network-interface-configurations value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4351,6 +4413,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--network-interface-configurations ', $('Add the network-interface-configurations value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4406,6 +4469,7 @@ exports.init = function (cli) { .option('--ip-configurations ', $('Set the ip-configurations value.')) .option('--id ', $('Set the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4491,6 +4555,7 @@ exports.init = function (cli) { .option('--ip-configurations', $('Remove the ip-configurations value.')) .option('--id', $('Remove the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4553,6 +4618,7 @@ exports.init = function (cli) { .option('--ip-configurations ', $('Add the ip-configurations value.')) .option('--id ', $('Add the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4641,6 +4707,7 @@ exports.init = function (cli) { .option('--load-balancer-inbound-nat-pools ', $('Set the load-balancer-inbound-nat-pools value.')) .option('--id ', $('Set the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4737,6 +4804,7 @@ exports.init = function (cli) { .option('--load-balancer-inbound-nat-pools', $('Remove the load-balancer-inbound-nat-pools value.')) .option('--id', $('Remove the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4804,6 +4872,7 @@ exports.init = function (cli) { .option('--load-balancer-inbound-nat-pools ', $('Add the load-balancer-inbound-nat-pools value.')) .option('--id ', $('Add the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4896,6 +4965,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Set the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4945,6 +5015,7 @@ exports.init = function (cli) { .option('--network-interface-configurations-index ', $('Indexer: network-interface-configurations-index.')) .option('--id', $('Remove the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4992,6 +5063,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Add the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5046,6 +5118,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Set the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5099,6 +5172,7 @@ exports.init = function (cli) { .option('--network-interface-configurations-index ', $('Indexer: network-interface-configurations-index.')) .option('--id', $('Remove the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5146,6 +5220,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Add the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5200,6 +5275,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Set the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5253,6 +5329,7 @@ exports.init = function (cli) { .option('--network-interface-configurations-index ', $('Indexer: network-interface-configurations-index.')) .option('--id', $('Remove the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5300,6 +5377,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--id ', $('Add the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5350,6 +5428,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--extensions ', $('Set the extensions value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5397,6 +5476,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--extensions', $('Remove the extensions value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5444,6 +5524,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--extensions ', $('Add the extensions value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5504,6 +5585,7 @@ exports.init = function (cli) { .option('--provisioning-state ', $('Set the provisioning-state value.')) .option('--id ', $('Set the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5644,6 +5726,7 @@ exports.init = function (cli) { .option('--provisioning-state', $('Remove the provisioning-state value.')) .option('--id', $('Remove the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5731,6 +5814,7 @@ exports.init = function (cli) { .option('--provisioning-state ', $('Add the provisioning-state value.')) .option('--id ', $('Add the id value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-ParameterCommand.ps1 b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-ParameterCommand.ps1 index 8f5ae04ad573..077c014cd829 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-ParameterCommand.ps1 +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Automation/Generate-ParameterCommand.ps1 @@ -209,6 +209,7 @@ function Generate-CliParameterCommandImpl } $code += " .execute(function(options, _) {" + $NEW_LINE; + $code += " cli.output.verbose('', _); // disable warning: '_ is defined but never used.'" + $NEW_LINE; $code += " cli.output.verbose(JSON.stringify(options));" + $NEW_LINE; $code += " if (options.parse && options.value) {" + $NEW_LINE; $code += " options.value = JSON.parse(options.value);" + $NEW_LINE; @@ -316,6 +317,7 @@ function Generate-CliParameterCommandImpl # 2.3 Function Definition $code += " .execute(function(options, _) {" + $NEW_LINE; + $code += " cli.output.verbose('', _); // disable warning: '_ is defined but never used.'" + $NEW_LINE; $code += " cli.output.verbose(JSON.stringify(options));" + $NEW_LINE; $code += " cli.output.verbose(`'=====================================`');" + $NEW_LINE; $code += " cli.output.verbose(`'Reading file content from: \`"`' + options.parameterFile + `'\`"`');" + $NEW_LINE; @@ -399,6 +401,7 @@ function Generate-CliParameterCommandImpl } $code += " .execute(function(options, _) {" + $NEW_LINE; + $code += " cli.output.verbose('', _); // disable warning: '_ is defined but never used.'" + $NEW_LINE; $code += " cli.output.verbose(JSON.stringify(options));" + $NEW_LINE; $code += " if (options.parse && options.value) {" + $NEW_LINE; $code += " options.value = JSON.parse(options.value);" + $NEW_LINE; diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js index 195a0c6fc6ef..73dd94abc0a9 100644 --- a/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js +++ b/src/ServiceManagement/Compute/Commands.ServiceManagement.Preview/Generated/cli.js @@ -177,6 +177,7 @@ exports.init = function (cli) { .option('--mode ', $('Set the mode value.')) .option('--treat-warnings-as-error ', $('Set the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -269,6 +270,7 @@ exports.init = function (cli) { .option('--mode', $('Remove the mode value.')) .option('--treat-warnings-as-error', $('Remove the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -336,6 +338,7 @@ exports.init = function (cli) { .option('--mode ', $('Add the mode value.')) .option('--treat-warnings-as-error ', $('Add the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -428,6 +431,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Set the all-roles value.')) .option('--named-roles ', $('Set the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -486,6 +490,7 @@ exports.init = function (cli) { .option('--all-roles', $('Remove the all-roles value.')) .option('--named-roles', $('Remove the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -538,6 +543,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Add the all-roles value.')) .option('--named-roles ', $('Add the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -601,6 +607,7 @@ exports.init = function (cli) { .option('--id ', $('Set the id value.')) .option('--state ', $('Set the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -663,6 +670,7 @@ exports.init = function (cli) { .option('--id', $('Remove the id value.')) .option('--state', $('Remove the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -715,6 +723,7 @@ exports.init = function (cli) { .option('--id ', $('Add the id value.')) .option('--state ', $('Add the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -778,6 +787,7 @@ exports.init = function (cli) { .option('--extensions ', $('Set the extensions value.')) .option('--role-name ', $('Set the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -840,6 +850,7 @@ exports.init = function (cli) { .option('--extensions', $('Remove the extensions value.')) .option('--role-name', $('Remove the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -892,6 +903,7 @@ exports.init = function (cli) { .option('--extensions ', $('Add the extensions value.')) .option('--role-name ', $('Add the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -954,6 +966,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -995,6 +1008,7 @@ exports.init = function (cli) { .option('--index ', $('Indexer: index.')) .option('--named-roles-index ', $('Indexer: named-roles-index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1031,6 +1045,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1201,6 +1216,7 @@ exports.init = function (cli) { .option('--mode ', $('Set the mode value.')) .option('--treat-warnings-as-error ', $('Set the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1293,6 +1309,7 @@ exports.init = function (cli) { .option('--mode', $('Remove the mode value.')) .option('--treat-warnings-as-error', $('Remove the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1360,6 +1377,7 @@ exports.init = function (cli) { .option('--mode ', $('Add the mode value.')) .option('--treat-warnings-as-error ', $('Add the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1452,6 +1470,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Set the all-roles value.')) .option('--named-roles ', $('Set the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1510,6 +1529,7 @@ exports.init = function (cli) { .option('--all-roles', $('Remove the all-roles value.')) .option('--named-roles', $('Remove the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1562,6 +1582,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Add the all-roles value.')) .option('--named-roles ', $('Add the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1625,6 +1646,7 @@ exports.init = function (cli) { .option('--id ', $('Set the id value.')) .option('--state ', $('Set the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1687,6 +1709,7 @@ exports.init = function (cli) { .option('--id', $('Remove the id value.')) .option('--state', $('Remove the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1739,6 +1762,7 @@ exports.init = function (cli) { .option('--id ', $('Add the id value.')) .option('--state ', $('Add the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1802,6 +1826,7 @@ exports.init = function (cli) { .option('--extensions ', $('Set the extensions value.')) .option('--role-name ', $('Set the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1864,6 +1889,7 @@ exports.init = function (cli) { .option('--extensions', $('Remove the extensions value.')) .option('--role-name', $('Remove the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -1916,6 +1942,7 @@ exports.init = function (cli) { .option('--extensions ', $('Add the extensions value.')) .option('--role-name ', $('Add the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -1978,6 +2005,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2019,6 +2047,7 @@ exports.init = function (cli) { .option('--index ', $('Indexer: index.')) .option('--named-roles-index ', $('Indexer: named-roles-index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2055,6 +2084,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2231,6 +2261,7 @@ exports.init = function (cli) { .option('--start-deployment ', $('Set the start-deployment value.')) .option('--treat-warnings-as-error ', $('Set the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2357,6 +2388,7 @@ exports.init = function (cli) { .option('--start-deployment', $('Remove the start-deployment value.')) .option('--treat-warnings-as-error', $('Remove the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2439,6 +2471,7 @@ exports.init = function (cli) { .option('--start-deployment ', $('Add the start-deployment value.')) .option('--treat-warnings-as-error ', $('Add the treat-warnings-as-error value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2562,6 +2595,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Set the all-roles value.')) .option('--named-roles ', $('Set the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2620,6 +2654,7 @@ exports.init = function (cli) { .option('--all-roles', $('Remove the all-roles value.')) .option('--named-roles', $('Remove the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2672,6 +2707,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Add the all-roles value.')) .option('--named-roles ', $('Add the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2735,6 +2771,7 @@ exports.init = function (cli) { .option('--id ', $('Set the id value.')) .option('--state ', $('Set the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2797,6 +2834,7 @@ exports.init = function (cli) { .option('--id', $('Remove the id value.')) .option('--state', $('Remove the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -2849,6 +2887,7 @@ exports.init = function (cli) { .option('--id ', $('Add the id value.')) .option('--state ', $('Add the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2912,6 +2951,7 @@ exports.init = function (cli) { .option('--extensions ', $('Set the extensions value.')) .option('--role-name ', $('Set the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -2974,6 +3014,7 @@ exports.init = function (cli) { .option('--extensions', $('Remove the extensions value.')) .option('--role-name', $('Remove the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3026,6 +3067,7 @@ exports.init = function (cli) { .option('--extensions ', $('Add the extensions value.')) .option('--role-name ', $('Add the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3088,6 +3130,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3129,6 +3172,7 @@ exports.init = function (cli) { .option('--index ', $('Indexer: index.')) .option('--named-roles-index ', $('Indexer: named-roles-index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3165,6 +3209,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3403,6 +3448,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--name ', $('Set the name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3450,6 +3496,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--name', $('Remove the name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3497,6 +3544,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--name ', $('Add the name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3548,6 +3596,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3588,6 +3637,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--index ', $('Indexer: index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3624,6 +3674,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3815,6 +3866,7 @@ exports.init = function (cli) { .option('--container-uri ', $('Set the container-uri value.')) .option('--overwrite-existing ', $('Set the overwrite-existing value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -3874,6 +3926,7 @@ exports.init = function (cli) { .option('--container-uri', $('Remove the container-uri value.')) .option('--overwrite-existing', $('Remove the overwrite-existing value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -3926,6 +3979,7 @@ exports.init = function (cli) { .option('--container-uri ', $('Add the container-uri value.')) .option('--overwrite-existing ', $('Add the overwrite-existing value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4092,6 +4146,7 @@ exports.init = function (cli) { .option('--container-uri ', $('Set the container-uri value.')) .option('--overwrite-existing ', $('Set the overwrite-existing value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4151,6 +4206,7 @@ exports.init = function (cli) { .option('--container-uri', $('Remove the container-uri value.')) .option('--overwrite-existing', $('Remove the overwrite-existing value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4203,6 +4259,7 @@ exports.init = function (cli) { .option('--container-uri ', $('Add the container-uri value.')) .option('--overwrite-existing ', $('Add the overwrite-existing value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4587,6 +4644,7 @@ exports.init = function (cli) { .option('--force ', $('Set the force value.')) .option('--mode ', $('Set the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4645,6 +4703,7 @@ exports.init = function (cli) { .option('--force', $('Remove the force value.')) .option('--mode', $('Remove the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4697,6 +4756,7 @@ exports.init = function (cli) { .option('--force ', $('Add the force value.')) .option('--mode ', $('Add the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4758,6 +4818,7 @@ exports.init = function (cli) { .option('--force ', $('Set the force value.')) .option('--mode ', $('Set the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4816,6 +4877,7 @@ exports.init = function (cli) { .option('--force', $('Remove the force value.')) .option('--mode', $('Remove the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4868,6 +4930,7 @@ exports.init = function (cli) { .option('--force ', $('Add the force value.')) .option('--mode ', $('Add the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -4926,6 +4989,7 @@ exports.init = function (cli) { .usage('[options]') .option('--parameter-file ', $('The parameter file path.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -4961,6 +5025,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5106,6 +5171,7 @@ exports.init = function (cli) { .option('--force ', $('Set the force value.')) .option('--mode ', $('Set the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5164,6 +5230,7 @@ exports.init = function (cli) { .option('--force', $('Remove the force value.')) .option('--mode', $('Remove the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5216,6 +5283,7 @@ exports.init = function (cli) { .option('--force ', $('Add the force value.')) .option('--mode ', $('Add the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5277,6 +5345,7 @@ exports.init = function (cli) { .option('--force ', $('Set the force value.')) .option('--mode ', $('Set the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5335,6 +5404,7 @@ exports.init = function (cli) { .option('--force', $('Remove the force value.')) .option('--mode', $('Remove the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5387,6 +5457,7 @@ exports.init = function (cli) { .option('--force ', $('Add the force value.')) .option('--mode ', $('Add the mode value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5445,6 +5516,7 @@ exports.init = function (cli) { .usage('[options]') .option('--parameter-file ', $('The parameter file path.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5480,6 +5552,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5664,6 +5737,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Set the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5711,6 +5785,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--status', $('Remove the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5758,6 +5833,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Add the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5808,6 +5884,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Set the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5855,6 +5932,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--status', $('Remove the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5902,6 +5980,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Add the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -5950,6 +6029,7 @@ exports.init = function (cli) { .usage('[options]') .option('--parameter-file ', $('The parameter file path.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -5985,6 +6065,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6128,6 +6209,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Set the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6175,6 +6257,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--status', $('Remove the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -6222,6 +6305,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Add the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6272,6 +6356,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Set the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6319,6 +6404,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--status', $('Remove the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -6366,6 +6452,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--status ', $('Add the status value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6414,6 +6501,7 @@ exports.init = function (cli) { .usage('[options]') .option('--parameter-file ', $('The parameter file path.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -6449,6 +6537,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6625,6 +6714,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Set the package-uri value.')) .option('--role-to-upgrade ', $('Set the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6749,6 +6839,7 @@ exports.init = function (cli) { .option('--package-uri', $('Remove the package-uri value.')) .option('--role-to-upgrade', $('Remove the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -6831,6 +6922,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Add the package-uri value.')) .option('--role-to-upgrade ', $('Add the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -6952,6 +7044,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Set the all-roles value.')) .option('--named-roles ', $('Set the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7010,6 +7103,7 @@ exports.init = function (cli) { .option('--all-roles', $('Remove the all-roles value.')) .option('--named-roles', $('Remove the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -7062,6 +7156,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Add the all-roles value.')) .option('--named-roles ', $('Add the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7125,6 +7220,7 @@ exports.init = function (cli) { .option('--id ', $('Set the id value.')) .option('--state ', $('Set the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7187,6 +7283,7 @@ exports.init = function (cli) { .option('--id', $('Remove the id value.')) .option('--state', $('Remove the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -7239,6 +7336,7 @@ exports.init = function (cli) { .option('--id ', $('Add the id value.')) .option('--state ', $('Add the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7302,6 +7400,7 @@ exports.init = function (cli) { .option('--extensions ', $('Set the extensions value.')) .option('--role-name ', $('Set the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7364,6 +7463,7 @@ exports.init = function (cli) { .option('--extensions', $('Remove the extensions value.')) .option('--role-name', $('Remove the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -7416,6 +7516,7 @@ exports.init = function (cli) { .option('--extensions ', $('Add the extensions value.')) .option('--role-name ', $('Add the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7478,6 +7579,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7519,6 +7621,7 @@ exports.init = function (cli) { .option('--index ', $('Indexer: index.')) .option('--named-roles-index ', $('Indexer: named-roles-index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -7555,6 +7658,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7602,6 +7706,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Set the package-uri value.')) .option('--role-to-upgrade ', $('Set the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7726,6 +7831,7 @@ exports.init = function (cli) { .option('--package-uri', $('Remove the package-uri value.')) .option('--role-to-upgrade', $('Remove the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -7808,6 +7914,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Add the package-uri value.')) .option('--role-to-upgrade ', $('Add the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7929,6 +8036,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Set the all-roles value.')) .option('--named-roles ', $('Set the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -7987,6 +8095,7 @@ exports.init = function (cli) { .option('--all-roles', $('Remove the all-roles value.')) .option('--named-roles', $('Remove the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -8039,6 +8148,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Add the all-roles value.')) .option('--named-roles ', $('Add the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8102,6 +8212,7 @@ exports.init = function (cli) { .option('--id ', $('Set the id value.')) .option('--state ', $('Set the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8164,6 +8275,7 @@ exports.init = function (cli) { .option('--id', $('Remove the id value.')) .option('--state', $('Remove the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -8216,6 +8328,7 @@ exports.init = function (cli) { .option('--id ', $('Add the id value.')) .option('--state ', $('Add the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8279,6 +8392,7 @@ exports.init = function (cli) { .option('--extensions ', $('Set the extensions value.')) .option('--role-name ', $('Set the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8341,6 +8455,7 @@ exports.init = function (cli) { .option('--extensions', $('Remove the extensions value.')) .option('--role-name', $('Remove the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -8393,6 +8508,7 @@ exports.init = function (cli) { .option('--extensions ', $('Add the extensions value.')) .option('--role-name ', $('Add the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8455,6 +8571,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8496,6 +8613,7 @@ exports.init = function (cli) { .option('--index ', $('Indexer: index.')) .option('--named-roles-index ', $('Indexer: named-roles-index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -8532,6 +8650,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8570,6 +8689,7 @@ exports.init = function (cli) { .usage('[options]') .option('--parameter-file ', $('The parameter file path.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -8605,6 +8725,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8781,6 +8902,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Set the package-uri value.')) .option('--role-to-upgrade ', $('Set the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -8905,6 +9027,7 @@ exports.init = function (cli) { .option('--package-uri', $('Remove the package-uri value.')) .option('--role-to-upgrade', $('Remove the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -8987,6 +9110,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Add the package-uri value.')) .option('--role-to-upgrade ', $('Add the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9108,6 +9232,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Set the all-roles value.')) .option('--named-roles ', $('Set the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9166,6 +9291,7 @@ exports.init = function (cli) { .option('--all-roles', $('Remove the all-roles value.')) .option('--named-roles', $('Remove the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -9218,6 +9344,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Add the all-roles value.')) .option('--named-roles ', $('Add the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9281,6 +9408,7 @@ exports.init = function (cli) { .option('--id ', $('Set the id value.')) .option('--state ', $('Set the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9343,6 +9471,7 @@ exports.init = function (cli) { .option('--id', $('Remove the id value.')) .option('--state', $('Remove the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -9395,6 +9524,7 @@ exports.init = function (cli) { .option('--id ', $('Add the id value.')) .option('--state ', $('Add the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9458,6 +9588,7 @@ exports.init = function (cli) { .option('--extensions ', $('Set the extensions value.')) .option('--role-name ', $('Set the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9520,6 +9651,7 @@ exports.init = function (cli) { .option('--extensions', $('Remove the extensions value.')) .option('--role-name', $('Remove the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -9572,6 +9704,7 @@ exports.init = function (cli) { .option('--extensions ', $('Add the extensions value.')) .option('--role-name ', $('Add the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9634,6 +9767,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9675,6 +9809,7 @@ exports.init = function (cli) { .option('--index ', $('Indexer: index.')) .option('--named-roles-index ', $('Indexer: named-roles-index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -9711,6 +9846,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9758,6 +9894,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Set the package-uri value.')) .option('--role-to-upgrade ', $('Set the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -9882,6 +10019,7 @@ exports.init = function (cli) { .option('--package-uri', $('Remove the package-uri value.')) .option('--role-to-upgrade', $('Remove the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -9964,6 +10102,7 @@ exports.init = function (cli) { .option('--package-uri ', $('Add the package-uri value.')) .option('--role-to-upgrade ', $('Add the role-to-upgrade value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10085,6 +10224,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Set the all-roles value.')) .option('--named-roles ', $('Set the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10143,6 +10283,7 @@ exports.init = function (cli) { .option('--all-roles', $('Remove the all-roles value.')) .option('--named-roles', $('Remove the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -10195,6 +10336,7 @@ exports.init = function (cli) { .option('--all-roles ', $('Add the all-roles value.')) .option('--named-roles ', $('Add the named-roles value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10258,6 +10400,7 @@ exports.init = function (cli) { .option('--id ', $('Set the id value.')) .option('--state ', $('Set the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10320,6 +10463,7 @@ exports.init = function (cli) { .option('--id', $('Remove the id value.')) .option('--state', $('Remove the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -10372,6 +10516,7 @@ exports.init = function (cli) { .option('--id ', $('Add the id value.')) .option('--state ', $('Add the state value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10435,6 +10580,7 @@ exports.init = function (cli) { .option('--extensions ', $('Set the extensions value.')) .option('--role-name ', $('Set the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10497,6 +10643,7 @@ exports.init = function (cli) { .option('--extensions', $('Remove the extensions value.')) .option('--role-name', $('Remove the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -10549,6 +10696,7 @@ exports.init = function (cli) { .option('--extensions ', $('Add the extensions value.')) .option('--role-name ', $('Add the role-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10611,6 +10759,7 @@ exports.init = function (cli) { .option('--value ', $('The input string value for the indexed item.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10652,6 +10801,7 @@ exports.init = function (cli) { .option('--index ', $('Indexer: index.')) .option('--named-roles-index ', $('Indexer: named-roles-index.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -10688,6 +10838,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10726,6 +10877,7 @@ exports.init = function (cli) { .usage('[options]') .option('--parameter-file ', $('The parameter file path.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -10761,6 +10913,7 @@ exports.init = function (cli) { .option('--value ', $('The JSON value.')) .option('--parse', $('Parse the input value string to a JSON object.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10904,6 +11057,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--upgrade-domain ', $('Set the upgrade-domain value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -10951,6 +11105,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--upgrade-domain', $('Remove the upgrade-domain value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -10998,6 +11153,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--upgrade-domain ', $('Add the upgrade-domain value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -11151,6 +11307,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--upgrade-domain ', $('Set the upgrade-domain value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -11198,6 +11355,7 @@ exports.init = function (cli) { .option('--parameter-file ', $('The parameter file path.')) .option('--upgrade-domain', $('Remove the upgrade-domain value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -11245,6 +11403,7 @@ exports.init = function (cli) { .option('--parse', $('Parse the input value string to a JSON object.')) .option('--upgrade-domain ', $('Add the upgrade-domain value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -11593,6 +11752,7 @@ exports.init = function (cli) { .option('--type ', $('Set the type value.')) .option('--version ', $('Set the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -11920,6 +12080,7 @@ exports.init = function (cli) { .option('--type', $('Remove the type value.')) .option('--version', $('Remove the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -12092,6 +12253,7 @@ exports.init = function (cli) { .option('--type ', $('Add the type value.')) .option('--version ', $('Add the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -12400,6 +12562,7 @@ exports.init = function (cli) { .option('--thumbprint-algorithm ', $('Set the thumbprint-algorithm value.')) .option('--thumbprint-required ', $('Set the thumbprint-required value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -12481,6 +12644,7 @@ exports.init = function (cli) { .option('--thumbprint-algorithm', $('Remove the thumbprint-algorithm value.')) .option('--thumbprint-required', $('Remove the thumbprint-required value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -12543,6 +12707,7 @@ exports.init = function (cli) { .option('--thumbprint-algorithm ', $('Add the thumbprint-algorithm value.')) .option('--thumbprint-required ', $('Add the thumbprint-required value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -12626,6 +12791,7 @@ exports.init = function (cli) { .option('--instance-input-endpoints ', $('Set the instance-input-endpoints value.')) .option('--internal-endpoints ', $('Set the internal-endpoints value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -12695,6 +12861,7 @@ exports.init = function (cli) { .option('--instance-input-endpoints', $('Remove the instance-input-endpoints value.')) .option('--internal-endpoints', $('Remove the internal-endpoints value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -12752,6 +12919,7 @@ exports.init = function (cli) { .option('--instance-input-endpoints ', $('Add the instance-input-endpoints value.')) .option('--internal-endpoints ', $('Add the internal-endpoints value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -12827,6 +12995,7 @@ exports.init = function (cli) { .option('--port ', $('Set the port value.')) .option('--protocol ', $('Set the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -12911,6 +13080,7 @@ exports.init = function (cli) { .option('--port', $('Remove the port value.')) .option('--protocol', $('Remove the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -12973,6 +13143,7 @@ exports.init = function (cli) { .option('--port ', $('Add the port value.')) .option('--protocol ', $('Add the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -13059,6 +13230,7 @@ exports.init = function (cli) { .option('--name ', $('Set the name value.')) .option('--protocol ', $('Set the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -13154,6 +13326,7 @@ exports.init = function (cli) { .option('--name', $('Remove the name value.')) .option('--protocol', $('Remove the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -13221,6 +13394,7 @@ exports.init = function (cli) { .option('--name ', $('Add the name value.')) .option('--protocol ', $('Add the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -13315,6 +13489,7 @@ exports.init = function (cli) { .option('--port ', $('Set the port value.')) .option('--protocol ', $('Set the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -13388,6 +13563,7 @@ exports.init = function (cli) { .option('--port', $('Remove the port value.')) .option('--protocol', $('Remove the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -13445,6 +13621,7 @@ exports.init = function (cli) { .option('--port ', $('Add the port value.')) .option('--protocol ', $('Add the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -13518,6 +13695,7 @@ exports.init = function (cli) { .option('--name ', $('Set the name value.')) .option('--size-in-m-b ', $('Set the size-in-m-b value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -13580,6 +13758,7 @@ exports.init = function (cli) { .option('--name', $('Remove the name value.')) .option('--size-in-m-b', $('Remove the size-in-m-b value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -13632,6 +13811,7 @@ exports.init = function (cli) { .option('--name ', $('Add the name value.')) .option('--size-in-m-b ', $('Add the size-in-m-b value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -13899,6 +14079,7 @@ exports.init = function (cli) { .option('--type ', $('Set the type value.')) .option('--version ', $('Set the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -14226,6 +14407,7 @@ exports.init = function (cli) { .option('--type', $('Remove the type value.')) .option('--version', $('Remove the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -14398,6 +14580,7 @@ exports.init = function (cli) { .option('--type ', $('Add the type value.')) .option('--version ', $('Add the version value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -14706,6 +14889,7 @@ exports.init = function (cli) { .option('--thumbprint-algorithm ', $('Set the thumbprint-algorithm value.')) .option('--thumbprint-required ', $('Set the thumbprint-required value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -14787,6 +14971,7 @@ exports.init = function (cli) { .option('--thumbprint-algorithm', $('Remove the thumbprint-algorithm value.')) .option('--thumbprint-required', $('Remove the thumbprint-required value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -14849,6 +15034,7 @@ exports.init = function (cli) { .option('--thumbprint-algorithm ', $('Add the thumbprint-algorithm value.')) .option('--thumbprint-required ', $('Add the thumbprint-required value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -14932,6 +15118,7 @@ exports.init = function (cli) { .option('--instance-input-endpoints ', $('Set the instance-input-endpoints value.')) .option('--internal-endpoints ', $('Set the internal-endpoints value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15001,6 +15188,7 @@ exports.init = function (cli) { .option('--instance-input-endpoints', $('Remove the instance-input-endpoints value.')) .option('--internal-endpoints', $('Remove the internal-endpoints value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -15058,6 +15246,7 @@ exports.init = function (cli) { .option('--instance-input-endpoints ', $('Add the instance-input-endpoints value.')) .option('--internal-endpoints ', $('Add the internal-endpoints value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15133,6 +15322,7 @@ exports.init = function (cli) { .option('--port ', $('Set the port value.')) .option('--protocol ', $('Set the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15217,6 +15407,7 @@ exports.init = function (cli) { .option('--port', $('Remove the port value.')) .option('--protocol', $('Remove the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -15279,6 +15470,7 @@ exports.init = function (cli) { .option('--port ', $('Add the port value.')) .option('--protocol ', $('Add the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15365,6 +15557,7 @@ exports.init = function (cli) { .option('--name ', $('Set the name value.')) .option('--protocol ', $('Set the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15460,6 +15653,7 @@ exports.init = function (cli) { .option('--name', $('Remove the name value.')) .option('--protocol', $('Remove the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -15527,6 +15721,7 @@ exports.init = function (cli) { .option('--name ', $('Add the name value.')) .option('--protocol ', $('Add the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15621,6 +15816,7 @@ exports.init = function (cli) { .option('--port ', $('Set the port value.')) .option('--protocol ', $('Set the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15694,6 +15890,7 @@ exports.init = function (cli) { .option('--port', $('Remove the port value.')) .option('--protocol', $('Remove the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -15751,6 +15948,7 @@ exports.init = function (cli) { .option('--port ', $('Add the port value.')) .option('--protocol ', $('Add the protocol value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15824,6 +16022,7 @@ exports.init = function (cli) { .option('--name ', $('Set the name value.')) .option('--size-in-m-b ', $('Set the size-in-m-b value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -15886,6 +16085,7 @@ exports.init = function (cli) { .option('--name', $('Remove the name value.')) .option('--size-in-m-b', $('Remove the size-in-m-b value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -15938,6 +16138,7 @@ exports.init = function (cli) { .option('--name ', $('Add the name value.')) .option('--size-in-m-b ', $('Add the size-in-m-b value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -16192,6 +16393,7 @@ exports.init = function (cli) { .option('--reverse-dns-fqdn ', $('Set the reverse-dns-fqdn value.')) .option('--service-name ', $('Set the service-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -16305,6 +16507,7 @@ exports.init = function (cli) { .option('--reverse-dns-fqdn', $('Remove the reverse-dns-fqdn value.')) .option('--service-name', $('Remove the service-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); cli.output.verbose('====================================='); cli.output.verbose('Reading file content from: \"' + options.parameterFile + '\"'); @@ -16382,6 +16585,7 @@ exports.init = function (cli) { .option('--reverse-dns-fqdn ', $('Add the reverse-dns-fqdn value.')) .option('--service-name ', $('Add the service-name value.')) .execute(function(options, _) { + cli.output.verbose('', _); // disable warning: '_ is defined but never used.' cli.output.verbose(JSON.stringify(options)); if (options.parse && options.value) { options.value = JSON.parse(options.value); @@ -16808,6 +17012,7 @@ exports.init = function (cli) { .option('--label