ExtensionImageOperationsExtensions Class

 

The Service Management API provides programmatic access to much of the functionality available through the Management Portal. The Service Management API is a REST API. All API operations are performed over SSL, and are mutually authenticated using X.509 v3 certificates. (see https://msdn.microsoft.com/en-us/library/windowsazure/ee460799.aspx for more information)

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

Inheritance Hierarchy

System.Object
  Microsoft.WindowsAzure.Management.Compute.ExtensionImageOperationsExtensions

Syntax

public static class ExtensionImageOperationsExtensions
[ExtensionAttribute]
public ref class ExtensionImageOperationsExtensions abstract sealed 
[<AbstractClass>]
[<Sealed>]
type ExtensionImageOperationsExtensions = class end
<ExtensionAttribute>
Public NotInheritable Class ExtensionImageOperationsExtensions

Methods

Name Description
System_CAPS_pubmethodSystem_CAPS_static BeginRegistering(IExtensionImageOperations, ExtensionImageRegisterParameters)

Register a new extension. An extension is identified by the combination of its ProviderNamespace and Type (case-sensitive string). It is not allowed to register an extension with the same identity (i.e. combination of ProviderNamespace and Type) of an already-registered extension. To register new version of an existing extension, the Update Extension API should be used.

System_CAPS_pubmethodSystem_CAPS_static BeginRegisteringAsync(IExtensionImageOperations, ExtensionImageRegisterParameters)

Register a new extension. An extension is identified by the combination of its ProviderNamespace and Type (case-sensitive string). It is not allowed to register an extension with the same identity (i.e. combination of ProviderNamespace and Type) of an already-registered extension. To register new version of an existing extension, the Update Extension API should be used.

System_CAPS_pubmethodSystem_CAPS_static BeginUnregistering(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.

System_CAPS_pubmethodSystem_CAPS_static BeginUnregisteringAsync(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.

System_CAPS_pubmethodSystem_CAPS_static BeginUpdating(IExtensionImageOperations, ExtensionImageUpdateParameters)

Update a new extension. It is allowed to update an extension which had already been registered with the same identity (i.e. combination of ProviderNamespace and Type) but with different version. It will fail if the extension to update has an identity that has not been registered before, or there is already an extension with the same identity and same version.

System_CAPS_pubmethodSystem_CAPS_static BeginUpdatingAsync(IExtensionImageOperations, ExtensionImageUpdateParameters)

Update a new extension. It is allowed to update an extension which had already been registered with the same identity (i.e. combination of ProviderNamespace and Type) but with different version. It will fail if the extension to update has an identity that has not been registered before, or there is already an extension with the same identity and same version.

System_CAPS_pubmethodSystem_CAPS_static Register(IExtensionImageOperations, ExtensionImageRegisterParameters)

Register a new extension. An extension is identified by the combination of its ProviderNamespace and Type (case-sensitive string). It is not allowed to register an extension with the same identity (i.e. combination of ProviderNamespace and Type) of an already-registered extension. To register new version of an existing extension, the Update Extension API should be used.

System_CAPS_pubmethodSystem_CAPS_static RegisterAsync(IExtensionImageOperations, ExtensionImageRegisterParameters)

Register a new extension. An extension is identified by the combination of its ProviderNamespace and Type (case-sensitive string). It is not allowed to register an extension with the same identity (i.e. combination of ProviderNamespace and Type) of an already-registered extension. To register new version of an existing extension, the Update Extension API should be used.

System_CAPS_pubmethodSystem_CAPS_static Unregister(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.

System_CAPS_pubmethodSystem_CAPS_static UnregisterAsync(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.

System_CAPS_pubmethodSystem_CAPS_static Update(IExtensionImageOperations, ExtensionImageUpdateParameters)

Update a new extension. It is allowed to update an extension which had already been registered with the same identity (i.e. combination of ProviderNamespace and Type) but with different version. It will fail if the extension to update has an identity that has not been registered before, or there is already an extension with the same identity and same version.

System_CAPS_pubmethodSystem_CAPS_static UpdateAsync(IExtensionImageOperations, ExtensionImageUpdateParameters)

Update a new extension. It is allowed to update an extension which had already been registered with the same identity (i.e. combination of ProviderNamespace and Type) but with different version. It will fail if the extension to update has an identity that has not been registered before, or there is already an extension with the same identity and same version.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Microsoft.WindowsAzure.Management.Compute Namespace

Return to top