com.pulumi.azurenative.hybridcompute.outputs.EsuKeyResponse 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.hybridcompute.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class EsuKeyResponse {
/**
* @return The current status of the license profile key.
*
*/
private @Nullable String licenseStatus;
/**
* @return SKU number.
*
*/
private @Nullable String sku;
private EsuKeyResponse() {}
/**
* @return The current status of the license profile key.
*
*/
public Optional licenseStatus() {
return Optional.ofNullable(this.licenseStatus);
}
/**
* @return SKU number.
*
*/
public Optional sku() {
return Optional.ofNullable(this.sku);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(EsuKeyResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String licenseStatus;
private @Nullable String sku;
public Builder() {}
public Builder(EsuKeyResponse defaults) {
Objects.requireNonNull(defaults);
this.licenseStatus = defaults.licenseStatus;
this.sku = defaults.sku;
}
@CustomType.Setter
public Builder licenseStatus(@Nullable String licenseStatus) {
this.licenseStatus = licenseStatus;
return this;
}
@CustomType.Setter
public Builder sku(@Nullable String sku) {
this.sku = sku;
return this;
}
public EsuKeyResponse build() {
final var _resultValue = new EsuKeyResponse();
_resultValue.licenseStatus = licenseStatus;
_resultValue.sku = sku;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy