你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzApiManagementSystemCertificate
创建 PsApiManagementSystemCertificate
的实例。 证书可由专用 CA 颁发,并将安装在API 管理服务中或Root
存储中CertificateAuthority
。
语法
New-AzApiManagementSystemCertificate
-StoreName <String>
-PfxPath <String>
[-PfxPassword <SecureString>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
说明
New-AzApiManagementSystemCertificate cmdlet 是一个帮助程序命令,用于创建 PsApiManagementSystemCertificate 的实例。 此命令用于 New-AzApiManagement 和 Set-AzApiManagement cmdlet。
示例
示例 1:使用文件中的 Ssl 证书创建和初始化 PsApiManagementSystemCertificate 实例
$rootCa = New-AzApiManagementSystemCertificate -StoreName "Root" -PfxPath "C:\contoso\certificates\privateCa.cer"
$systemCert = @($rootCa)
New-AzApiManagement -ResourceGroupName "ContosoGroup" -Location "West US" -Name "ContosoApi" -Organization Contoso -AdminEmail admin@contoso.com -SystemCertificateConfiguration $systemCert
此命令使用根 CA 证书创建并初始化 PsApiManagementSystemCertificate 的实例。 然后,它会创建并API 管理服务,该服务将 CA 证书安装到根存储。
参数
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-PfxPassword
.pfx 证书文件的密码。
类型: | SecureString |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-PfxPath
.pfx 证书文件的路径。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-StoreName
Certificate StoreName
类型: | String |
接受的值: | CertificateAuthority, Root |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
输入
输出
PsApiManagementSystemCertificate