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)

Task<AzureOperationResponse^>^ BeginUnregisteringAsync(
	String^ providerNamespace,
	String^ type,
	String^ version,
	CancellationToken cancellationToken
)

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.

cancellationToken
Type: System.Threading::CancellationToken

Cancellation token.

Return Value

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

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

Return to top
Show: