ExtensionImageOperationsExtensions.BeginUnregisteringAsync Method (IExtensionImageOperations, String, String, String)
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.
Assembly: Microsoft.WindowsAzure.Management.Compute (in Microsoft.WindowsAzure.Management.Compute.dll)
public static Task<AzureOperationResponse> BeginUnregisteringAsync( this IExtensionImageOperations operations, string providerNamespace, string type, string version )
Parameters
- operations
-
Type:
Microsoft.WindowsAzure.Management.Compute.IExtensionImageOperations
Reference to the Microsoft.WindowsAzure.Management.Compute.IExtensionImageOperations.
- providerNamespace
-
Type:
System.String
Required. The provider namespace of the extension image to unregister.
- type
-
Type:
System.String
Required. The type of the extension image to unregister.
- version
-
Type:
System.String
Required. 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.