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.appservice; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.azure.ProxyResource;
Azure proxy only resource. This resource is not tracked by Azure Resource Manager.
/** * Azure proxy only resource. This resource is not tracked by Azure Resource * Manager. */
public class ProxyOnlyResource extends ProxyResource {
Kind of resource.
/** * Kind of resource. */
@JsonProperty(value = "kind") private String kind;
Get kind of resource.
Returns:the kind value
/** * Get kind of resource. * * @return the kind value */
public String kind() { return this.kind; }
Set kind of resource.
Params:
  • kind – the kind value to set
Returns:the ProxyOnlyResource object itself.
/** * Set kind of resource. * * @param kind the kind value to set * @return the ProxyOnlyResource object itself. */
public ProxyOnlyResource withKind(String kind) { this.kind = kind; return this; } }