
com.pulumi.azurenative.datareplication.outputs.HyperVMigrateFabricModelCustomPropertiesResponse 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 HyperVMigrateFabricModelCustomPropertiesResponse {
/**
* @return Gets or sets the fabric container Id.
*
*/
private String fabricContainerId;
/**
* @return Gets or sets the fabric resource Id.
*
*/
private String fabricResourceId;
/**
* @return Gets or sets the ARM Id of the HyperV site.
*
*/
private String hyperVSiteId;
/**
* @return Gets or sets the instance type.
* Expected value is 'HyperVMigrate'.
*
*/
private String instanceType;
/**
* @return Gets or sets the migration hub Uri.
*
*/
private String migrationHubUri;
/**
* @return Gets or sets the migration solution ARM Id.
*
*/
private String migrationSolutionId;
private HyperVMigrateFabricModelCustomPropertiesResponse() {}
/**
* @return Gets or sets the fabric container Id.
*
*/
public String fabricContainerId() {
return this.fabricContainerId;
}
/**
* @return Gets or sets the fabric resource Id.
*
*/
public String fabricResourceId() {
return this.fabricResourceId;
}
/**
* @return Gets or sets the ARM Id of the HyperV site.
*
*/
public String hyperVSiteId() {
return this.hyperVSiteId;
}
/**
* @return Gets or sets the instance type.
* Expected value is 'HyperVMigrate'.
*
*/
public String instanceType() {
return this.instanceType;
}
/**
* @return Gets or sets the migration hub Uri.
*
*/
public String migrationHubUri() {
return this.migrationHubUri;
}
/**
* @return Gets or sets the migration solution ARM Id.
*
*/
public String migrationSolutionId() {
return this.migrationSolutionId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(HyperVMigrateFabricModelCustomPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String fabricContainerId;
private String fabricResourceId;
private String hyperVSiteId;
private String instanceType;
private String migrationHubUri;
private String migrationSolutionId;
public Builder() {}
public Builder(HyperVMigrateFabricModelCustomPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.fabricContainerId = defaults.fabricContainerId;
this.fabricResourceId = defaults.fabricResourceId;
this.hyperVSiteId = defaults.hyperVSiteId;
this.instanceType = defaults.instanceType;
this.migrationHubUri = defaults.migrationHubUri;
this.migrationSolutionId = defaults.migrationSolutionId;
}
@CustomType.Setter
public Builder fabricContainerId(String fabricContainerId) {
if (fabricContainerId == null) {
throw new MissingRequiredPropertyException("HyperVMigrateFabricModelCustomPropertiesResponse", "fabricContainerId");
}
this.fabricContainerId = fabricContainerId;
return this;
}
@CustomType.Setter
public Builder fabricResourceId(String fabricResourceId) {
if (fabricResourceId == null) {
throw new MissingRequiredPropertyException("HyperVMigrateFabricModelCustomPropertiesResponse", "fabricResourceId");
}
this.fabricResourceId = fabricResourceId;
return this;
}
@CustomType.Setter
public Builder hyperVSiteId(String hyperVSiteId) {
if (hyperVSiteId == null) {
throw new MissingRequiredPropertyException("HyperVMigrateFabricModelCustomPropertiesResponse", "hyperVSiteId");
}
this.hyperVSiteId = hyperVSiteId;
return this;
}
@CustomType.Setter
public Builder instanceType(String instanceType) {
if (instanceType == null) {
throw new MissingRequiredPropertyException("HyperVMigrateFabricModelCustomPropertiesResponse", "instanceType");
}
this.instanceType = instanceType;
return this;
}
@CustomType.Setter
public Builder migrationHubUri(String migrationHubUri) {
if (migrationHubUri == null) {
throw new MissingRequiredPropertyException("HyperVMigrateFabricModelCustomPropertiesResponse", "migrationHubUri");
}
this.migrationHubUri = migrationHubUri;
return this;
}
@CustomType.Setter
public Builder migrationSolutionId(String migrationSolutionId) {
if (migrationSolutionId == null) {
throw new MissingRequiredPropertyException("HyperVMigrateFabricModelCustomPropertiesResponse", "migrationSolutionId");
}
this.migrationSolutionId = migrationSolutionId;
return this;
}
public HyperVMigrateFabricModelCustomPropertiesResponse build() {
final var _resultValue = new HyperVMigrateFabricModelCustomPropertiesResponse();
_resultValue.fabricContainerId = fabricContainerId;
_resultValue.fabricResourceId = fabricResourceId;
_resultValue.hyperVSiteId = hyperVSiteId;
_resultValue.instanceType = instanceType;
_resultValue.migrationHubUri = migrationHubUri;
_resultValue.migrationSolutionId = migrationSolutionId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy