com.pulumi.azurenative.storagecache.inputs.SkuName 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.storagecache.inputs;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* SKU for the resource.
*
*/
public final class SkuName extends com.pulumi.resources.InvokeArgs {
public static final SkuName Empty = new SkuName();
/**
* SKU name for this resource.
*
*/
@Import(name="name")
private @Nullable String name;
/**
* @return SKU name for this resource.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
private SkuName() {}
private SkuName(SkuName $) {
this.name = $.name;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SkuName defaults) {
return new Builder(defaults);
}
public static final class Builder {
private SkuName $;
public Builder() {
$ = new SkuName();
}
public Builder(SkuName defaults) {
$ = new SkuName(Objects.requireNonNull(defaults));
}
/**
* @param name SKU name for this resource.
*
* @return builder
*
*/
public Builder name(@Nullable String name) {
$.name = name;
return this;
}
public SkuName build() {
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy