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

com.pulumi.azurenative.migrate.inputs.GetSolutionPlainArgs Maven / Gradle / Ivy

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

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetSolutionPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetSolutionPlainArgs Empty = new GetSolutionPlainArgs();

    /**
     * Name of the Azure Migrate project.
     * 
     */
    @Import(name="migrateProjectName", required=true)
    private String migrateProjectName;

    /**
     * @return Name of the Azure Migrate project.
     * 
     */
    public String migrateProjectName() {
        return this.migrateProjectName;
    }

    /**
     * Name of the Azure Resource Group that migrate project is part of.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return Name of the Azure Resource Group that migrate project is part of.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * Unique name of a migration solution within a migrate project.
     * 
     */
    @Import(name="solutionName", required=true)
    private String solutionName;

    /**
     * @return Unique name of a migration solution within a migrate project.
     * 
     */
    public String solutionName() {
        return this.solutionName;
    }

    private GetSolutionPlainArgs() {}

    private GetSolutionPlainArgs(GetSolutionPlainArgs $) {
        this.migrateProjectName = $.migrateProjectName;
        this.resourceGroupName = $.resourceGroupName;
        this.solutionName = $.solutionName;
    }

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

    public static final class Builder {
        private GetSolutionPlainArgs $;

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

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

        /**
         * @param migrateProjectName Name of the Azure Migrate project.
         * 
         * @return builder
         * 
         */
        public Builder migrateProjectName(String migrateProjectName) {
            $.migrateProjectName = migrateProjectName;
            return this;
        }

        /**
         * @param resourceGroupName Name of the Azure Resource Group that migrate project is part of.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param solutionName Unique name of a migration solution within a migrate project.
         * 
         * @return builder
         * 
         */
        public Builder solutionName(String solutionName) {
            $.solutionName = solutionName;
            return this;
        }

        public GetSolutionPlainArgs build() {
            if ($.migrateProjectName == null) {
                throw new MissingRequiredPropertyException("GetSolutionPlainArgs", "migrateProjectName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetSolutionPlainArgs", "resourceGroupName");
            }
            if ($.solutionName == null) {
                throw new MissingRequiredPropertyException("GetSolutionPlainArgs", "solutionName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy