Show / Hide Table of Contents

    Class VirtualMachineCaptureResult

    Output of virtual machine capture operation.

    Inheritance
    Object
    SubResource
    VirtualMachineCaptureResult
    Inherited Members
    SubResource.Id
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class VirtualMachineCaptureResult : Microsoft.Azure.Management.Compute.Models.SubResource

    Constructors

    VirtualMachineCaptureResult()

    Initializes a new instance of the VirtualMachineCaptureResult class.

    Declaration
    public VirtualMachineCaptureResult ();

    VirtualMachineCaptureResult(String, String, String, Object, IList<Object>)

    Initializes a new instance of the VirtualMachineCaptureResult class.

    Declaration
    public VirtualMachineCaptureResult (string id = null, string schema = null, string contentVersion = null, object parameters = null, System.Collections.Generic.IList<object> resources = null);
    Parameters
    String id

    Resource Id

    String schema

    the schema of the captured virtual machine

    String contentVersion

    the version of the content

    Object parameters

    parameters of the captured virtual machine

    IList<Object> resources

    a list of resource items of the captured virtual machine

    Properties

    ContentVersion

    Gets the version of the content

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="contentVersion")]
    public string ContentVersion { get; }
    Property Value
    String

    Parameters

    Gets parameters of the captured virtual machine

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="parameters")]
    public object Parameters { get; }
    Property Value
    Object

    Resources

    Gets a list of resource items of the captured virtual machine

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="resources")]
    public System.Collections.Generic.IList<object> Resources { get; }
    Property Value
    IList<Object>

    Schema

    Gets the schema of the captured virtual machine

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="$schema")]
    public string Schema { get; }
    Property Value
    String

    Back to top Azure SDK for Net