你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzAutomationModule
将模块导入自动化。
语法
New-AzAutomationModule
[-Name] <String>
[-ContentLinkUri] <Uri>
[-RuntimeVersion <String>]
[-ResourceGroupName] <String>
[-AutomationAccountName] <String>
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzAutomationModule cmdlet 将模块导入Azure 自动化。 此命令接受具有.zip文件扩展名的压缩文件。 该文件包含一个文件夹,其中包含属于以下类型之一的文件:
- 具有 .psm1 或.dll文件扩展名的 Windows PowerShell 模块
- Windows PowerShell 模块清单,扩展名为 .psd1 的 .psd1 文件名:.zip文件的名称、文件夹的名称以及文件夹中的文件名称必须相同。
将.zip文件指定为自动化服务可以访问的 URL。
如果使用此 cmdlet 或 Set-AzAutomationModule cmdlet 将 Windows PowerShell 模块导入自动化,则此操作是异步的。
该命令完成导入是成功还是失败。
若要检查它是否成功,请运行以下命令:
PS C:\\\> $ModuleInstance = Get-AzAutomationModule -Name
ModuleName 检查 ProvisioningState 属性是否为 Succeeded 值。
示例
示例 1:导入模块
New-AzAutomationModule -AutomationAccountName "Contoso17" -Name "ContosoModule" -ContentLink "http://contosostorage.blob.core.windows.net/modules/ContosoModule.zip" -ResourceGroupName "ResourceGroup01"
此命令将名为 ContosoModule 的模块导入到名为 Contoso17 的自动化帐户中。 该模块存储在名为 contosostorage 的存储帐户和名为模块的容器中的 Azure Blob 中。
参数
-AutomationAccountName
指定此 cmdlet 导入模块的自动化帐户的名称。
类型: | String |
Position: | 1 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ContentLinkUri
模块 zip 包的 URL
类型: | Uri |
别名: | ContentLink |
Position: | 3 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-DefaultProfile
用于与 azure 通信的凭据、帐户、租户和订阅
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Name
指定此 cmdlet 导入的模块的名称。
类型: | String |
Position: | 2 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ResourceGroupName
指定此 cmdlet 导入模块的资源组的名称。
类型: | String |
Position: | 0 |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-RuntimeVersion
模块的运行时环境
类型: | String |
接受的值: | 5.1, 7.2 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |