com.pulumi.azurenative.migrate.outputs.SettingsResponse 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.azurenative.migrate.outputs.AzureSettingsResponse;
import com.pulumi.azurenative.migrate.outputs.OnPremiseSettingsResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class SettingsResponse {
/**
* @return Azure settings for a business case.
*
*/
private AzureSettingsResponse azureSettings;
/**
* @return On-premise settings.
*
*/
private @Nullable OnPremiseSettingsResponse onPremiseSettings;
private SettingsResponse() {}
/**
* @return Azure settings for a business case.
*
*/
public AzureSettingsResponse azureSettings() {
return this.azureSettings;
}
/**
* @return On-premise settings.
*
*/
public Optional onPremiseSettings() {
return Optional.ofNullable(this.onPremiseSettings);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private AzureSettingsResponse azureSettings;
private @Nullable OnPremiseSettingsResponse onPremiseSettings;
public Builder() {}
public Builder(SettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.azureSettings = defaults.azureSettings;
this.onPremiseSettings = defaults.onPremiseSettings;
}
@CustomType.Setter
public Builder azureSettings(AzureSettingsResponse azureSettings) {
if (azureSettings == null) {
throw new MissingRequiredPropertyException("SettingsResponse", "azureSettings");
}
this.azureSettings = azureSettings;
return this;
}
@CustomType.Setter
public Builder onPremiseSettings(@Nullable OnPremiseSettingsResponse onPremiseSettings) {
this.onPremiseSettings = onPremiseSettings;
return this;
}
public SettingsResponse build() {
final var _resultValue = new SettingsResponse();
_resultValue.azureSettings = azureSettings;
_resultValue.onPremiseSettings = onPremiseSettings;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy