
com.pulumi.azurenative.workloads.inputs.GetSAPSupportedSkuArgs 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.enums.SAPDatabaseType;
import com.pulumi.azurenative.workloads.enums.SAPDeploymentType;
import com.pulumi.azurenative.workloads.enums.SAPEnvironmentType;
import com.pulumi.azurenative.workloads.enums.SAPHighAvailabilityType;
import com.pulumi.azurenative.workloads.enums.SAPProductType;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetSAPSupportedSkuArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSAPSupportedSkuArgs Empty = new GetSAPSupportedSkuArgs();
/**
* The geo-location where the resource is to be created.
*
*/
@Import(name="appLocation", required=true)
private Output appLocation;
/**
* @return The geo-location where the resource is to be created.
*
*/
public Output appLocation() {
return this.appLocation;
}
/**
* The database type. Eg: HANA, DB2, etc
*
*/
@Import(name="databaseType", required=true)
private Output> databaseType;
/**
* @return The database type. Eg: HANA, DB2, etc
*
*/
public Output> databaseType() {
return this.databaseType;
}
/**
* The deployment type. Eg: SingleServer/ThreeTier
*
*/
@Import(name="deploymentType", required=true)
private Output> deploymentType;
/**
* @return The deployment type. Eg: SingleServer/ThreeTier
*
*/
public Output> deploymentType() {
return this.deploymentType;
}
/**
* Defines the environment type - Production/Non Production.
*
*/
@Import(name="environment", required=true)
private Output> environment;
/**
* @return Defines the environment type - Production/Non Production.
*
*/
public Output> environment() {
return this.environment;
}
/**
* The high availability type.
*
*/
@Import(name="highAvailabilityType")
private @Nullable Output> highAvailabilityType;
/**
* @return The high availability type.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy