
com.pulumi.azurenative.datamigration.outputs.ServiceSkuResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.datamigration.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ServiceSkuResponse {
/**
* @return The capacity of the SKU, if it supports scaling
*
*/
private @Nullable Integer capacity;
/**
* @return The SKU family, used when the service has multiple performance classes within a tier, such as 'A', 'D', etc. for virtual machines
*
*/
private @Nullable String family;
/**
* @return The unique name of the SKU, such as 'P3'
*
*/
private @Nullable String name;
/**
* @return The size of the SKU, used when the name alone does not denote a service size or when a SKU has multiple performance classes within a family, e.g. 'A1' for virtual machines
*
*/
private @Nullable String size;
/**
* @return The tier of the SKU, such as 'Basic', 'General Purpose', or 'Business Critical'
*
*/
private @Nullable String tier;
private ServiceSkuResponse() {}
/**
* @return The capacity of the SKU, if it supports scaling
*
*/
public Optional capacity() {
return Optional.ofNullable(this.capacity);
}
/**
* @return The SKU family, used when the service has multiple performance classes within a tier, such as 'A', 'D', etc. for virtual machines
*
*/
public Optional family() {
return Optional.ofNullable(this.family);
}
/**
* @return The unique name of the SKU, such as 'P3'
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
/**
* @return The size of the SKU, used when the name alone does not denote a service size or when a SKU has multiple performance classes within a family, e.g. 'A1' for virtual machines
*
*/
public Optional size() {
return Optional.ofNullable(this.size);
}
/**
* @return The tier of the SKU, such as 'Basic', 'General Purpose', or 'Business Critical'
*
*/
public Optional tier() {
return Optional.ofNullable(this.tier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ServiceSkuResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable Integer capacity;
private @Nullable String family;
private @Nullable String name;
private @Nullable String size;
private @Nullable String tier;
public Builder() {}
public Builder(ServiceSkuResponse defaults) {
Objects.requireNonNull(defaults);
this.capacity = defaults.capacity;
this.family = defaults.family;
this.name = defaults.name;
this.size = defaults.size;
this.tier = defaults.tier;
}
@CustomType.Setter
public Builder capacity(@Nullable Integer capacity) {
this.capacity = capacity;
return this;
}
@CustomType.Setter
public Builder family(@Nullable String family) {
this.family = family;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
@CustomType.Setter
public Builder size(@Nullable String size) {
this.size = size;
return this;
}
@CustomType.Setter
public Builder tier(@Nullable String tier) {
this.tier = tier;
return this;
}
public ServiceSkuResponse build() {
final var _resultValue = new ServiceSkuResponse();
_resultValue.capacity = capacity;
_resultValue.family = family;
_resultValue.name = name;
_resultValue.size = size;
_resultValue.tier = tier;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy