Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.compute; import com.fasterxml.jackson.annotation.JsonProperty;
Contains the data disk images information.
/** * Contains the data disk images information. */
public class DataDiskImage {
Specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
/** * Specifies the logical unit number of the data disk. This value is used * to identify data disks within the VM and therefore must be unique for * each data disk attached to a VM. */
@JsonProperty(value = "lun", access = JsonProperty.Access.WRITE_ONLY) private Integer lun;
Get specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM.
Returns:the lun value
/** * Get specifies the logical unit number of the data disk. This value is used to identify data disks within the VM and therefore must be unique for each data disk attached to a VM. * * @return the lun value */
public Integer lun() { return this.lun; } }