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