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.network; import com.fasterxml.jackson.annotation.JsonProperty;
SKU of a public IP address.
/** * SKU of a public IP address. */
public class PublicIPAddressSku {
Name of a public IP address SKU. Possible values include: 'Basic', 'Standard'.
/** * Name of a public IP address SKU. Possible values include: 'Basic', * 'Standard'. */
@JsonProperty(value = "name") private PublicIPAddressSkuName name;
Get name of a public IP address SKU. Possible values include: 'Basic', 'Standard'.
Returns:the name value
/** * Get name of a public IP address SKU. Possible values include: 'Basic', 'Standard'. * * @return the name value */
public PublicIPAddressSkuName name() { return this.name; }
Set name of a public IP address SKU. Possible values include: 'Basic', 'Standard'.
Params:
  • name – the name value to set
Returns:the PublicIPAddressSku object itself.
/** * Set name of a public IP address SKU. Possible values include: 'Basic', 'Standard'. * * @param name the name value to set * @return the PublicIPAddressSku object itself. */
public PublicIPAddressSku withName(PublicIPAddressSkuName name) { this.name = name; return this; } }