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;
The ShareInfoElement model.
/** * The ShareInfoElement model. */
public class ShareInfoElement {
A relative URI containing the ID of the VM that has the disk attached.
/** * A relative URI containing the ID of the VM that has the disk attached. */
@JsonProperty(value = "vmUri", access = JsonProperty.Access.WRITE_ONLY) private String vmUri;
Get a relative URI containing the ID of the VM that has the disk attached.
Returns:the vmUri value
/** * Get a relative URI containing the ID of the VM that has the disk attached. * * @return the vmUri value */
public String vmUri() { return this.vmUri; } }