你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzAutomationCredential
创建自动化凭据。
语法
New-AzAutomationCredential
[-Name] <String>
[-Description <String>]
[-Value] <PSCredential>
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzAutomationCredential cmdlet 在Azure 自动化中创建一个凭据作为 PSCredential 对象。
示例
示例 1:创建凭据
$User = "Contoso\PFuller"
$Password = ConvertTo-SecureString -String "****" -AsPlainText -Force
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $User, $Password
New-AzAutomationCredential -AutomationAccountName "Contoso17" -Name "ContosoCredential" -Value $Credential -ResourceGroupName "ResourceGroup01"
第一个命令将用户名分配给$User变量。 第二个命令使用 ConvertTo-SecureString cmdlet 将纯文本密码转换为安全字符串。 该命令将该对象存储在$Password变量中。 第三个命令基于$User和$Password创建凭据,然后将其存储在$Credential变量中。 最后一个命令创建一个名为 ContosoCredential 的自动化凭据,该凭据使用 $Credential。
参数
-AutomationAccountName
指定此 cmdlet 在其中存储凭据的自动化帐户的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Description
指定凭据的说明。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Name
指定凭据的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定此 cmdlet 为其创建凭据的资源组的说明。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Value
将凭据指定为 PSCredential 对象。
类型: | PSCredential |
Position: | 3 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |