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

com.pulumi.azurenative.hdinsight.outputs.ComputeIsolationPropertiesResponse Maven / Gradle / Ivy

There is a newer version: 2.89.2
Show newest version
// *** 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.hdinsight.outputs;

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

@CustomType
public final class ComputeIsolationPropertiesResponse {
    /**
     * @return The flag indicates whether enable compute isolation or not.
     * 
     */
    private @Nullable Boolean enableComputeIsolation;
    /**
     * @return The host sku.
     * 
     */
    private @Nullable String hostSku;

    private ComputeIsolationPropertiesResponse() {}
    /**
     * @return The flag indicates whether enable compute isolation or not.
     * 
     */
    public Optional enableComputeIsolation() {
        return Optional.ofNullable(this.enableComputeIsolation);
    }
    /**
     * @return The host sku.
     * 
     */
    public Optional hostSku() {
        return Optional.ofNullable(this.hostSku);
    }

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

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

        @CustomType.Setter
        public Builder enableComputeIsolation(@Nullable Boolean enableComputeIsolation) {

            this.enableComputeIsolation = enableComputeIsolation;
            return this;
        }
        @CustomType.Setter
        public Builder hostSku(@Nullable String hostSku) {

            this.hostSku = hostSku;
            return this;
        }
        public ComputeIsolationPropertiesResponse build() {
            final var _resultValue = new ComputeIsolationPropertiesResponse();
            _resultValue.enableComputeIsolation = enableComputeIsolation;
            _resultValue.hostSku = hostSku;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy