Share via


IExtensionImageOperations.BeginUnregisteringAsync Method (String, String, String, CancellationToken)

 

Unregister a version of an extension that was previously registered using either the Register Extension or Update Extension APIs. An extension version is identified by the combination of its ProviderNamespace, Type and Version which are specified when registering the extension. Unregistering is only allowed for internal extensions, that is, the extensions for which the IsInternalExtension field is set to 'true' during registration or during an update. There is a quota (15) on the number of extensions that can be registered per subscription. If your subscription runs out of quota, you will wither need to unregister some of the internal extensions or contact Azure (same email used to become a publisher) to increase the quota.

Namespace:   Microsoft.WindowsAzure.Management.Compute
Assembly:  Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)

Syntax

Task<AzureOperationResponse> BeginUnregisteringAsync(
    string providerNamespace,
    string type,
    string version,
    CancellationToken cancellationToken
)
Task<AzureOperationResponse^>^ BeginUnregisteringAsync(
    String^ providerNamespace,
    String^ type,
    String^ version,
    CancellationToken cancellationToken
)
abstract BeginUnregisteringAsync : 
        providerNamespace:string *
        type:string *
        version:string *
        cancellationToken:CancellationToken -> Task<AzureOperationResponse>
Function BeginUnregisteringAsync (
    providerNamespace As String,
    type As String,
    version As String,
    cancellationToken As CancellationToken
) As Task(Of AzureOperationResponse)

Parameters

  • providerNamespace
    Type: System.String

    The provider namespace of the extension image to unregister.

  • type
    Type: System.String

    The type of the extension image to unregister.

  • version
    Type: System.String

    The version of the extension image to unregister.

Return Value

Type: System.Threading.Tasks.Task<AzureOperationResponse>

A standard service response including an HTTP status code and request ID.

See Also

IExtensionImageOperations Interface
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top