-
Notifications
You must be signed in to change notification settings - Fork 4k
[PS ManagedServices] Add breaking change announcement #27957
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0 (the ""License""); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an ""AS IS"" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code | ||
// is regenerated. | ||
|
||
using System; | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")] | ||
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] | ||
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] | ||
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - ManagedServices")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("3.1.0")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("3.1.0")] | ||
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] | ||
[assembly: System.CLSCompliantAttribute(false)] |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -47,6 +47,42 @@ use-extension: | |||||
"@autorest/powershell": "3.x" | ||||||
|
||||||
directive: | ||||||
- where: | ||||||
verb: Get | ||||||
subject: RegistrationAssignment | ||||||
set: | ||||||
breaking-change: | ||||||
change-description: "The types of property 'Authorization' and 'EligibleAuthorization' have changed to 'List'." | ||||||
deprecated-by-version: 9.0.0 | ||||||
deprecated-by-azversion: 15.0.0 | ||||||
change-effective-date: 2025/11/03 | ||||||
|
||||||
- where: | ||||||
subject: RegistrationDefinition | ||||||
set: | ||||||
breaking-change: | ||||||
change-description: "The types of the properties 'Authorization' and 'EligibleAuthorization' will be changed to 'List'." | ||||||
deprecated-by-version: 9.0.0 | ||||||
deprecated-by-azversion: 15.0.0 | ||||||
change-effective-date: 2025/11/03 | ||||||
- where: | ||||||
verb: New | ||||||
subject: RegistrationDefinition | ||||||
set: | ||||||
breaking-change: | ||||||
change-description: "The types of the properties 'DelegatedRoleDefinitionId' and 'JustInTimeAccessPolicyManagedByTenantApprover' will be changed to List." | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
deprecated-by-version: 9.0.0 | ||||||
deprecated-by-azversion: 15.0.0 | ||||||
change-effective-date: 2025/11/03 | ||||||
|
||||||
- where: | ||||||
subject: MarketplaceRegistrationDefinition | ||||||
set: | ||||||
breaking-change: | ||||||
change-description: "The types of the properties 'Authorization' and 'EligibleAuthorization' will be changed to 'List'." | ||||||
deprecated-by-version: 9.0.0 | ||||||
deprecated-by-azversion: 15.0.0 | ||||||
change-effective-date: 2025/11/03 | ||||||
|
||||||
# Remove unnecessary cmdlet. | ||||||
- where: | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
#> | ||
function New-AzManagedServicesEligibleAuthorizationObject { | ||
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Models.Api20200201Preview.EligibleAuthorization')] | ||
[Microsoft.Azure.PowerShell.Cmdlets.ManagedServices.Runtime.CmdletBreakingChange("15.0.0", "9.0.0", "2025/11/03", ChangeDescription="The type of property 'DelegatedRoleDefinitionId' will be changed from Fixed Array to List.")] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be updated to ""The type of the property 'DelegatedRoleDefinitionId' will be changed to 'List'."" to make them consistent. One question, is 'DelegatedRoleDefinitionId' a property or parameter? |
||
[CmdletBinding(PositionalBinding=$false)] | ||
Param( | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"generate_Id": "fe2e0617-9f16-4c71-8c5b-ac7cba032a37" | ||
"generate_Id": "d8bb5ea2-4d51-4a67-a123-b5b8c90e74f6" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Resources | ||
This directory can contain any additional resources for module that are not required at runtime. This directory **does not** get packaged with the module. If you have assets for custom implementation, place them into the `..\custom` folder. | ||
|
||
## Info | ||
- Modifiable: yes | ||
- Generated: no | ||
- Committed: yes | ||
- Packaged: no | ||
|
||
## Purpose | ||
Use this folder to put anything you want to keep around as part of the repository for the module, but is not something that is required for the module. For example, development files, packaged builds, or additional information. This is only intended to be used in repositories where the module's output directory is cleaned, but tangential resources for the module want to remain intact. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.