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

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

There is a newer version: 2.72.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.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;


/**
 * The SAP Software configuration Input when the software is installed externally outside the service.
 * 
 */
public final class ExternalInstallationSoftwareConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final ExternalInstallationSoftwareConfigurationArgs Empty = new ExternalInstallationSoftwareConfigurationArgs();

    /**
     * The resource ID of the virtual machine containing the central server instance.
     * 
     */
    @Import(name="centralServerVmId")
    private @Nullable Output centralServerVmId;

    /**
     * @return The resource ID of the virtual machine containing the central server instance.
     * 
     */
    public Optional> centralServerVmId() {
        return Optional.ofNullable(this.centralServerVmId);
    }

    /**
     * The SAP software installation Type.
     * Expected value is 'External'.
     * 
     */
    @Import(name="softwareInstallationType", required=true)
    private Output softwareInstallationType;

    /**
     * @return The SAP software installation Type.
     * Expected value is 'External'.
     * 
     */
    public Output softwareInstallationType() {
        return this.softwareInstallationType;
    }

    private ExternalInstallationSoftwareConfigurationArgs() {}

    private ExternalInstallationSoftwareConfigurationArgs(ExternalInstallationSoftwareConfigurationArgs $) {
        this.centralServerVmId = $.centralServerVmId;
        this.softwareInstallationType = $.softwareInstallationType;
    }

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

    public static final class Builder {
        private ExternalInstallationSoftwareConfigurationArgs $;

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

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

        /**
         * @param centralServerVmId The resource ID of the virtual machine containing the central server instance.
         * 
         * @return builder
         * 
         */
        public Builder centralServerVmId(@Nullable Output centralServerVmId) {
            $.centralServerVmId = centralServerVmId;
            return this;
        }

        /**
         * @param centralServerVmId The resource ID of the virtual machine containing the central server instance.
         * 
         * @return builder
         * 
         */
        public Builder centralServerVmId(String centralServerVmId) {
            return centralServerVmId(Output.of(centralServerVmId));
        }

        /**
         * @param softwareInstallationType The SAP software installation Type.
         * Expected value is 'External'.
         * 
         * @return builder
         * 
         */
        public Builder softwareInstallationType(Output softwareInstallationType) {
            $.softwareInstallationType = softwareInstallationType;
            return this;
        }

        /**
         * @param softwareInstallationType The SAP software installation Type.
         * Expected value is 'External'.
         * 
         * @return builder
         * 
         */
        public Builder softwareInstallationType(String softwareInstallationType) {
            return softwareInstallationType(Output.of(softwareInstallationType));
        }

        public ExternalInstallationSoftwareConfigurationArgs build() {
            $.softwareInstallationType = Codegen.stringProp("softwareInstallationType").output().arg($.softwareInstallationType).require();
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy