com.pulumi.azurenative.workloads.outputs.ExternalInstallationSoftwareConfigurationResponse 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.workloads.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ExternalInstallationSoftwareConfigurationResponse {
/**
* @return The resource ID of the virtual machine containing the central server instance.
*
*/
private @Nullable String centralServerVmId;
/**
* @return The SAP software installation Type.
* Expected value is 'External'.
*
*/
private String softwareInstallationType;
private ExternalInstallationSoftwareConfigurationResponse() {}
/**
* @return The resource ID of the virtual machine containing the central server instance.
*
*/
public Optional centralServerVmId() {
return Optional.ofNullable(this.centralServerVmId);
}
/**
* @return The SAP software installation Type.
* Expected value is 'External'.
*
*/
public String softwareInstallationType() {
return this.softwareInstallationType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ExternalInstallationSoftwareConfigurationResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String centralServerVmId;
private String softwareInstallationType;
public Builder() {}
public Builder(ExternalInstallationSoftwareConfigurationResponse defaults) {
Objects.requireNonNull(defaults);
this.centralServerVmId = defaults.centralServerVmId;
this.softwareInstallationType = defaults.softwareInstallationType;
}
@CustomType.Setter
public Builder centralServerVmId(@Nullable String centralServerVmId) {
this.centralServerVmId = centralServerVmId;
return this;
}
@CustomType.Setter
public Builder softwareInstallationType(String softwareInstallationType) {
if (softwareInstallationType == null) {
throw new MissingRequiredPropertyException("ExternalInstallationSoftwareConfigurationResponse", "softwareInstallationType");
}
this.softwareInstallationType = softwareInstallationType;
return this;
}
public ExternalInstallationSoftwareConfigurationResponse build() {
final var _resultValue = new ExternalInstallationSoftwareConfigurationResponse();
_resultValue.centralServerVmId = centralServerVmId;
_resultValue.softwareInstallationType = softwareInstallationType;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy