/** * 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; /** * Describes the uri of a disk. */ public class VirtualHardDisk { /** * The virtual hard disk's URI. Must be a valid URI to a virtual hard disk. */ @JsonProperty(value = "uri") private String uri; /** * Get the uri value. * * @return the uri value */ public String uri() { return this.uri; } /** * Set the uri value. * * @param uri the uri value to set * @return the VirtualHardDisk object itself. */ public VirtualHardDisk withUri(String uri) { this.uri = uri; return this; } }