
com.pulumi.azurenative.datareplication.outputs.VMwareMigrateFabricModelCustomPropertiesResponse Maven / Gradle / Ivy
// *** 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.datareplication.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class VMwareMigrateFabricModelCustomPropertiesResponse {
/**
* @return Gets or sets the instance type.
* Expected value is 'VMwareMigrate'.
*
*/
private String instanceType;
/**
* @return Gets or sets the ARM Id of the migration solution.
*
*/
private String migrationSolutionId;
/**
* @return Gets or sets the ARM Id of the VMware site.
*
*/
private String vmwareSiteId;
private VMwareMigrateFabricModelCustomPropertiesResponse() {}
/**
* @return Gets or sets the instance type.
* Expected value is 'VMwareMigrate'.
*
*/
public String instanceType() {
return this.instanceType;
}
/**
* @return Gets or sets the ARM Id of the migration solution.
*
*/
public String migrationSolutionId() {
return this.migrationSolutionId;
}
/**
* @return Gets or sets the ARM Id of the VMware site.
*
*/
public String vmwareSiteId() {
return this.vmwareSiteId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VMwareMigrateFabricModelCustomPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String instanceType;
private String migrationSolutionId;
private String vmwareSiteId;
public Builder() {}
public Builder(VMwareMigrateFabricModelCustomPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.instanceType = defaults.instanceType;
this.migrationSolutionId = defaults.migrationSolutionId;
this.vmwareSiteId = defaults.vmwareSiteId;
}
@CustomType.Setter
public Builder instanceType(String instanceType) {
if (instanceType == null) {
throw new MissingRequiredPropertyException("VMwareMigrateFabricModelCustomPropertiesResponse", "instanceType");
}
this.instanceType = instanceType;
return this;
}
@CustomType.Setter
public Builder migrationSolutionId(String migrationSolutionId) {
if (migrationSolutionId == null) {
throw new MissingRequiredPropertyException("VMwareMigrateFabricModelCustomPropertiesResponse", "migrationSolutionId");
}
this.migrationSolutionId = migrationSolutionId;
return this;
}
@CustomType.Setter
public Builder vmwareSiteId(String vmwareSiteId) {
if (vmwareSiteId == null) {
throw new MissingRequiredPropertyException("VMwareMigrateFabricModelCustomPropertiesResponse", "vmwareSiteId");
}
this.vmwareSiteId = vmwareSiteId;
return this;
}
public VMwareMigrateFabricModelCustomPropertiesResponse build() {
final var _resultValue = new VMwareMigrateFabricModelCustomPropertiesResponse();
_resultValue.instanceType = instanceType;
_resultValue.migrationSolutionId = migrationSolutionId;
_resultValue.vmwareSiteId = vmwareSiteId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy