
com.pulumi.azurenative.migrate.outputs.SqlMiSettingsResponse 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.migrate.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 SqlMiSettingsResponse {
/**
* @return Gets or sets the azure PAAS SQL instance type.
*
*/
private @Nullable String azureSqlInstanceType;
/**
* @return Gets or sets the azure SQL service tier.
*
*/
private @Nullable String azureSqlServiceTier;
private SqlMiSettingsResponse() {}
/**
* @return Gets or sets the azure PAAS SQL instance type.
*
*/
public Optional azureSqlInstanceType() {
return Optional.ofNullable(this.azureSqlInstanceType);
}
/**
* @return Gets or sets the azure SQL service tier.
*
*/
public Optional azureSqlServiceTier() {
return Optional.ofNullable(this.azureSqlServiceTier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SqlMiSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String azureSqlInstanceType;
private @Nullable String azureSqlServiceTier;
public Builder() {}
public Builder(SqlMiSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.azureSqlInstanceType = defaults.azureSqlInstanceType;
this.azureSqlServiceTier = defaults.azureSqlServiceTier;
}
@CustomType.Setter
public Builder azureSqlInstanceType(@Nullable String azureSqlInstanceType) {
this.azureSqlInstanceType = azureSqlInstanceType;
return this;
}
@CustomType.Setter
public Builder azureSqlServiceTier(@Nullable String azureSqlServiceTier) {
this.azureSqlServiceTier = azureSqlServiceTier;
return this;
}
public SqlMiSettingsResponse build() {
final var _resultValue = new SqlMiSettingsResponse();
_resultValue.azureSqlInstanceType = azureSqlInstanceType;
_resultValue.azureSqlServiceTier = azureSqlServiceTier;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy