你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

AppServiceCertificate.DefinitionStages.WithCertificate Interface

public interface WithCertificate

An app service certificate definition allowing PFX certificate file to be set.

Method Summary

Modifier and Type Method and Description
AppServiceCertificate.DefinitionStages.WithCreate withExistingCertificateOrder(AppServiceCertificateOrder certificateOrder)

Specifies the app service certificate.

AppServiceCertificate.DefinitionStages.WithPfxFilePassword withPfxByteArray(byte[] pfxByteArray)

Specifies the PFX byte array to upload.

AppServiceCertificate.DefinitionStages.WithPfxFilePassword withPfxFile(File file)

Specifies the PFX certificate file to upload.

AppServiceCertificate.DefinitionStages.WithPfxFilePassword withPfxFileFromUrl(String url)

Specifies the PFX file from a URL.

Method Details

withExistingCertificateOrder

public WithCreate withExistingCertificateOrder(AppServiceCertificateOrder certificateOrder)

Specifies the app service certificate.

Parameters:

certificateOrder - the app service certificate order

Returns:

the next stage of the definition

withPfxByteArray

public WithPfxFilePassword withPfxByteArray(byte[] pfxByteArray)

Specifies the PFX byte array to upload.

Parameters:

pfxByteArray - the PFX byte array

Returns:

the next stage of the definition

withPfxFile

public WithPfxFilePassword withPfxFile(File file)

Specifies the PFX certificate file to upload.

Parameters:

file - the PFX certificate file

Returns:

the next stage of the definition

withPfxFileFromUrl

public WithPfxFilePassword withPfxFileFromUrl(String url)

Specifies the PFX file from a URL.

Parameters:

url - the URL pointing to the PFX file.

Returns:

the next stage of the definition

Applies to