forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
update #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
update #6
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…12075) * Add 'Delete' to the argument completer of EvictionPolicy parameter for New-AzVM and New-AzVMConfig cmdlets. * Update ChangeLog.md Co-authored-by: Yabo Hu <[email protected]>
…ation (#12083) * updating the disk type * updated help file * updated as per comments
* update assembly version of Azure.Core * Update ChangeLog.md * Update ChangeLog.md Co-authored-by: Yabo Hu <[email protected]>
…erviceBus (#12064) - Add new examples to the following modules: ApiManagement DevTestLabs EventHub LogicApp ServiceBus Co-authored-by: Maoliang Huang <[email protected]>
* support ARC senario * support ARC senario -- add changelog * upgrade guestconfiguration SDK version * re-record tests Co-authored-by: ge huang <[email protected]>
* add alias for functionparameter * update changelog.md * apply patch for saved searches operation when function parameter was not provided
…version (#12084) * Add a new function GetOldVersion and change the way of getting oldversion. * Add return value to function GetOldVersion and change some logic to make it more readable. * Merge the logic of judging preview version into GetOldVersion and return both version and ispreview.
* Bug fix for missing parameter is SetActionGroupCommand * updated formatting * Update ChangeLog.md Co-authored-by: Ritwik Rajendra <[email protected]> Co-authored-by: Yabo Hu <[email protected]>
…cryption (#12096) * [Storage] Upgrade to SRP SDK 17.0.0 * [Storage] Support double Encryption
…Set-AzWebApp and Set-AzWebAppSlot (#12107) * Fixed bug that prevented changing Container settings in `Set-AzWebApp` and `Set-AzWebAppSlot` * Adding tests and fixingTest-CreateNewWebAppHyperV false positive Co-authored-by: Vini Soto <[email protected]>
* Command is not correct We can use this command for secret not certificates because this command is not correct for certificates of KeyVault. When we use this command, the id will be below. I think this id is not correct for AppGW. https://xxxxx.vault.azure.net:443/certificates/xxxx/ The should be below. "KeyVaultSecretId": "https://xxxx.vault.azure.net:443/secrets/xxxx/" When I used below command, I encountered error. $secretId = $secret.Id.Replace($secret.Version, "") "Set-AzApplicationGateway : SecretId 'https://xxxx.vault.azure.net:443/certificates/selftest/' specified in '/subscriptions/xxxxxxxxx/resourceGroups/apgw/p roviders/Microsoft.Network/applicationGateways/AppGW/sslCertificates/SelfKeyCert' is invalid." When I used below command, the operation was successful. So I think this document is not correct. $secretId = $certificate.SecretId.Replace($certificate.Version, "") * Command is not correct This command is correct. $secretId = $secret.SecretId.Replace($secret.Version, "") * This command is correct. I made a mistake. This is corrct. Before $secret.Id.Replace($secret.Version, "") After $secret.SecretId.Replace($secret.Version, "") The Reason. If we use below command, the URL will be "/certificates/" and it's invalid URL for AppGW. $secretId = $secret.Id.Replace($secret.Version, "") > $secretId https://testxxxx.vault.azure.net:443/certificates/testself/ So below command is correct. $secretId = $secret.SecretId.Replace($secret.Version, "") > $secretId https://testxxxxxx.vault.azure.net:443/secrets/testself/
* update to mgmt ver 11 * update changelog, fix test * update docs * simplify Identity pararm type, rerecord * reference network csproj in sln * update
…pe (#12111) * remove duplication of action/conditions. this fixes the update alert rule issue. * correct fix - convert the type * Update ChangeLog.md Co-authored-by: Aviv Haddad <[email protected]> Co-authored-by: Yabo Hu <[email protected]>
* Move ModuleFilter from VersionController to Tools.Common。 * Fix the places that use ModuleFilter before. * Fix "Stack" problem use ModuleFilter in StaticAnalyzer.
…erverVersion, EnableAnalyticalStorage (#12066) * Updating sdk and relevant changes with the updation * Added Autoscale related changes and EnableFreeTrie, ServerVersion and EnableAnalyticalStorage in Account creation and updation * modifying tests and refactoring update throughput cmdlets * Updated API tests * Refactoring Account cmdlets and tests * added changelog * updated account tests using objects * Updated tests * updated PrivateEndpoint tests * re-ran tests for add-region Co-authored-by: Meha Kaushik <[email protected]>
* fix sku value set * Update ChangeLog.md
* Add two cmdlets: 1. Get-AzHDInsightHost to Get the hosts of the cluster 2. Restart-AzHDInsightHost to restart the specific hosts of the cluster * Add online version and revert release notes in psd1 file * Add DefaultParameterSet and update help doc Co-authored-by: Zhenyu Zhou <[email protected]>
…e count issue for auto scale (#12128) * update NewAzureSynapseSparkPool * fix NewAzureSynapseSparkPool * fix NewAzureSynapseSparkPool for auto scale * fix New-AzSynapseSparkPool for auto scale * add New-AzSynapseSparkPool help doc * fix New-AzSynapseSparkPool help doc * update parameter set name Co-authored-by: Wan Yang <[email protected]>
* databricks * restore other files and update changelog * Update change log Co-authored-by: Dingmeng Xue <[email protected]>
…s in Common.Netcore.Dependencies.targets (#12132)
#12139) * Fix help message for -Name parameter * Update ChangeLog.md
…12140) * Allow Azure Active Directory applications to be set as SQL Server Azure Active Directory admin. * Remove IsAzureADOnlyAuthenticaion option from SetAzureSqlServerActiveDirectoryAdministrator command. We will be adding a new API to enable this option. * Update ChangeLog.md * Add Static analysis exception to exceptions file. * add support for service principal for set aad admin. Co-authored-by: Amol Agarwal <[email protected]>
* Update Compute SDK version to 36.1.0 * Add SimulateEviction parameter to Set-AzVM and Set-AzVmssVM * Added 'Premium_LRS' to the argument completer of StorageAccountType parameter for New-AzGalleryImageVersion cmdlet * Update ChangeLog.md Co-authored-by: Yabo Hu <[email protected]>
The term low priority has been replaced with spot.
* Comment out the logic of get gallery version. * Fix the variable defined but not used. Co-authored-by: wyunchi <[email protected]>
* PR: LoadBalancerBackendAddressPool powershell Cmdlets (#11734) * lb backend address pool create/update/delete operations * adding tests with draft * making some updates for design review PR to powershell team * adding .md files * -adding tests -updating help files -addressing feedback * pulling in sdk changes for network-may branch for validation errors * Addressing comments and updating output format for PsLoadBalancerBackendAddress * updating .md files and making final changes Co-authored-by: Ali Egal <[email protected]> * Adding new optional parameter to specify dns servers for Virtual Wan P2SVpnGateway and P2SClients (#12006) * Adding new optional parameter to specify dns servers for Virtual Wan-P2SVpnGateway and P2SClients * Incorporate code review comments and added test record * Suppress warnings * Suppress cred scan errors * updating help files examples (#12068) Co-authored-by: Ali Egal <[email protected]> * multipip changes * Do not pass new fields with default values unless configured explicitly (#12076) * multi pip changes * ps tests * generating help files * help files changes * help file * regenerating help files * updated markdown file * renaming the cmdlets * name change * tests * renaming a help file * updating the recordings * test * Used signed Network SDK with API version 2020-05-01 (#12100) * Network SDK for 2020-05-01 * Fixes for FirewallPolicy * Recs * Recs * SDK package * Ignore Network API version in Batch tests * CredScan suppression * clean up * updatid recordings * clean up * clean up * Vpn gateway commandlet update (#12108) * commit1 * commit2 * Fix1 Co-authored-by: Khushboo Baheti <[email protected]> * addressing comments * added exceptions * correcting the exceptions * Change RuleGroup, RuleCollectionGroup, and RuleType and add support for Multiple DNAT Rule Collections (#12095) * Change RuleGroup and RuleCollectionGroup based on swagger change. Also, add support for NAT Rule Collections containing multiple NAT Rule Collections * PR Comments * Updated the SDK * StaticAnalysis * Previous changes got removed in rebase * update to vnet reference id only * Use Network SDK from NuGet (#12114) * Use Network SDK from NuGet * Additional mappings * Firewall Policy ThreatIntelWhitelist (#12078) * ti whitelist changes * build fix * help files * added examples for help files * adding the online version * recordings done * changed to markdown files * fixed statis analysis * added exception for static analysis * addressing comments * updated recordings * new recordings * updating due to validation error on CICD pipeline * refreshing test files, updating to remove id from variable to fix casting error * DNS Proxy in Firewall Policy (#12120) * merge conflict * fixes * tejas review Co-authored-by: Ishani Gupta <[email protected]> * Add support for IPGroups in Firewall Policy Rules (#12118) * Add support for IPGroups in Firewall Policy Rules * Pr Comments * Resolved merge conflicts * Update ChangeLog.md * Update ChangeLog.md Co-authored-by: Yabo Hu <[email protected]> * Application Gateway Private Link Cmdlets (#12133) * Application Gateway Private Link Cmdlets * add change log * Add new cmdlet Reset-AzHubRouter (#12094) * add routing state and expose reset-hubrouter * update help * updated * Update ChangeLog.md * update help file name * export cmdlet * update test * fix * update md file * update tests * updated help * Update Reset-AzHubRouter.md * test recorded Co-authored-by: Yabo Hu <[email protected]> * Fixes after merge * Revert HPCCache.Test.csproj Co-authored-by: aegal <[email protected]> Co-authored-by: Ali Egal <[email protected]> Co-authored-by: Nilambari <[email protected]> Co-authored-by: Sai Mankala <[email protected]> Co-authored-by: tejasshah7 <[email protected]> Co-authored-by: Khushboo Baheti <[email protected]> Co-authored-by: Khushboo Baheti <[email protected]> Co-authored-by: Ishani Gupta <[email protected]> Co-authored-by: Ishani Gupta <[email protected]> Co-authored-by: Yabo Hu <[email protected]> Co-authored-by: jaishals <[email protected]> Co-authored-by: Ritvika Reddy Nagula <[email protected]>
Co-authored-by: Shawn Xiao (IM) <[email protected]>
…ite resources. (#12213) * Created Model Classes for NVA powershell object. * Added *-NetworkVirtualAppliance commands. * Added *-NVASite commands and export commands. * Added tests for NVA CRUD operations. The tests for NVA Site CRUD operations is in skipped state. Reason for this is a bug in the Nfv-RP which fails the New-AzVirtualApplianceSite command. The fix is underway and Nfv-RP team will record the tests and push it in a separate change. * Added help files for the new 11 Cmdlets. * Added entry in the Changelog * Bug fix for null NVA Id. * Added online version to help files. * Replace real guids with 0000.. in examples. * Add default resource paramsets, rename plural cmds * Supress static analysis errors. Co-authored-by: Neel Bhavsar <[email protected]> Co-authored-by: Yabo Hu <[email protected]>
* update reference to common * upgrade reference in generic provider
* Update powershell-core.yml * Change test framework * Update powershell-core.yml * Update Az.Test.props * Update windows-powershell.yml * Skip Sql tests * Skipping SqlVM Unite test * Skipp SqlVM Unit test
…12256) * Git #11895 and #5983 * Fix for #12015- Set-AzWebAppSlot incorrectly formats serverFarmId causing Service Plan not found error * Updated ChangeLog.md * Fix for #12015- Set-AzWebAppSlot incorrectly formats serverFarmId causing Service Plan not found error * fix #11862 - Added support to use Id for Restore-AzDeletedWebApp.
- Add new examples to the following modules: Compute Co-authored-by: Maoliang Huang <[email protected]>
* add macos back * Update Automation.Test.csproj * Update Storage.Test.csproj
* Update ProviderConfiguration.cs * Update ProviderConfiguration.cs * changelog * Update ProviderConfiguration.cs
* Fix parameter swap in hubvnet connection cmdlet * Update ChangeLog.md Co-authored-by: Shyam Dharmarajan <[email protected]> Co-authored-by: Yabo Hu <[email protected]>
Removed invalid example
* use mutex to prevent cross process writing to token cache file * prevent cross-process write to profile file * change log * Use "Local" mutex; put ReleaseMutex() in finally
Removed invalid example
NIC renaming changes for TFO/FO
* support generic get * update * update test case * remove api version when construct uri * update uri construct * update localfeed * to use full response * convert output to PSHttpResponse * remove request id from pshttpresponse * rename to invoke-azrest * update parameter name * create help markdown for invoke-azrest * update common API reference * clean localfeed * add test case for invoke-azrest * update changelog.md * resolve comments * fix bug in get api version * update changelog * fix help * handle upper case in path * fix bug
* fix static analysis error for Azure.Core * refine log message
* New Powershell commands * Update subscription * Adding new offer types * Adding session records * Fixes * Removing redundant parameters * Add md file * Update md files * Update md file and new record test case * Add online version * Update ChangeLog.md Co-authored-by: Yabo Hu <[email protected]>
* Fix the issue that string with escape chars cannot be converted into json object. * Change changelog.md * Change the implement of serializtion and deserializtion of json in automation. Co-authored-by: wyunchi-ms <[email protected]>
* update NewAzureSynapseSparkPool * fix NewAzureSynapseSparkPool * fix NewAzureSynapseSparkPool for auto scale * fix New-AzSynapseSparkPool for auto scale * add New-AzSynapseSparkPool help doc * fix New-AzSynapseSparkPool help doc * update parameter set name * track2 v1.0 * track2 v2.0 * track2 v2.1 * Make Synapse PowerShell consume track 2 SDK * Make Synapse PowerShell consume track 2 SDK * add change log * fix proj * Make Synapse PowerShell consume track 2 SDK * fix AzureSessionCredential * update changelog * fix AzureSessionCredential * Add required assembly Azure.Analytics.Synapse.Spark.dll to psd1 * change tab to space Co-authored-by: Wan Yang <[email protected]> Co-authored-by: erich-wang <[email protected]>
* Modifying the HelpText for AzRecoveryServiceBackup cmdlets * resolve breaking errors * Adding AzureWorkload in validation and minor changes * removing AzureSQL from help text and validation set * adding BreakingChangeIssues.csv
* Update private link * Remove mysql test * Update ChangeLog.md Co-authored-by: Yabo Hu <[email protected]>
* Create UnregisterAzureProviderFeatureCmdlet * Add help file and update change log * record test * Update Unregister-AzProviderFeature.md * Update Unregister-AzProviderFeature.md * Fix tags tests Co-authored-by: shenshengkafei <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Checklist
CONTRIBUTING.md
ChangeLog.md
file(s) has been updated:ChangeLog.md
file can be found atsrc/{{SERVICE}}/{{SERVICE}}/ChangeLog.md
## Upcoming Release
header -- no new version header should be added