Skip to content

Commit 4f3cb8a

Browse files
authored
[Az.Attestation] The code base is going to be refactored, the following cmdlet adds a BreakingChange announcement (#28278)
1 parent aae4a5f commit 4f3cb8a

File tree

10 files changed

+186
-17
lines changed

10 files changed

+186
-17
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0 (the ""License"");
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
// http://www.apache.org/licenses/LICENSE-2.0
6+
// Unless required by applicable law or agreed to in writing, software
7+
// distributed under the License is distributed on an ""AS IS"" BASIS,
8+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
9+
// See the License for the specific language governing permissions and
10+
// limitations under the License.
11+
// Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
12+
// is regenerated.
13+
14+
using System;
15+
using System.Reflection;
16+
using System.Runtime.CompilerServices;
17+
using System.Runtime.InteropServices;
18+
19+
[assembly: System.Reflection.AssemblyCompanyAttribute("Microsoft")]
20+
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")]
21+
[assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")]
22+
[assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - Attestation")]
23+
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.1.0")]
24+
[assembly: System.Reflection.AssemblyVersionAttribute("2.1.0")]
25+
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
26+
[assembly: System.CLSCompliantAttribute(false)]

src/Attestation/Attestation.Autorest/README.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,36 @@ directive:
8686
subject: AttestationProvider
8787
verb: New
8888
hide: true
89-
89+
90+
- where:
91+
verb: Get
92+
subject: AttestationDefaultProvider
93+
set:
94+
breaking-change:
95+
deprecated-output-properties:
96+
- PrivateEndpointConnection
97+
- Value
98+
new-output-properties:
99+
- PrivateEndpointConnection
100+
- Value
101+
change-description: The types of the properties 'PrivateEndpointConnection' and 'Value' will be changed from single object to 'List'.
102+
deprecated-by-version: 9.0.0
103+
deprecated-by-azversion: 15.0.0
104+
change-effective-date: 2025/11/03
105+
106+
- where:
107+
verb: Get|Update
108+
subject: AttestationProvider
109+
set:
110+
breaking-change:
111+
deprecated-output-properties:
112+
- PrivateEndpointConnection
113+
- Value
114+
new-output-properties:
115+
- PrivateEndpointConnection
116+
- Value
117+
change-description: The types of the properties 'PrivateEndpointConnection' and 'Value' will be changed from single object to 'List'.
118+
deprecated-by-version: 9.0.0
119+
deprecated-by-azversion: 15.0.0
120+
change-effective-date: 2025/11/03
90121
```

src/Attestation/Attestation.Autorest/custom/New-AzAttestationProvider.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ https://learn.microsoft.com/powershell/module/az.attestation/new-azattestationpr
5454
#>
5555
function New-AzAttestationProvider {
5656
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.Attestation.Models.Api20201001.IAttestationProvider])]
57+
[Microsoft.Azure.PowerShell.Cmdlets.Attestation.Runtime.OutputBreakingChangeAttribute("Microsoft.Azure.PowerShell.Cmdlets.Attestation.Models.Api20201001.IAttestationProvider", "15.0.0", "9.0.0", "2025/11/03", ReplacementCmdletOutputType = "Microsoft.Azure.PowerShell.Cmdlets.Attestation.Models.IAttestationProvider", DeprecatedOutputProperties = ("PrivateEndpointConnection Microsoft.Azure.PowerShell.Cmdlets.Attestation.Models.IPrivateEndpointConnection"), NewOutputProperties = ("PrivateEndpointConnection System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Attestation.Models.IPrivateEndpointConnection]"))]
5758
[CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')]
5859
param(
5960
[Parameter(Mandatory)]

src/Attestation/Attestation.Autorest/docs/Az.Attestation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Az.Attestation
3-
Module Guid: 2c3f4dc7-21e2-45f3-87dd-9f3ba30ae484
3+
Module Guid: 9938f620-cd87-4a11-9ff9-3e33101974cc
44
Download Help Link: https://learn.microsoft.com/powershell/module/az.attestation
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": "5e8ddaa3-8fba-4e97-8810-64ed6c716d18"
2+
"generate_Id": "245b047d-86c0-4a5a-ad56-55708ae366c2"
33
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Resources
2+
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.
3+
4+
## Info
5+
- Modifiable: yes
6+
- Generated: no
7+
- Committed: yes
8+
- Packaged: no
9+
10+
## Purpose
11+
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.

src/Attestation/Attestation.sln

Lines changed: 101 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.0.31903.59
@@ -27,58 +27,152 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestF
2727
EndProject
2828
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Attestation.Management.Sdk", "Attestation.Management.Sdk\Attestation.Management.Sdk.csproj", "{D0EAA185-822C-45C8-A287-FD05AF138209}"
2929
EndProject
30-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Attestation", "..\..\generated\Attestation\Attestation.Autorest\Az.Attestation.csproj", "{C126ED4A-CE30-4E0D-9D1C-DDB7EEE4200E}"
30+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Attestation.Autorest", "Attestation.Autorest", "{4AA549FB-C4F0-51C5-5F14-5CA538ED4FC4}"
31+
EndProject
32+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Attestation", "..\..\generated\Attestation\Attestation.Autorest\Az.Attestation.csproj", "{D2BE7053-7820-477D-B195-7D31D9649A25}"
3133
EndProject
3234
Global
3335
GlobalSection(SolutionConfigurationPlatforms) = preSolution
3436
Debug|Any CPU = Debug|Any CPU
37+
Debug|x64 = Debug|x64
38+
Debug|x86 = Debug|x86
3539
Release|Any CPU = Release|Any CPU
40+
Release|x64 = Release|x64
41+
Release|x86 = Release|x86
3642
EndGlobalSection
3743
GlobalSection(ProjectConfigurationPlatforms) = postSolution
3844
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3945
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Debug|Any CPU.Build.0 = Debug|Any CPU
46+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Debug|x64.ActiveCfg = Debug|Any CPU
47+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Debug|x64.Build.0 = Debug|Any CPU
48+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Debug|x86.ActiveCfg = Debug|Any CPU
49+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Debug|x86.Build.0 = Debug|Any CPU
4050
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Release|Any CPU.ActiveCfg = Release|Any CPU
4151
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Release|Any CPU.Build.0 = Release|Any CPU
52+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Release|x64.ActiveCfg = Release|Any CPU
53+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Release|x64.Build.0 = Release|Any CPU
54+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Release|x86.ActiveCfg = Release|Any CPU
55+
{27FA5C23-BAD7-4909-88A0-8A33D5C2E78C}.Release|x86.Build.0 = Release|Any CPU
4256
{1ADA30A9-073A-4728-8676-71A202598C6F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4357
{1ADA30A9-073A-4728-8676-71A202598C6F}.Debug|Any CPU.Build.0 = Debug|Any CPU
58+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Debug|x64.ActiveCfg = Debug|Any CPU
59+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Debug|x64.Build.0 = Debug|Any CPU
60+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Debug|x86.ActiveCfg = Debug|Any CPU
61+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Debug|x86.Build.0 = Debug|Any CPU
4462
{1ADA30A9-073A-4728-8676-71A202598C6F}.Release|Any CPU.ActiveCfg = Release|Any CPU
4563
{1ADA30A9-073A-4728-8676-71A202598C6F}.Release|Any CPU.Build.0 = Release|Any CPU
64+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Release|x64.ActiveCfg = Release|Any CPU
65+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Release|x64.Build.0 = Release|Any CPU
66+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Release|x86.ActiveCfg = Release|Any CPU
67+
{1ADA30A9-073A-4728-8676-71A202598C6F}.Release|x86.Build.0 = Release|Any CPU
4668
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4769
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Debug|Any CPU.Build.0 = Debug|Any CPU
70+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Debug|x64.ActiveCfg = Debug|Any CPU
71+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Debug|x64.Build.0 = Debug|Any CPU
72+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Debug|x86.ActiveCfg = Debug|Any CPU
73+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Debug|x86.Build.0 = Debug|Any CPU
4874
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Release|Any CPU.ActiveCfg = Release|Any CPU
4975
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Release|Any CPU.Build.0 = Release|Any CPU
76+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Release|x64.ActiveCfg = Release|Any CPU
77+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Release|x64.Build.0 = Release|Any CPU
78+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Release|x86.ActiveCfg = Release|Any CPU
79+
{7AD695F4-8DAB-48F0-B623-7CC71221221B}.Release|x86.Build.0 = Release|Any CPU
5080
{3B31A547-8D98-4DE2-B314-885C82474A42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5181
{3B31A547-8D98-4DE2-B314-885C82474A42}.Debug|Any CPU.Build.0 = Debug|Any CPU
82+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Debug|x64.ActiveCfg = Debug|Any CPU
83+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Debug|x64.Build.0 = Debug|Any CPU
84+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Debug|x86.ActiveCfg = Debug|Any CPU
85+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Debug|x86.Build.0 = Debug|Any CPU
5286
{3B31A547-8D98-4DE2-B314-885C82474A42}.Release|Any CPU.ActiveCfg = Release|Any CPU
5387
{3B31A547-8D98-4DE2-B314-885C82474A42}.Release|Any CPU.Build.0 = Release|Any CPU
88+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Release|x64.ActiveCfg = Release|Any CPU
89+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Release|x64.Build.0 = Release|Any CPU
90+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Release|x86.ActiveCfg = Release|Any CPU
91+
{3B31A547-8D98-4DE2-B314-885C82474A42}.Release|x86.Build.0 = Release|Any CPU
5492
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5593
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
94+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Debug|x64.ActiveCfg = Debug|Any CPU
95+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Debug|x64.Build.0 = Debug|Any CPU
96+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Debug|x86.ActiveCfg = Debug|Any CPU
97+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Debug|x86.Build.0 = Debug|Any CPU
5698
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
5799
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Release|Any CPU.Build.0 = Release|Any CPU
100+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Release|x64.ActiveCfg = Release|Any CPU
101+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Release|x64.Build.0 = Release|Any CPU
102+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Release|x86.ActiveCfg = Release|Any CPU
103+
{D3F5BCD1-1B75-421E-8C3A-B16F211680F6}.Release|x86.Build.0 = Release|Any CPU
58104
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
59105
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Debug|Any CPU.Build.0 = Debug|Any CPU
106+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Debug|x64.ActiveCfg = Debug|Any CPU
107+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Debug|x64.Build.0 = Debug|Any CPU
108+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Debug|x86.ActiveCfg = Debug|Any CPU
109+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Debug|x86.Build.0 = Debug|Any CPU
60110
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Release|Any CPU.ActiveCfg = Release|Any CPU
61111
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Release|Any CPU.Build.0 = Release|Any CPU
112+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Release|x64.ActiveCfg = Release|Any CPU
113+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Release|x64.Build.0 = Release|Any CPU
114+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Release|x86.ActiveCfg = Release|Any CPU
115+
{A52A877E-B6BA-410D-ADEE-0EE969734C50}.Release|x86.Build.0 = Release|Any CPU
62116
{31B49528-4241-4DDB-8BB9-28F95148C602}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
63117
{31B49528-4241-4DDB-8BB9-28F95148C602}.Debug|Any CPU.Build.0 = Debug|Any CPU
118+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Debug|x64.ActiveCfg = Debug|Any CPU
119+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Debug|x64.Build.0 = Debug|Any CPU
120+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Debug|x86.ActiveCfg = Debug|Any CPU
121+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Debug|x86.Build.0 = Debug|Any CPU
64122
{31B49528-4241-4DDB-8BB9-28F95148C602}.Release|Any CPU.ActiveCfg = Release|Any CPU
65123
{31B49528-4241-4DDB-8BB9-28F95148C602}.Release|Any CPU.Build.0 = Release|Any CPU
124+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Release|x64.ActiveCfg = Release|Any CPU
125+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Release|x64.Build.0 = Release|Any CPU
126+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Release|x86.ActiveCfg = Release|Any CPU
127+
{31B49528-4241-4DDB-8BB9-28F95148C602}.Release|x86.Build.0 = Release|Any CPU
66128
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
67129
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
130+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Debug|x64.ActiveCfg = Debug|Any CPU
131+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Debug|x64.Build.0 = Debug|Any CPU
132+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Debug|x86.ActiveCfg = Debug|Any CPU
133+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Debug|x86.Build.0 = Debug|Any CPU
68134
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
69135
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Release|Any CPU.Build.0 = Release|Any CPU
136+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Release|x64.ActiveCfg = Release|Any CPU
137+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Release|x64.Build.0 = Release|Any CPU
138+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Release|x86.ActiveCfg = Release|Any CPU
139+
{B73D384F-62CA-4FD2-89C6-04DB2DC5AB9D}.Release|x86.Build.0 = Release|Any CPU
70140
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
71141
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Debug|Any CPU.Build.0 = Debug|Any CPU
142+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Debug|x64.ActiveCfg = Debug|Any CPU
143+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Debug|x64.Build.0 = Debug|Any CPU
144+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Debug|x86.ActiveCfg = Debug|Any CPU
145+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Debug|x86.Build.0 = Debug|Any CPU
72146
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Release|Any CPU.ActiveCfg = Release|Any CPU
73147
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Release|Any CPU.Build.0 = Release|Any CPU
148+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Release|x64.ActiveCfg = Release|Any CPU
149+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Release|x64.Build.0 = Release|Any CPU
150+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Release|x86.ActiveCfg = Release|Any CPU
151+
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10}.Release|x86.Build.0 = Release|Any CPU
74152
{D0EAA185-822C-45C8-A287-FD05AF138209}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
75153
{D0EAA185-822C-45C8-A287-FD05AF138209}.Debug|Any CPU.Build.0 = Debug|Any CPU
154+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Debug|x64.ActiveCfg = Debug|Any CPU
155+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Debug|x64.Build.0 = Debug|Any CPU
156+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Debug|x86.ActiveCfg = Debug|Any CPU
157+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Debug|x86.Build.0 = Debug|Any CPU
76158
{D0EAA185-822C-45C8-A287-FD05AF138209}.Release|Any CPU.ActiveCfg = Release|Any CPU
77159
{D0EAA185-822C-45C8-A287-FD05AF138209}.Release|Any CPU.Build.0 = Release|Any CPU
78-
{C126ED4A-CE30-4E0D-9D1C-DDB7EEE4200E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79-
{C126ED4A-CE30-4E0D-9D1C-DDB7EEE4200E}.Debug|Any CPU.Build.0 = Debug|Any CPU
80-
{C126ED4A-CE30-4E0D-9D1C-DDB7EEE4200E}.Release|Any CPU.ActiveCfg = Release|Any CPU
81-
{C126ED4A-CE30-4E0D-9D1C-DDB7EEE4200E}.Release|Any CPU.Build.0 = Release|Any CPU
160+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Release|x64.ActiveCfg = Release|Any CPU
161+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Release|x64.Build.0 = Release|Any CPU
162+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Release|x86.ActiveCfg = Release|Any CPU
163+
{D0EAA185-822C-45C8-A287-FD05AF138209}.Release|x86.Build.0 = Release|Any CPU
164+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
165+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Debug|Any CPU.Build.0 = Debug|Any CPU
166+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Debug|x64.ActiveCfg = Debug|Any CPU
167+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Debug|x64.Build.0 = Debug|Any CPU
168+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Debug|x86.ActiveCfg = Debug|Any CPU
169+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Debug|x86.Build.0 = Debug|Any CPU
170+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Release|Any CPU.ActiveCfg = Release|Any CPU
171+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Release|Any CPU.Build.0 = Release|Any CPU
172+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Release|x64.ActiveCfg = Release|Any CPU
173+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Release|x64.Build.0 = Release|Any CPU
174+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Release|x86.ActiveCfg = Release|Any CPU
175+
{D2BE7053-7820-477D-B195-7D31D9649A25}.Release|x86.Build.0 = Release|Any CPU
82176
EndGlobalSection
83177
GlobalSection(SolutionProperties) = preSolution
84178
HideSolutionNode = FALSE
@@ -92,6 +186,7 @@ Global
92186
{A52A877E-B6BA-410D-ADEE-0EE969734C50} = {C9F34834-F918-4085-A8DE-F9E38FB03AF5}
93187
{31B49528-4241-4DDB-8BB9-28F95148C602} = {E3DA12B6-0025-4624-805C-F3406CA90122}
94188
{D8EAB1F1-D2A9-49F9-BC09-7397F9CCFF10} = {E3DA12B6-0025-4624-805C-F3406CA90122}
189+
{D2BE7053-7820-477D-B195-7D31D9649A25} = {4AA549FB-C4F0-51C5-5F14-5CA538ED4FC4}
95190
EndGlobalSection
96191
GlobalSection(ExtensibilityGlobals) = postSolution
97192
SolutionGuid = {B4A622B5-12C6-4159-B209-BB61E1200A7C}

src/Attestation/Attestation/Az.Attestation.psd1

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/9/2025
6+
# Generated on: 2025-07-27
77
#
88

99
@{
@@ -53,7 +53,7 @@ DotNetFrameworkVersion = '4.7.2'
5353
# ProcessorArchitecture = ''
5454

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

5858
# Assemblies that must be loaded prior to importing this module
5959
RequiredAssemblies = 'Attestation.Autorest/bin/Az.Attestation.private.dll',
@@ -64,13 +64,13 @@ RequiredAssemblies = 'Attestation.Autorest/bin/Az.Attestation.private.dll',
6464
'Microsoft.IdentityModel.Tokens.dll'
6565

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

6969
# Type files (.ps1xml) to be loaded when importing this module
70-
# TypesToProcess = @()
70+
TypesToProcess = @()
7171

7272
# Format files (.ps1xml) to be loaded when importing this module
73-
FormatsToProcess = 'Attestation.Autorest\Az.Attestation.format.ps1xml'
73+
FormatsToProcess = 'Attestation.Autorest/Az.Attestation.format.ps1xml'
7474

7575
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
7676
NestedModules = @('Attestation.Autorest/Az.Attestation.psm1',
@@ -108,7 +108,7 @@ PrivateData = @{
108108
PSData = @{
109109

110110
# Tags applied to this module. These help with module discovery in online galleries.
111-
Tags = 'Azure','ResourceManager','ARM','Attestation'
111+
Tags = 'Azure', 'ResourceManager', 'ARM', 'Attestation'
112112

113113
# A URL to the license for this module.
114114
LicenseUri = 'https://aka.ms/azps-license'
@@ -133,7 +133,7 @@ PrivateData = @{
133133

134134
} # End of PSData hashtable
135135

136-
} # End of PrivateData hashtable
136+
} # End of PrivateData hashtable
137137

138138
# HelpInfo URI of this module
139139
# HelpInfoURI = ''

src/Attestation/Attestation/ChangeLog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@
2020

2121

2222
## Upcoming Release
23+
* Added BreakingChange announcements for commands below:
24+
* `Get-AzAttestationDefaultProvider`
25+
* `Get-AzAttestationProvider`
26+
* `New-AzAttestationProvider`
27+
* `Update-AzAttestationProvider`
2328

2429
## Version 2.1.0
2530
* Upgraded nuget package to signed package.

0 commit comments

Comments
 (0)