com.pulumi.azurenative.recoveryservices.inputs.VMwareV2FabricCreationInputArgs 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.recoveryservices.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* VMwareV2 fabric provider specific settings.
*
*/
public final class VMwareV2FabricCreationInputArgs extends com.pulumi.resources.ResourceArgs {
public static final VMwareV2FabricCreationInputArgs Empty = new VMwareV2FabricCreationInputArgs();
/**
* Gets the class type.
* Expected value is 'VMwareV2'.
*
*/
@Import(name="instanceType", required=true)
private Output instanceType;
/**
* @return Gets the class type.
* Expected value is 'VMwareV2'.
*
*/
public Output instanceType() {
return this.instanceType;
}
/**
* The ARM Id of the migration solution.
*
*/
@Import(name="migrationSolutionId", required=true)
private Output migrationSolutionId;
/**
* @return The ARM Id of the migration solution.
*
*/
public Output migrationSolutionId() {
return this.migrationSolutionId;
}
/**
* The ARM Id of the physical site.
*
*/
@Import(name="physicalSiteId")
private @Nullable Output physicalSiteId;
/**
* @return The ARM Id of the physical site.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy