Share via


VirtualMachineVMImageOperationsExtensions.BeginSharingAsync Method (IVirtualMachineVMImageOperations, String, String)

 

Share an already replicated VM image. This operation is only for publishers. You have to be registered as image publisher with Windows Azure to be able to call this.

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

Syntax

public static Task<AzureOperationResponse> BeginSharingAsync(
    this IVirtualMachineVMImageOperations operations,
    string vmImageName,
    string permission
)
public:
[ExtensionAttribute]
static Task<AzureOperationResponse^>^ BeginSharingAsync(
    IVirtualMachineVMImageOperations^ operations,
    String^ vmImageName,
    String^ permission
)
static member BeginSharingAsync : 
        operations:IVirtualMachineVMImageOperations *
        vmImageName:string *
        permission:string -> Task<AzureOperationResponse>
<ExtensionAttribute>
Public Shared Function BeginSharingAsync (
    operations As IVirtualMachineVMImageOperations,
    vmImageName As String,
    permission As String
) As Task(Of AzureOperationResponse)

Parameters

  • vmImageName
    Type: System.String

    Required. The name of the virtual machine image to share.

  • permission
    Type: System.String

    Required. The sharing permission: public, msdn, or private.

Return Value

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

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

See Also

VirtualMachineVMImageOperationsExtensions Class
Microsoft.WindowsAzure.Management.Compute Namespace

Return to top