Skip to content

Commit 6f3b375

Browse files
authored
Merge branch 'master' into release-2021-01-19
2 parents 5b60fa2 + bad3a2d commit 6f3b375

File tree

1,053 files changed

+41218
-14720
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,053 files changed

+41218
-14720
lines changed

src/Compute/Compute.Test/ScenarioTests/VirtualMachineTests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2007,11 +2007,11 @@ function Test-VMImageCmdletOutputFormat
20072007

20082008
Assert-OutputContains " Get-AzVMImagePublisher -Location '$locStr' | ? { `$_.PublisherName -eq `'$publisher`' } | Get-AzVMImageOffer | Get-AzVMImageSku " @('Publisher', 'Offer', 'Skus');
20092009

2010-
Assert-OutputContains " Get-AzVMImagePublisher -Location '$locStr' | ? { `$_.PublisherName -eq `'$publisher`' } | Get-AzVMImageOffer | Get-AzVMImageSku | Get-AzVMImage " @('Version', 'FilterExpression', 'Skus');
2010+
Assert-OutputContains " Get-AzVMImagePublisher -Location '$locStr' | ? { `$_.PublisherName -eq `'$publisher`' } | Get-AzVMImageOffer | Get-AzVMImageSku | Get-AzVMImage " @('Version', 'Skus');
20112011

2012-
Assert-OutputContains " Get-AzVMImage -Location '$locStr' -PublisherName $publisher -Offer $offer -Skus $sku -Version $ver " @('Id', 'Location', 'PublisherName', 'Offer', 'Sku', 'Version', 'FilterExpression', 'Name', 'DataDiskImages', 'OSDiskImage', 'PurchasePlan');
2012+
Assert-OutputContains " Get-AzVMImage -Location '$locStr' -PublisherName $publisher -Offer $offer -Skus $sku -Version $ver " @('Id', 'Location', 'PublisherName', 'Offer', 'Sku', 'Version', 'Name', 'DataDiskImages', 'OSDiskImage', 'PurchasePlan');
20132013

2014-
Assert-OutputContains " Get-AzVMImage -Location '$locStr' -PublisherName $publisher -Offer $offer -Skus $sku -Version $ver " @('Id', 'Location', 'PublisherName', 'Offer', 'Sku', 'Version', 'FilterExpression', 'Name', 'DataDiskImages', 'OSDiskImage', 'PurchasePlan');
2014+
Assert-OutputContains " Get-AzVMImage -Location '$locStr' -PublisherName $publisher -Offer $offer -Skus $sku -Version $ver " @('Id', 'Location', 'PublisherName', 'Offer', 'Sku', 'Version', 'Name', 'DataDiskImages', 'OSDiskImage', 'PurchasePlan');
20152015
}
20162016

20172017
# Test Get VM Size from All Locations

src/Compute/Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVMImageCmdletOutputFormat.json

Lines changed: 13072 additions & 1012 deletions
Large diffs are not rendered by default.

src/Compute/Compute/ChangeLog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@
2020
2121
-->
2222
## Upcoming Release
23+
* Removed FilterExpression parameter from `Get-AzVMImage` cmdlet documentation.
24+
* Added deprecation message to the ContainerService cmdlets:
25+
- `Add-AzureRmContainerServiceAgentPoolProfileCommand`
26+
- `Get-AzContainerService`
27+
- `New-AzContainerService`
28+
- `New-AzContainerServiceConfig`
29+
- `Remove-AzContainerService`
30+
- `Remove-AzContainerServiceAgentPoolProfile`
31+
- `Update-AzContainerService`
2332

2433
## Version 4.8.0
2534
* New parameter `VM` in new parameter set `VMParameterSet` added to `Get-AzVMDscExtensionStatus` and `Get-AzVMDscExtension` cmdlets.

src/Compute/Compute/Compute.format.ps1xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,17 +183,13 @@
183183
<TableColumnHeader/>
184184
<TableColumnHeader/>
185185
<TableColumnHeader/>
186-
<TableColumnHeader/>
187186
</TableHeaders>
188187
<TableRowEntries>
189188
<TableRowEntry>
190189
<TableColumnItems>
191190
<TableColumnItem>
192191
<PropertyName>Version</PropertyName>
193192
</TableColumnItem>
194-
<TableColumnItem>
195-
<PropertyName>FilterExpression</PropertyName>
196-
</TableColumnItem>
197193
<TableColumnItem>
198194
<PropertyName>Skus</PropertyName>
199195
</TableColumnItem>

src/Compute/Compute/Generated/ContainerService/Config/AddAzureRmContainerServiceAgentPoolProfileCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
namespace Microsoft.Azure.Commands.Compute.Automation
3232
{
33+
[WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()]
3334
[Cmdlet(VerbsCommon.Add, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceAgentPoolProfile", SupportsShouldProcess = true)]
3435
[OutputType(typeof(PSContainerService))]
3536
public partial class AddAzureRmContainerServiceAgentPoolProfileCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet

src/Compute/Compute/Generated/ContainerService/Config/NewAzureRmContainerServiceConfigCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
namespace Microsoft.Azure.Commands.Compute.Automation
3333
{
34+
[WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()]
3435
[Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceConfig", SupportsShouldProcess = true)]
3536
[OutputType(typeof(PSContainerService))]
3637
public partial class NewAzureRmContainerServiceConfigCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet

src/Compute/Compute/Generated/ContainerService/Config/RemoveAzureRmContainerServiceAgentPoolProfileCommand.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
namespace Microsoft.Azure.Commands.Compute.Automation
3232
{
33+
[WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()]
3334
[Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerServiceAgentPoolProfile", SupportsShouldProcess = true)]
3435
[OutputType(typeof(PSContainerService))]
3536
public partial class RemoveAzureRmContainerServiceAgentPoolProfileCommand : Microsoft.Azure.Commands.ResourceManager.Common.AzureRMCmdlet

src/Compute/Compute/Generated/ContainerService/ContainerServiceCreateOrUpdateMethod.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
namespace Microsoft.Azure.Commands.Compute.Automation
3434
{
35+
[WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()]
3536
[Cmdlet(VerbsCommon.New, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)]
3637
[OutputType(typeof(PSContainerService))]
3738
public partial class NewAzureRmContainerService : ComputeAutomationBaseCmdlet
@@ -82,6 +83,7 @@ public override void ExecuteCmdlet()
8283
public SwitchParameter AsJob { get; set; }
8384
}
8485

86+
[WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()]
8587
[Cmdlet(VerbsData.Update, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)]
8688
[OutputType(typeof(PSContainerService))]
8789
public partial class UpdateAzureRmContainerService : ComputeAutomationBaseCmdlet

src/Compute/Compute/Generated/ContainerService/ContainerServiceDeleteMethod.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
namespace Microsoft.Azure.Commands.Compute.Automation
3434
{
35+
[WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()]
3536
[Cmdlet(VerbsCommon.Remove, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter", SupportsShouldProcess = true)]
3637
[OutputType(typeof(PSOperationStatusResponse))]
3738
public partial class RemoveAzureRmContainerService : ComputeAutomationBaseCmdlet

src/Compute/Compute/Generated/ContainerService/ContainerServiceGetMethod.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
namespace Microsoft.Azure.Commands.Compute.Automation
3434
{
35+
[WindowsAzure.Commands.Common.CustomAttributes.CmdletDeprecation()]
3536
[Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "ContainerService", DefaultParameterSetName = "DefaultParameter")]
3637
[OutputType(typeof(PSContainerService))]
3738
public partial class GetAzureRmContainerService : ComputeAutomationBaseCmdlet

src/Compute/Compute/help/Get-AzVMImage.md

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,18 @@ The **Get-AzVMImage** cmdlet gets all the versions of a VMImage.
3434
```
3535
PS C:\> Get-AzVMImage -Location "Central US" -PublisherName "MicrosoftWindowsServer" -Offer "windowsserver" -Skus "2012-R2-Datacenter"
3636
37-
Version FilterExpression Skus Offer PublisherName Location Id
38-
------- ---------------- ---- ----- ------------- -------- --
39-
4.127.20180315 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
40-
4.127.20180510 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
41-
4.127.20180815 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
42-
4.127.20180912 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
43-
4.127.20181010 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
44-
4.127.20181125 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
45-
4.127.20190104 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
46-
4.127.20190115 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
47-
4.127.20190204 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
48-
4.127.20190218 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
37+
Version Skus Offer PublisherName Location Id
38+
------- ---- ----- ------------- -------- --
39+
4.127.20180315 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
40+
4.127.20180510 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
41+
4.127.20180815 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
42+
4.127.20180912 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
43+
4.127.20181010 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
44+
4.127.20181125 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
45+
4.127.20190104 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
46+
4.127.20190115 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
47+
4.127.20190204 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
48+
4.127.20190218 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
4949
```
5050

5151
This command gets all the versions of VMImage that match the specified values.
@@ -62,7 +62,6 @@ PublisherName : MicrosoftWindowsServer
6262
Offer : windowsserver
6363
Skus : 2012-R2-Datacenter
6464
Version : 4.127.20180315
65-
FilterExpression :
6665
Name : 4.127.20180315
6766
OSDiskImage : {
6867
"operatingSystem": "Windows"
@@ -77,14 +76,14 @@ This command gets a specific version of VMImage that matches the specified value
7776
```
7877
PS C:\> Get-AzVMImage -Location "Central US" -PublisherName "MicrosoftWindowsServer" -Offer "windowsserver" -Skus "2012-R2-Datacenter" -Version 4.127.2018*
7978
80-
Version FilterExpression Skus Offer PublisherName Location Id
81-
------- ---------------- ---- ----- ------------- -------- --
82-
4.127.20180315 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
83-
4.127.20180510 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
84-
4.127.20180815 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
85-
4.127.20180912 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
86-
4.127.20181010 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
87-
4.127.20181125 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
79+
Version Skus Offer PublisherName Location Id
80+
------- ---- ----- ------------- -------- --
81+
4.127.20180315 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
82+
4.127.20180510 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
83+
4.127.20180815 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
84+
4.127.20180912 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
85+
4.127.20181010 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
86+
4.127.20181125 2012-R2-Datacenter windowsserver MicrosoftWindowsServer centralus /Subscriptions/9e2...
8887
```
8988

9089
This command gets all the versions of VMImage that match the specified values with filtering over version.

src/EventHub/EventHub/help/Set-AzEventHub.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ The Set-AzEventHub cmdlet updates the properties of the specified Event Hub.
3535
To update Eventhub with Capture description properties, please follow the below steps.
3636

3737
```
38-
PS C:\> $CreatedEventHub = Get-AzEventHub -ResourceGroupName MyResourceGroupName -Namespace MyNamespaceName -Name MyEventHubName
39-
PS C:\> $createdEventHub.CaptureDescription = New-Object -TypeName Microsoft.Azure.Commands.EventHub.Models.PSCaptureDescriptionAttributes
38+
PS C:\> $createdEventHub = Get-AzEventHub -ResourceGroupName MyResourceGroupName -Namespace MyNamespaceName -Name MyCreatedEventHub
39+
PS C:\> $ceatedEventHub.CaptureDescription = New-Object -TypeName Microsoft.Azure.Commands.EventHub.Models.PSCaptureDescriptionAttributes
4040
PS C:\> $createdEventHub.CaptureDescription.Enabled = $true
4141
PS C:\> $createdEventHub.CaptureDescription.IntervalInSeconds = 120
4242
PS C:\> $createdEventHub.CaptureDescription.Encoding = "Avro"
@@ -45,10 +45,10 @@ PS C:\> $createdEventHub.CaptureDescription.Destination.Name = "EventHubArchive.
4545
PS C:\> $createdEventHub.CaptureDescription.Destination.BlobContainer = "container"
4646
PS C:\> $createdEventHub.CaptureDescription.Destination.ArchiveNameFormat = "{Namespace}/{EventHub}/{PartitionId}/{Year}/{Month}/{Day}/{Hour}/{Minute}/{Second}"
4747
PS C:\> $createdEventHub.CaptureDescription.Destination.StorageAccountResourceId = "/subscriptions/{SubscriptionId}/resourceGroups/MyResourceGroupName/providers/Microsoft.ClassicStorage/storageAccounts/arjunteststorage"
48-
PS C:\> Set-AzEventHub -ResourceGroupName MyResourceGroupName -Namespace MyNamespaceName -Name MyEventHubName -InputObject MyCreatedEventHub -messageRetentionInDays 4 -partitionCount 2
48+
PS C:\> Set-AzEventHub -ResourceGroupName MyResourceGroupName -Namespace MyNamespaceName -Name MyEventHubName -InputObject $createdEventHub
4949
```
5050

51-
Updates the Event Hub \`MyEventHubName\` represented by the \`MyCreatedEventHub\` object, setting the message retention period to 4 days, the number of partitions to 2 and CaptureDescription properties
51+
Updates the Event Hub \`MyEventHubName\` represented by the \`MyCreatedEventHub\` object, setting the CaptureDescription properties
5252

5353
### Example 2
5454
```

src/Migrate/Az.Migrate.format.ps1xml

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -217,9 +217,6 @@
217217
<TableColumnHeader>
218218
<Label>SubscriptionId</Label>
219219
</TableColumnHeader>
220-
<TableColumnHeader>
221-
<Label>VCenterName</Label>
222-
</TableColumnHeader>
223220
<TableColumnHeader>
224221
<Label>VcenterName</Label>
225222
</TableColumnHeader>
@@ -326,9 +323,6 @@
326323
<TableColumnItem>
327324
<PropertyName>SubscriptionId</PropertyName>
328325
</TableColumnItem>
329-
<TableColumnItem>
330-
<PropertyName>VCenterName</PropertyName>
331-
</TableColumnItem>
332326
<TableColumnItem>
333327
<PropertyName>VcenterName</PropertyName>
334328
</TableColumnItem>
@@ -1680,9 +1674,9 @@
16801674
</TableControl>
16811675
</View>
16821676
<View>
1683-
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202001.Machine</Name>
1677+
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202001.MachineAutoGenerated</Name>
16841678
<ViewSelectedBy>
1685-
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202001.Machine</TypeName>
1679+
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api202001.MachineAutoGenerated</TypeName>
16861680
</ViewSelectedBy>
16871681
<TableControl>
16881682
<TableHeaders>
@@ -8192,9 +8186,9 @@
81928186
</TableControl>
81938187
</View>
81948188
<View>
8195-
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.EventCollection</Name>
8189+
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.EventCollectionAutoGenerated</Name>
81968190
<ViewSelectedBy>
8197-
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.EventCollection</TypeName>
8191+
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.EventCollectionAutoGenerated</TypeName>
81988192
</ViewSelectedBy>
81998193
<TableControl>
82008194
<TableHeaders>
@@ -12490,9 +12484,9 @@
1249012484
</TableControl>
1249112485
</View>
1249212486
<View>
12493-
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.JobProperties</Name>
12487+
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.JobPropertiesAutoGenerated</Name>
1249412488
<ViewSelectedBy>
12495-
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.JobProperties</TypeName>
12489+
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.JobPropertiesAutoGenerated</TypeName>
1249612490
</ViewSelectedBy>
1249712491
<TableControl>
1249812492
<TableHeaders>
@@ -17078,9 +17072,9 @@
1707817072
</TableControl>
1707917073
</View>
1708017074
<View>
17081-
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenter</Name>
17075+
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterAutoGenerated</Name>
1708217076
<ViewSelectedBy>
17083-
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenter</TypeName>
17077+
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterAutoGenerated</TypeName>
1708417078
</ViewSelectedBy>
1708517079
<TableControl>
1708617080
<TableHeaders>
@@ -17112,9 +17106,9 @@
1711217106
</TableControl>
1711317107
</View>
1711417108
<View>
17115-
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterCollection</Name>
17109+
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterCollectionAutoGenerated</Name>
1711617110
<ViewSelectedBy>
17117-
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterCollection</TypeName>
17111+
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterCollectionAutoGenerated</TypeName>
1711817112
</ViewSelectedBy>
1711917113
<TableControl>
1712017114
<TableHeaders>
@@ -17134,9 +17128,9 @@
1713417128
</TableControl>
1713517129
</View>
1713617130
<View>
17137-
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterProperties</Name>
17131+
<Name>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterPropertiesAutoGenerated</Name>
1713817132
<ViewSelectedBy>
17139-
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterProperties</TypeName>
17133+
<TypeName>Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20180110.VCenterPropertiesAutoGenerated</TypeName>
1714017134
</ViewSelectedBy>
1714117135
<TableControl>
1714217136
<TableHeaders>

src/Migrate/Az.Migrate.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
#
2-
# Module manifest for module 'Az.DedicatedHsm'
2+
# Module manifest for module 'Az.Migrate'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Hand-written on: 10/10/2020
7-
# Tool failed to update psd1
6+
# Generated on: 1/13/2021
87
#
98

109
@{
@@ -13,7 +12,7 @@
1312
RootModule = './Az.Migrate.psm1'
1413

1514
# Version number of this module.
16-
ModuleVersion = '0.1.0'
15+
ModuleVersion = '0.1.1'
1716

1817
# Supported PSEditions
1918
CompatiblePSEditions = 'Core', 'Desktop'
@@ -130,3 +129,4 @@
130129
# DefaultCommandPrefix = ''
131130

132131
}
132+

0 commit comments

Comments
 (0)