Set-AzureAutomationCredential
在自動化中修改認證。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
Set-AzureAutomationCredential
-Name <String>
[-Description <String>]
[-Value <PSCredential>]
-AutomationAccountName <String>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
重要
自 2020 年 01 月 23 日起,支援此適用於 Azure 自動化 的 PowerShell 命令。 Azure 服務管理模型已被取代為 Azure 自動化,並在該日期停用。 請使用在 Az.Automation 中支援 Azure 資源管理模型的命令。
Set-AzureAutomationCredential Cmdlet 會將認證修改為 Microsoft Azure 自動化 中的 PSCredential 物件。
範例
範例 1:更新認證
PS C:\> $user = "MyDomain\MyUser"
PS C:\> $pw = ConvertTo-SecureString "PassWord!" -AsPlainText -Force
PS C:\> $cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $user, $pw
PS C:\> New-AzureAutomationCredential -AutomationAccountName "Contos17" -Name "MyCredential" -Value $cred
這些命令會更新名為 MyCredential 的現有認證。 首先會建立認證物件,其中包含使用者名稱和密碼。 這接著會在最後一個命令中使用,以更新自動化認證。
參數
-AutomationAccountName
使用認證指定自動化帳戶的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Description
指定認證的描述。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-Name
指定認證的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Profile
指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。
類型: | AzureSMProfile |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Value
將認證指定為 PSCredential 物件。
類型: | PSCredential |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |