All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.devtestlab.outputs.FormulaPropertiesFromVmResponse 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.devtestlab.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class FormulaPropertiesFromVmResponse {
    /**
     * @return The identifier of the VM from which a formula is to be created.
     * 
     */
    private @Nullable String labVmId;

    private FormulaPropertiesFromVmResponse() {}
    /**
     * @return The identifier of the VM from which a formula is to be created.
     * 
     */
    public Optional labVmId() {
        return Optional.ofNullable(this.labVmId);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(FormulaPropertiesFromVmResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String labVmId;
        public Builder() {}
        public Builder(FormulaPropertiesFromVmResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.labVmId = defaults.labVmId;
        }

        @CustomType.Setter
        public Builder labVmId(@Nullable String labVmId) {

            this.labVmId = labVmId;
            return this;
        }
        public FormulaPropertiesFromVmResponse build() {
            final var _resultValue = new FormulaPropertiesFromVmResponse();
            _resultValue.labVmId = labVmId;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy