Skip to content

Commit 563a918

Browse files
authored
{AzureDataShare} fixes #20822 fix the description (#20840)
* {AzureDataShare} fixes #20822 fix the description fixes #20822 fix the description The StorageAccountResourceId parameter in the "New-AzDataShareDataSetMapping" PowerShell cmdlet is used to specify the resource ID of the Azure storage account that is the source of the data being shared. This parameter is required when creating a new data set mapping for an Azure Data Share and is used to identify the storage account from which the data will be shared. The resource ID of the storage account can be obtained from the Azure portal or through Azure PowerShell. The AccountName parameter in the "New-AzDataShareDataSetMapping" PowerShell cmdlet is used to specify the name of the Azure storage account that is the source of the data being shared. This parameter is required when creating a new data set mapping for an Azure Data Share and is used to identify the storage account from which the data will be shared. The account name of the storage account must be unique within Azure and can be used to access the storage account and the data stored within it. The ResourceGroup parameter in the "New-AzDataShareDataSetMapping" PowerShell cmdlet is used to specify the name of the Azure resource group that contains the Azure storage account being shared. This parameter is required when creating a new data set mapping for an Azure Data Share and is used to identify the resource group that holds the storage account from which the data will be shared. The resource group can be used to manage the resources within it, such as the storage account and the data set mapping. * Update NewAzDataShareDataSetMapping.cs * Update NewAzDataShareDataSetMapping.cs * Update GetAzDataShareDataSetMapping.cs * Update RemoveAzDataShareDataSetMapping.cs * Update Get-AzDataShareDataSetMapping.md * Update Remove-AzDataShareDataSetMapping.md
1 parent 27b6922 commit 563a918

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

src/DataShare/DataShare/DataSetMapping/GetAzDataShareDataSetMapping.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class GetAzDataShareDataSetMapping : AzureDataShareCmdletBase
5353
/// </summary>
5454
[Parameter(
5555
Mandatory = true,
56-
HelpMessage = "Azure data share account name.",
56+
HelpMessage = "The name of the Azure storage account that is the source of the data being shared.",
5757
ParameterSetName = ParameterSetNames.FieldsParameterSet)]
5858
[ValidateNotNullOrEmpty]
5959
[ResourceNameCompleter(ResourceTypes.Account, "ResourceGroupName")]

src/DataShare/DataShare/DataSetMapping/NewAzDataShareDataSetMapping.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class NewAzDataShareDataSetMapping : AzureDataShareCmdletBase
5959
ParameterSetName = ParameterSetNames.BlobDataSetParameterSet)]
6060
[Parameter(
6161
Mandatory = true,
62-
HelpMessage = "Azure data share account name",
62+
HelpMessage = "The name of the Azure storage account that is the source of the data being shared.",
6363
ParameterSetName = ParameterSetNames.AdlsGen2DataSetParameterSet)]
6464
[ResourceNameCompleter(ResourceTypes.Account, "ResourceGroupName")]
6565
public string AccountName { get; set; }
@@ -104,7 +104,7 @@ public class NewAzDataShareDataSetMapping : AzureDataShareCmdletBase
104104
[Parameter(
105105
Mandatory = true,
106106
ValueFromPipelineByPropertyName = true,
107-
HelpMessage = "Azure Storage Account ResourceId",
107+
HelpMessage = "Azure Storage Account ResourceId that is the source of the data being shared.",
108108
ParameterSetName = ParameterSetNames.AdlsGen2DataSetParameterSet)]
109109
[ValidateNotNullOrEmpty]
110110
[ResourceIdCompleter(ResourceTypes.StorageAccount)]

src/DataShare/DataShare/DataSetMapping/RemoveAzDataShareDataSetMapping.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class RemoveAzDataShareDataSetMapping : AzureDataShareCmdletBase
5353
[Parameter(
5454
Mandatory = true,
5555
ParameterSetName = ParameterSetNames.FieldsParameterSet,
56-
HelpMessage = "Azure data share account name")]
56+
HelpMessage = "The name of the Azure storage account that is the source of the data being shared.")]
5757
[ValidateNotNullOrEmpty]
5858
[ResourceNameCompleter(ResourceTypes.Account, "ResourceGroupName")]
5959
public string AccountName { get; set; }
@@ -152,4 +152,4 @@ public override void ExecuteCmdlet()
152152
}
153153
}
154154
}
155-
}
155+
}

src/DataShare/DataShare/help/Get-AzDataShareDataSetMapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Type : Microsoft.DataShare/DataSetMappings
5252
## PARAMETERS
5353

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

5757
```yaml
5858
Type: System.String

src/DataShare/DataShare/help/New-AzDataShareDataSetMapping.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ This command creates a data set mapping AdsDataSetMapping to storage account Ads
6060
## PARAMETERS
6161

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

6565
```yaml
6666
Type: System.String
@@ -210,7 +210,7 @@ Accept wildcard characters: False
210210
```
211211
212212
### -StorageAccountResourceId
213-
Azure Storage Account ResourceId
213+
Azure Storage Account ResourceId that is the source of the data being shared.
214214
215215
```yaml
216216
Type: System.String

src/DataShare/DataShare/help/Remove-AzDataShareDataSetMapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This commands removes the dataset named DSM from sharesubscription WikiAds.
5151
## PARAMETERS
5252

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

5656
```yaml
5757
Type: System.String

0 commit comments

Comments
 (0)