
com.pulumi.azurenative.workloads.inputs.ThreeTierConfigurationArgs 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.inputs;
import com.pulumi.azurenative.workloads.inputs.ApplicationServerConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.CentralServerConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.DatabaseConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.HighAvailabilityConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.NetworkConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.StorageConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.ThreeTierFullResourceNamesArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Gets or sets the three tier SAP configuration. For prerequisites for creating the infrastructure, please see [here](https://go.microsoft.com/fwlink/?linkid=2212611&clcid=0x409)
*
*/
public final class ThreeTierConfigurationArgs extends com.pulumi.resources.ResourceArgs {
public static final ThreeTierConfigurationArgs Empty = new ThreeTierConfigurationArgs();
/**
* The application resource group where SAP system resources will be deployed.
*
*/
@Import(name="appResourceGroup", required=true)
private Output appResourceGroup;
/**
* @return The application resource group where SAP system resources will be deployed.
*
*/
public Output appResourceGroup() {
return this.appResourceGroup;
}
/**
* The application server configuration.
*
*/
@Import(name="applicationServer", required=true)
private Output applicationServer;
/**
* @return The application server configuration.
*
*/
public Output applicationServer() {
return this.applicationServer;
}
/**
* The central server configuration.
*
*/
@Import(name="centralServer", required=true)
private Output centralServer;
/**
* @return The central server configuration.
*
*/
public Output centralServer() {
return this.centralServer;
}
/**
* The set of custom names to be used for underlying azure resources that are part of the SAP system.
*
*/
@Import(name="customResourceNames")
private @Nullable Output customResourceNames;
/**
* @return The set of custom names to be used for underlying azure resources that are part of the SAP system.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy