Skip to content

Commit bb71c12

Browse files
author
Venkata M
committed
Resolve merge conflict in Network ChangeLog
2 parents 97e9faf + 81af2d3 commit bb71c12

File tree

1,950 files changed

+264862
-14327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,950 files changed

+264862
-14327
lines changed
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
schedules:
2+
- cron: "35 16 * * *"
3+
displayName: 12:35 AM (UTC + 8:00) China Daily Run
4+
branches:
5+
include:
6+
- main
7+
8+
resources:
9+
repositories:
10+
- repository: SquadMappingWiki
11+
type: git
12+
name: internal.wiki
13+
14+
jobs:
15+
- job: UpdateYaml
16+
displayName: Update resourceManagement.yml with squad labels
17+
pool: pool-windows-2022
18+
uses:
19+
repositories:
20+
- SquadMappingWiki
21+
22+
steps:
23+
- task: UseDotNet@2
24+
displayName: Install .NET SDK
25+
inputs:
26+
packageType: sdk
27+
version: 8.x
28+
29+
- task: NuGetAuthenticate@1
30+
inputs:
31+
forceReinstallCredentialProvider: false
32+
33+
- pwsh: |
34+
dotnet --version
35+
dotnet new tool-manifest --force
36+
dotnet tool install powershell --version 7.4.*
37+
displayName: Install PowerShell 7.4.x
38+
39+
- pwsh: |
40+
dotnet tool run pwsh -NoLogo -NoProfile -NonInteractive -File ./tools/Github/ParseSquadMappingList.ps1 -AccessToken $env:SYSTEM_ACCESSTOKEN
41+
env:
42+
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
43+
displayName: Update resourceManagement.yml via squad mapping
44+
condition: succeeded()
45+
46+
- pwsh: |
47+
$hasChanges = git diff --name-only .github/policies
48+
if ($null -eq $hasChanges -or $hasChanges.Count -eq 0) {
49+
Write-Host "Squad mapping produced no changes."
50+
Write-Host "##vso[task.setvariable variable=ChangesDetected]false"
51+
} else {
52+
Write-Host "There are changes in the repository:" $hasChanges
53+
Write-Host "##vso[task.setvariable variable=ChangesDetected]true"
54+
}
55+
displayName: Check for changes
56+
57+
- template: util/get-github-pat-steps.yml
58+
59+
- pwsh: |
60+
git config --global user.email "65331932+azure-powershell-bot@users.noreply.github.com"
61+
git config --global user.name "azure-powershell-bot"
62+
git checkout -b "internal/sync-squad-mapping"
63+
64+
git add .github/policies
65+
git commit -m "Sync squad mapping to resourceManagement.yml"
66+
67+
git remote set-url origin https://azure-powershell-bot:$(GithubToken)@github.com/Azure/azure-powershell.git
68+
git push origin internal/sync-squad-mapping --force
69+
displayName: Git commit and push
70+
condition: and(succeeded(), eq(variables['ChangesDetected'], 'true'))
71+
72+
- pwsh: |
73+
$Title = "{CI} Sync squad mapping into resourceManagement.yml"
74+
$HeadBranch = "internal/sync-squad-mapping"
75+
$BaseBranch = "main"
76+
$Description = "This PR synchronizes squad labels, reviewers and mentionees into resourceManagement.yml based on the Squad Mapping wiki."
77+
./tools/Github/CreatePR.ps1 -Title $Title -HeadBranch $HeadBranch -BaseBranch $BaseBranch -BotAccessToken $(GithubToken) -Description $Description
78+
displayName: Create PR to main branch
79+
condition: and(succeeded(), eq(variables['ChangesDetected'], 'true'))

.github/policies/resourceManagement.yml

Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4544,5 +4544,173 @@ configuration:
45444544
- addReply:
45454545
reply: Hi ${contextualAuthor}, only the original author of the issue can ask that it be unresolved. Please open a new issue with your scenario and details if you would like to discuss this topic with the team.
45464546
description: '[Resolve Workflow] Unresolve Command Without Permissions'
4547+
- if:
4548+
- payloadType: Pull_Request
4549+
- isAction:
4550+
action: Labeled
4551+
- hasLabel:
4552+
label: act-identity-squad
4553+
then:
4554+
- requestReview:
4555+
reviewer: act-identity-squad
4556+
- mentionUsers:
4557+
mentionees:
4558+
- act-identity-squad
4559+
replyTemplate: ':bell: Routing this PR to ${mentionees}.'
4560+
assignMentionees: False
4561+
description: '[Squad Auto-Assign] Request review & mention when PR labeled act-identity-squad'
4562+
- if:
4563+
- payloadType: Pull_Request
4564+
- isAction:
4565+
action: Labeled
4566+
- hasLabel:
4567+
label: act-observability-squad
4568+
then:
4569+
- requestReview:
4570+
reviewer: act-observability-squad
4571+
- mentionUsers:
4572+
mentionees:
4573+
- act-observability-squad
4574+
replyTemplate: ':bell: Routing this PR to ${mentionees}.'
4575+
assignMentionees: False
4576+
description: '[Squad Auto-Assign] Request review & mention when PR labeled act-observability-squad'
4577+
- if:
4578+
- payloadType: Pull_Request
4579+
- isAction:
4580+
action: Labeled
4581+
- hasLabel:
4582+
label: act-codegen-extensibility-squad
4583+
then:
4584+
- requestReview:
4585+
reviewer: act-codegen-extensibility-squad
4586+
- mentionUsers:
4587+
mentionees:
4588+
- act-codegen-extensibility-squad
4589+
replyTemplate: ':bell: Routing this PR to ${mentionees}.'
4590+
assignMentionees: False
4591+
description: '[Squad Auto-Assign] Request review & mention when PR labeled act-codegen-extensibility-squad'
4592+
- if:
4593+
- payloadType: Pull_Request
4594+
- isAction:
4595+
action: Labeled
4596+
- hasLabel:
4597+
label: act-quality-productivity-squad
4598+
then:
4599+
- requestReview:
4600+
reviewer: act-quality-productivity-squad
4601+
- mentionUsers:
4602+
mentionees:
4603+
- act-quality-productivity-squad
4604+
replyTemplate: ':bell: Routing this PR to ${mentionees}.'
4605+
assignMentionees: False
4606+
description: '[Squad Auto-Assign] Request review & mention when PR labeled act-quality-productivity-squad'
4607+
- if:
4608+
- payloadType: Pull_Request
4609+
- isAction:
4610+
action: Labeled
4611+
- hasLabel:
4612+
label: act-platform-engineering-squad
4613+
then:
4614+
- requestReview:
4615+
reviewer: act-platform-engineering-squad
4616+
- mentionUsers:
4617+
mentionees:
4618+
- act-platform-engineering-squad
4619+
replyTemplate: ':bell: Routing this PR to ${mentionees}.'
4620+
assignMentionees: False
4621+
description: '[Squad Auto-Assign] Request review & mention when PR labeled act-platform-engineering-squad'
4622+
- if:
4623+
- payloadType: Pull_Request
4624+
- isAction:
4625+
action: Labeled
4626+
- hasLabel:
4627+
label: act-experience-enablement-squad
4628+
then:
4629+
- requestReview:
4630+
reviewer: act-experience-enablement-squad
4631+
- mentionUsers:
4632+
mentionees:
4633+
- act-experience-enablement-squad
4634+
replyTemplate: ':bell: Routing this PR to ${mentionees}.'
4635+
assignMentionees: False
4636+
description: '[Squad Auto-Assign] Request review & mention when PR labeled act-experience-enablement-squad'
4637+
- if:
4638+
- payloadType: Issues
4639+
- isAction:
4640+
action: Labeled
4641+
- hasLabel:
4642+
label: act-identity-squad
4643+
then:
4644+
- mentionUsers:
4645+
mentionees:
4646+
- act-identity-squad
4647+
replyTemplate: ':bell: Routing this issue to ${mentionees}.'
4648+
assignMentionees: False
4649+
description: '[Squad Auto-Assign] Mention when issue labeled act-identity-squad'
4650+
- if:
4651+
- payloadType: Issues
4652+
- isAction:
4653+
action: Labeled
4654+
- hasLabel:
4655+
label: act-observability-squad
4656+
then:
4657+
- mentionUsers:
4658+
mentionees:
4659+
- act-observability-squad
4660+
replyTemplate: ':bell: Routing this issue to ${mentionees}.'
4661+
assignMentionees: False
4662+
description: '[Squad Auto-Assign] Mention when issue labeled act-observability-squad'
4663+
- if:
4664+
- payloadType: Issues
4665+
- isAction:
4666+
action: Labeled
4667+
- hasLabel:
4668+
label: act-codegen-extensibility-squad
4669+
then:
4670+
- mentionUsers:
4671+
mentionees:
4672+
- act-codegen-extensibility-squad
4673+
replyTemplate: ':bell: Routing this issue to ${mentionees}.'
4674+
assignMentionees: False
4675+
description: '[Squad Auto-Assign] Mention when issue labeled act-codegen-extensibility-squad'
4676+
- if:
4677+
- payloadType: Issues
4678+
- isAction:
4679+
action: Labeled
4680+
- hasLabel:
4681+
label: act-quality-productivity-squad
4682+
then:
4683+
- mentionUsers:
4684+
mentionees:
4685+
- act-quality-productivity-squad
4686+
replyTemplate: ':bell: Routing this issue to ${mentionees}.'
4687+
assignMentionees: False
4688+
description: '[Squad Auto-Assign] Mention when issue labeled act-quality-productivity-squad'
4689+
- if:
4690+
- payloadType: Issues
4691+
- isAction:
4692+
action: Labeled
4693+
- hasLabel:
4694+
label: act-platform-engineering-squad
4695+
then:
4696+
- mentionUsers:
4697+
mentionees:
4698+
- act-platform-engineering-squad
4699+
replyTemplate: ':bell: Routing this issue to ${mentionees}.'
4700+
assignMentionees: False
4701+
description: '[Squad Auto-Assign] Mention when issue labeled act-platform-engineering-squad'
4702+
- if:
4703+
- payloadType: Issues
4704+
- isAction:
4705+
action: Labeled
4706+
- hasLabel:
4707+
label: act-experience-enablement-squad
4708+
then:
4709+
- mentionUsers:
4710+
mentionees:
4711+
- act-experience-enablement-squad
4712+
replyTemplate: ':bell: Routing this issue to ${mentionees}.'
4713+
assignMentionees: False
4714+
description: '[Squad Auto-Assign] Mention when issue labeled act-experience-enablement-squad'
45474715
onFailure:
45484716
onSuccess:

generated/CloudService/CloudService.Autorest/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
2121
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
2222
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - CloudService")]
23-
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.1.0")]
24-
[assembly: System.Reflection.AssemblyVersionAttribute("2.1.0")]
23+
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.1.1")]
24+
[assembly: System.Reflection.AssemblyVersionAttribute("2.1.1")]
2525
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
2626
[assembly: System.CLSCompliantAttribute(false)]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"generate_Id": "0c134ecb-184e-4347-ac0b-b64bbaaa9e6f"
2+
"generate_Id": "078e22a7-8b24-4006-889d-06c7aaa389f5"
33
}

generated/CloudService/CloudService.Autorest/generated/cmdlets/GetAzCloudServiceInstanceView_Get.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.CloudService.Cmdlets
1313
/// [OpenAPI] GetInstanceView=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/instanceView"
1414
/// </remarks>
1515
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzCloudServiceInstanceView_Get")]
16-
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20220904.ICloudServiceInstanceView", "15.0.0", "9.0.0", "2025/11/03", DeprecatedOutputProperties=new string[] {"Statuses","RoleInstanceStatusesSummary","PrivateId"}, NewOutputProperties=new string[] {"Statuses","RoleInstanceStatusesSummary","PrivateId"}, ChangeDescription="The types of the properties 'Statuses', 'RoleInstanceStatusesSummary', and 'PrivateId' will be changed from object to 'List'.")]
16+
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20220904.ICloudServiceInstanceView", "16.0.0", "9.0.0", "May 2026", DeprecatedOutputProperties=new string[] {"Statuses","RoleInstanceStatusesSummary","PrivateId"}, NewOutputProperties=new string[] {"Statuses","RoleInstanceStatusesSummary","PrivateId"}, ChangeDescription="The types of the properties 'Statuses', 'RoleInstanceStatusesSummary', and 'PrivateId' will be changed from object to 'List'.")]
1717
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20220904.ICloudServiceInstanceView))]
1818
[global::Microsoft.Azure.PowerShell.Cmdlets.CloudService.Description(@"Gets the status of a cloud service.")]
1919
[global::Microsoft.Azure.PowerShell.Cmdlets.CloudService.Generated]

