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

Updated .NET SDK 2022-11-01 for PowerShell #21827

Merged
merged 95 commits into from
May 16, 2023

Conversation

msJinLei
Copy link
Contributor

Description

Checklist

  • SHOULD select appropriate branch. Cmdlets from Autorest.PowerShell should go to generation branch.
  • SHOULD make the title of PR clear and informative, and in the present imperative tense.
  • SHOULD update ChangeLog.md file(s) appropriately
    • 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 in the past tense. Add changelog in description section if PR goes into generation branch.
    • Should not change ChangeLog.md if no new release is required, such as fixing test case only.
  • SHOULD have approved design review for the changes in this repository (Microsoft internal only) with following situations
    • Create new module from scratch
    • Create new resource types which are not easy to conform to Azure PowerShell Design Guidelines
    • Create new resource type which name doesn't use module name as prefix
    • Have design question before implementation
  • SHOULD regenerate markdown help files if there is cmdlet API change. Instruction
  • SHOULD have proper test coverage for changes in pull request.
  • SHOULD NOT introduce breaking changes in Az minor release except preview version.
  • SHOULD NOT adjust version of module manually in pull request

MikhailTryakhov and others added 30 commits April 3, 2023 12:00
See below result from running this locally:

PS C:\> $newDefinition = New-AzCosmosDBSqlRoleDefinition `
>> -ResourceGroupName $resourceGroupName `
>> -AccountName $accountName `
>> -RoleName "Quality Management Service CosmosDB Contributor" `
>> -AssignableScope "/dbs/$cosmosDatabaseName" `
>> -DataAction $builtInCosmosContributorRole.Permissions.dataActions
PS C:\> $newDefinition.GetType()

IsPublic IsSerial Name                                     BaseType
-------- -------- ----                                     --------
True     False    PSSqlRoleDefinitionGetResults            System.Object
* [AKS] support parameter EnableOidcIssuer

* remove unnecessary test case part
…ved (#21446)

* msg and changelog

* vmss

* Update ChangeLog.md

---------

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>
* Limit container app live test running on latest ps version due to quota (15) set in one single subscription

* add test for connectedk8s

* revise livetest

* revise livetest

* Update TestLiveScenarios.ps1

---------

Co-authored-by: Vincent Dai <23257217+vidai-msft@users.noreply.github.com>
Co-authored-by: Aaron Zhang <aaron@Aarons-MacBook-Pro.local>
… update (#21483)

* breakingchange message

* ps

* Update ChangeLog.md

---------

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

* Update ChangeLog of Modules depending on Azure.Core

* Missing assemblings
…21491)

* {AzureWebApp} update the description of AzureStoragePath parameter

Update the description of `-AzureStoragePath` parameter to include `New-AzWebAppAzureStoragePath` instead of `New-AzureRmWebAppAzureStoragePath`

Docs link:
https://learn.microsoft.com/en-us/powershell/module/az.websites/set-azwebappslot?view=azps-9.6.0
https://learn.microsoft.com/en-us/powershell/module/az.websites/set-azwebapp?view=azps-9.6.0

Fixes #21484

* Update Set-AzWebAppSlot.md
…and output (#21490)

* {AzureCompute} Include the ProvisioningState value in Get-AzVMRunCommand output

fixes #21473

ProvisioningState is empty in Get-AzVMRunCommand output. GET VM Run command REST API does return ProvisioningState correctly.

See the response returned:

```
Name                : navbaRunCommand
Location            : SouthIndia
Id                  : /subscriptions/XXXXXXX/resourceGroups/navbavmdel/providers/Microsoft.C
                      ompute/virtualMachines/navbavmdel/runCommands/navbaRunCommand
Type                : Microsoft.Compute/virtualMachines/runCommands
Tags                : {[Reason, Repro], [CreatedDate, 4/11/2023 4:07:00 AM], [CreatedBy, NA], [OwningTeam, NA]}
Source              : Microsoft.Azure.Management.Compute.Models.VirtualMachineRunCommandScriptSource
Parameters          : {}
ProtectedParameters : {}
AsyncExecution      : False
RunAsUser           :
RunAsPassword       :
TimeoutInSeconds    : 0
OutputBlobUri       :
ErrorBlobUri        :
ProvisioningState   :
InstanceView        :
```

This PR includes the fix for this and includes the ProvisioningState value in Get-AzVMRunCommand output

* Update PSVirtualMachineRunCommand.cs

* Update ChangeLog.md

* Update ChangeLog.md

---------

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

* Update Compute.csproj

* Update DataFactoryV2.csproj

* Update Synapse.csproj

---------

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

* revise code
* Move Aks to main

* update changelog and suppress signature issues

---------

Co-authored-by: YanaXu <sheshouxy@gmail.com>
* Update the document Debugging-StaticAnalysis-Errors.md

* Update the document Debugging-StaticAnalysis-Errors.md

* Update Debugging-StaticAnalysis-Errors.md

* Update Debugging-StaticAnalysis-Errors.md

---------

Co-authored-by: Yeming Liu <11371776+isra-fel@users.noreply.github.com>
* Update IsCustom property on example role defintion

We're making a custom role definition, so we need to update the IsCustom property to True.

* Update New-AzRoleDefinition.md

---------

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>
* add some outputs for Get

* Update Get-AzCognitiveServicesAccountCommitmentPlan.md

* Update Get-AzCognitiveServicesAccountDeployment.md

* Update Get-AzCognitiveServicesAccountType.md

* Update Get-AzCognitiveServicesCommitmentPlan.md

* Update Get-AzCognitiveServicesCommitmentTier.md

---------

Co-authored-by: Yunchi Wang <54880216+wyunchi-ms@users.noreply.github.com>
…ation (#21516)

* Add the Test Case to Verify All Environment Endpoints after Initialization

* Upgrade common library versions
* Support for sticky bit

* delete redundant file

* Update help files

* update parameter description format

* Update help

* Fix the issue of static analysis

---------

Co-authored-by: wyunchi-ms <yunwang@microsoft.com>
* Fix for slash issue

* update GetTrack2BlobClient input

* update sdk dependency

* Add warning message for breaking change

* Update warning message

* Update warning message to apply to just the parameter
NoriZC and others added 19 commits April 28, 2023 10:45
* Add denpendencies in Compute to resolve the CVE

* Update System.Security.Permissions from 4.5.0 to 4.7.0

* Update System.Security.Permissions from 4.5.0 to 4.7.0
* Remove `HostNamePrefix`

* Add change log

* update markdown

* Add breakingChangeIssues.csv
* initial updates

* change routeservicedev to vwan
* add live test for MSGraph

* add live test for MSGraph

* remove platform

* Update TestLiveScenarios.ps1
@azure-client-tools-bot-prd
Copy link

Validation for PowerShell Core and Windows PowerShell Starts. Thanks for your contribution!

@msJinLei msJinLei force-pushed the jinlei/release-network-fix-merge branch from 1a17d97 to fc8c820 Compare May 16, 2023 05:06
@msJinLei msJinLei added Do Not Squash 🚫 To prevent conflicts, this PR should not be squash merged. Network labels May 16, 2023
@msJinLei msJinLei merged commit 9790495 into jinlei/release-network-fix-merge May 16, 2023
@wyunchi-ms wyunchi-ms deleted the mitryakh/2022-11-01-sdk branch January 10, 2024 01:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Do Not Squash 🚫 To prevent conflicts, this PR should not be squash merged. Network
Projects
None yet
Development

Successfully merging this pull request may close these issues.