Skip to content
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

Fix swap between title and code in documentation #13666

Merged
merged 1 commit into from Dec 7, 2020

Conversation

MasterKuat
Copy link
Contributor

Description

Small fix regarding exemples' title in documentation

Checklist

  • I have read the Submitting Changes section of CONTRIBUTING.md
  • [X ] The title of the PR is clear and informative
  • [X ] The appropriate ChangeLog.md file(s) has been updated:
    • For any service, the ChangeLog.md file can be found at src/{{SERVICE}}/{{SERVICE}}/ChangeLog.md
    • A snippet outlining the change(s) made in the PR should be written under the ## Upcoming Release header -- no new version header should be added
  • [X ] The PR does not introduce breaking changes
  • If applicable, the changes made in the PR have proper test coverage
  • For public API changes to cmdlets:
    • a cmdlet design review was approved for the changes in this repository (Microsoft internal only)
      • {Please put the link here}
    • the markdown help files have been regenerated using the commands listed here

@ghost ghost added the customer-reported label Dec 4, 2020
@ghost
Copy link

ghost commented Dec 4, 2020

Thank you for your contribution MasterKuat! We will review the pull request and get back to you soon.

@wyunchi-ms
Copy link
Contributor

/azp run

@azure-pipelines
Copy link
Contributor

Azure Pipelines successfully started running 3 pipeline(s).

@wyunchi-ms wyunchi-ms merged commit 6aca453 into Azure:master Dec 7, 2020
isra-fel added a commit that referenced this pull request Jan 12, 2021
* release Az.Accounts 2.2.1 (#13537)

* Update New-AzFrontDoorWafManagedRuleObject.md (#13528)

* Merge internal/Az.Tools.Predictor (#13546)

* psd1 & psm1 of Az.Installer with a demo cmdlet (#12698)

* Internal/az.installer (#12817)

* add util functions

* add install-azmodule

* add log to cmdlets

* move verbose messages to debug

* move under tools\

* polish warning message

* move install-azmodule to exports

* export install-azmodule

* rename to az.tools.installer

* Internal/az.installer (#12860)

* add util functions

* add install-azmodule

* add log to cmdlets

* move verbose messages to debug

* move under tools\

* polish warning message

* move install-azmodule to exports

* export install-azmodule

* rename to az.tools.installer

* add uninstall-AzModule

* Cmdlet Update-AzModule (#12832)

* Update-AzModule

* Address to PM requirements

1. Remove prefix Az. when input module name
2. update calculate from most recently installed respositories of
different modules
3. reorder the sequence of module udpate and uninstall
4. other bug fix

* Add telemetry

* Support telemetry

* Move Get-AzModuleUpdateList to internal (#12865)

* add telemetry to Uninstall-AzModule cmdlet

* bugfix: module name was not handled properly

* Add environment variable to disable telemetry

* parallel executing Install/Uninstall module

* update code after review

* improve performance

* Fix Update-AzModule issues

* bug fix

* remove unused util

* remove az.accounts when allow preview

* Fix issue when no module to udpate

* Add sign pipeline

* skip confirmation when remove-job

* remove debug info

* fix parameter reference

* Initial checking in AzPredictor (#12847)

- It contains an implementation of ICommandPredictor that provides
  predictions to PSReadLine.
- It also talks to the service endpoints to get the predictions.
- It reads from the profile settings about the service endpoint.
- There are some tests cases.

* filter installedmodules before uninstall

* bugfix for uninstall

* Add synopsis and example to exported cmdlets

* add default parameter set for uninstall-azmodule

* add input validatin

* remove unnecessary warning message

* Build and package module under artifacts folder

* Improve Az.Tool.Predictor (#12922)

* Set up the dependencies on the PSReadline 2.1.0

* Initialize the env when the module is imported.

- Add a script AzPredictor.ps1 to set the psreadline prediction view and
  source.
- The script is run when the module is imported.

* Fix a bug when loading settings from user profile.

- The settings from user profile may not exist. In this case we should
  just ignore it and use the default one.

* Fix issues in getting settings and send requests.

- Fix the way to get the Azure PowerShell settings regarding collecting
  telemetry.
- Avoid sending multiple requests while there is one running.

* Use the NuGet pacakges from nuget.org.

- Remove the local feed for those NuGet packages.

* Rename namespace/assemblies/module name

* Collect telemetry where we get the prediction.

* Make some classes internal.

* Add dependencies on Az module

- This avoid the issue that our module loads
  Microsoft.Azure.PowerShell.Common dlls and Az tries to load it too.

* Remove ps1 file that sets psreadline options.

- We should instruct the users to set the options by themselves.

* Remove psreadline module since it's not released.

* Fix the merge issue

* Add Az as external dependency

* Add pipeline 'sign-tool-predictor'

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* net.webclient.downloadfile

* refine command

* clean build

* Update sign-tool-predictor.yml for Azure Pipelines

* Improve the build of Az.Tools.Predictor (#12974)

* Change the build for Az.Tools.Predictor

 - Do a 'dotnet publish' instead of 'dotnet build' when the
   configuration is release.
- When the configuration is release, replace the output folder with the
  ones from publish folder. The output folder is where the package
  retrieve the contents from. This will have the module and all the
  dependencies in the package.
- The package target only runs when the configuration is release.
- Add a target Test to run the unit tests.
- Update the build command in azure pipeline to build with configuration
  release.

* Specify the sub-folder artifact for each tool.

- The build process involves deleting the artifact folders. And each
  tool shares the same artifact folder. This may be an issue if we build
  them in parralel because the build process of a tool will delete the
  folder while another tool is being built.
- We'll use sub-folder for each tool in the artifact folder.

Co-authored-by: Beisi Zhou <zhoubeisi@gmail.com>

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Override powershellcorecommandPrefix

* join_path

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Install Az

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Sign dll

* Remove dll sign

* Predict parameter values in the suggestion (#12984)

* Get the parameter value from the history.

* Add a mock ps console for testing purpose.

- The mock ps console will echo back most of the commands. So that we
  don't need to really execute the Az command on Azure to test the
  prediction.

* improve telemetry (#13025)

* Correlate the telemetry event we send.

- We have these telemetry entry points when we provide suggestion, when
  a suggestion is accepted, and when the user executes some command. We
  add a SuggestionId to the telemetry events so that we can correlate
  those three events. Doing that we know what suggestions are provided,
  accepted, and executed.

* Collect and correlate our telemetry event.

- With this change, we have these telemetry events;
  * RequestPrediction
  * GetSuggestion
  * AcceptSuggestion
  * CommandHistory
- The events can be correlated by the session id and correlate id that
  are associate with the events.

* Fix the request body.

* Rename the prediction source.

* Collect telemetry when an error occurs.

* Remove some PII field

* Collect user input in GetSuggestion event.

* Use a common telemetry event prefix.

* Remove the .gitignore that shouldn't be added.

* Clean up the code.

* return multiple suggestion (#13098)

* Return multiple suggestions.

- Add a setting to configure at most how many suggestions to return.
- We'll go through the command/parameters one by one and to construct
  the suggestion. We may return multiple suggestions for the same
  command but with different parameter sets;

* Use camel casing in the setting fields.

- Looks like other json file in $HOME/.azure use camel case or
  PascalCase. None use snake case.

* Fix a logic error.

- We'll use the command list for suggestion while the prediction list
  isn't available.

* Stop finding suggestion when the count is met.

* Improve the MockPSConsole.

* Cache the last two commands from the history.

* Reduce the dependencies on Azure powershell common. (#13113)

- That assembly and its dependencies causes a conflict if we load this module
  and Az.Accounts module. Though we can work around by sepcifying Az as a
  dependencies on this module, that'll cause long loading time.
- The reason of loading that assembly is to get the setting about Azure
  PowerShell data collection. We can copy part of the code to load that
  file, so that we don't need that assembly as the dependency.

* Add a missing file. (#13234)

* Fix duplicate text (#13326)

* Improve the debugging experience.

- GetSuggestion gets cancelled during debugging because it times out. So
  we use an environment variable to control whether to allow
cancellation from psreadline.
- Use another macro to control if print message for telemetry.

* Fix a bug that the command line is repeated in the suggestion.

- When we parse the command line and there is an incomplete parameter
  list, we repeat the command line in the suggestion.
- The cause is that we parse the command line and get the wrong
  parameter set from the user input

* Update how we send request and collect telemetry (#13327)

* Fix the query

* Reduce the number of requests to the service.

- We request the prediction for the command history. When the command
  history isn't changed, we don't need to request the prediction again.

* Not to collect the parameter value in the telemetry.

* Bug fixes and performance improvement (#13410)

* Reduce extra cost to the perf issue.

* Remove the aggregation on the parameter set.

* Fix an issue

* Fix some comments.

* Improve the telemetry and http request (#13354)

* Collect user id and mac address.

- We hash the user account id and the mac address, and collect those in
  the telemetry. These are used to find how many users are using this
  mdoule.
- We also send the hashed user account id in the http request header.
  This is used to enable throttling by user account.

* Rename

* Collect more data for diagnostic purpose.

* Fix typo

* Remove getting Az modules versions.

* Update module infomation (#13328)

* Set the description and dependencies for the module.

* Update the project file and module manifest.

* Update manifest and csproj

* Fix typo

* Move PSReadLine to ExternalModuleDependencies.

- PSReadLine is in beta and there are issues in setting RequiredModules
  with a beta one. So move it as an ExternalModuleDependencies.

* Update package script to support requiredmodule (#13424)

* Add variety to Az.Predictor result list (#13420)

* add variety to predictions list

* add variety to predictions list

* Update description for release

* Add PublishLocation to build.proj of Az.Tools.Installer

Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>
Co-authored-by: Yabo Hu <yabhu@microsoft.com>
Co-authored-by: msJinLei <leijin@microsoft.com>
Co-authored-by: msJinLei <lei.jin@microsoft.com>
Co-authored-by: kceiw <mahuang@microsoft.com>
Co-authored-by: Beisi Zhou <zazbs@qq.com>
Co-authored-by: Beisi Zhou <zhoubeisi@gmail.com>
Co-authored-by: yemohyle <73853907+yemohyle@users.noreply.github.com>

* [Pipeline] dailyBuild: bump version and sign (#13439)

* [dailybuild] bump version and sign

* Polish codes

* cancel commit intermediate result to 'internal/dailybuild'

Co-authored-by: azuresdkci <azuresdkci@microsoft.com>

* Add Variety to Az.Predictor (#13480)

* psd1 & psm1 of Az.Installer with a demo cmdlet (#12698)

* Internal/az.installer (#12817)

* add util functions

* add install-azmodule

* add log to cmdlets

* move verbose messages to debug

* move under tools\

* polish warning message

* move install-azmodule to exports

* export install-azmodule

* rename to az.tools.installer

* Internal/az.installer (#12860)

* add util functions

* add install-azmodule

* add log to cmdlets

* move verbose messages to debug

* move under tools\

* polish warning message

* move install-azmodule to exports

* export install-azmodule

* rename to az.tools.installer

* add uninstall-AzModule

* Cmdlet Update-AzModule (#12832)

* Update-AzModule

* Address to PM requirements

1. Remove prefix Az. when input module name
2. update calculate from most recently installed respositories of
different modules
3. reorder the sequence of module udpate and uninstall
4. other bug fix

* Add telemetry

* Support telemetry

* Move Get-AzModuleUpdateList to internal (#12865)

* add telemetry to Uninstall-AzModule cmdlet

* bugfix: module name was not handled properly

* Add environment variable to disable telemetry

* parallel executing Install/Uninstall module

* update code after review

* improve performance

* Fix Update-AzModule issues

* bug fix

* remove unused util

* remove az.accounts when allow preview

* Fix issue when no module to udpate

* Add sign pipeline

* skip confirmation when remove-job

* remove debug info

* fix parameter reference

* Initial checking in AzPredictor (#12847)

- It contains an implementation of ICommandPredictor that provides
  predictions to PSReadLine.
- It also talks to the service endpoints to get the predictions.
- It reads from the profile settings about the service endpoint.
- There are some tests cases.

* filter installedmodules before uninstall

* bugfix for uninstall

* Add synopsis and example to exported cmdlets

* add default parameter set for uninstall-azmodule

* add input validatin

* remove unnecessary warning message

* Build and package module under artifacts folder

* Improve Az.Tool.Predictor (#12922)

* Set up the dependencies on the PSReadline 2.1.0

* Initialize the env when the module is imported.

- Add a script AzPredictor.ps1 to set the psreadline prediction view and
  source.
- The script is run when the module is imported.

* Fix a bug when loading settings from user profile.

- The settings from user profile may not exist. In this case we should
  just ignore it and use the default one.

* Fix issues in getting settings and send requests.

- Fix the way to get the Azure PowerShell settings regarding collecting
  telemetry.
- Avoid sending multiple requests while there is one running.

* Use the NuGet pacakges from nuget.org.

- Remove the local feed for those NuGet packages.

* Rename namespace/assemblies/module name

* Collect telemetry where we get the prediction.

* Make some classes internal.

* Add dependencies on Az module

- This avoid the issue that our module loads
  Microsoft.Azure.PowerShell.Common dlls and Az tries to load it too.

* Remove ps1 file that sets psreadline options.

- We should instruct the users to set the options by themselves.

* Remove psreadline module since it's not released.

* Fix the merge issue

* Add Az as external dependency

* Add pipeline 'sign-tool-predictor'

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* net.webclient.downloadfile

* refine command

* clean build

* Update sign-tool-predictor.yml for Azure Pipelines

* Improve the build of Az.Tools.Predictor (#12974)

* Change the build for Az.Tools.Predictor

 - Do a 'dotnet publish' instead of 'dotnet build' when the
   configuration is release.
- When the configuration is release, replace the output folder with the
  ones from publish folder. The output folder is where the package
  retrieve the contents from. This will have the module and all the
  dependencies in the package.
- The package target only runs when the configuration is release.
- Add a target Test to run the unit tests.
- Update the build command in azure pipeline to build with configuration
  release.

* Specify the sub-folder artifact for each tool.

- The build process involves deleting the artifact folders. And each
  tool shares the same artifact folder. This may be an issue if we build
  them in parralel because the build process of a tool will delete the
  folder while another tool is being built.
- We'll use sub-folder for each tool in the artifact folder.

Co-authored-by: Beisi Zhou <zhoubeisi@gmail.com>

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Override powershellcorecommandPrefix

* join_path

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Install Az

* Update sign-tool-predictor.yml for Azure Pipelines

* Update sign-tool-predictor.yml for Azure Pipelines

* Sign dll

* Remove dll sign

* Predict parameter values in the suggestion (#12984)

* Get the parameter value from the history.

* Add a mock ps console for testing purpose.

- The mock ps console will echo back most of the commands. So that we
  don't need to really execute the Az command on Azure to test the
  prediction.

* improve telemetry (#13025)

* Correlate the telemetry event we send.

- We have these telemetry entry points when we provide suggestion, when
  a suggestion is accepted, and when the user executes some command. We
  add a SuggestionId to the telemetry events so that we can correlate
  those three events. Doing that we know what suggestions are provided,
  accepted, and executed.

* Collect and correlate our telemetry event.

- With this change, we have these telemetry events;
  * RequestPrediction
  * GetSuggestion
  * AcceptSuggestion
  * CommandHistory
- The events can be correlated by the session id and correlate id that
  are associate with the events.

* Fix the request body.

* Rename the prediction source.

* Collect telemetry when an error occurs.

* Remove some PII field

* Collect user input in GetSuggestion event.

* Use a common telemetry event prefix.

* Remove the .gitignore that shouldn't be added.

* Clean up the code.

* return multiple suggestion (#13098)

* Return multiple suggestions.

- Add a setting to configure at most how many suggestions to return.
- We'll go through the command/parameters one by one and to construct
  the suggestion. We may return multiple suggestions for the same
  command but with different parameter sets;

* Use camel casing in the setting fields.

- Looks like other json file in $HOME/.azure use camel case or
  PascalCase. None use snake case.

* Fix a logic error.

- We'll use the command list for suggestion while the prediction list
  isn't available.

* Stop finding suggestion when the count is met.

* Improve the MockPSConsole.

* Cache the last two commands from the history.

* Reduce the dependencies on Azure powershell common. (#13113)

- That assembly and its dependencies causes a conflict if we load this module
  and Az.Accounts module. Though we can work around by sepcifying Az as a
  dependencies on this module, that'll cause long loading time.
- The reason of loading that assembly is to get the setting about Azure
  PowerShell data collection. We can copy part of the code to load that
  file, so that we don't need that assembly as the dependency.

* Add a missing file. (#13234)

* Fix duplicate text (#13326)

* Improve the debugging experience.

- GetSuggestion gets cancelled during debugging because it times out. So
  we use an environment variable to control whether to allow
cancellation from psreadline.
- Use another macro to control if print message for telemetry.

* Fix a bug that the command line is repeated in the suggestion.

- When we parse the command line and there is an incomplete parameter
  list, we repeat the command line in the suggestion.
- The cause is that we parse the command line and get the wrong
  parameter set from the user input

* Update how we send request and collect telemetry (#13327)

* Fix the query

* Reduce the number of requests to the service.

- We request the prediction for the command history. When the command
  history isn't changed, we don't need to request the prediction again.

* Not to collect the parameter value in the telemetry.

* add variety to predictions list

* add variety to predictions list

* Bug fixes and performance improvement (#13410)

* Reduce extra cost to the perf issue.

* Remove the aggregation on the parameter set.

* Fix an issue

* Fix some comments.

* Improve the telemetry and http request (#13354)

* Collect user id and mac address.

- We hash the user account id and the mac address, and collect those in
  the telemetry. These are used to find how many users are using this
  mdoule.
- We also send the hashed user account id in the http request header.
  This is used to enable throttling by user account.

* Rename

* Collect more data for diagnostic purpose.

* Fix typo

* Remove getting Az modules versions.

* Fixed issue of duplicate threshold consistency caused by two Query function calls as well as duplicate tolerance when list of novel commands is insufficiently small

* Fixed issue of duplicate threshold consistency caused by two Query function calls as well as duplicate tolerance when list of novel commands is insufficiently small

* remove commented lines, change Dictionary to IDictionary

Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>
Co-authored-by: Yabo Hu <yabhu@microsoft.com>
Co-authored-by: dingmeng-xue <dixue@microsoft.com>
Co-authored-by: msJinLei <leijin@microsoft.com>
Co-authored-by: msJinLei <lei.jin@microsoft.com>
Co-authored-by: kceiw <mahuang@microsoft.com>
Co-authored-by: Beisi Zhou <zazbs@qq.com>
Co-authored-by: Beisi Zhou <zhoubeisi@gmail.com>

* Disable test related to fileproperties (#13547)

* [Storage] Support upload 4TB Azure file (#13495)

* [Storage] Support upload 4TB Azure file

* change Azure.Core version to 1.6 (#10)

* Upgrade System.Buffers to 4.5 (#11)

* change Azure.Core version to 1.6

* Upgrade System.Buffers to 4.5.0

* Add missing assemblity to exception for CI fail

Co-authored-by: erich-wang <erich.wang@outlook.com>

* Healthcare APIs Powershell BYOK Updates (#13518)

* Implementing changes for BYOK healthcareapis

* Fixing build error in healthcareapis set azure method

* Regenerating documentation

* Fixing bugs and updating recording file

* Healthcareapis
* Updating help files
* Updating test recording
* Removing unused code in test script

* Addressing PR comments

* Removing trailing " from help file

* Fixing build errors and updating test record file

* Update ChangeLog.md

Co-authored-by: Mark Baker <marbaker@microsoft.com>
Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>

* {IotHub} Added new examples for hashtable type parameter (#13532)

* Added new examples for hashtable type parameter

* Update ChangeLog.md

* Update changelog.md

Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>

* Get-AzVm filter by Name prior to checking for throttling (#13437)

* practice

* practice

* practice

* practicing

* more practice

* attempting NextLink

* successful RG iteration

* attempt to list multiple VMs with same name in multiple RGs.

* attempts at using Get

* now attempting moving filtering earlier

* mapping works? paging unsure

* compile errors for list trying to access power state data.

* fewest errors version

* save old changes and new functional

* new functional, existing tests pass

* dev and testing completed

* cleaning and test

* cleanup

* [Az.Resources] change version commparator from double to version (#13559)

* change version commparator from double to version

* Add missing files

* {AppService} Prevent duplicate rules from being created. (#13540)

* Prevent duplicate rules from being created.

* Update ChangeLog

* Secret Management Extension for AKV (#13506)

* secret management

* update changelog.md

* remove -AsHashtable from ConvertFrom-Json to compatible with windows powershell

* try to set subscription to vault subscription

* Vimundad appgwt: Adding Rule Priority for Application Gateway RequestRoutingRule (#13542)

* Adding priority field to AppGw RequestRoutingRules

* Updated changeLog and help md files

* Adding priority field to AppGw RequestRoutingRules

* Updated changeLog and help md files

* Suppressing existing creds in md files

* Recreating help md files

* Suppressing the creds in json files

* Replacing plaintext password with variables

* Removing the plaintext password from the docs

Co-authored-by: Vinay Mundada <vimundad@microsoft.com>

* Update Get-AzKeyVaultCertificate.md - Get cert and save it as pfx section to work with PowerShell Core (#13557)

* Update Get-AzKeyVaultCertificate.md

The existing syntax does not seem to work in PowerShell Core.  Using the proposed syntax works with both PowerShell Desktop and Core.  When Calling the 'import' in this line:
$x509Cert.Import($secretByte, "", "Exportable,PersistKeySet") in PowerShell core, an error is received "Import" with "3" argument(s): "X509Certificate is immutable on this platform. Use the equivalent constructor instead."  
Declaring the cert object like this works fine:
$x509Cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2($secretByte, "", "Exportable,PersistKeySet")

The recommended change is a combination of the existing MS Documentation and the above which was pulled from: https://gist.github.com/holgerjay/0db1f759f93cba268d671341b787472a

* Remove duplicated line in example

Co-authored-by: Yeming Liu <Yeming.Liu@microsoft.com>

* [Synapse] Update spark version to 1.0.0-beta.1 (#13565)

* update spark version

* update ChangeLog.md

Co-authored-by: Wan Yang <t-wayang@microsoft.com>

* [DataFactory]Upgrade sdk version to 4.13.0 (#13570)

* New Start-AzVmssRollingExtensionUpgrade cmdlet (#13479)

* start initial setup

* initial file

* begin dev, cmdlet framework

* dev, no compile errors

* completed dev

* completed dev  final

* weird test failure when calling API

* this manual setup test works fine after 50mins runtime

* help doc

* default parameter set

* removing unneeded usings

* cleaning up test

* test cleanup and re-record

* re-recorded test file

* test cleanup

* checkin test

test seems to pass in Playback when resource is deleted, can be run at checkin?

* Revert "test cleanup and re-record"

This reverts commit 8a42a5c95f304966be737a7f154f2920e8387888.

* defaultparameterset string

* recorded test file

* removed incorrectly located test file

* deprecate cluster cert cmdlets, update help (#13581)

Co-authored-by: Alfredo Santamaria Gomez <alsantam@microsoft.com>

* Add byDict parameter set for New-AzSapMonitorProviderInstance and re-record tests (#13563)

* Add byDict parameter set for New-AzSapMonitorProviderInstance and re-record tests

* Remove the incorrect link

* Fixed the help link issue

* Fix the link issue in the proxy file

* revert hana psd1

* [NetAppFiles] Anf 7405 update for api version 2020 07 01 (#13576)

* bump to API version 2020-07-01

* Update link to ANF docs site

* Update ChangeLog.md

Co-authored-by: Audunn Baldvinsson <audunn.baldvinsson@netapp.com>
Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>

* Az.StackHCI v0.4.1 OOB release (#13568)

* version bump up

* Update Az.StackHCI.psd1

* New-AzApiManagementProduct: Change SubscriptionsLimit parameter default value to None (#13457)

* Change SubscriptionsLimit default value to None

* Update changelog

* Fix

* update changelog.md

Co-authored-by: Yeming Liu <Yeming.Liu@microsoft.com>

* Supported "all" as an option when setting key vault access policies (#13524)

* Supported "all" as an option when setting key vault access policies

* minor fix in docs

* fix test

* Fix Typo for WorkspaceResourceId parameter in example (#13589)

Fix a typo for the WorkspaceResourceId parameter in the PowerShell example.

* [Synapse] Add new cmdlets for Synapse SQL Pool and Synapse Workspace (#13489)

* add support for restore point and sql admin

* add support for audit in sql pool and workspace

* add support for security center in workspace

* add help docs

* add support for transparent data encryption protector

* update help docs

* add -Force for remove cmdlet

* update changelog

* update management client

* fix for design review

* fix for design review

* fix for design review

* fix for CI

* fix for CI security

* delete TDE related cmdlets because of not supported

* fix null exception of storage account access key

* Update ChangeLog.md

* Use the latest SDK

* fix for update threat protection

* switch to official SDK

* Update changelog and Synapse.csproj

* Update ChangeLog.md

Fix ChangeLog.md merging error

* Update ChangeLog.md

Co-authored-by: Wan Yang <t-wayang@microsoft.com>
Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>
Co-authored-by: Dongwei Wang <dongwwa@microsoft.com>

* Add database readscale related properties support (#13549)

* rename db property and update tests

* add secondaryType property

* Update help files

* update change log

* Add back ReadReplicaCount

* Add back ReadReplicaCount to the model

* Make ReadReplicaCount an alias

* Add ReadReplicaCount back to model

* Remove-AzSynapseSqlPoolRestorePoint (#13412)

* Remove-AzSynapseSqlPoolRestorePoint

* add wsname sqlpoolname

* refine restorepoint and deleteoperation

* refine restore point and resource id

* add help and test

* refine restorepointcreatationdate

* refine and simpify codes

* refine test

* update session records for testsynapsesqlpool

* Move RemoveAzureSynapseSqlPoolRestorePoint.cs and update changelog entry

* Use local resource id

Co-authored-by: Dongwei Wang <dongwwa@microsoft.com>

* Fix the issue of generating generate-info.json (#13473)

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

* {IotHub} Fix sas-token decoding issue (#13601)

* fix sas-token issue

* Update ChangeLog.md

Polish changelog

Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>

* Az.Accounts Improvement (#13592)

* 1. Improve warning message when Interactive is unavailable; 2. Update doc for MSI customized endpoint

* Register CommonUtilities if not present

* Parse ExpiresOn time from access token if possible (#13594)

* [Resources] Fix issue preventing deployment of Template Specs located outside of the current subscription context (#13483)

* Template Specs: Fixing issue where template specs from subscriptions not in context could not be deployed

* Adding mock test for covering recent cross-sub template spec deployment bug involving dynamic parameters.

* Template Specs: Fixing issue with test on Unix based systems

* Fix for test failure

* Merge branch 'master' into dixue/Az.Tools.Predictor (#13613)

* fix parameter for get-azcontainerregistryusage and exception for connect-azcontainerregistry (#13608)

* fix bugs in Az.Containerregistry

* Update ChangeLog.md

* [KeyVault] Redesign HSM cmdlets (#13599)

* merge key cmdlets

* rename management cmdlets

* rename rbac cmdlets

* rename backup restore cmdlets

* rename security domain cmdlets

* misc changes

* resource string

* add SAW scenario to keyvault example (#13620)

* Template Specs: Adding tag assignment/viewing support (#13619)

* polish docs (#13615)

* add detail for set-azapplicationinsightspricingplan help markdown (#13628)

* Refactoring code to enable Authentication related tests (#13616)

* Refactoring code to enable Authentication related tests

* update changelog

* fix test

* Resolve object when it is wrapped by PSObject (#13631)

* StorageSync ChangeLog.md (#13635)

* Update ChangeLog.md

* Update ChangeLog.md

Co-authored-by: Dingmeng Xue <dixue@microsoft.com>

* refactor diagnostic setting (#13535)

Force merge due to AuthenticationFactoryTests

* refactor diagnostic setting

* Update ChangeLog.md

Co-authored-by: Dingmeng Xue <dixue@microsoft.com>

* update new-azautoscaleprofile to accept rule as empty list (#13586)

Co-authored-by: Dingmeng Xue <dixue@microsoft.com>

* [WindowsIotServices]First preview release. (#13609)

Time out due to SQL module. Force merge it.

* [WindowsIotServices]First preview release.

* [WindowsIotServices] Updated documentation/azure-powershell-modules.md.

Co-authored-by: Dingmeng Xue <dixue@microsoft.com>

* Ignore cmdlet check when it doesn't come from assembly file (#13642)

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Fix MSI test case (#13640)

* Polish changelog for upcoming release (#13645)

* Ignore cmdlet check when it doesn't come from assembly file

* Polish changelog for upcoming release

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Update Get-AzBillingInvoice.md (#13634)

fixed a copy/paste typo :)

* [CloudService] Init for CloudService (#13638)

* Init for CloudService

* Fix the help issue and credscan issue

* Fix the issue of PoliCheck.

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>
Co-authored-by: Dingmeng Xue <dixue@microsoft.com>

* Add release notes for cloud service. (#13650)

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

* Fix scenario test hanging issue (#13644)

* Fix scenario test hanging issue

* Update ChangeLog.md

* First version of MySql flexible server cmdlets (#13622)

* First version of MySql flexible server cmdlets

* Remove plain text password

* [CostManagement] Init for CostManagement (#13646)

* Init for CostManagement

* Init for CostManagement

* Fix the issue of document

* Add release notes for Costmanagement.

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>
Co-authored-by: Dingmeng Xue <dixue@microsoft.com>

* Edit New-AzSnapshot so it checks for already existing duplicate resource before creation (#13580)

* dev, test, and changelog work.

* test cleanup

* test synopsis

* testing test failures
NetworkPOlicy test passes when run individually...

* cleaned up tests, fixed failures.

* Updated security alerts tests + added Secure score types tests (#13604)

* * Updated security alerts tests
* Added Seucre Score tests

* fixed help files headers

* Add attributes for deprecating properties

* Import references

* Add new return type for output object

* Change return type in get alerts

* Fix set input type

* Update session records

* Fixed DeviceSecurityGroups tests

* exclude non passing tests

* Re-add missing files

* update external security solutions tests

* Update ChangeLog.md

Polish change log

Co-authored-by: giromm2ms <giromm@microsoft.com>
Co-authored-by: Yifat Birnbaum <yibirnba@microsoft.com>
Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>

* [ServiceFabric] Fix Add-AzServiceFabricNodeType. Add node type Before creating vmss (#13648)

* Add node type before vmss

* fix typo

Co-authored-by: Alfredo Santamaria Gomez <alsantam@microsoft.com>

* release-2020-12-08 (#13661)

* bugfix for remove cmdlet to delete config (#13655)

Co-authored-by: Abhinav Prakash <abprakas@microsoft.com>

* Removed link syntax. (#13658)

* Fix typo (#13629)

* Fixed location completer for NewAutomationUpdateManagementAzureQuery (#13664)

* Update NewAutomationUpdateManagementAzureQuery .cs

* Update ChangeLog.md

* Update ChangeLog.md

* Fix SetAlert Cmdlet - add new parameter to be able to use the new alerts type (#13675)

* Update PSMetricNoDetails.cs (#13676)

I assume the duplication of the word "properties" was a mistake. If it's talking about the properties belonging to a property, then it should be "property's properties".

* Update Set-AzSqlDatabase.md (#13674)

Added an example for Hyperscale and updated the edition for Hyperscale

* removed marketing language, better example filter (#13671)

* Fix swap between title and code in documentation (#13666)

* [Synapse] Add new cmdlets related to SQL security on Synapse SQL pool and workspce (#13641)

* add support for threat detection

* add support for vulnerability assessment

* add support for enable data security

* add support for TDE and data security

* update help docs and test

* update ChangeLog.md

* add suppressions for session record

Co-authored-by: Wan Yang <t-wayang@microsoft.com>

* Fixed spelling mistake (#13677)

Wrapps should be wraps.

* Support "Move-Generation2Master" script for full path input (#13660)

* Support "Move-Generation2Master" script for full path input

* Unified path

* fix missing return object (#13688)

* initial commit (#13680)

* Fix the handling of long-running operation statuses for New-AzManagedApplication and Set-AzManagedApplication (#13679)

* AzureManagedApplications

Fix the handling of long-runing operation statuses for New-AzureManagedApplication and Set-AzureManagedApplication

* Update ChangeLog.md

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* [Synapse] Fix deserialization issue for creating Pipeline/Dataset/Trigger (#13643)

* fix deserialization error for artifacts

* change return type for artifacts

* solve null reference

* solve null reference

* add internal properties

* fix for CI

Co-authored-by: Wan Yang <t-wayang@microsoft.com>

* [Storage] Support Encryption Scope (#13610)

* Remove extra brackets (#13689)

* Support "Move-Generation2Master" script for full path input

* Unified path

* Remove extra brackets

* Remove extra brackets

* [Synapse] - Support polling for artifacts cmdlets (#13701)

* [Synapse] - Add polling for artifacts operations

* Update changelog

* Clean code

Co-authored-by: Dongwei Wang <dongwwa@microsoft.com>

* [Storage] Upgrade Azure.Storage.Queues to 12.5.0 (#13614)

* [Storage] Upgrade Azure.Storage.Queues to 12.5.0

* Fix the issue that StaticAnalysis fails to check dependence on .Net framework. (#12)

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>
Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

* Update Set-AzContext.md (#13702)

Example uses old parameter name

* [Tool] Fix some issues in tools and pipeline (#13706)

* Fix the issue that forget to copy the utils from generation to master.

* Fix the issue of GenerateHelp.ps1

* Fix the issue of BinSkim 1.7.1

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

* [Az.PolicyInsights] Returning paginated results from Get-AzPolicyState. (#13712)

* Allowed paginated results to be returned

* Allowed paginated results to be returned.

Returning results more than 1000 is now possible.

* Modified ChangeLog.md

* Removed Subscription ID (#13715)

* selective restore key for a managed hsm backup (#13627)

* Improve long running operation debug log (#13612)

* listen to polling event and print req/res

* try catch to be compatible with old gen modules

* Update ChangeLog.md

* Update Start-AzJitNetworkAccessPolicy.md - Fix the Example to display the proper cmdlet being demonstrated (#13713)

* Update Start-AzJitNetworkAccessPolicy.md

The example for how to use Start-AzJitNetworkAccessPolicy showed how to use Set instead of Start.  This version includes how to use Start instead.

* Update Start-AzJitNetworkAccessPolicy.md

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Fixed parameter description for InstanceFailoverGroup command (#13722)

* Update Set-AzSqlDatabaseInstanceFailoverGroup.md

Removed "feature not supported" for -AllowReadOnlyFailoverToPrimary parameter.

* Update New-AzSqlDatabaseInstanceFailoverGroup.md

Fixed description for -AllowReadOnlyFailoverToPrimary as it is supported

* Fixed parameter description for InstanceFailoverGroup command.

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

* Add saved query cmdlets (#13422)

* Draft hybrid version of resource graph

* Fix some issues during the building of hybrid module

* Remove readme.md not needed

* Check in the autogen part of ResourceGraph

* Update change log for resourcegraph

* Skip psm1 in GetModuleMetadata

* Remove etag support for resourcegraph

* Remove unused generated psd1

* Remove modules folder that is not required

* change the suffix to txt

* Fixed some issues found in code review

* Fixed some other issues found in code review

* Update MoveFromGeneration2Master.ps1 (#13728)

Fix a path related issue

* New module for Security insights (Azure Sentinel) Resource Provider (#13607)

* v1

* Actions, AlertRules

* Bookmarks... start incident comments

* more updates

* Incident Comments

* major updates

* fixes

* more fixes

* GetAlertRuleTemplates updates

* Update Az.SecurityInsights.psd1

* v1 tests

* tests.....

* Revert "tests....."

This reverts commit 4dddc6cf04639fad458b03068e61561903508b5b.

* Revert "Revert "tests.....""

This reverts commit 7904f596cbcfcaf726f110e8b9ff71988735f9e4.

* test v2

* tests complete... starting bug fixes

* bugs

* Update NewBookmarks.cs

Removed redundant "}"

* bugs

* Update NewBookmarks.cs

Fixed curly bracket

* updates

* updates after testing

* bugs....

* fix input object

* Added tests for input objects

* Generate Help

* added examples to help files based on build failure

* add online link to help files

* Bug Fixes

fixes for help and static analysis

* Moved Set- Commands to Update-

* bug fix to help docs

* Updates per feedback

https://github.com/Azure/azure-powershell/pull/13607#issuecomment-741597638

* Update Dns.sln

* Update Media.sln

* Update Media.sln

* Update Media.sln

* Fixes per comments

* remove dependacy on logic app module

* Add exceptions for static  analysis

* Update SignatureIssues.csv

* Update SignatureIssues.csv

* Update SignatureIssues.csv

Co-authored-by: Tiander Turpijn <tiandert@microsoft.com>
Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Update Set-AzFirewall.md (#13727)

* updated release notes for Az.ResourceGraph (#13734)

* Az.Tools.Predictor refactor and performance improvement. (#13669)

* Prefix the environment variable "AzPredictor"

* Refactor the code

- Improve the comment and its format.
- Create a concret class type to replace Tuple and ValueTuple.
- Verify method parameter values.

* Fix a bug that throws NullReferenceException.

* Improve the telemetry.

- Combine the error telemetry event with the non-error one.
- Collect if the http request is canceled when we send http request.

* Fix a bug that out of range is thrown.

* Transform and send telemetry in a thread pool.

- Refactor the telemetry and use a class for the collected data in each
  telemetry event.
- Now we only get basic information and push them to the data flow.
- A thread from thread pool handles the data, transform them, and send
  it.

* Fix the SuggestionSource and test.

- Updated the test after the refactor.
- Add more test cases.
- We don't set SuggestionSource on the suggestion in some cases. This is
  revealed in the unit tests. They're fixed.

* Avoid duplicate extraction of user input.

- We have two CommandLinePredictor in AzurePredictorService. The
  CommandLinePredictor needs to extract from the user input the command
  name, parameter set etc. It's duplicate if we do that in both
  CommandLinePredictor. Move that extraction to AzurePredictorService
  and the CommandLinePredictor will not need to do it.

* Fix a bug that a duplicate key is in the dictionary.

* Replace Newtonsoft with the built-in Json serializer.

* Fix an issue that the parameter name is repeated in source text.

* Ensure the http response is successful.

* Collect the event in requesting to /commands.

* Improve the perf in GetSuggestion.

- Remove the string manipulation.
- Pre-allocate the collections for the result.
- Remove invariant check in "readonly" properties.

* Seperate the inner class in seperate files.

* [Synapse] -  Fixed deserialization error when create Pipeline/Dataset/Trigger through DefinitionFile (#13721)

* Remove using Newtonsoft.Json and JsonObject

* update client and cmdlets

* Remove more Newtonsoft annotation

* remove ToSdkObject and SetProperties

* update artifacts client

* Remove JsonProperty

* remove unused sub-classes

* remove internal properties

* Update artifacts dependency version

* Fix the default literal issue

Co-authored-by: Dongwei Wang <dongwwa@microsoft.com>

* Get-AzKeyVaultSecret can -AsPlainText (#13730)

Co-authored-by: Yeming Liu <yeliu@microsoft.com>

* Update Get-AzRecoveryServicesBackupItem.md (#13719)

Get-AzRecoveryServicesBackupContainer examples used "name" instead of "friendlyname". Name is not a valid parameter for Get-AzRecoveryServicesBackupContainer.

https://docs.microsoft.com/en-us/powershell/module/az.recoveryservices/get-azrecoveryservicesbackupcontainer?view=azps-5.2.0

* Merge VVD update to master (#13718)

* Merge VVD update to master

* Update ChangeLog.md

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Move Communication and RedisEnterpriseCache to master branch (#13729)

* Move Communication and RedisEnterpriseCache to master branch

* Suppress two json files for cred scan

* Update module docs for redisenterprisecache and communication

* [Tool]Add PoliCheck policy for CloudService (#13707)

* Add PoliCheck policy

* Add PoliCheck policy

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

* comments smoke test for DesktopVirtualization (#13752)

* Deployment Scripts GA - update api-version (#13737)

* Update deploymentScripts apiVersion to latest GA version

* update changelog

* Update ChangeLog.md

* Fix template spec error type

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Fixing SQL AG restore, removing the container name check (#13744)

* Fix secure string issue (#13741) (#13754)

* [DataFactory]Fix the command `Invoke-AzDataFactoryV2Pipeline` for SupportsShouldProcess issue (#13755)

* [DataFactory]Fix the command `Invoke-AzDataFactoryV2Pipeline` for SupportsShouldProcess issue

* Update Changelog.md

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Enable support for multi auth for p2sVpnGateway (#13749)

* enable multi Auth for p2sVpnGateway

* allow multi auth for update-vpnServerConfig

* fix update

* Update ChangeLog.md

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Revert "Enable support for multi auth for p2sVpnGateway (#13749)" (#13764)

This reverts commit 42b62195e848030217d939ca1a7ca0f5d2957b0f.

* Textual modifications to SecurityJitNetworkAccessPolicy help file (#13761)

* Introducing SecurityTopologies cmdlets

* Update ChangeLog.md

* Update ChangeLog.md

* Change cmdlet name to Get-AzSecurityTopology

* remove AllowedConnections

* change name

* fix conflicy

* fix conflict

* Update ChangeLog.md

* Introducing Az.Security AllowedConnections cmdlets

* update change.log

* remove SecurityTopology

* fix version

* Fix comments

* fix location

* fix comment

* fix comment

* fix version number

* Create Adaptive Application Control API cmdlets

* Create Adaptive Application Control API cmdlets

* fix1

* fix2

* Add back comment end token

* Introducing ScurityAdaptiveNetworkHardening  cmdlets

* Update Security.csproj

* Update ChangeLog.md

* 1

* Introducing Az.Security AdaptiveNetworkHardening cmdlets

* Introducing Az.Security AdaptiveNetworkHardening cmdlets

* change to a singular noun for the parameter name

* change to a singular noun for the parameter name

* change to a singular noun for the parameter name2

* implement ShouldProcess

* fix1

* Update JIT help

* remove files

* revert ChangeLog.md

Co-authored-by: Arik Riklin <arik.riklin@microsoft.com>
Co-authored-by: Yabo Hu <yabhu@microsoft.com>
Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Update Reset-AzP2sVpnGateway.md (#13765)

* [Synapse] Add new cmdlets related to SQL rule baseline and sensitivity on Synapse SQL pool (#13759)

* Add 9 DW related cmdlets

* Save current status

* Revert ValueFromPipelineByPropertyName

* Add workspaceName and resourceGroupName to PSSqlPool

* Fix naming

* Update help doc

* update psd1

* Add SqlPoolName alias to basic SQL pool related commands

* Add test cases for new cmdlets

* Remove default parameter for Set-AzSynapseSqlPoolVulnerabilityAssessmentRuleBaseline

* Remove default parameter set

* Update CredScan Suppressions and test case names

* Update TestVulnerabilityAssessmentBaseline.json

Co-authored-by: Dongwei Wang <dongwwa@microsoft.com>

* [HDInsight]Add properties: `Fqdn` and `EffectiveDiskEncryptionKeyUrl` in AzureHDInsightHostInfo (#13771)

* Add properties: `Fqdn` and `EffectiveDiskEncryptionKeyUrl` in AzureHDInsightHostInfo.\n Update related session records.\n Update other cmdlets's help doc.

* Update changelog

Co-authored-by: Zhenyu Zhou <zhezhou@microsoft.com>

* Fix Status and StatusMessage fields in Get-AzSqlDatabaseImportExportStatus to conform to documentation (#13751)

* Put the correct value into the StatusMessage field

* Add parsing of the http return value to determine the operation status

* Add ChangeLog.md entry

* Re-add as much testing as possible and add commenting for why the rest is broken

* Update ChangeLog.md

Co-authored-by: Simon Redman <siredman@microsoft.com>
Co-authored-by: Dingmeng Xue <dixue@microsoft.com>

* Add local parameter value map to Az.Predictor (#13739)

* add local parameter value map

* add local parameter value map

* add local parameter value map

* add local parameter value map

* SQL Data Classification - Update id split logic (#13746)

* Update DataClassificationAdapter.cs

* Update DataClassificationAdapter.cs

* Update ChangeLog.md

* Update DataClassificationAdapter.cs

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Prediction/Commands Service API v2 updates (#13767)

* Initial updates for updated v2 service endpoints

* Updating tests to work with the new model updates

* Fixing service uri, cleaning up using statements

* PR feedback

* Additional code cleanup:
- Removed unnecessary usings
- Added copyright
- Misc. code clean up

Co-authored-by: Juan Aguirre <juaguir@microsoft.com>

* Kusto update with API version 2020-09-18 (#13776)

* Kusto update with API version 2020-09-18

* Update ChangeLog.md

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Get-AzVMDSCExtension and Get-AzVMDSCExtensionStatus new parameter set VMParameterSet for new parameter VM (#13657)

* practice

* practice2

* success

* testing attempts

* testing

* changelog

* help doc for Status cmdlet

* help text on status

* 2nd cmdlet

* 2nd cmdlet help doc

* Fix the path issue (#13783)

* Changed container name format for Azure Files backup item (#13781)

* fix 13687 (#13778)

* Stop when test fails (#13780)

* [KeyVault] Fix minor bugs (#13779)

* fix 13583 13584

* suppress breaking change

* Remove Newtonsoft dependency  (#13787)

* Removing newtonsoft

* Fixing null reference issue in parameter predictor

Co-authored-by: Juan Aguirre <juaguir@microsoft.com>

* Add Code and tests for Bot Service (#13782)

* Revert "Stop when test fails (#13780)" (#13789)

This reverts commit 9dae391a765e98cf1a3dd4999ff6346b54795f08.

* Update the Azure-powershell-modules (#13793)

* Update the Azure-powershell-modules

* Update documentation/azure-powershell-modules.md

Co-authored-by: Yeming Liu <felix_liu@outlook.com>

* Update the doc

Co-authored-by: Yeming Liu <felix_liu@outlook.com>

* Regenerated DedicatedHSM and Databricks (#13792)

* dedicated HSM

* databricks

* SQL Server DevOps auditing support (#13788)

* Implement GetAzSqlServerMSSupportAudit

* use DotNet SDK from local feed

* fix tests - in progress

* expose SetAzSqlServerMSSupportAudit

* fix tests - in progress

* fix tests - in progress

* added base cmdlet class for server and DevOps audit cmdlets

* full refactoring

* full refactoring

* full refactoring

* full refactoring

* make base class for RemoveServerAudit cmdlets

* consume new DevOps API

* adjust to latest SDK

* adding MSSupport tests

* more DevOps tests

* DevOps tests

* DevOps tests

* DevOps tests

* revert files changed by mistake

* revert changed by mistake files

* use proper Sql SDK version 1.48.0

* update ChangeLog.md

* remove local NuGet package

* add missing help file

* update md file

* fix help files

* fix help files

* * update CredScanSuppressions.json
* move recorded tests to the correct folder

* re-record failed test

* restore removed comment

Co-authored-by: Oleg Sternberg <olsternb@microsoft.com>

* Load assemblies from PreloadAssemblies (#13799)

* Lengthen name suffix to reduce conflict (#13800)

* Lengthen name suffix to reduce conflict

* Update changelog for upcoming release (#13798)

* Update changelog for release

* revert CmdletLoader.cs

* Fix the test of CloudService (#13807)

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>

* OOB has been done for WVD, these are related changes need to be merged into master. (#13806)

* Merge VVD update to master

* Update ChangeLog.md

* Update changelog for WVD

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>

* Pipeline should stop when test fails (#13804)

* Pipeline should stop when test fails

* Skip some failed test cases for the time being to make CI pass

* upgrade Azure.Core to 1.7 (#13805)

* Delete the useless case for costmanagement (#13810)

* delete useless test

* delete useless file

* add liveonly test case for secret management extension (#13809)

* Update the Warning message (#13821)

* Update New-AzHostGroup.md (#13814)

* Fix the test framework for test. (#13803)

* Fix cases and utils script for 'BotService' (#13813)

* Fix cases and utils script for 'BotService'

* update env file

* Add SubscriptionId in cmdlet ’New-AzBotService‘

* update the cmdlet 'New-AzBotservice'

* Update custome file

* Change Get-AzAlertHistory title and description (#13816)

* change alert history title and description

* add release note to change log

* remove changelog

as only doc was changed

Co-authored-by: Yeming Liu <felix_liu@outlook.com>

* [Az.RecoveryServices.Backup] Customer Managed Key Encryption for recovery services vault (#13593)

* Customer Managed Key Encryption

fixing static analysis

fixing casing

skipping tests for upcoming release

resolving review comments

* fixing azp

* [KubernetesConfiguration] Upgrade API version from 2019-11-01-preview to 2020-10-01-preview. (#13829)

* [KubernetesConfiguration] Upgrade API version from 2019-11-01-preview to 2020-10-01-preview.

* [KubernetesConfiguration] Updated ChangeLog.md

* [KubernetesConfiguration] update help doc.

* Update example (#13837)

Updated the example to match the correct cmdlet and removed duplicated parameter.

* release-2020-12-29 (#13839)

* Allow Get-AzLogicAppTriggerHistory and Get-AzLogicAppRunAction to return more than 30 results (#13846)

* Allow Get-AzLogicAppTriggerHistory to return more than 30 results.

* Allow Get-AzLogicAppRunAction to return more than 30 results

* Update change log

* Fixed issue where description was not populated for update management schedules (#13854)

* Update AutomationPSClientSoftwareUpdateConfiguration.cs

Start populating description field for Update Management Schedules

* Update ChangeLog.md

* [Az.RecoveryServices.Backup] Workload Recovery config, disallowing target item to be an availability group (#13851)

* Recovery Config target item, blocking SQL availability group

* working review comments

* Update Set-AzVirtualNetwork.md (#13857)

* Update Set-AzVirtualNetwork.md

Updated comment for Example 1

* Update Set-AzVirtualNetwork.md

- specify language of code block
- indentation

Co-authored-by: Yeming Liu <Yeming.Liu@microsoft.com>

* Updated changelog and added missing feature (#13867)

* Update New-AzStorageTableStoredAccessPolicy.md (#13871)

As of at least Az.Storage 3.2.0 (perhaps earlier), -Permission parameter will not accept write/w as a string component, the write permission has been split into add/a and update /u

* Update Set-AzSecurityWorkspaceSetting.md (#13877)

Fixed description of a command output

* #10518-webapp: Support the new appservice Managed certificates (#13441)

* #10518-webapp: Support the new appservice Managed certificates

* updated online version for help files

* fixed static analysis SignatureIssues.

* Review comments

* Review comments addressed

* Addressed Review comments

* Modified tests are rerecorded

* Fixed build issue

* addressed Code review comments

* updated conflicts

* Updated code to support 202 status

* Updated ParametreSet positions

* Update src/Websites/Websites/ChangeLog.md

Co-authored-by: Yeming Liu <felix_liu@outlook.com>

* [CosmosDB] GA of Az.CosmosDB module (#13875)

* disallowing updates using New-AzCosmosDBAccount cmdlet

* updating changeLog and Test session records

* re-ran tests for add region + addressed comment on ChangeLog

Co-authored-by: Meha Kaushik <mekaushi@microsoft.com>

* {IoT Hub} Fixed issue in SAS token generation (#13881)

* Fixed issue in SAS token generation

* Added SAS token validation test and updated test recording

* Fixed status code for device message result

* Fix bug causing Docker Password to be removed from appsettings in Set-AzWebApp(Slot) (#13866)

* Fix removal of docker password setting #13865

* minor adjustment to changelog

to make sure the versioning script will handle it correctly

Co-authored-by: Noort <xx07uq@INSIM.BIZ>
Co-authored-by: Yeming Liu <Yeming.Liu@microsoft.com>

* [Storage] Fix ContinuationToken never null in list blob include version (#13873)

* [MONITOR] Data Collection Rules 2019-11-01-preview - New Cmdlets (#13595)

* Add upport for Azure Monitor Data Collection Rule

* [Monitor] Add support for Azure Monitor DCRA (Data Collection Rule Association); Add DCR/DCRA Session Record tests; Add DCRA help

* Fix -Name documentation in Get-AzDataCollectionRule.md

* AMCS DCR/DCRA change parameter names

* [Azure Monitor Control Service] support DCR Update cmdlet; Suggestive name parameters; Improve cmdlet description

* Azure Monitor Control Service: Update docs; Fix test records;

* Azure Monitor Control Service: Fix ChangeLog.md

* Azure Monitor: Fix Release description & version

* Fix Maml model erros caused by a yaml block

* AMCS Fix help docs & Update Sql.Test project reference

* AMCS  - Add ParameterSet ByResourceID to DCR Get/Set cmdlets

* Remove links from help docs in notes & examples

* Fix Help docs, notes section

* fix help generation

* Renaming parameters -Tags to -Tag, in [New/Set/Update]DataColletionRule cmdlets

Co-authored-by: Yeming Liu <Yeming.Liu@microsoft.com>

* [Az.RecoveryServices.Backup] Adding Cross Region Restore feature (#13884)

* IaasVM Cross Region Restore

* working review comments

* minor doc change

* Merge MySql enhancement from generation to master (#13796)

* Merge MySql enhancement from generation to master

change list
https://github.com/Azure/azure-powershell/pull/13717
https://github.com/Azure/azure-powershell/pull/13838

* Address review comments

* Added support for -QueryString parameter in New-Az*Deployments cmdlets (#13775)

* Update SDK version and add support for -QueryString parameter in New-Az*Deployment cmdlets

* updated changelog and help files

* Fix broken help files

* Credscan test fix

* Fix SDK version issues

* Fixed failing DeploymentManager test

* Fixed build issues

* Review fixes

* [Synapse] - refine restore sqlpool (#13888)

* Save current status

* Redesign restore-azsynapsesqlpool

* Update help doc

* Update changelog

* Remove unused comments

* Add Restore-AzSynapseSqlPool to BreakingChangeIssues.csv

Co-authored-by: Dongwei Wang <dongwwa@microsoft.com>

* Az.CosmosDB GA (#13907)

* Rename some help files (#13900)

* fix cmdlet help issue

* Delete Disable-AzAksAddon.md

* Delete Enable-AzAksAddon.md

* Delete Invoke-AzVmPatchAssessment.md

* Delete Get-AzExpressRouteCrossConnectionARPTable.md

* Delete Disconnect-AzP2sVpnGatewayVpnConnection.md

* Delete DIsable-AzSecurityAdvancedThreatProtection.md

* Delete Set-AzDataLakeGen2ItemACLObject.md

* Delete comdlet

* Revert "Delete comdlet"

This reverts commit 5e1df941543ab21f52bc8de335d9eedf34909ab1.

* Pass principal type during role assignment put operations (#13590)

* Added principal type to New-AzRoleDefinition calls

* add principal type check for update role assignment

* re-record tests

* fix tests

* update test

* skip non deterministic tests

* delete credentials

* use ressource string

* Flexible server of PostgreSql (#13890)

* First version flexible server of PostgreSql

* Add change log for postgresql

* [CosmosDB] Bugfix: Added missing property in Sql Container Resource (#13895)

* disallowing updates using New-AzCosmosDBAccount cmdlet

* updating changeLog and Test session records

* re-ran tests for add region + addressed comment on ChangeLog

* Adding analytical storage ttl in Sql Container

* updating help

* update changelog

* improving help msg

Co-authored-by: Meha Kaushik <mekaushi@microsoft.com>

* Remove PowerShell Core myget feed (#13923)

* [SQL] [LogReplay] Make Start-AzSqlInstanceDatabaseLogReplay synchronous command  (#13903)

* initial

* remove model

* Add AsJob Switch parameter so user can execute as background process as this is a long-running op

* change log updated

* regenerated help files

Co-authored-by: Milan Brkic <mibrkic@microsoft.com>

* polish changelog for upcoming release (#13918)

* Codegen for addomainservices (#13914)

* Move ADDomainServices to master

* Add ADDomainServices

Co-authored-by: azurepowershell <azurepowershell@ms.com>

Co-authored-by: erich-wang <eriwan@microsoft.com>
Co-authored-by: t-bzhan <61817681+t-bzhan@users.noreply.github.com>
Co-authored-by: Dingmeng Xue <dixue@microsoft.com>
Co-authored-by: Jin Lei <54836179+msJinLei@users.noreply.github.com>
Co-authored-by: Yabo Hu <yabhu@microsoft.com>
Co-authored-by: msJinLei <leijin@microsoft.com>
Co-authored-by: msJinLei <lei.jin@microsoft.com>
Co-authored-by: kceiw <mahuang@microsoft.com>
Co-authored-by: Beisi Zhou <zazbs@qq.com>
Co-authored-by: Beisi Zhou <zhoubeisi@gmail.com>
Co-authored-by: yemohyle <73853907+yemohyle@users.noreply.github.com>
Co-authored-by: azuresdkci <azuresdkci@microsoft.com>
Co-authored-by: Rahul Dutta <rahuldutta90@users.noreply.github.com>
Co-authored-by: Wei Wei <weiwei@microsoft.com>
Co-authored-by: erich-wang <erich.wang@outlook.com>
Co-authored-by: iviark <33299013+iviark@users.noreply.github.com>
Co-authored-by: Mark Baker <marbaker@microsoft.com>
Co-authored-by: Sapan Saxena <31940305+anusapan@users.noreply.github.com>
Co-authored-by: Adam Sandor <adsandor@microsoft.com>
Co-authored-by: Daniel Orozco <64658732+dagoroz@users.noreply.github.com>
Co-authored-by: Mads Damgård <madsd@microsoft.com>
Co-authored-by: Vinay Jayant Mundada <vinaymundada27@gmail.com>
Co-authored-by: Vinay Mundada <vimundad@microsoft.com>
Co-authored-by: Andrew Dawson <62777308+dawsonar802@users.noreply.github.com>
Co-authored-by: Yeming Liu <Yeming.Liu@microsoft.com>
Co-authored-by: Wan Yang <yw1997yw@126.com>
Co-authored-by: Wan Yang <t-wayang@microsoft.com>
Co-authored-by: Jingshu923 <52914166+Jingshu923@users.noreply.github.com>
Co-authored-by: Alfredo Santamaria <chino.sebastian@gmail.com>
Co-authored-by: Alfredo Santamaria Gomez <alsantam@microsoft.com>
Co-authored-by: Xiaogang <xidi@microsoft.com>
Co-authored-by: Auðunn <audunnb@gmail.com>
Co-authored-by: Audunn Baldvinsson <audunn.baldvinsson@netapp.com>
Co-authored-by: SteppingRazor <luksil91@gmail.com>
Co-authored-by: Steve Burkett <SteveBurkettNZ@users.noreply.github.com>
Co-authored-by: Dongwei Wang <dongwwa@microsoft.com>
Co-authored-by: bradrich-msft <53872276+bradrich-msft@us…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants