Skip to content

Commit d0c1130

Browse files
authored
Update StorageMover to new swagger (Azure#20912)
1 parent a9866ca commit d0c1130

File tree

50 files changed

+172
-172
lines changed

Some content is hidden

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

50 files changed

+172
-172
lines changed

src/StorageMover/Az.StorageMover.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22
GUID = 'd6053d97-1a9b-4fc6-9bd2-09c5b23b34db'
33
RootModule = './Az.StorageMover.psm1'
4-
ModuleVersion = '0.1.0'
4+
ModuleVersion = '1.0.0'
55
CompatiblePSEditions = 'Core', 'Desktop'
66
Author = 'Microsoft Corporation'
77
CompanyName = 'Microsoft Corporation'

src/StorageMover/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ For information on how to develop for `Az.StorageMover`, see [how-to.md](how-to.
3131
3232
``` yaml
3333
# Please specify the commit id that includes your features to make sure generated codes stable.
34-
brach: 913f1e8aa0bfc773c5f236f03d56f379d9d3d012
34+
brach: 470c544393281cc986c9b343fa441f54576bc0bc
3535
require:
3636
# readme.azure.noprofile.md is the common configuration file
3737
- $(this-folder)/../readme.azure.noprofile.md
3838
input-file:
39-
- $(repo)/specification/storagemover/resource-manager/Microsoft.StorageMover/preview/2022-07-01-preview/storagemover.json
39+
- $(repo)/specification/storagemover/resource-manager/Microsoft.StorageMover/stable/2023-03-01/storagemover.json
4040

4141
# For new RP, the version is 0.1.0
42-
module-version: 0.1.0
42+
module-version: 1.0.0
4343
# Normally, title is the service name
4444
title: StorageMover
4545
subject-prefix: $(service-name)

src/StorageMover/custom/NewAzStorageMoverAzStorageContainerEndpoint.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Creates an AzStorageContainer endpoint resource, which represents a data transfe
2323
New-AzStorageMoverAzStorageContainerEndpoint -Name myendpointName -ResourceGroupName myResourceGroup -BlobContainerName myContainer -StorageMoverName myStorageMover -StorageAccountResourceId myAccountResourceId
2424
2525
.Inputs
26-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
26+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
2727
.Inputs
2828
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
2929
.Outputs
30-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
30+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
3131
.Notes
3232
COMPLEX PARAMETER PROPERTIES
3333
@@ -37,7 +37,7 @@ To create the parameters described below, construct a hash table containing the
3737
https://learn.microsoft.com/powershell/module/az.storagemover/new-azstoragemoverendpoint
3838
#>
3939
function New-AzStorageMoverAzStorageContainerEndpoint {
40-
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint])]
40+
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint])]
4141
[CmdletBinding(DefaultParameterSetName = 'CreateExpanded', PositionalBinding =$false, SupportsShouldProcess, ConfirmImpact = 'Medium')]
4242
param(
4343
[Parameter(ParameterSetName='CreateExpanded', Mandatory)]
@@ -131,7 +131,7 @@ function New-AzStorageMoverAzStorageContainerEndpoint {
131131
)
132132

133133
process {
134-
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.AzureStorageBlobContainerEndpointProperties]::New()
134+
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.AzureStorageBlobContainerEndpointProperties]::New()
135135

136136
if ($PSBoundParameters.ContainsKey('BlobContainerName')) {
137137
$Properties.BlobContainerName = $BlobContainerName

src/StorageMover/custom/NewAzStorageMoverNfsEndpoint.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ Creates a Nfs endpoint resource, which represents a data transfer source or dest
2323
New-AzStorageMoverNfsEndpoint -Name myEndpoint -ResourceGroupName myResourceGroup -StorageMoverName myStorageMover -Host "x.x.x.x" -Export "/" -NfsVersion NFSv3 -Description "Description"
2424
2525
.Inputs
26-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
26+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
2727
.Inputs
2828
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
2929
.Outputs
30-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
30+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
3131
.Notes
3232
COMPLEX PARAMETER PROPERTIES
3333
@@ -37,7 +37,7 @@ To create the parameters described below, construct a hash table containing the
3737
https://learn.microsoft.com/powershell/module/az.storagemover/new-azstoragemoverendpoint
3838
#>
3939
function New-AzStorageMoverNfsEndpoint {
40-
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint])]
40+
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint])]
4141
[CmdletBinding(DefaultParameterSetName = 'CreateExpanded', PositionalBinding =$false, SupportsShouldProcess, ConfirmImpact = 'Medium')]
4242
param(
4343
[Parameter(ParameterSetName='CreateExpanded', Mandatory)]
@@ -137,7 +137,7 @@ function New-AzStorageMoverNfsEndpoint {
137137
)
138138

139139
process {
140-
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.NfsMountEndpointProperties]::New()
140+
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.NfsMountEndpointProperties]::New()
141141
if ($PSBoundParameters.ContainsKey('Host')) {
142142
$Properties.Host = $Host
143143
$null = $PSBoundParameters.Remove("Host")

src/StorageMover/custom/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ These provide functionality to our HTTP pipeline and other useful features. In s
3232
### Attributes
3333
For processing the cmdlets, we've created some additional attributes:
3434
- `Microsoft.Azure.PowerShell.Cmdlets.StorageMover.DescriptionAttribute`
35-
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
35+
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
3636
- `Microsoft.Azure.PowerShell.Cmdlets.StorageMover.DoNotExportAttribute`
3737
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.StorageMover`.
3838
- `Microsoft.Azure.PowerShell.Cmdlets.StorageMover.InternalExportAttribute`

src/StorageMover/custom/UpdateAzStorageMoverAzStorageContainerEndpoint.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ Properties not specified in the request body will be unchanged.
2525
Update-AzStorageMoverAzStorageContainerEndpoint -Name myEndpointName -ResourceGroupName myResourceGroupName -StorageMoverName myStorageMover -Description "Update Description"
2626
2727
.Inputs
28-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpointBaseUpdateParameters
28+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpointBaseUpdateParameters
2929
.Inputs
3030
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
3131
.Outputs
32-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
32+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
3333
.Notes
3434
COMPLEX PARAMETER PROPERTIES
3535
@@ -54,7 +54,7 @@ INPUTOBJECT<IStorageMoverIdentity>: Identity Parameter
5454
https://learn.microsoft.com/powershell/module/az.storagemover/update-azstoragemoverendpoint
5555
#>
5656
function Update-AzStorageMoverAzStorageContainerEndpoint {
57-
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint])]
57+
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint])]
5858
[CmdletBinding(DefaultParameterSetName = 'UpdateExpanded', PositionalBinding =$false, SupportsShouldProcess, ConfirmImpact = 'Medium')]
5959
param(
6060
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
@@ -146,7 +146,7 @@ function Update-AzStorageMoverAzStorageContainerEndpoint {
146146
)
147147

148148
process {
149-
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.AzureStorageBlobContainerEndpointUpdateProperties]::New()
149+
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.AzureStorageBlobContainerEndpointUpdateProperties]::New()
150150

151151
if ($PSBoundParameters.ContainsKey('Description')) {
152152
$Properties.Description = $Description

src/StorageMover/custom/UpdateAzStorageMoverNfsEndpoint.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ Properties not specified in the request body will be unchanged.
2525
Update-AzStorageMoverNfsEndpoint -Name myEndpointName -ResourceGroupName myResourceGroupName -StorageMoverName myStorageMover -Description "Update Description"
2626
2727
.Inputs
28-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpointBaseUpdateParameters
28+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpointBaseUpdateParameters
2929
.Inputs
3030
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
3131
.Outputs
32-
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
32+
Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
3333
.Notes
3434
COMPLEX PARAMETER PROPERTIES
3535
@@ -54,7 +54,7 @@ INPUTOBJECT<IStorageMoverIdentity>: Identity Parameter
5454
https://learn.microsoft.com/powershell/module/az.storagemover/update-azstoragemoverendpoint
5555
#>
5656
function Update-AzStorageMoverNfsEndpoint {
57-
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint])]
57+
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint])]
5858
[CmdletBinding(DefaultParameterSetName = 'UpdateExpanded', PositionalBinding =$false, SupportsShouldProcess, ConfirmImpact = 'Medium')]
5959
param(
6060
[Parameter(ParameterSetName='UpdateExpanded', Mandatory)]
@@ -146,7 +146,7 @@ function Update-AzStorageMoverNfsEndpoint {
146146
)
147147

148148
process {
149-
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.NfsMountEndpointUpdateProperties]::New()
149+
$Properties = [Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.NfsMountEndpointUpdateProperties]::New()
150150

151151
if ($PSBoundParameters.ContainsKey('Description')) {
152152
$Properties.Description = $Description

src/StorageMover/docs/Get-AzStorageMover.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
222222
223223
## OUTPUTS
224224
225-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IStorageMover
225+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IStorageMover
226226
227227
## NOTES
228228

src/StorageMover/docs/Get-AzStorageMoverAgent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
201201
202202
## OUTPUTS
203203
204-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IAgent
204+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IAgent
205205
206206
## NOTES
207207

src/StorageMover/docs/Get-AzStorageMoverEndpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
204204
205205
## OUTPUTS
206206
207-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
207+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
208208
209209
## NOTES
210210

src/StorageMover/docs/Get-AzStorageMoverJobDefinition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
219219
220220
## OUTPUTS
221221
222-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IJobDefinition
222+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IJobDefinition
223223
224224
## NOTES
225225

src/StorageMover/docs/Get-AzStorageMoverJobRun.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
196196
197197
## OUTPUTS
198198
199-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IJobRun
199+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IJobRun
200200
201201
## NOTES
202202

src/StorageMover/docs/Get-AzStorageMoverProject.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
192192
193193
## OUTPUTS
194194
195-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IProject
195+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IProject
196196
197197
## NOTES
198198

src/StorageMover/docs/New-AzStorageMover.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ The Storage Mover resource, which is a container for a group of Agents, Projects
138138
To construct, see NOTES section for STORAGEMOVER properties and create a hash table.
139139
140140
```yaml
141-
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IStorageMover
141+
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IStorageMover
142142
Parameter Sets: Create
143143
Aliases:
144144

@@ -215,11 +215,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
215215
216216
## INPUTS
217217
218-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IStorageMover
218+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IStorageMover
219219
220220
## OUTPUTS
221221
222-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IStorageMover
222+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IStorageMover
223223
224224
## NOTES
225225

src/StorageMover/docs/New-AzStorageMoverAzStorageContainerEndpoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,13 +208,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
208208
209209
## INPUTS
210210
211-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
211+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
212212
213213
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
214214
215215
## OUTPUTS
216216
217-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
217+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
218218
219219
## NOTES
220220

src/StorageMover/docs/New-AzStorageMoverJobDefinition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ The Job Definition resource.
133133
To construct, see NOTES section for JOBDEFINITION properties and create a hash table.
134134
135135
```yaml
136-
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IJobDefinition
136+
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IJobDefinition
137137
Parameter Sets: Create
138138
Aliases:
139139

@@ -316,11 +316,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
316316
317317
## INPUTS
318318
319-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IJobDefinition
319+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IJobDefinition
320320
321321
## OUTPUTS
322322
323-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IJobDefinition
323+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IJobDefinition
324324
325325
## NOTES
326326

src/StorageMover/docs/New-AzStorageMoverNfsEndpoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
222222
223223
## INPUTS
224224
225-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
225+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
226226
227227
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
228228
229229
## OUTPUTS
230230
231-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
231+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
232232
233233
## NOTES
234234

src/StorageMover/docs/New-AzStorageMoverProject.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The Project resource.
105105
To construct, see NOTES section for PROJECT properties and create a hash table.
106106
107107
```yaml
108-
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IProject
108+
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IProject
109109
Parameter Sets: Create
110110
Aliases:
111111

@@ -198,11 +198,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
198198
199199
## INPUTS
200200
201-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IProject
201+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IProject
202202
203203
## OUTPUTS
204204
205-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IProject
205+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IProject
206206
207207
## NOTES
208208

src/StorageMover/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ This directory contains the documentation of the cmdlets for the `Az.StorageMove
88
- Packaged: yes
99

1010
## Details
11-
The process of documentation generation loads `Az.StorageMover` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder.
11+
The process of documentation generation loads `Az.StorageMover` and analyzes the exported cmdlets from the module. It recognizes the [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) that are generated into the scripts in the `..\exports` folder. Additionally, when writing custom cmdlets in the `..\custom` folder, you can use the help comments syntax, which decorate the exported scripts at build-time. The documentation examples are taken from the `..\examples` folder.

src/StorageMover/docs/Update-AzStorageMover.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ The Storage Mover resource.
152152
To construct, see NOTES section for STORAGEMOVER properties and create a hash table.
153153
154154
```yaml
155-
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IStorageMoverUpdateParameters
155+
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IStorageMoverUpdateParameters
156156
Parameter Sets: Update, UpdateViaIdentity
157157
Aliases:
158158

@@ -229,13 +229,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
229229
230230
## INPUTS
231231
232-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IStorageMoverUpdateParameters
232+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IStorageMoverUpdateParameters
233233
234234
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
235235
236236
## OUTPUTS
237237
238-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IStorageMover
238+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IStorageMover
239239
240240
## NOTES
241241

src/StorageMover/docs/Update-AzStorageMoverAgent.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The Agent resource.
8282
To construct, see NOTES section for AGENT properties and create a hash table.
8383

8484
```yaml
85-
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IAgentUpdateParameters
85+
Type: Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IAgentUpdateParameters
8686
Parameter Sets: Update, UpdateViaIdentity
8787
Aliases:
8888

@@ -236,13 +236,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
236236
237237
## INPUTS
238238
239-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IAgentUpdateParameters
239+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IAgentUpdateParameters
240240
241241
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.IStorageMoverIdentity
242242
243243
## OUTPUTS
244244
245-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IAgent
245+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IAgent
246246
247247
## NOTES
248248

src/StorageMover/docs/Update-AzStorageMoverAzStorageContainerEndpoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
207207
208208
## OUTPUTS
209209
210-
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20220701Preview.IEndpoint
210+
### Microsoft.Azure.PowerShell.Cmdlets.StorageMover.Models.Api20230301.IEndpoint
211211
212212
## NOTES
213213

0 commit comments

Comments
 (0)