com.microsoft.azure.management.powerbi.AzureSku Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-powerbi Show documentation
Show all versions of azure-mgmt-powerbi Show documentation
This package contains Microsoft PowerBI Management SDK.
/**
* 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.powerbi;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The AzureSku model.
*/
public class AzureSku {
/**
* SKU name.
*/
@JsonProperty(value = "name", required = true)
private String name;
/**
* SKU tier.
*/
@JsonProperty(value = "tier", required = true)
private String tier;
/**
* Creates an instance of AzureSku class.
*/
public AzureSku() {
name = "S1";
tier = "Standard";
}
/**
* Get the name value.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set the name value.
*
* @param name the name value to set
* @return the AzureSku object itself.
*/
public AzureSku withName(String name) {
this.name = name;
return this;
}
/**
* Get the tier value.
*
* @return the tier value
*/
public String tier() {
return this.tier;
}
/**
* Set the tier value.
*
* @param tier the tier value to set
* @return the AzureSku object itself.
*/
public AzureSku withTier(String tier) {
this.tier = tier;
return this;
}
}