Get-AzureStorSimpleStorageAccountCredential
Gets credentials for storage accounts.
Note
The cmdlets referenced in this documentation are for managing legacy Azure resources that use Azure Service Manager (ASM) APIs. This legacy PowerShell module isn't recommended when creating new resources since ASM is scheduled for retirement. For more information, see Azure Service Manager retirement.
The Az PowerShell module is the recommended PowerShell module for managing Azure Resource Manager (ARM) resources with PowerShell.
Syntax
Get-AzureStorSimpleStorageAccountCredential
[-StorageAccountName <String>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
The Get-AzureStorSimpleStorageAccountCredential cmdlet gets credentials for storage accounts. This cmdlet gets all StorageAccountCredential objects configured in the service or a named StorageAccountCredential.
Examples
Example 1: Get all credentials for a resource
PS C:\>Get-AzureStorSimpleStorageAccountCredential
InstanceId Login Name UseSSL VolumeCount CloudType Location
---------- ----- ---- ------ ----------- --------- --------
b5e0857f-82ef-4426-883b-a612889ebee4 qwertyuiopa AdminAccount True 24 Azure
This command gets all available credentials for storage accounts for the current resource.
Example 2: Get the credential for a specific storage account
PS C:\>Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoCloudStorage"
VERBOSE: ClientRequestId: 16551af6-3398-4d30-a389-1b8eb01ce92c_PS
VERBOSE: ClientRequestId: 5041277d-4044-4b6c-ae19-4ea9e7ae135a_PS
VERBOSE: Storage Access Credential with name ContosoCloudStorage found!
CloudType : Azure
Hostname : blob.core.windows.net
InstanceId : 8b3cb7bb-963b-4173-9598-52fe230b0350
IsDefault : False
Location : West US
Login : ContosoCloudStorage
Name : ContosoCloudStorage
OperationInProgress : None
Password :
PasswordEncryptionCertThumbprint :
UseSSL : True
VolumeCount : 0
This command gets the storage account credential for the storage account named ContosoCloudStorage.
Parameters
-Profile
Specifies an Azure profile.
Type: | AzureSMProfile |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-StorageAccountName
Specifies the name of the storage account for which to get credentials.
Type: | String |
Aliases: | Name |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
None
Outputs
StorageAccountCredential, IList\<StorageAccountCredential\>
This cmdlet returns a StorageAccountCredential object, if you specify the StorageAccountName parameter, or if you do not specify that parameter, it returns an IList<StorageAccountCredential> object.