共用方式為


Remove-AzureStorSimpleStorageAccountCredential

刪除現有的記憶體帳戶認證。

注意

本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰

Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。

語法

Remove-AzureStorSimpleStorageAccountCredential
      -StorageAccountName <String>
      [-WaitForComplete]
      [-Force]
      [-Profile <AzureSMProfile>]
      [<CommonParameters>]
Remove-AzureStorSimpleStorageAccountCredential
      -SAC <StorageAccountCredentialResponse>
      [-WaitForComplete]
      [-Force]
      [-Profile <AzureSMProfile>]
      [<CommonParameters>]

Description

Remove-AzureStorSimpleStorageAccountCredential Cmdlet 會刪除現有的記憶體帳戶認證。 依名稱指定帳戶,或使用 Get-AzureStorSimpleStorageAccountCredential Cmdlet 來取得要刪除的 StorageAccountCredential 物件。

範例

範例 1:移除記憶體帳戶認證

PS C:\>Remove-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoStorage07" -Force
VERBOSE: ClientRequestId: 8e10d56b-ddb1-459b-b26e-a185f5a303de_PS
VERBOSE: About to create a job to remove your Storage Access Credential! 
VERBOSE: ClientRequestId: 55cb6296-0156-4266-8591-d9e9bf8cc584_PS
982f4b19-ccb0-4ad3-9b02-f8ad25bf2e72
VERBOSE: The delete task is submitted successfully. Please use the command Get-AzureStorSimpleTask -InstanceId
982f4b19-ccb0-4ad3-9b02-f8ad25bf2e72 for tracking the task's status

此命令會移除名為 ContosoStorage07 之記憶體帳戶的帳戶認證。 此命令會 指定 Force 參數。 Cmdlet 會移除認證,而不會提示您進行確認。

範例 2:使用管線操作員移除記憶體帳戶認證

PS C:\>Get-AzureStorSimpleStorageAccountCredential -StorageAccountName "ContosoStorage07" | Remove-AzureStorSimpleStorageAccountCredential -Force -WaitForComplete
VERBOSE: ClientRequestId: f1b46216-bf4c-4c19-8e92-1dfe3894e258_PS
VERBOSE: ClientRequestId: 0d946f8f-c771-4ade-8a83-7c08dad86c52_PS
VERBOSE: ClientRequestId: 2000bab6-8311-4192-ad12-c67e35fc2697_PS
VERBOSE: Storage Access Credential with name ContosoStorage07 found! 
VERBOSE: About to run a job to remove your Storage Access Credential! 
VERBOSE: ClientRequestId: b803b165-bef8-4a8f-9509-4b515ea8bdec_PS
VERBOSE: Your delete operation completed successfully!

此命令會使用 Get-AzureStorSimpleStorageAccountCredential Cmdlet 取得名為 ContosoStorage07 的記憶體帳戶,然後將該對象傳遞至目前的 Cmdlet。 目前的 Cmdlet 會移除該記憶體帳戶的認證。 此命令會 指定 WaitForComplete 參數。 Cmdlet 在完成移除作業之前,不會將控制權傳回控制台。

參數

-Force

表示此 Cmdlet 不會提示您進行確認。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Profile

指定 Azure 設定檔。

類型:AzureSMProfile
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-SAC

指定要移除的 StorageAccountCredential 對象認證。 若要取得 StorageAccountCredential 物件,請使用 Get-AzureStorSimpleStorageAccountCredential Cmdlet。

類型:StorageAccountCredentialResponse
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-StorageAccountName

指定要刪除的記憶體帳戶認證名稱。

類型:String
別名:Name
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-WaitForComplete

表示此 Cmdlet 會先等候作業完成,再將控制權傳回 Windows PowerShell 控制台。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

StorageAccountCredential

此 Cmdlet 會使用管線來接受 StorageAccountCredential 物件。

輸出

TaskStatusInfo

如果您指定 WaitForComplete 參數,此 Cmdlet 會傳回 TaskStatusInfo 物件。