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