你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzAutomationVariable
创建自动化变量。
语法
New-AzAutomationVariable
[-Name] <String>
-Encrypted <Boolean>
[-Description <String>]
[-Value <Object>]
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzAutomationVariable cmdlet 在Azure 自动化中创建变量。 若要加密变量,请指定 Encrypted 参数。 创建后无法修改变量的加密状态。
示例
示例 1:创建具有简单值的变量
New-AzAutomationVariable -AutomationAccountName "Contoso17" -Name "StringVariable22" -Encrypted $False -Value "My String" -ResourceGroupName "ResourceGroup01"
此命令使用名为 Contoso17 的自动化帐户中的字符串值创建名为 StringVariable22 的变量。
示例 2:创建具有复杂值的变量
$VirtualMachine = Get-AzVM -Name "VirtualMachine03"
New-AzAutomationVariable -AutomationAccountName "Contoso17" -Name "ComplexVariable01" -Encrypted $False -Value $VirtualMachine -ResourceGroupName "ResourceGroup01"
第一个命令使用 Get-AzVM cmdlet 获取虚拟机。 该命令将其存储在$VirtualMachine变量中。 第二个命令在名为 Contoso17 的自动化帐户中创建名为 ComplexVariable01 的变量。 此命令使用复杂对象作为其值,在本例中为$VirtualMachine中的虚拟机。
参数
-AutomationAccountName
指定要在其中存储变量的自动化帐户的名称。
类型: | 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 |
-Encrypted
指定此 cmdlet 是否加密存储变量的值。
类型: | Boolean |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Name
指定变量的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定此 cmdlet 为其创建变量的资源组。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Value
指定变量的值。
类型: | Object |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |