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 ProxyOnly Resource model definition.
/** * The ProxyOnly Resource model definition. */
public class ProxyOnlyResource {
Resource Id.
/** * Resource Id. */
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY) private String id;
Resource name.
/** * Resource name. */
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY) private String name;
Resource type.
/** * Resource type. */
@JsonProperty(value = "type", access = JsonProperty.Access.WRITE_ONLY) private String type;
Get resource Id.
Returns:the id value
/** * Get resource Id. * * @return the id value */
public String id() { return this.id; }
Get resource name.
Returns:the name value
/** * Get resource name. * * @return the name value */
public String name() { return this.name; }
Get resource type.
Returns:the type value
/** * Get resource type. * * @return the type value */
public String type() { return this.type; } }