Skip to content

Commit 8707933

Browse files
authored
[BC] ManagedServices Module Breaking Changes Announcement Date Update (#29162)
1 parent c12f754 commit 8707933

9 files changed

Lines changed: 39 additions & 38 deletions

File tree

src/ManagedServices/ManagedServices.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 - ManagedServices")]
23-
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.1.1")]
24-
[assembly: System.Reflection.AssemblyVersionAttribute("3.1.1")]
23+
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.1.2")]
24+
[assembly: System.Reflection.AssemblyVersionAttribute("3.1.2")]
2525
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
2626
[assembly: System.CLSCompliantAttribute(false)]

src/ManagedServices/ManagedServices.Autorest/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ directive:
5959
- List[Authorization]
6060
- List[EligibleAuthorization]
6161
deprecated-by-version: 9.0.0
62-
deprecated-by-azversion: 15.0.0
63-
change-effective-date: 2025/11/03
62+
deprecated-by-azversion: 16.0.0
63+
change-effective-date: May 2026
6464
- where:
6565
verb: New
6666
subject: RegistrationDefinition
@@ -77,8 +77,8 @@ directive:
7777
- List[DelegatedRoleDefinitionId]
7878
- List[JustInTimeAccessPolicyManagedByTenantApprover]
7979
deprecated-by-version: 9.0.0
80-
deprecated-by-azversion: 15.0.0
81-
change-effective-date: 2025/11/03
80+
deprecated-by-azversion: 16.0.0
81+
change-effective-date: May 2026
8282
- where:
8383
verb: Get
8484
subject: RegistrationDefinition
@@ -91,8 +91,8 @@ directive:
9191
- List[Authorization]
9292
- List[EligibleAuthorization]
9393
deprecated-by-version: 9.0.0
94-
deprecated-by-azversion: 15.0.0
95-
change-effective-date: 2025/11/03
94+
deprecated-by-azversion: 16.0.0
95+
change-effective-date: May 2026
9696
- where:
9797
verb: New|Get
9898
subject: MarketplaceRegistrationDefinition
@@ -105,26 +105,26 @@ directive:
105105
- List[Authorization]
106106
- List[EligibleAuthorization]
107107
deprecated-by-version: 9.0.0
108-
deprecated-by-azversion: 15.0.0
109-
change-effective-date: 2025/11/03
108+
deprecated-by-azversion: 16.0.0
109+
change-effective-date: May 2026
110110
- where:
111111
parameter-name: Authorization
112112
set:
113113
breaking-change:
114114
old-parameter-type: Array
115115
new-parameter-type: List
116116
deprecated-by-version: 9.0.0
117-
deprecated-by-azversion: 15.0.0
118-
change-effective-date: 2025/11/03
117+
deprecated-by-azversion: 16.0.0
118+
change-effective-date: May 2026
119119
- where:
120120
parameter-name: EligibleAuthorization
121121
set:
122122
breaking-change:
123123
old-parameter-type: Array
124124
new-parameter-type: List
125125
deprecated-by-version: 9.0.0
126-
deprecated-by-azversion: 15.0.0
127-
change-effective-date: 2025/11/03
126+
deprecated-by-azversion: 16.0.0
127+
change-effective-date: May 2026
128128

129129
# Remove unnecessary cmdlet.
130130
- where:

src/ManagedServices/ManagedServices.Autorest/custom/New-AzManagedServicesAuthorizationObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function New-AzManagedServicesAuthorizationObject {
2929
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Models.Api20200201Preview.Authorization')]
3030
[CmdletBinding(PositionalBinding=$false)]
3131
Param(
32-
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Runtime.ParameterBreakingChangeAttribute("DelegatedRoleDefinitionId", "15.0.0", "9.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")]
32+
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Runtime.ParameterBreakingChangeAttribute("DelegatedRoleDefinitionId", "16.0.0", "9.0.0", "May 2026", OldParamaterType="Array", NewParameterType="List")]
3333
[Parameter(HelpMessage="The delegatedRoleDefinitionIds field is required when the roleDefinitionId refers to the User Access Administrator Role. It is the list of role definition ids which define all the permissions that the user in the authorization can assign to other principals.")]
3434
[string[]]
3535
$DelegatedRoleDefinitionId,

src/ManagedServices/ManagedServices.Autorest/custom/New-AzManagedServicesEligibleAuthorizationObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Models.Api20200201Preview.EligibleAuthorization')]
2929
[CmdletBinding(PositionalBinding=$false)]
3030
Param(
31-
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Runtime.ParameterBreakingChangeAttribute("JustInTimeAccessPolicyManagedByTenantApprover", "15.0.0", "9.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")]
31+
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Runtime.ParameterBreakingChangeAttribute("JustInTimeAccessPolicyManagedByTenantApprover", "16.0.0", "9.0.0", "May 2026", OldParamaterType="Array", NewParameterType="List")]
3232
[Parameter(HelpMessage="The list of managedByTenant approvers for the eligible authorization.")]
3333
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Models.Api20200201Preview.IEligibleApprover[]]
3434
$JustInTimeAccessPolicyManagedByTenantApprover,

src/ManagedServices/ManagedServices.Autorest/docs/Az.ManagedServices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Az.ManagedServices
3-
Module Guid: 61496bfd-6bc7-48fb-8803-05ad306368f3
3+
Module Guid: df85bc10-3067-4698-954b-7c4948d51456
44
Download Help Link: https://learn.microsoft.com/powershell/module/az.managedservices
55
Help Version: 1.0.0.0
66
Locale: en-US
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"generate_Id": "511731e3-01e0-46da-aeab-958f3336d646"
2+
"generate_Id": "cda1a974-0acf-420f-b1ec-fd2ed950fa76"
33
}

src/ManagedServices/ManagedServices.sln

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ManagedServices", "ManagedS
2121
EndProject
2222
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ManagedServices.Autorest", "ManagedServices.Autorest", "{2D84CE50-F89B-94FD-0D1C-E1015598E8EB}"
2323
EndProject
24-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ManagedServices", "..\..\generated\ManagedServices\ManagedServices.Autorest\Az.ManagedServices.csproj", "{EAAF3FF5-C462-450B-9156-FFDB3899DA62}"
24+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ManagedServices", "..\..\generated\ManagedServices\ManagedServices.Autorest\Az.ManagedServices.csproj", "{80BA68B3-236E-47FF-8BCA-5D53888A25AA}"
2525
EndProject
2626
Global
2727
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -117,18 +117,18 @@ Global
117117
{F18ADD45-27F3-48D1-98C9-632575DB58D9}.Release|x64.Build.0 = Release|Any CPU
118118
{F18ADD45-27F3-48D1-98C9-632575DB58D9}.Release|x86.ActiveCfg = Release|Any CPU
119119
{F18ADD45-27F3-48D1-98C9-632575DB58D9}.Release|x86.Build.0 = Release|Any CPU
120-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Debug|Any CPU.Build.0 = Debug|Any CPU
122-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Debug|x64.ActiveCfg = Debug|Any CPU
123-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Debug|x64.Build.0 = Debug|Any CPU
124-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Debug|x86.ActiveCfg = Debug|Any CPU
125-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Debug|x86.Build.0 = Debug|Any CPU
126-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Release|Any CPU.ActiveCfg = Release|Any CPU
127-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Release|Any CPU.Build.0 = Release|Any CPU
128-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Release|x64.ActiveCfg = Release|Any CPU
129-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Release|x64.Build.0 = Release|Any CPU
130-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Release|x86.ActiveCfg = Release|Any CPU
131-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62}.Release|x86.Build.0 = Release|Any CPU
120+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Debug|Any CPU.Build.0 = Debug|Any CPU
122+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Debug|x64.ActiveCfg = Debug|Any CPU
123+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Debug|x64.Build.0 = Debug|Any CPU
124+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Debug|x86.ActiveCfg = Debug|Any CPU
125+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Debug|x86.Build.0 = Debug|Any CPU
126+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Release|Any CPU.ActiveCfg = Release|Any CPU
127+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Release|Any CPU.Build.0 = Release|Any CPU
128+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Release|x64.ActiveCfg = Release|Any CPU
129+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Release|x64.Build.0 = Release|Any CPU
130+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Release|x86.ActiveCfg = Release|Any CPU
131+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA}.Release|x86.Build.0 = Release|Any CPU
132132
EndGlobalSection
133133
GlobalSection(SolutionProperties) = preSolution
134134
HideSolutionNode = FALSE
@@ -140,6 +140,6 @@ Global
140140
{9C8C8F4B-359B-448F-88CB-7F4F1B94709E} = {3A8A3FE9-7C8D-43B9-AC12-8FAA83CD977C}
141141
{C7AE743C-7AA2-4D4C-B1C3-CBAA389F7431} = {3A8A3FE9-7C8D-43B9-AC12-8FAA83CD977C}
142142
{BA824808-A1F8-4F51-AADD-B0CEDB4215B7} = {3A8A3FE9-7C8D-43B9-AC12-8FAA83CD977C}
143-
{EAAF3FF5-C462-450B-9156-FFDB3899DA62} = {2D84CE50-F89B-94FD-0D1C-E1015598E8EB}
143+
{80BA68B3-236E-47FF-8BCA-5D53888A25AA} = {2D84CE50-F89B-94FD-0D1C-E1015598E8EB}
144144
EndGlobalSection
145145
EndGlobal

src/ManagedServices/ManagedServices/Az.ManagedServices.psd1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 7/30/2025
6+
# Generated on: 11-Feb-26
77
#
88

99
@{
@@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.2.0'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '5.3.2'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = 'ManagedServices.Autorest/bin/Az.ManagedServices.private.dll'
5858

5959
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
60-
# ScriptsToProcess = @()
60+
ScriptsToProcess = @()
6161

6262
# Type files (.ps1xml) to be loaded when importing this module
63-
# TypesToProcess = @()
63+
TypesToProcess = @()
6464

6565
# Format files (.ps1xml) to be loaded when importing this module
6666
FormatsToProcess = 'ManagedServices.Autorest/Az.ManagedServices.format.ps1xml'
@@ -104,7 +104,7 @@ PrivateData = @{
104104
PSData = @{
105105

106106
# Tags applied to this module. These help with module discovery in online galleries.
107-
Tags = 'Azure','ResourceManager','ARM','PSModule','ManagedServices'
107+
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'ManagedServices'
108108

109109
# A URL to the license for this module.
110110
LicenseUri = 'https://aka.ms/azps-license'
@@ -129,7 +129,7 @@ PrivateData = @{
129129

130130
} # End of PSData hashtable
131131

132-
} # End of PrivateData hashtable
132+
} # End of PrivateData hashtable
133133

134134
# HelpInfo URI of this module
135135
# HelpInfoURI = ''

src/ManagedServices/ManagedServices/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Update the deprecated-by-azversion and change-effective-date of breaking change announcements.
2122

2223
## Version 3.1.2
2324
* Update the outputs of breaking change announcements.

0 commit comments

Comments
 (0)