
com.pulumi.azurenative.migrate.inputs.GetSolutionConfigArgs 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.migrate.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetSolutionConfigArgs extends com.pulumi.resources.InvokeArgs {
public static final GetSolutionConfigArgs Empty = new GetSolutionConfigArgs();
/**
* Name of the Azure Migrate project.
*
*/
@Import(name="migrateProjectName", required=true)
private Output migrateProjectName;
/**
* @return Name of the Azure Migrate project.
*
*/
public Output migrateProjectName() {
return this.migrateProjectName;
}
/**
* Name of the Azure Resource Group that migrate project is part of.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return Name of the Azure Resource Group that migrate project is part of.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Unique name of a migration solution within a migrate project.
*
*/
@Import(name="solutionName", required=true)
private Output solutionName;
/**
* @return Unique name of a migration solution within a migrate project.
*
*/
public Output solutionName() {
return this.solutionName;
}
private GetSolutionConfigArgs() {}
private GetSolutionConfigArgs(GetSolutionConfigArgs $) {
this.migrateProjectName = $.migrateProjectName;
this.resourceGroupName = $.resourceGroupName;
this.solutionName = $.solutionName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetSolutionConfigArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetSolutionConfigArgs $;
public Builder() {
$ = new GetSolutionConfigArgs();
}
public Builder(GetSolutionConfigArgs defaults) {
$ = new GetSolutionConfigArgs(Objects.requireNonNull(defaults));
}
/**
* @param migrateProjectName Name of the Azure Migrate project.
*
* @return builder
*
*/
public Builder migrateProjectName(Output migrateProjectName) {
$.migrateProjectName = migrateProjectName;
return this;
}
/**
* @param migrateProjectName Name of the Azure Migrate project.
*
* @return builder
*
*/
public Builder migrateProjectName(String migrateProjectName) {
return migrateProjectName(Output.of(migrateProjectName));
}
/**
* @param resourceGroupName Name of the Azure Resource Group that migrate project is part of.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName Name of the Azure Resource Group that migrate project is part of.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param solutionName Unique name of a migration solution within a migrate project.
*
* @return builder
*
*/
public Builder solutionName(Output solutionName) {
$.solutionName = solutionName;
return this;
}
/**
* @param solutionName Unique name of a migration solution within a migrate project.
*
* @return builder
*
*/
public Builder solutionName(String solutionName) {
return solutionName(Output.of(solutionName));
}
public GetSolutionConfigArgs build() {
if ($.migrateProjectName == null) {
throw new MissingRequiredPropertyException("GetSolutionConfigArgs", "migrateProjectName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetSolutionConfigArgs", "resourceGroupName");
}
if ($.solutionName == null) {
throw new MissingRequiredPropertyException("GetSolutionConfigArgs", "solutionName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy