Skip to content

{AzureDataShare} fixes Azure/azure-powershell#20822 fix the description #20840

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Feb 6, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class GetAzDataShareDataSetMapping : AzureDataShareCmdletBase
/// </summary>
[Parameter(
Mandatory = true,
HelpMessage = "Azure data share account name.",
HelpMessage = "The name of the Azure storage account that is the source of the data being shared.",
ParameterSetName = ParameterSetNames.FieldsParameterSet)]
[ValidateNotNullOrEmpty]
[ResourceNameCompleter(ResourceTypes.Account, "ResourceGroupName")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class NewAzDataShareDataSetMapping : AzureDataShareCmdletBase
ParameterSetName = ParameterSetNames.BlobDataSetParameterSet)]
[Parameter(
Mandatory = true,
HelpMessage = "Azure data share account name",
HelpMessage = "The name of the Azure storage account that is the source of the data being shared.",
ParameterSetName = ParameterSetNames.AdlsGen2DataSetParameterSet)]
[ResourceNameCompleter(ResourceTypes.Account, "ResourceGroupName")]
public string AccountName { get; set; }
Expand Down Expand Up @@ -104,7 +104,7 @@ public class NewAzDataShareDataSetMapping : AzureDataShareCmdletBase
[Parameter(
Mandatory = true,
ValueFromPipelineByPropertyName = true,
HelpMessage = "Azure Storage Account ResourceId",
HelpMessage = "Azure Storage Account ResourceId that is the source of the data being shared.",
ParameterSetName = ParameterSetNames.AdlsGen2DataSetParameterSet)]
[ValidateNotNullOrEmpty]
[ResourceIdCompleter(ResourceTypes.StorageAccount)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class RemoveAzDataShareDataSetMapping : AzureDataShareCmdletBase
[Parameter(
Mandatory = true,
ParameterSetName = ParameterSetNames.FieldsParameterSet,
HelpMessage = "Azure data share account name")]
HelpMessage = "The name of the Azure storage account that is the source of the data being shared.")]
[ValidateNotNullOrEmpty]
[ResourceNameCompleter(ResourceTypes.Account, "ResourceGroupName")]
public string AccountName { get; set; }
Expand Down Expand Up @@ -152,4 +152,4 @@ public override void ExecuteCmdlet()
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Type : Microsoft.DataShare/DataSetMappings
## PARAMETERS

### -AccountName
Azure data share account name.
The name of the Azure storage account that is the source of the data being shared.

```yaml
Type: System.String
Expand Down
4 changes: 2 additions & 2 deletions src/DataShare/DataShare/help/New-AzDataShareDataSetMapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ This command creates a data set mapping AdsDataSetMapping to storage account Ads
## PARAMETERS

### -AccountName
Azure data share account name
The name of the Azure storage account that is the source of the data being shared.

```yaml
Type: System.String
Expand Down Expand Up @@ -210,7 +210,7 @@ Accept wildcard characters: False
```

### -StorageAccountResourceId
Azure Storage Account ResourceId
Azure Storage Account ResourceId that is the source of the data being shared.

```yaml
Type: System.String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ This commands removes the dataset named DSM from sharesubscription WikiAds.
## PARAMETERS

### -AccountName
Azure data share account name
The name of the Azure storage account that is the source of the data being shared.

```yaml
Type: System.String
Expand Down