
com.pulumi.azurenative.migrate.inputs.GetModernizeProjectPlainArgs 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.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 GetModernizeProjectPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetModernizeProjectPlainArgs Empty = new GetModernizeProjectPlainArgs();
/**
* Modernize project name.
*
*/
@Import(name="modernizeProjectName", required=true)
private String modernizeProjectName;
/**
* @return Modernize project name.
*
*/
public String modernizeProjectName() {
return this.modernizeProjectName;
}
/**
* Name of the Azure Resource Group that project is part of.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return Name of the Azure Resource Group that project is part of.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* Azure Subscription Id in which project was created.
*
*/
@Import(name="subscriptionId")
private @Nullable String subscriptionId;
/**
* @return Azure Subscription Id in which project was created.
*
*/
public Optional subscriptionId() {
return Optional.ofNullable(this.subscriptionId);
}
private GetModernizeProjectPlainArgs() {}
private GetModernizeProjectPlainArgs(GetModernizeProjectPlainArgs $) {
this.modernizeProjectName = $.modernizeProjectName;
this.resourceGroupName = $.resourceGroupName;
this.subscriptionId = $.subscriptionId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetModernizeProjectPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetModernizeProjectPlainArgs $;
public Builder() {
$ = new GetModernizeProjectPlainArgs();
}
public Builder(GetModernizeProjectPlainArgs defaults) {
$ = new GetModernizeProjectPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param modernizeProjectName Modernize project name.
*
* @return builder
*
*/
public Builder modernizeProjectName(String modernizeProjectName) {
$.modernizeProjectName = modernizeProjectName;
return this;
}
/**
* @param resourceGroupName Name of the Azure Resource Group that project is part of.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param subscriptionId Azure Subscription Id in which project was created.
*
* @return builder
*
*/
public Builder subscriptionId(@Nullable String subscriptionId) {
$.subscriptionId = subscriptionId;
return this;
}
public GetModernizeProjectPlainArgs build() {
if ($.modernizeProjectName == null) {
throw new MissingRequiredPropertyException("GetModernizeProjectPlainArgs", "modernizeProjectName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetModernizeProjectPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy