Skip to content

Commit 26fa047

Browse files
authored
Merge pull request Azure#10181 from markcowl/meta-fix
Updating the descriptions for modules and adding release notes
2 parents 8d583f7 + ca1b9a6 commit 26fa047

File tree

9 files changed

+116
-50
lines changed

9 files changed

+116
-50
lines changed

src/AppService/readme.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ require:
5252
- $(repo)/specification/web/resource-manager/readme.md
5353

5454
title: AppService
55-
module-version: 4.0.0
55+
module-version: 4.0.1
5656

5757
directive:
5858
- from: swagger-document
@@ -323,20 +323,28 @@ directive:
323323
- where:
324324
variant: (.*)ViaIdentitySlot
325325
remove: true
326-
# Fix the name of the module in the nuspec
326+
# Fix the name of the module in the nuspec
327327
- from: Az.AppService.nuspec
328328
where: $
329-
transform: $ = $.replace('\$\(service-name\) cmdlets', 'preview cmdlets for Azure AppService');
329+
transform: $ = $.replace(/Microsoft Azure PowerShell(.) \$\(service-name\) cmdlets/, 'Microsoft Azure PowerShell - App Service (Web Apps) service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\n\nFor information on App Service, please visit the following$1 https://docs.microsoft.com/azure/app-service-web/');
330330
# Add a better description
331331
- from: Az.AppService.nuspec
332332
where: $
333333
transform: $ = $.replace(/\$\(service-name\)/g, 'AppService');
334+
# Add release notes
335+
- from: Az.AppService.nuspec
336+
where: $
337+
transform: $ = $.replace('<releaseNotes></releaseNotes>', '<releaseNotes>Initial release of preview AppService cmdlets - see https://aka.ms/azps4doc for more information.</releaseNotes>');
334338
# Make the nuget package a preview
335339
- from: Az.AppService.nuspec
336340
where: $
337341
transform: $ = $.replace(/<version>(\d+\.\d+\.\d+)<\/version>/, '<version>$1-preview</version>');
338-
# Make this a preview module
342+
# Update the psd1 description
343+
- from: source-file-csharp
344+
where: $
345+
transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell(.) AppService cmdlets\"\}\'\"\);/, 'sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell - App Service (Web Apps) service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\\n\\nFor information on App Service, please visit the following$1 https://docs.microsoft.com/azure/app-service-web/\"\}\'\"\);');
346+
# Make this a preview module
339347
- from: source-file-csharp
340348
where: $
341-
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
349+
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'Initial release of preview AppService cmdlets - see https://aka.ms/azps4doc for more information.\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
342350
```

src/Billing/readme.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ require:
5353
- $(repo)/specification/commerce/resource-manager/readme.md
5454
- $(repo)/specification/consumption/resource-manager/readme.md
5555

56-
module-version: 4.0.0
56+
module-version: 4.0.1
5757
title: Billing
5858
subject-prefix: ''
5959

@@ -138,7 +138,12 @@ directive:
138138
# Fix the name of the module in the nuspec
139139
- from: Az.Billing.nuspec
140140
where: $
141-
transform: $ = $.replace('\$\(service-name\) cmdlets', 'preview cmdlets for Azure Billing Service');
141+
transform: $ = $.replace(/Microsoft Azure PowerShell(.) \$\(service-name\) cmdlets/, 'Microsoft Azure PowerShell - Billing service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\n\nFor information on Billing, please visit the following$1 https://docs.microsoft.com/azure/billing/');
142+
143+
# Add release notes
144+
- from: Az.Billing.nuspec
145+
where: $
146+
transform: $ = $.replace('<releaseNotes></releaseNotes>', '<releaseNotes>Initial release of preview Billing cmdlets - see https://aka.ms/azps4doc for more information.</releaseNotes>');
142147
# Add a better description
143148
- from: Az.Billing.nuspec
144149
where: $
@@ -147,8 +152,12 @@ directive:
147152
- from: Az.Billing.nuspec
148153
where: $
149154
transform: $ = $.replace(/<version>(\d+\.\d+\.\d+)<\/version>/, '<version>$1-preview</version>');
150-
# Make this a preview module
155+
# Update the psd1 description
156+
- from: source-file-csharp
157+
where: $
158+
transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell(.) Billing cmdlets\"\}\'\"\);/, 'sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell - Billing service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\\n\\nFor information on Billing, please visit the following$1 https://docs.microsoft.com/azure/billing/\"\}\'\"\);');
159+
# Make this a preview module
151160
- from: source-file-csharp
152161
where: $
153-
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
162+
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'Initial release of preview Billing cmdlets - see https://aka.ms/azps4doc for more information.\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
154163
```

src/Compute/readme.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ require:
5555
# - $(repo)/specification/containerservice/resource-manager/Microsoft.ContainerService/stable/2017-07-01/containerService.json
5656

5757
subject-prefix: ''
58-
module-version: 4.0.0
58+
module-version: 4.0.1
5959

6060
directive:
6161
# subject renames for VM and Vmss
@@ -1042,7 +1042,7 @@ directive:
10421042
- from: Az.Compute.psm1
10431043
where: $
10441044
transform: >
1045-
return $.replace('# Ask for the shared functionality table', 'Import-Module -Name (Join-Path $PSScriptRoot \'./bin/Az.Compute.private.dll\')\n# Ask for the shared functionality table' );
1045+
return $.replace('# Ask for the shared functionality table', '$null = Import-Module -Name (Join-Path $PSScriptRoot \'./bin/Az.Compute.private.dll\')\n# Ask for the shared functionality table' );
10461046
# add again
10471047
- from: Az.Compute.psm1
10481048
where: $
@@ -1102,17 +1102,21 @@ directive:
11021102
# Fix the name of the module in the nuspec
11031103
- from: Az.Compute.nuspec
11041104
where: $
1105-
transform: $ = $.replace('\$\(service-name\) cmdlets', 'preview cmdlets for Azure Compute Service');
1106-
# Add a better description
1105+
transform: $ = $.replace(/Microsoft Azure PowerShell(.) \$\(service-name\) cmdlets/, 'Microsoft Azure PowerShell - Compute service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\n\nFor more information on Virtual Machines, please visit the following$1 https://docs.microsoft.com/azure/virtual-machines/\nFor more information on Virtual Machine Scale Sets, please visit the following$1 https://docs.microsoft.com/azure/virtual-machine-scale-sets/');
1106+
# Add release notes
11071107
- from: Az.Compute.nuspec
11081108
where: $
1109-
transform: $ = $.replace(/\$\(service-name\)/g, 'Compute');
1109+
transform: $ = $.replace('<releaseNotes></releaseNotes>', '<releaseNotes>Initial release of preview Compute cmdlets - see https://aka.ms/azps4doc for more information.</releaseNotes>');
11101110
# Make the nuget package a preview
11111111
- from: Az.Compute.nuspec
11121112
where: $
11131113
transform: $ = $.replace(/<version>(\d+\.\d+\.\d+)<\/version>/, '<version>$1-preview</version>');
1114+
# Update the psd1 description
1115+
- from: source-file-csharp
1116+
where: $
1117+
transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell(.) Compute cmdlets\"\}\'\"\);/, 'sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell - Compute service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\\n\\nFor more information on Virtual Machines, please visit the following$1 https://docs.microsoft.com/azure/virtual-machines/\\nFor more information on Virtual Machine Scale Sets, please visit the following$1 https://docs.microsoft.com/azure/virtual-machine-scale-sets/\"\}\'\"\);');
11141118
# Make this a preview module
11151119
- from: source-file-csharp
11161120
where: $
1117-
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
1121+
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'Initial release of preview Compute cmdlets - see https://aka.ms/azps4doc for more information.\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
11181122
```

src/Dns/readme.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ require:
5252
- $(repo)/specification/dns/resource-manager/readme.md
5353

5454
title: Dns
55-
module-version: 4.0.0
55+
module-version: 4.0.1
5656

5757
directive:
5858
# RecordSet
@@ -128,20 +128,24 @@ directive:
128128
verb: ^New$|^Set$
129129
subject: Zone
130130
hide: true
131-
# Fix the name of the module in the nuspec
131+
# Fix the name of the module in the nuspec
132132
- from: Az.Dns.nuspec
133133
where: $
134-
transform: $ = $.replace('\$\(service-name\) cmdlets', 'preview cmdlets for Azure Dns Service');
135-
# Add a better description
134+
transform: $ = $.replace(/Microsoft Azure PowerShell(.) \$\(service-name\) cmdlets/, 'Microsoft Azure PowerShell - Dns service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\n\nFor more information on DNS, please visit the following$1 https://docs.microsoft.com/azure/dns/');
135+
# Add release notes
136136
- from: Az.Dns.nuspec
137137
where: $
138-
transform: $ = $.replace(/\$\(service-name\)/g, 'Dns');
138+
transform: $ = $.replace('<releaseNotes></releaseNotes>', '<releaseNotes>Initial release of preview Dns cmdlets - see https://aka.ms/azps4doc for more information.</releaseNotes>');
139139
# Make the nuget package a preview
140140
- from: Az.Dns.nuspec
141141
where: $
142142
transform: $ = $.replace(/<version>(\d+\.\d+\.\d+)<\/version>/, '<version>$1-preview</version>');
143-
# Make this a preview module
143+
# Update the psd1 description
144144
- from: source-file-csharp
145145
where: $
146-
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
146+
transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell(.) Dns cmdlets\"\}\'\"\);/, 'sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell - Dns service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\\n\\nFor more information on DNS, please visit the following$1 https://docs.microsoft.com/azure/dns/\"\}\'\"\);');
147+
# Make this a preview module
148+
- from: source-file-csharp
149+
where: $
150+
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'Initial release of preview Dns cmdlets - see https://aka.ms/azps4doc for more information.\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
147151
```

src/KeyVault/readme.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ require:
5353
- $(repo)/specification/keyvault/data-plane/readme.md
5454

5555
title: KeyVault
56-
module-version: 4.0.0
56+
module-version: 4.0.1
5757

5858
```
5959
@@ -469,17 +469,21 @@ directive:
469469
# Fix the name of the module in the nuspec
470470
- from: Az.KeyVault.nuspec
471471
where: $
472-
transform: $ = $.replace('\$\(service-name\) cmdlets', 'preview cmdlets for Azure KeyVault Service');
473-
# Add a better description
472+
transform: $ = $.replace(/Microsoft Azure PowerShell(.) \$\(service-name\) cmdlets/, 'Microsoft Azure PowerShell - Key Vault service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\n\nFor more information on Key Vault, please visit the following$1 https://docs.microsoft.com/azure/key-vault/');
473+
# Add release notes
474474
- from: Az.KeyVault.nuspec
475475
where: $
476-
transform: $ = $.replace(/\$\(service-name\)/g, 'KeyVault');
476+
transform: $ = $.replace('<releaseNotes></releaseNotes>', '<releaseNotes>Initial release of preview KeyVault cmdlets - see https://aka.ms/azps4doc for more information.</releaseNotes>');
477477
# Make the nuget package a preview
478478
- from: Az.KeyVault.nuspec
479479
where: $
480480
transform: $ = $.replace(/<version>(\d+\.\d+\.\d+)<\/version>/, '<version>$1-preview</version>');
481+
# Update the psd1 description
482+
- from: source-file-csharp
483+
where: $
484+
transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell(.) KeyVault cmdlets\"\}\'\"\);/, 'sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell - Key Vault service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\\n\\nFor more information on Key Vault, please visit the following$1 https://docs.microsoft.com/azure/key-vault/\"\}\'\"\);');
481485
# Make this a preview module
482486
- from: source-file-csharp
483487
where: $
484-
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
488+
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'Initial release of preview KeyVault cmdlets - see https://aka.ms/azps4doc for more information.\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
485489
```

src/Monitor/readme.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ require:
5353
- $(repo)/specification/monitor/data-plane/readme.md
5454

5555
subject-prefix: ''
56-
module-version: 4.0.0
56+
module-version: 4.0.1
5757
title: Monitor
5858

5959
directive:
@@ -272,19 +272,23 @@ directive:
272272
# Fix the name of the module in the nuspec
273273
- from: Az.Monitor.nuspec
274274
where: $
275-
transform: $ = $.replace('\$\(service-name\) cmdlets', 'preview cmdlets for Azure Monitor Service');
276-
# Add a better description
275+
transform: $ = $.replace(/Microsoft Azure PowerShell(.) \$\(service-name\) cmdlets/, 'Microsoft Azure PowerShell - Monitor service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\n\nFor more information on Monitor, please visit the following$1 https://docs.microsoft.com/azure/monitoring-and-diagnostics/');
276+
# Add release notes
277277
- from: Az.Monitor.nuspec
278278
where: $
279-
transform: $ = $.replace(/\$\(service-name\)/g, 'Monitor');
279+
transform: $ = $.replace('<releaseNotes></releaseNotes>', '<releaseNotes>Initial release of preview Monitor cmdlets - see https://aka.ms/azps4doc for more information.</releaseNotes>');
280280
# Make the nuget package a preview
281281
- from: Az.Monitor.nuspec
282282
where: $
283283
transform: $ = $.replace(/<version>(\d+\.\d+\.\d+)<\/version>/, '<version>$1-preview</version>');
284+
# Update the psd1 description
285+
- from: source-file-csharp
286+
where: $
287+
transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell(.) Monitor cmdlets\"\}\'\"\);/, 'sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell - Monitor service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\\n\\nFor more information on Monitor, please visit the following$1 https://docs.microsoft.com/azure/monitoring-and-diagnostics/\"\}\'\"\);');
284288
# Make this a preview module
285289
- from: source-file-csharp
286290
where: $
287-
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
291+
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'Initial release of preview Monitor cmdlets - see https://aka.ms/azps4doc for more information.\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
288292
```
289293
290294
``` yaml

src/Network/readme.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ require:
5555

5656
title: Network
5757
subject-prefix: ''
58-
module-version: 4.0.0
58+
module-version: 4.0.1
5959
make-sub-resources-byreference: true
6060

6161
directive:
@@ -2956,17 +2956,21 @@ directive:
29562956
# Fix the name of the module in the nuspec
29572957
- from: Az.Network.nuspec
29582958
where: $
2959-
transform: $ = $.replace('\$\(service-name\) cmdlets', 'preview cmdlets for Azure Network Service');
2960-
# Add a better description
2959+
transform: $ = $.replace(/Microsoft Azure PowerShell(.) \$\(service-name\) cmdlets/, 'Microsoft Azure PowerShell - Networking service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\n\nFor more information on Networking, please visit the following$1 https://docs.microsoft.com/azure/networking/networking-overview');
2960+
# Add release notes
29612961
- from: Az.Network.nuspec
29622962
where: $
2963-
transform: $ = $.replace(/\$\(service-name\)/g, 'Network');
2963+
transform: $ = $.replace('<releaseNotes></releaseNotes>', '<releaseNotes>Initial release of preview Network cmdlets - see https://aka.ms/azps4doc for more information.</releaseNotes>');
29642964
# Make the nuget package a preview
29652965
- from: Az.Network.nuspec
29662966
where: $
29672967
transform: $ = $.replace(/<version>(\d+\.\d+\.\d+)<\/version>/, '<version>$1-preview</version>');
2968-
# Make this a preview module
2968+
# Update the psd1 description
29692969
- from: source-file-csharp
29702970
where: $
2971-
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
2971+
transform: $ = $.replace(/sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell(.) Network cmdlets\"\}\'\"\);/, 'sb.AppendLine\(\$@\"\{Indent\}Description = \'\{\"Microsoft Azure PowerShell - Networking service cmdlets for Azure Resource Manager in Windows PowerShell and PowerShell Core.\\n\\nFor more information on Networking, please visit the following$1 https://docs.microsoft.com/azure/networking/\"\}\'\"\);');
2972+
# Make this a preview module
2973+
- from: source-file-csharp
2974+
where: $
2975+
transform: $ = $.replace('sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'\'\"\);', 'sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}ReleaseNotes = \'Initial release of preview Network cmdlets - see https://aka.ms/azps4doc for more information.\'\"\);\n sb.AppendLine\(\$@\"\{Indent\}\{Indent\}\{Indent\}Prerelease = \'preview\'\"\);' );
29722976
```

0 commit comments

Comments
 (0)