Skip to content

Commit f809835

Browse files
authored
[Az.BareMetal] Update generation tool version: autorest.powershell v3->v4 (Azure#27465)
1 parent e4db257 commit f809835

File tree

12 files changed

+228
-42
lines changed

12 files changed

+228
-42
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 - BareMetal")]
23+
[assembly: System.Reflection.AssemblyFileVersionAttribute("0.1.2")]
24+
[assembly: System.Reflection.AssemblyVersionAttribute("0.1.2")]
25+
[assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)]
26+
[assembly: System.CLSCompliantAttribute(false)]

src/BareMetal/BareMetal.Autorest/README.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,17 @@ module-version: 0.1.0
3838
title: BareMetal
3939
subject-prefix: $(service-name)
4040

41-
identity-correction-for-post: true
42-
resourcegroup-append: true
43-
nested-object-to-string: true
44-
45-
# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option
46-
use-extension:
47-
"@autorest/powershell": "3.x"
48-
4941
directive:
5042
- where:
5143
subject: ^AzureBareMetalInstance(.*)
5244
set:
5345
subject: $1
5446
- where:
55-
variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$|^GetViaIdentity$
47+
variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString))
48+
subject-prefix: BareMetal
49+
remove: true
50+
- where:
51+
variant: ^CreateViaIdentity$|^CreateViaIdentityExpanded$|^GetViaIdentity$
5652
subject-prefix: BareMetal
5753
remove: true
58-
5954
```

src/BareMetal/BareMetal.Autorest/docs/Az.BareMetal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Module Name: Az.BareMetal
3-
Module Guid: 4b038ccd-b128-4b3d-be04-8a9921c69093
3+
Module Guid: 806859af-c1e8-475c-979d-f13b38d60ec1
44
Download Help Link: https://learn.microsoft.com/powershell/module/az.baremetal
55
Help Version: 1.0.0.0
66
Locale: en-US

src/BareMetal/BareMetal.Autorest/docs/Get-AzBareMetal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
148148
149149
## OUTPUTS
150150
151-
### Microsoft.Azure.PowerShell.Cmdlets.BareMetal.Models.Api20210809.IAzureBareMetalInstance
151+
### Microsoft.Azure.PowerShell.Cmdlets.BareMetal.Models.IAzureBareMetalInstance
152152
153153
## NOTES
154154

src/BareMetal/BareMetal.Autorest/docs/Update-AzBareMetal.md

Lines changed: 47 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ Update-AzBareMetal -InputObject <IBareMetalIdentity> [-Tag <Hashtable>] [-Defaul
2424
[-Confirm] [-WhatIf] [<CommonParameters>]
2525
```
2626

27+
### UpdateViaJsonFilePath
28+
```
29+
Update-AzBareMetal -Name <String> -ResourceGroupName <String> -JsonFilePath <String>
30+
[-SubscriptionId <String>] [-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
31+
```
32+
33+
### UpdateViaJsonString
34+
```
35+
Update-AzBareMetal -Name <String> -ResourceGroupName <String> -JsonString <String> [-SubscriptionId <String>]
36+
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
37+
```
38+
2739
## DESCRIPTION
2840
Patches the Tags field of a Azure BareMetal instance for the specified subscription, resource group, and instance name.
2941

@@ -75,7 +87,6 @@ Accept wildcard characters: False
7587
7688
### -InputObject
7789
Identity Parameter
78-
To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
7990
8091
```yaml
8192
Type: Microsoft.Azure.PowerShell.Cmdlets.BareMetal.Models.IBareMetalIdentity
@@ -89,12 +100,42 @@ Accept pipeline input: True (ByValue)
89100
Accept wildcard characters: False
90101
```
91102
103+
### -JsonFilePath
104+
Path of Json file supplied to the Update operation
105+
106+
```yaml
107+
Type: System.String
108+
Parameter Sets: UpdateViaJsonFilePath
109+
Aliases:
110+
111+
Required: True
112+
Position: Named
113+
Default value: None
114+
Accept pipeline input: False
115+
Accept wildcard characters: False
116+
```
117+
118+
### -JsonString
119+
Json string supplied to the Update operation
120+
121+
```yaml
122+
Type: System.String
123+
Parameter Sets: UpdateViaJsonString
124+
Aliases:
125+
126+
Required: True
127+
Position: Named
128+
Default value: None
129+
Accept pipeline input: False
130+
Accept wildcard characters: False
131+
```
132+
92133
### -Name
93134
Name of the Azure BareMetal on Azure instance.
94135
95136
```yaml
96137
Type: System.String
97-
Parameter Sets: UpdateExpanded
138+
Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString
98139
Aliases: AzureBareMetalInstanceName
99140

100141
Required: True
@@ -110,7 +151,7 @@ The name is case insensitive.
110151
111152
```yaml
112153
Type: System.String
113-
Parameter Sets: UpdateExpanded
154+
Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString
114155
Aliases:
115156

116157
Required: True
@@ -125,7 +166,7 @@ The ID of the target subscription.
125166
126167
```yaml
127168
Type: System.String
128-
Parameter Sets: UpdateExpanded
169+
Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString
129170
Aliases:
130171

131172
Required: False
@@ -140,7 +181,7 @@ Tags field of the AzureBareMetal instance.
140181
141182
```yaml
142183
Type: System.Collections.Hashtable
143-
Parameter Sets: (All)
184+
Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded
144185
Aliases:
145186

146187
Required: False
@@ -190,7 +231,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
190231
191232
## OUTPUTS
192233
193-
### Microsoft.Azure.PowerShell.Cmdlets.BareMetal.Models.Api20210809.IAzureBareMetalInstance
234+
### Microsoft.Azure.PowerShell.Cmdlets.BareMetal.Models.IAzureBareMetalInstance
194235
195236
## NOTES
196237
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"generate_Id": "8ac47f73-2bd8-4c01-9857-c8ec51d7cae3"
2+
"generate_Id": "44b7941b-5824-4f02-963b-daffa3df1e89"
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/BareMetal/BareMetal.sln

Lines changed: 80 additions & 9 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
@@ -19,49 +19,119 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accoun
1919
EndProject
2020
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BareMetal", "BareMetal\BareMetal.csproj", "{013FE344-1002-4A45-A03E-079B5F3D69A9}"
2121
EndProject
22-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.BareMetal", "..\..\generated\BareMetal\BareMetal.Autorest\Az.BareMetal.csproj", "{3D13FAEF-E53C-4CA4-BAAF-D1F963EE46B5}"
22+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BareMetal.Autorest", "BareMetal.Autorest", "{A279DA99-F19B-27D7-F944-9A2E969703B3}"
23+
EndProject
24+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.BareMetal", "..\..\generated\BareMetal\BareMetal.Autorest\Az.BareMetal.csproj", "{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}"
2325
EndProject
2426
Global
2527
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2628
Debug|Any CPU = Debug|Any CPU
29+
Debug|x64 = Debug|x64
30+
Debug|x86 = Debug|x86
2731
Release|Any CPU = Release|Any CPU
28-
EndGlobalSection
29-
GlobalSection(SolutionProperties) = preSolution
30-
HideSolutionNode = FALSE
32+
Release|x64 = Release|x64
33+
Release|x86 = Release|x86
3134
EndGlobalSection
3235
GlobalSection(ProjectConfigurationPlatforms) = postSolution
3336
{CA3C840D-C036-4884-997D-5CB903225E6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3437
{CA3C840D-C036-4884-997D-5CB903225E6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Debug|x64.ActiveCfg = Debug|Any CPU
39+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Debug|x64.Build.0 = Debug|Any CPU
40+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Debug|x86.ActiveCfg = Debug|Any CPU
41+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Debug|x86.Build.0 = Debug|Any CPU
3542
{CA3C840D-C036-4884-997D-5CB903225E6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
3643
{CA3C840D-C036-4884-997D-5CB903225E6D}.Release|Any CPU.Build.0 = Release|Any CPU
44+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Release|x64.ActiveCfg = Release|Any CPU
45+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Release|x64.Build.0 = Release|Any CPU
46+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Release|x86.ActiveCfg = Release|Any CPU
47+
{CA3C840D-C036-4884-997D-5CB903225E6D}.Release|x86.Build.0 = Release|Any CPU
3748
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
3849
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Debug|Any CPU.Build.0 = Debug|Any CPU
50+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Debug|x64.ActiveCfg = Debug|Any CPU
51+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Debug|x64.Build.0 = Debug|Any CPU
52+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Debug|x86.ActiveCfg = Debug|Any CPU
53+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Debug|x86.Build.0 = Debug|Any CPU
3954
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
4055
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Release|Any CPU.Build.0 = Release|Any CPU
56+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Release|x64.ActiveCfg = Release|Any CPU
57+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Release|x64.Build.0 = Release|Any CPU
58+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Release|x86.ActiveCfg = Release|Any CPU
59+
{1958B87F-59FC-4504-8C63-D8D3F1F344D5}.Release|x86.Build.0 = Release|Any CPU
4160
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4261
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Debug|Any CPU.Build.0 = Debug|Any CPU
62+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Debug|x64.ActiveCfg = Debug|Any CPU
63+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Debug|x64.Build.0 = Debug|Any CPU
64+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Debug|x86.ActiveCfg = Debug|Any CPU
65+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Debug|x86.Build.0 = Debug|Any CPU
4366
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Release|Any CPU.ActiveCfg = Release|Any CPU
4467
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Release|Any CPU.Build.0 = Release|Any CPU
68+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Release|x64.ActiveCfg = Release|Any CPU
69+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Release|x64.Build.0 = Release|Any CPU
70+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Release|x86.ActiveCfg = Release|Any CPU
71+
{1E1A3B58-58CF-4B03-BA9C-D005A03ECC59}.Release|x86.Build.0 = Release|Any CPU
4572
{650883E7-A611-40BD-AA30-615B7EB0780B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4673
{650883E7-A611-40BD-AA30-615B7EB0780B}.Debug|Any CPU.Build.0 = Debug|Any CPU
74+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Debug|x64.ActiveCfg = Debug|Any CPU
75+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Debug|x64.Build.0 = Debug|Any CPU
76+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Debug|x86.ActiveCfg = Debug|Any CPU
77+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Debug|x86.Build.0 = Debug|Any CPU
4778
{650883E7-A611-40BD-AA30-615B7EB0780B}.Release|Any CPU.ActiveCfg = Release|Any CPU
4879
{650883E7-A611-40BD-AA30-615B7EB0780B}.Release|Any CPU.Build.0 = Release|Any CPU
80+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Release|x64.ActiveCfg = Release|Any CPU
81+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Release|x64.Build.0 = Release|Any CPU
82+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Release|x86.ActiveCfg = Release|Any CPU
83+
{650883E7-A611-40BD-AA30-615B7EB0780B}.Release|x86.Build.0 = Release|Any CPU
4984
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5085
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Debug|Any CPU.Build.0 = Debug|Any CPU
86+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Debug|x64.ActiveCfg = Debug|Any CPU
87+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Debug|x64.Build.0 = Debug|Any CPU
88+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Debug|x86.ActiveCfg = Debug|Any CPU
89+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Debug|x86.Build.0 = Debug|Any CPU
5190
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Release|Any CPU.ActiveCfg = Release|Any CPU
5291
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Release|Any CPU.Build.0 = Release|Any CPU
92+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Release|x64.ActiveCfg = Release|Any CPU
93+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Release|x64.Build.0 = Release|Any CPU
94+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Release|x86.ActiveCfg = Release|Any CPU
95+
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC}.Release|x86.Build.0 = Release|Any CPU
5396
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
5497
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Debug|Any CPU.Build.0 = Debug|Any CPU
98+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Debug|x64.ActiveCfg = Debug|Any CPU
99+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Debug|x64.Build.0 = Debug|Any CPU
100+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Debug|x86.ActiveCfg = Debug|Any CPU
101+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Debug|x86.Build.0 = Debug|Any CPU
55102
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Release|Any CPU.ActiveCfg = Release|Any CPU
56103
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Release|Any CPU.Build.0 = Release|Any CPU
104+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Release|x64.ActiveCfg = Release|Any CPU
105+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Release|x64.Build.0 = Release|Any CPU
106+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Release|x86.ActiveCfg = Release|Any CPU
107+
{775B68BA-EED2-4F57-9254-89F9723E4E25}.Release|x86.Build.0 = Release|Any CPU
57108
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
58109
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
110+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Debug|x64.ActiveCfg = Debug|Any CPU
111+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Debug|x64.Build.0 = Debug|Any CPU
112+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Debug|x86.ActiveCfg = Debug|Any CPU
113+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Debug|x86.Build.0 = Debug|Any CPU
59114
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
60115
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Release|Any CPU.Build.0 = Release|Any CPU
61-
{3D13FAEF-E53C-4CA4-BAAF-D1F963EE46B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
62-
{3D13FAEF-E53C-4CA4-BAAF-D1F963EE46B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
63-
{3D13FAEF-E53C-4CA4-BAAF-D1F963EE46B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
64-
{3D13FAEF-E53C-4CA4-BAAF-D1F963EE46B5}.Release|Any CPU.Build.0 = Release|Any CPU
116+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Release|x64.ActiveCfg = Release|Any CPU
117+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Release|x64.Build.0 = Release|Any CPU
118+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Release|x86.ActiveCfg = Release|Any CPU
119+
{013FE344-1002-4A45-A03E-079B5F3D69A9}.Release|x86.Build.0 = Release|Any CPU
120+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
121+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
122+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Debug|x64.ActiveCfg = Debug|Any CPU
123+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Debug|x64.Build.0 = Debug|Any CPU
124+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Debug|x86.ActiveCfg = Debug|Any CPU
125+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Debug|x86.Build.0 = Debug|Any CPU
126+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
127+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Release|Any CPU.Build.0 = Release|Any CPU
128+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Release|x64.ActiveCfg = Release|Any CPU
129+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Release|x64.Build.0 = Release|Any CPU
130+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Release|x86.ActiveCfg = Release|Any CPU
131+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5}.Release|x86.Build.0 = Release|Any CPU
132+
EndGlobalSection
133+
GlobalSection(SolutionProperties) = preSolution
134+
HideSolutionNode = FALSE
65135
EndGlobalSection
66136
GlobalSection(NestedProjects) = preSolution
67137
{CA3C840D-C036-4884-997D-5CB903225E6D} = {7BF066B0-08B0-4C82-A6A5-8182F9D43E92}
@@ -70,5 +140,6 @@ Global
70140
{650883E7-A611-40BD-AA30-615B7EB0780B} = {7BF066B0-08B0-4C82-A6A5-8182F9D43E92}
71141
{9BB5BF30-FE76-4D12-8C79-F82F49E95BEC} = {7BF066B0-08B0-4C82-A6A5-8182F9D43E92}
72142
{775B68BA-EED2-4F57-9254-89F9723E4E25} = {7BF066B0-08B0-4C82-A6A5-8182F9D43E92}
143+
{A12BE46A-6B9D-4A1A-85CB-C0E2E2EB06C5} = {A279DA99-F19B-27D7-F944-9A2E969703B3}
73144
EndGlobalSection
74145
EndGlobal

src/BareMetal/BareMetal/Az.BareMetal.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-04-11
77
#
88

99
@{
@@ -51,19 +51,19 @@ 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 = '4.0.1'; })
54+
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '4.1.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = 'BareMetal.Autorest/bin/Az.BareMetal.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
66-
FormatsToProcess = 'BareMetal.Autorest\Az.BareMetal.format.ps1xml'
66+
FormatsToProcess = 'BareMetal.Autorest/Az.BareMetal.format.ps1xml'
6767

6868
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
6969
NestedModules = @('BareMetal.Autorest/Az.BareMetal.psm1')
@@ -95,7 +95,7 @@ PrivateData = @{
9595
PSData = @{
9696

9797
# Tags applied to this module. These help with module discovery in online galleries.
98-
Tags = 'Azure','ResourceManager','ARM','PSModule','BareMetal'
98+
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'BareMetal'
9999

100100
# A URL to the license for this module.
101101
LicenseUri = 'https://aka.ms/azps-license'
@@ -120,7 +120,7 @@ PrivateData = @{
120120

121121
} # End of PSData hashtable
122122

123-
} # End of PrivateData hashtable
123+
} # End of PrivateData hashtable
124124

125125
# HelpInfo URI of this module
126126
# HelpInfoURI = ''

src/BareMetal/BareMetal/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+
* Introduced various new features by upgrading code generator. Please see detail [here](https://github.com/Azure/azure-powershell/blob/main/documentation/Autorest-powershell-v4-new-features.md).
2122

2223
## Version 0.1.2
2324
* Upgraded nuget package to signed package.

0 commit comments

Comments
 (0)