Skip to content

Commit ecd669e

Browse files
authored
Merge pull request MicrosoftDocs#346 from Azure/anne052617
Authored files in AzureRM.Storage v1.0.4.3 module and AzureRM.Tags v1…
2 parents d8b469d + 4d829a8 commit ecd669e

14 files changed

+461
-160
lines changed

azureps-cmdlets-docs/ResourceManager/AzureRM.Storage/v1.0.4.3/AzureRM.Storage.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,33 +8,32 @@ Locale: en-US
88

99
# AzureRM.Storage Module
1010
## Description
11-
{{Manually Enter Description Here}}
11+
This module contains cmdlets that manage Azure storage accounts.
1212

1313
## AzureRM.Storage Cmdlets
1414
### [Get-AzureRmStorageAccount](Get-AzureRmStorageAccount.md)
15-
{{Fill in the Synopsis}}
15+
Gets a storage account.
1616

1717
### [Get-AzureRmStorageAccountKey](Get-AzureRmStorageAccountKey.md)
18-
{{Fill in the Synopsis}}
18+
Gets the access keys for an Azure storage account.
1919

2020
### [Get-AzureRmStorageAccountNameAvailability](Get-AzureRmStorageAccountNameAvailability.md)
21-
{{Fill in the Synopsis}}
21+
Checks the availability of a name for an Azure storage account.
2222

2323
### [Get-AzureRmStorageUsage](Get-AzureRmStorageUsage.md)
24-
{{Fill in the Synopsis}}
24+
Gets the storage resource usage for the current subscription.
2525

2626
### [New-AzureRmStorageAccount](New-AzureRmStorageAccount.md)
27-
{{Fill in the Synopsis}}
27+
Creates an Azure storage account.
2828

2929
### [New-AzureRmStorageAccountKey](New-AzureRmStorageAccountKey.md)
30-
{{Fill in the Synopsis}}
30+
Regenerates a storage key for an Azure storage Account.
3131

3232
### [Remove-AzureRmStorageAccount](Remove-AzureRmStorageAccount.md)
33-
{{Fill in the Synopsis}}
33+
Removes a storage account from Azure.
3434

3535
### [Set-AzureRmCurrentStorageAccount](Set-AzureRmCurrentStorageAccount.md)
36-
{{Fill in the Synopsis}}
36+
Sets the specified storage account as the current storage account.
3737

3838
### [Set-AzureRmStorageAccount](Set-AzureRmStorageAccount.md)
39-
{{Fill in the Synopsis}}
40-
39+
Updates the properties of a storage account.

azureps-cmdlets-docs/ResourceManager/AzureRM.Storage/v1.0.4.3/Get-AzureRmStorageAccount.md

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
external help file: Microsoft.Azure.Commands.Management.Storage.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

77
# Get-AzureRmStorageAccount
88

99
## SYNOPSIS
10-
{{Fill in the Synopsis}}
10+
Gets a storage account.
1111

1212
## SYNTAX
1313

@@ -16,21 +16,35 @@ Get-AzureRmStorageAccount [[-ResourceGroupName] <String>] [[-Name] <String>] [<C
1616
```
1717

1818
## DESCRIPTION
19-
{{Fill in the Description}}
19+
The **Get-AzureRmStorageAccount** cmdlet gets a specified storage account or all storage accounts within a resource group or the subscription.
2020

2121
## EXAMPLES
2222

23-
### Example 1
23+
### Example 1: Get a specified storage account
2424
```
25-
PS C:\> {{ Add example code here }}
25+
PS C:\> Get-AzureRmStorageAccount -ResourceGroupName "rg1" -Name "mystorageaccount"
2626
```
2727

28-
{{ Add example description here }}
28+
This command gets the storage account named "mystorageaccount" in the "rg1" resource group.
29+
30+
### Example 2: Get all storage accounts in a resource group
31+
```
32+
PS C:\> Get-AzureRmStorageAccount -ResourceGroupName "rg1"
33+
```
34+
35+
This command gets all storage accounts in the "rg1" resource group.
36+
37+
### Example 3: Get all storage accounts in the subscription
38+
```
39+
PS C:\> Get-AzureRmStorageAccount
40+
```
41+
42+
This command gets all storage accounts in the subscription.
2943

3044
## PARAMETERS
3145

3246
### -Name
33-
Storage Account StorageAccountName.
47+
Specifies the name of the storage account to get.
3448

3549
```yaml
3650
Type: String
@@ -45,12 +59,12 @@ Accept wildcard characters: False
4559
```
4660
4761
### -ResourceGroupName
48-
Resource Group StorageAccountName.
62+
Specifies the name of the resource group that contains the storage account to get.
4963
5064
```yaml
5165
Type: String
5266
Parameter Sets: (All)
53-
Aliases:
67+
Aliases:
5468

5569
Required: False
5670
Position: 0
@@ -74,3 +88,8 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
7488
7589
## RELATED LINKS
7690
91+
[New-AzureRmStorageAccount](./New-AzureRmStorageAccount.md)
92+
93+
[Remove-AzureRmStorageAccount](./Remove-AzureRmStorageAccount.md)
94+
95+
[Set-AzureRmStorageAccount](./Set-AzureRmStorageAccount.md)

azureps-cmdlets-docs/ResourceManager/AzureRM.Storage/v1.0.4.3/Get-AzureRmStorageAccountKey.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
external help file: Microsoft.Azure.Commands.Management.Storage.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

77
# Get-AzureRmStorageAccountKey
88

99
## SYNOPSIS
10-
{{Fill in the Synopsis}}
10+
Gets the access keys for an Azure Storage account.
1111

1212
## SYNTAX
1313

@@ -16,21 +16,28 @@ Get-AzureRmStorageAccountKey [-ResourceGroupName] <String> [-Name] <String> [<Co
1616
```
1717

1818
## DESCRIPTION
19-
{{Fill in the Description}}
19+
The **Get-AzureRmStorageAccountKey** cmdlet gets the access keys for an Azure storage account.
2020

2121
## EXAMPLES
2222

23-
### Example 1
23+
### Example 1: Get all access keys for a storage account
2424
```
25-
PS C:\> {{ Add example code here }}
25+
PS C:\> Get-AzureRmStorageAccountKey -ResourceGroupName "RG01" -Name "MyStorageAccount"
2626
```
2727

28-
{{ Add example description here }}
28+
This command gets all access keys for the storage account named "MyStorageAccount" in the "RG01" resource group.
29+
30+
### Example 2: Get a specific access key for a storage account
31+
```
32+
PS C:\> (Get-AzureRmStorageAccountKey -ResourceGroupName "RG01" -Name "MyStorageAccount").Key1
33+
```
34+
35+
This command gets a specific access key for the storage account named "MyStorageAccount" in the "RG01" resource group.
2936

3037
## PARAMETERS
3138

3239
### -Name
33-
Storage Account StorageAccountName.
40+
Specifies the name of the storage account for which this cmdlet gets keys.
3441

3542
```yaml
3643
Type: String
@@ -45,12 +52,12 @@ Accept wildcard characters: False
4552
```
4653
4754
### -ResourceGroupName
48-
Resource Group StorageAccountName.
55+
Specifies the name of the resource group that contains the storage account.
4956
5057
```yaml
5158
Type: String
5259
Parameter Sets: (All)
53-
Aliases:
60+
Aliases:
5461

5562
Required: True
5663
Position: 0
@@ -74,3 +81,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
7481
7582
## RELATED LINKS
7683
84+
[New-AzureRmStorageAccountKey](./New-AzureRmStorageAccountKey.md)

azureps-cmdlets-docs/ResourceManager/AzureRM.Storage/v1.0.4.3/Get-AzureRmStorageAccountNameAvailability.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
external help file: Microsoft.Azure.Commands.Management.Storage.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

77
# Get-AzureRmStorageAccountNameAvailability
88

99
## SYNOPSIS
10-
{{Fill in the Synopsis}}
10+
Checks whether a name is valid and available to use for an Azure storage account.
1111

1212
## SYNTAX
1313

@@ -16,21 +16,21 @@ Get-AzureRmStorageAccountNameAvailability [-Name] <String> [<CommonParameters>]
1616
```
1717

1818
## DESCRIPTION
19-
{{Fill in the Description}}
19+
The **Get-AzureRmStorageAccountNameAvailability** cmdlet checks whether a name is valid and available to use for an Azure storage account.
2020

2121
## EXAMPLES
2222

23-
### Example 1
23+
### Example 1: Check the availability of a storage account name
2424
```
25-
PS C:\> {{ Add example code here }}
25+
PS C:\> Get-AzureRmStorageAccountNameAvailability -Name "ContosoStorage03"
2626
```
2727

28-
{{ Add example description here }}
28+
This command checks the availability of the name "ContosoStorage03" for an Azure storage account.
2929

3030
## PARAMETERS
3131

3232
### -Name
33-
Storage Account Name.
33+
Specifies the name that this cmdlet checks.
3434

3535
```yaml
3636
Type: String
@@ -59,3 +59,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
5959
6060
## RELATED LINKS
6161
62+
[Azure Storage Manager Cmdlets](./AzureRM.Storage.md)

azureps-cmdlets-docs/ResourceManager/AzureRM.Storage/v1.0.4.3/Get-AzureRmStorageUsage.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
external help file: Microsoft.Azure.Commands.Management.Storage.dll-Help.xml
3-
online version:
3+
online version:
44
schema: 2.0.0
55
---
66

77
# Get-AzureRmStorageUsage
88

99
## SYNOPSIS
10-
{{Fill in the Synopsis}}
10+
Gets the storage resource usage for the current subscription.
1111

1212
## SYNTAX
1313

@@ -16,16 +16,16 @@ Get-AzureRmStorageUsage [<CommonParameters>]
1616
```
1717

1818
## DESCRIPTION
19-
{{Fill in the Description}}
19+
The **Get-AzureRmStorageUsage** cmdlet gets the storage resource usage for the current subscription.
2020

2121
## EXAMPLES
2222

23-
### Example 1
23+
### Example 1: Get the storage resource usage
2424
```
25-
PS C:\> {{ Add example code here }}
25+
PS C:\> Get-AzureRmStorageUsage -InformationAction Ignore
2626
```
2727

28-
{{ Add example description here }}
28+
This command gets the storage resource usage of the current subscription, ignoring an information event.
2929

3030
## PARAMETERS
3131

@@ -44,3 +44,4 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
4444

4545
## RELATED LINKS
4646

47+
[Azure Storage Manager Cmdlets](./AzureRM.Storage.md)

0 commit comments

Comments
 (0)