generated/CloudService/CloudService.Autorest/generated/cmdlets/GetAzCloudServiceNetworkInterface_Get.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Microsoft.Azure.PowerShell.Cmdlets.CloudService.Cmdlets
1313
/// [OpenAPI] GetByCloudService=>GET:"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/networkInterfaces/{networkInterfaceName}"
1414
/// </remarks>
1515
[global::System.Management.Automation.Cmdlet(global::System.Management.Automation.VerbsCommon.Get, @"AzCloudServiceNetworkInterface_Get")]
16-
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.INetworkInterface", "15.0.0", "9.0.0", "2025/11/03", DeprecatedOutputProperties=new string[] {"ApplicationSecurityGroup","CustomDnsConfig","FlowLog","LoadBalancerFrontendIPConfiguration","NetworkSecurityGroupPropertiesNetworkInterface","PrivateEndpointPropertiesNetworkInterface","PrivateLinkServicePropertiesNetworkInterface","IPConfiguration","TapConfiguration","PrivateEndpointConnection","PrivateEndpointPropertiesIPConfiguration","PrivateLinkServiceConnection","ManualPrivateLinkServiceConnection","PrivateLinkServicePropertiesIPConfiguration","SecurityRule","DefaultSecurityRule","ApplicationGatewayIPConfiguration","Delegation","FlowLog","IPConfiguration","IPConfigurationProfile","NetworkInterface","PrivateEndpoint","ResourceNavigationLink","Route","DefaultSecurityRule","SecurityRule","ServiceAssociationLink","ServiceEndpointPolicy","ServiceEndpoint","NetworkSecurityGroupPropertiesSubnet","RouteTablePropertiesSubnet","IPAllocation","PropertiesAddressPrefixes","PropertiesNetworkSecurityGroupPropertiesSubnets","HostedWorkload","VisibilitySubscription","DnsSettingDnsServer","DnsSettingAppliedDnsServer","AutoApprovalSubscription","Fqdn"}, NewOutputProperties=new string[] {"ApplicationSecurityGroup","CustomDnsConfig","FlowLog","LoadBalancerFrontendIPConfiguration","NetworkSecurityGroupPropertiesNetworkInterface","PrivateEndpointPropertiesNetworkInterface","PrivateLinkServicePropertiesNetworkInterface","IPConfiguration","TapConfiguration","PrivateEndpointConnection","PrivateEndpointPropertiesIPConfiguration","PrivateLinkServiceConnection","ManualPrivateLinkServiceConnection","PrivateLinkServicePropertiesIPConfiguration","SecurityRule","DefaultSecurityRule","ApplicationGatewayIPConfiguration","Delegation","FlowLog","IPConfiguration","IPConfigurationProfile","NetworkInterface","PrivateEndpoint","ResourceNavigationLink","Route","DefaultSecurityRule","SecurityRule","ServiceAssociationLink","ServiceEndpointPolicy","ServiceEndpoint","NetworkSecurityGroupPropertiesSubnet","RouteTablePropertiesSubnet","IPAllocation","PropertiesAddressPrefixes","PropertiesNetworkSecurityGroupPropertiesSubnets","HostedWorkload","VisibilitySubscription","DnsSettingDnsServer","DnsSettingAppliedDnsServer","AutoApprovalSubscription","Fqdn"}, ChangeDescription="The types of the properties 'ApplicationSecurityGroup', 'CustomDnsConfig', 'FlowLog', 'LoadBalancerFrontendIPConfiguration', 'NetworkSecurityGroupPropertiesNetworkInterface', 'PrivateEndpointPropertiesNetworkInterface', 'PrivateLinkServicePropertiesNetworkInterface', 'IPConfiguration', 'TapConfiguration', 'PrivateEndpointConnection', 'PrivateEndpointPropertiesIPConfiguration', 'PrivateLinkServiceConnection', 'ManualPrivateLinkServiceConnection', 'PrivateLinkServicePropertiesIPConfiguration', 'SecurityRule', 'DefaultSecurityRule', 'ApplicationGatewayIPConfiguration', 'Delegation', 'FlowLog', 'IPConfiguration', 'IPConfigurationProfile', 'NetworkInterface', 'PrivateEndpoint', 'ResourceNavigationLink', 'Route', 'DefaultSecurityRule', 'SecurityRule', 'ServiceAssociationLink', 'ServiceEndpointPolicy', 'ServiceEndpoint', 'NetworkSecurityGroupPropertiesSubnet', 'RouteTablePropertiesSubnet', 'IPAllocation', 'PropertiesAddressPrefixes', 'PropertiesNetworkSecurityGroupPropertiesSubnets', 'HostedWorkload', 'VisibilitySubscription', 'DnsSettingDnsServer', 'DnsSettingAppliedDnsServer', 'AutoApprovalSubscription', 'Fqdn' will be changed from object to 'List'.")]
16+
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Runtime.OutputBreakingChange("Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.INetworkInterface", "16.0.0", "9.0.0", "May 2026", DeprecatedOutputProperties=new string[] {"ApplicationSecurityGroup","CustomDnsConfig","FlowLog","LoadBalancerFrontendIPConfiguration","NetworkSecurityGroupPropertiesNetworkInterface","PrivateEndpointPropertiesNetworkInterface","PrivateLinkServicePropertiesNetworkInterface","IPConfiguration","TapConfiguration","PrivateEndpointConnection","PrivateEndpointPropertiesIPConfiguration","PrivateLinkServiceConnection","ManualPrivateLinkServiceConnection","PrivateLinkServicePropertiesIPConfiguration","SecurityRule","DefaultSecurityRule","ApplicationGatewayIPConfiguration","Delegation","FlowLog","IPConfiguration","IPConfigurationProfile","NetworkInterface","PrivateEndpoint","ResourceNavigationLink","Route","DefaultSecurityRule","SecurityRule","ServiceAssociationLink","ServiceEndpointPolicy","ServiceEndpoint","NetworkSecurityGroupPropertiesSubnet","RouteTablePropertiesSubnet","IPAllocation","PropertiesAddressPrefixes","PropertiesNetworkSecurityGroupPropertiesSubnets","HostedWorkload","VisibilitySubscription","DnsSettingDnsServer","DnsSettingAppliedDnsServer","AutoApprovalSubscription","Fqdn"}, NewOutputProperties=new string[] {"ApplicationSecurityGroup","CustomDnsConfig","FlowLog","LoadBalancerFrontendIPConfiguration","NetworkSecurityGroupPropertiesNetworkInterface","PrivateEndpointPropertiesNetworkInterface","PrivateLinkServicePropertiesNetworkInterface","IPConfiguration","TapConfiguration","PrivateEndpointConnection","PrivateEndpointPropertiesIPConfiguration","PrivateLinkServiceConnection","ManualPrivateLinkServiceConnection","PrivateLinkServicePropertiesIPConfiguration","SecurityRule","DefaultSecurityRule","ApplicationGatewayIPConfiguration","Delegation","FlowLog","IPConfiguration","IPConfigurationProfile","NetworkInterface","PrivateEndpoint","ResourceNavigationLink","Route","DefaultSecurityRule","SecurityRule","ServiceAssociationLink","ServiceEndpointPolicy","ServiceEndpoint","NetworkSecurityGroupPropertiesSubnet","RouteTablePropertiesSubnet","IPAllocation","PropertiesAddressPrefixes","PropertiesNetworkSecurityGroupPropertiesSubnets","HostedWorkload","VisibilitySubscription","DnsSettingDnsServer","DnsSettingAppliedDnsServer","AutoApprovalSubscription","Fqdn"}, ChangeDescription="The types of the properties 'ApplicationSecurityGroup', 'CustomDnsConfig', 'FlowLog', 'LoadBalancerFrontendIPConfiguration', 'NetworkSecurityGroupPropertiesNetworkInterface', 'PrivateEndpointPropertiesNetworkInterface', 'PrivateLinkServicePropertiesNetworkInterface', 'IPConfiguration', 'TapConfiguration', 'PrivateEndpointConnection', 'PrivateEndpointPropertiesIPConfiguration', 'PrivateLinkServiceConnection', 'ManualPrivateLinkServiceConnection', 'PrivateLinkServicePropertiesIPConfiguration', 'SecurityRule', 'DefaultSecurityRule', 'ApplicationGatewayIPConfiguration', 'Delegation', 'FlowLog', 'IPConfiguration', 'IPConfigurationProfile', 'NetworkInterface', 'PrivateEndpoint', 'ResourceNavigationLink', 'Route', 'DefaultSecurityRule', 'SecurityRule', 'ServiceAssociationLink', 'ServiceEndpointPolicy', 'ServiceEndpoint', 'NetworkSecurityGroupPropertiesSubnet', 'RouteTablePropertiesSubnet', 'IPAllocation', 'PropertiesAddressPrefixes', 'PropertiesNetworkSecurityGroupPropertiesSubnets', 'HostedWorkload', 'VisibilitySubscription', 'DnsSettingDnsServer', 'DnsSettingAppliedDnsServer', 'AutoApprovalSubscription', 'Fqdn' will be changed from object to 'List'.")]
1717
[global::System.Management.Automation.OutputType(typeof(Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.INetworkInterface))]
1818
[global::Microsoft.Azure.PowerShell.Cmdlets.CloudService.Description(@"Get the specified network interface in a cloud service.")]
1919
[global::Microsoft.Azure.PowerShell.Cmdlets.CloudService.Generated]

0 commit comments

Comments
 (0)