
com.pulumi.azurenative.workloads.outputs.DeploymentWithOSConfigurationResponse 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.azurenative.workloads.outputs.ExternalInstallationSoftwareConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.OsSapConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.SAPInstallWithoutOSConfigSoftwareConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.ServiceInitiatedSoftwareConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.SingleServerConfigurationResponse;
import com.pulumi.azurenative.workloads.outputs.ThreeTierConfigurationResponse;
import com.pulumi.core.Either;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DeploymentWithOSConfigurationResponse {
/**
* @return The geo-location where the SAP system is to be created.
*
*/
private @Nullable String appLocation;
/**
* @return The configuration Type.
* Expected value is 'DeploymentWithOSConfig'.
*
*/
private String configurationType;
/**
* @return The infrastructure configuration.
*
*/
private @Nullable Either infrastructureConfiguration;
/**
* @return The OS and SAP configuration.
*
*/
private @Nullable OsSapConfigurationResponse osSapConfiguration;
/**
* @return The software configuration.
*
*/
private @Nullable Object softwareConfiguration;
private DeploymentWithOSConfigurationResponse() {}
/**
* @return The geo-location where the SAP system is to be created.
*
*/
public Optional appLocation() {
return Optional.ofNullable(this.appLocation);
}
/**
* @return The configuration Type.
* Expected value is 'DeploymentWithOSConfig'.
*
*/
public String configurationType() {
return this.configurationType;
}
/**
* @return The infrastructure configuration.
*
*/
public Optional> infrastructureConfiguration() {
return Optional.ofNullable(this.infrastructureConfiguration);
}
/**
* @return The OS and SAP configuration.
*
*/
public Optional osSapConfiguration() {
return Optional.ofNullable(this.osSapConfiguration);
}
/**
* @return The software configuration.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy