共用方式為


New-AzApiManagementCustomHostnameConfiguration

建立 PsApiManagementCustomHostNameConfiguration的實例。

語法

New-AzApiManagementCustomHostnameConfiguration
   -Hostname <String>
   -HostnameType <PsApiManagementHostnameType>
   -HostNameCertificateInformation <PsApiManagementCertificateInformation>
   [-DefaultSslBinding]
   [-NegotiateClientCertificate]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
New-AzApiManagementCustomHostnameConfiguration
   -Hostname <String>
   -HostnameType <PsApiManagementHostnameType>
   -PfxPath <String>
   [-PfxPassword <SecureString>]
   [-DefaultSslBinding]
   [-NegotiateClientCertificate]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
New-AzApiManagementCustomHostnameConfiguration
   -Hostname <String>
   -HostnameType <PsApiManagementHostnameType>
   -KeyVaultId <String>
   [-IdentityClientId <String>]
   [-DefaultSslBinding]
   [-NegotiateClientCertificate]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]
New-AzApiManagementCustomHostnameConfiguration
   -Hostname <String>
   -HostnameType <PsApiManagementHostnameType>
   [-DefaultSslBinding]
   [-NegotiateClientCertificate]
   [-ManagedCertificate]
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

New-AzApiManagementCustomHostnameConfiguration Cmdlet 是協助程式命令,可建立 PsApiManagementCustomHostNameConfiguration實例。 此命令會與 New-AzApiManagement 和 Set-AzApiManagement Cmdlet 搭配使用。

範例

範例 1:使用檔案中的 Ssl 憑證建立和初始化 PsApiManagementCustomHostNameConfiguration 的實例

$portal = New-AzApiManagementCustomHostnameConfiguration -Hostname "portal.contoso.com" -HostnameType Portal -PfxPath "C:\contoso\certificates\apimanagement.pfx" -PfxPassword "1111" -DefaultSslBinding
$customConfig = @($portal)
New-AzApiManagement -ResourceGroupName "ContosoGroup" -Location "West US" -Name "ContosoApi" -Organization Contoso -AdminEmail admin@contoso.com -CustomHostnameConfiguration $customConfig

此命令會為入口網站建立並初始化 PsApiManagementCustomHostNameConfiguration 實例。 然後,它會使用自定義主機名組態建立新的 ApiManagement 服務。

範例 2:使用 KeyVault 資源的秘密建立和初始化 PsApiManagementCustomHostNameConfiguration 的實例

$portal = New-AzApiManagementCustomHostnameConfiguration -Hostname "portal.contoso.com" -HostnameType Portal -KeyVaultId "https://apim-test-keyvault.vault.azure.net/secrets/api-portal-custom-ssl.pfx"

$customConfig = @($portal)
New-AzApiManagement -ResourceGroupName "ContosoGroup" -Location "West US" -Name "ContosoApi" -Organization Contoso -AdminEmail admin@contoso.com -CustomHostnameConfiguration $customConfig -SystemAssignedIdentity

此命令會建立並初始化 PsApiManagementCustomHostNameConfiguration實例。

參數

-DefaultProfile

用於與 Azure 通訊的認證、帳戶、租用戶和訂用帳戶。

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DefaultSslBinding

判斷值是否為秘密,且是否應加密。 這個參數是選擇性的。 默認值為 false。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-Hostname

自定義主機名

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-HostNameCertificateInformation

現有的憑證組態。

類型:PsApiManagementCertificateInformation
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-HostnameType

主機名類型

類型:PsApiManagementHostnameType
接受的值:Proxy, Portal, Management, Scm, DeveloperPortal, Configuration, Data
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-IdentityClientId

User-Assigned 用來向KeyVault進行驗證的受控識別 ClientId,以擷取自定義 SSL 憑證。

類型:String
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-KeyVaultId

儲存自定義 SSL 憑證的秘密 KeyVaultId。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-ManagedCertificate

判斷是否要布建由平臺管理其輪替的受控憑證

類型:SwitchParameter
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

-NegotiateClientCertificate

判斷值是否為秘密,且是否應加密。 這個參數是選擇性的。 默認值為 false。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PfxPassword

.pfx 憑證檔案的密碼。

類型:SecureString
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-PfxPath

.pfx 憑證檔案的路徑。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:False
接受萬用字元:False

輸入

PsApiManagementCertificateInformation

輸出

PsApiManagementCustomHostNameConfiguration