com.pulumi.azurenative.migrate.inputs.GetGroupPlainArgs 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;
public final class GetGroupPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetGroupPlainArgs Empty = new GetGroupPlainArgs();
/**
* Unique name of a group within a project.
*
*/
@Import(name="groupName", required=true)
private String groupName;
/**
* @return Unique name of a group within a project.
*
*/
public String groupName() {
return this.groupName;
}
/**
* Name of the Azure Migrate project.
*
*/
@Import(name="projectName", required=true)
private String projectName;
/**
* @return Name of the Azure Migrate project.
*
*/
public String projectName() {
return this.projectName;
}
/**
* 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;
}
private GetGroupPlainArgs() {}
private GetGroupPlainArgs(GetGroupPlainArgs $) {
this.groupName = $.groupName;
this.projectName = $.projectName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetGroupPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetGroupPlainArgs $;
public Builder() {
$ = new GetGroupPlainArgs();
}
public Builder(GetGroupPlainArgs defaults) {
$ = new GetGroupPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param groupName Unique name of a group within a project.
*
* @return builder
*
*/
public Builder groupName(String groupName) {
$.groupName = groupName;
return this;
}
/**
* @param projectName Name of the Azure Migrate project.
*
* @return builder
*
*/
public Builder projectName(String projectName) {
$.projectName = projectName;
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;
}
public GetGroupPlainArgs build() {
if ($.groupName == null) {
throw new MissingRequiredPropertyException("GetGroupPlainArgs", "groupName");
}
if ($.projectName == null) {
throw new MissingRequiredPropertyException("GetGroupPlainArgs", "projectName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetGroupPlainArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy