WebAppsOperationsExtensions.CreateOrUpdatePublicCertificateSlotAsync Method

Definition

Creates a hostname binding for an app.

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.WebSites.Models.PublicCertificate> CreateOrUpdatePublicCertificateSlotAsync (this Microsoft.Azure.Management.WebSites.IWebAppsOperations operations, string resourceGroupName, string name, string publicCertificateName, Microsoft.Azure.Management.WebSites.Models.PublicCertificate publicCertificate, string slot, System.Threading.CancellationToken cancellationToken = default);
static member CreateOrUpdatePublicCertificateSlotAsync : Microsoft.Azure.Management.WebSites.IWebAppsOperations * string * string * string * Microsoft.Azure.Management.WebSites.Models.PublicCertificate * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.WebSites.Models.PublicCertificate>
<Extension()>
Public Function CreateOrUpdatePublicCertificateSlotAsync (operations As IWebAppsOperations, resourceGroupName As String, name As String, publicCertificateName As String, publicCertificate As PublicCertificate, slot As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of PublicCertificate)

Parameters

operations
IWebAppsOperations

The operations group for this extension method.

resourceGroupName
String

Name of the resource group to which the resource belongs.

name
String

Name of the app.

publicCertificateName
String

Public certificate name.

publicCertificate
PublicCertificate

Public certificate details. This is the JSON representation of a PublicCertificate object.

slot
String

Name of the deployment slot. If a slot is not specified, the API will create a binding for the production slot.

cancellationToken
CancellationToken

The cancellation token.

Returns

Remarks

Description for Creates a hostname binding for an app.

Applies to