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 instance view of a dedicated host that includes the name of the dedicated host. It is used for the response to the instance view of a dedicated host group.
/** * The instance view of a dedicated host that includes the name of the * dedicated host. It is used for the response to the instance view of a * dedicated host group. */
public class DedicatedHostInstanceViewWithName extends DedicatedHostInstanceView {
The name of the dedicated host.
/** * The name of the dedicated host. */
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY) private String name;
Get the name of the dedicated host.
Returns:the name value
/** * Get the name of the dedicated host. * * @return the name value */
public String name() { return this.name; } }