Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/StorageMover/StorageMover.Autorest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
This directory contains the PowerShell module for the StorageMover service.

---

## Info
- Modifiable: yes
- Generated: all
Expand Down
12 changes: 6 additions & 6 deletions src/StorageMover/StorageMover/Az.StorageMover.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 12/27/2023
# Generated on: 3/17/2024
#

@{
Expand Down Expand Up @@ -51,16 +51,16 @@ DotNetFrameworkVersion = '4.7.2'
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.15.0'; })
RequiredModules = @(@{ModuleName = 'Az.Accounts'; ModuleVersion = '2.16.0'; })

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = 'StorageMover.Autorest/bin/Az.StorageMover.private.dll'

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

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()
TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = 'StorageMover.Autorest/Az.StorageMover.format.ps1xml'
Expand Down Expand Up @@ -113,7 +113,7 @@ PrivateData = @{
PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = 'Azure','ResourceManager','ARM','PSModule','StorageMover'
Tags = 'Azure', 'ResourceManager', 'ARM', 'PSModule', 'StorageMover'

# A URL to the license for this module.
LicenseUri = 'https://aka.ms/azps-license'
Expand All @@ -138,7 +138,7 @@ PrivateData = @{

} # End of PSData hashtable

} # End of PrivateData hashtable
} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''
Expand Down
14 changes: 7 additions & 7 deletions src/StorageMover/StorageMover/help/Az.StorageMover.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ Gets a Project resource.
### [New-AzStorageMover](New-AzStorageMover.md)
Creates or updates a top-level Storage Mover resource.

### [New-AzStorageMoverAzSmbFileShareEndpoint](New-AzStorageMoverAzSmbFileShareEndpoint.md)
Creates a Smb file share endpoint resource, which represents a data transfer source or destination.

### [New-AzStorageMoverAzStorageContainerEndpoint](New-AzStorageMoverAzStorageContainerEndpoint.md)
Creates an AzStorageContainer endpoint resource, which represents a data transfer source or destination.

Expand All @@ -47,9 +50,6 @@ Creates or updates a Project resource, which is a logical grouping of related jo
### [New-AzStorageMoverSmbEndpoint](New-AzStorageMoverSmbEndpoint.md)
Creates an SMB endpoint resource, which represents a data transfer source or destination.

### [New-AzStorageMoverSmbFileShareEndpoint](New-AzStorageMoverSmbFileShareEndpoint.md)
Creates a Smb file share endpoint resource, which represents a data transfer source or destination.

### [Remove-AzStorageMover](Remove-AzStorageMover.md)
Deletes a Storage Mover resource.

Expand Down Expand Up @@ -78,6 +78,10 @@ Properties not specified in the request body will be unchanged.
### [Update-AzStorageMoverAgent](Update-AzStorageMoverAgent.md)
Creates or updates an Agent resource.

### [Update-AzStorageMoverAzSmbFileShareEndpoint](Update-AzStorageMoverAzSmbFileShareEndpoint.md)
Updates properties for a SMB file share endpoint resource.
Properties not specified in the request body will be unchanged.

### [Update-AzStorageMoverAzStorageContainerEndpoint](Update-AzStorageMoverAzStorageContainerEndpoint.md)
Updates properties for an AzStorageContainer endpoint resource.
Properties not specified in the request body will be unchanged.
Expand All @@ -98,7 +102,3 @@ Properties not specified in the request body will be unchanged.
Updates properties for a SMB endpoint resource.
Properties not specified in the request body will be unchanged.

### [Update-AzStorageMoverSmbFileShareEndpoint](Update-AzStorageMoverSmbFileShareEndpoint.md)
Updates properties for a SMB file share endpoint resource.
Properties not specified in the request body will be unchanged.

25 changes: 21 additions & 4 deletions src/StorageMover/StorageMover/help/Get-AzStorageMover.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,26 @@ Gets a Storage Mover resource.

### List (Default)
```
Get-AzStorageMover [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
Get-AzStorageMover [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### Get
```
Get-AzStorageMover -Name <String> -ResourceGroupName <String> [-SubscriptionId <String[]>]
[-DefaultProfile <PSObject>] [<CommonParameters>]
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### List1
```
Get-AzStorageMover -ResourceGroupName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
[<CommonParameters>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### GetViaIdentity
```
Get-AzStorageMover -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>] [<CommonParameters>]
Get-AzStorageMover -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -183,6 +185,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ProgressAction
{{ Fill ProgressAction Description }}

```yaml
Type: System.Management.Automation.ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ResourceGroupName
The name of the resource group.
The name is case insensitive.
Expand Down
23 changes: 20 additions & 3 deletions src/StorageMover/StorageMover/help/Get-AzStorageMoverAgent.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,20 @@ Gets an Agent resource.
### List (Default)
```
Get-AzStorageMoverAgent -ResourceGroupName <String> -StorageMoverName <String> [-SubscriptionId <String[]>]
[-DefaultProfile <PSObject>] [<CommonParameters>]
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### Get
```
Get-AzStorageMoverAgent -Name <String> -ResourceGroupName <String> -StorageMoverName <String>
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
```

### GetViaIdentity
```
Get-AzStorageMoverAgent -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>] [<CommonParameters>]
Get-AzStorageMoverAgent -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -147,6 +149,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ProgressAction
{{ Fill ProgressAction Description }}

```yaml
Type: System.Management.Automation.ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ResourceGroupName
The name of the resource group.
The name is case insensitive.
Expand Down
22 changes: 19 additions & 3 deletions src/StorageMover/StorageMover/help/Get-AzStorageMoverEndpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,20 @@ Gets an Endpoint resource.
### List (Default)
```
Get-AzStorageMoverEndpoint -ResourceGroupName <String> -StorageMoverName <String> [-SubscriptionId <String[]>]
[-DefaultProfile <PSObject>] [<CommonParameters>]
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### Get
```
Get-AzStorageMoverEndpoint -Name <String> -ResourceGroupName <String> -StorageMoverName <String>
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
```

### GetViaIdentity
```
Get-AzStorageMoverEndpoint -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>]
[<CommonParameters>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -150,6 +151,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ProgressAction
{{ Fill ProgressAction Description }}

```yaml
Type: System.Management.Automation.ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ResourceGroupName
The name of the resource group.
The name is case insensitive.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,21 @@ Gets a Job Definition resource.
### List (Default)
```
Get-AzStorageMoverJobDefinition -ProjectName <String> -ResourceGroupName <String> -StorageMoverName <String>
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
```

### Get
```
Get-AzStorageMoverJobDefinition -Name <String> -ProjectName <String> -ResourceGroupName <String>
-StorageMoverName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
-StorageMoverName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### GetViaIdentity
```
Get-AzStorageMoverJobDefinition -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>]
[<CommonParameters>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -150,6 +152,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ProgressAction
{{ Fill ProgressAction Description }}

```yaml
Type: System.Management.Automation.ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ProjectName
The name of the Project resource.

Expand Down
23 changes: 20 additions & 3 deletions src/StorageMover/StorageMover/help/Get-AzStorageMoverJobRun.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,21 @@ Gets a Job Run resource.
### List (Default)
```
Get-AzStorageMoverJobRun -JobDefinitionName <String> -ProjectName <String> -ResourceGroupName <String>
-StorageMoverName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
-StorageMoverName <String> [-SubscriptionId <String[]>] [-DefaultProfile <PSObject>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### Get
```
Get-AzStorageMoverJobRun -JobDefinitionName <String> -Name <String> -ProjectName <String>
-ResourceGroupName <String> -StorageMoverName <String> [-SubscriptionId <String[]>]
[-DefaultProfile <PSObject>] [<CommonParameters>]
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### GetViaIdentity
```
Get-AzStorageMoverJobRun -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>] [<CommonParameters>]
Get-AzStorageMoverJobRun -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -205,6 +207,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ProgressAction
{{ Fill ProgressAction Description }}

```yaml
Type: System.Management.Automation.ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ProjectName
The name of the Project resource.

Expand Down
22 changes: 19 additions & 3 deletions src/StorageMover/StorageMover/help/Get-AzStorageMoverProject.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,20 @@ Gets a Project resource.
### List (Default)
```
Get-AzStorageMoverProject -ResourceGroupName <String> -StorageMoverName <String> [-SubscriptionId <String[]>]
[-DefaultProfile <PSObject>] [<CommonParameters>]
[-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

### Get
```
Get-AzStorageMoverProject -Name <String> -ResourceGroupName <String> -StorageMoverName <String>
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [<CommonParameters>]
[-SubscriptionId <String[]>] [-DefaultProfile <PSObject>] [-ProgressAction <ActionPreference>]
[<CommonParameters>]
```

### GetViaIdentity
```
Get-AzStorageMoverProject -InputObject <IStorageMoverIdentity> [-DefaultProfile <PSObject>]
[<CommonParameters>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -138,6 +139,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ProgressAction
{{ Fill ProgressAction Description }}

```yaml
Type: System.Management.Automation.ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ResourceGroupName
The name of the resource group.
The name is case insensitive.
Expand Down
Loading