All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.workloads.inputs.OsSapConfigurationArgs Maven / Gradle / Ivy

There is a newer version: 2.78.0
Show newest version
// *** 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.DeployerVmPackagesArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Defines the OS and SAP Configurations for Deployment
 * 
 */
public final class OsSapConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final OsSapConfigurationArgs Empty = new OsSapConfigurationArgs();

    /**
     * The url and storage account ID where deployer VM packages are uploaded
     * 
     */
    @Import(name="deployerVmPackages")
    private @Nullable Output deployerVmPackages;

    /**
     * @return The url and storage account ID where deployer VM packages are uploaded
     * 
     */
    public Optional> deployerVmPackages() {
        return Optional.ofNullable(this.deployerVmPackages);
    }

    /**
     * The FQDN to set for the SAP system
     * 
     */
    @Import(name="sapFqdn")
    private @Nullable Output sapFqdn;

    /**
     * @return The FQDN to set for the SAP system
     * 
     */
    public Optional> sapFqdn() {
        return Optional.ofNullable(this.sapFqdn);
    }

    private OsSapConfigurationArgs() {}

    private OsSapConfigurationArgs(OsSapConfigurationArgs $) {
        this.deployerVmPackages = $.deployerVmPackages;
        this.sapFqdn = $.sapFqdn;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(OsSapConfigurationArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private OsSapConfigurationArgs $;

        public Builder() {
            $ = new OsSapConfigurationArgs();
        }

        public Builder(OsSapConfigurationArgs defaults) {
            $ = new OsSapConfigurationArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param deployerVmPackages The url and storage account ID where deployer VM packages are uploaded
         * 
         * @return builder
         * 
         */
        public Builder deployerVmPackages(@Nullable Output deployerVmPackages) {
            $.deployerVmPackages = deployerVmPackages;
            return this;
        }

        /**
         * @param deployerVmPackages The url and storage account ID where deployer VM packages are uploaded
         * 
         * @return builder
         * 
         */
        public Builder deployerVmPackages(DeployerVmPackagesArgs deployerVmPackages) {
            return deployerVmPackages(Output.of(deployerVmPackages));
        }

        /**
         * @param sapFqdn The FQDN to set for the SAP system
         * 
         * @return builder
         * 
         */
        public Builder sapFqdn(@Nullable Output sapFqdn) {
            $.sapFqdn = sapFqdn;
            return this;
        }

        /**
         * @param sapFqdn The FQDN to set for the SAP system
         * 
         * @return builder
         * 
         */
        public Builder sapFqdn(String sapFqdn) {
            return sapFqdn(Output.of(sapFqdn));
        }

        public OsSapConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy