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

com.pulumi.googlenative.gkeonprem.v1.outputs.BareMetalLvpShareConfigResponse 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.googlenative.gkeonprem.v1.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.googlenative.gkeonprem.v1.outputs.BareMetalLvpConfigResponse;
import java.lang.Integer;
import java.util.Objects;

@CustomType
public final class BareMetalLvpShareConfigResponse {
    /**
     * @return Defines the machine path and storage class for the LVP Share.
     * 
     */
    private BareMetalLvpConfigResponse lvpConfig;
    /**
     * @return The number of subdirectories to create under path.
     * 
     */
    private Integer sharedPathPvCount;

    private BareMetalLvpShareConfigResponse() {}
    /**
     * @return Defines the machine path and storage class for the LVP Share.
     * 
     */
    public BareMetalLvpConfigResponse lvpConfig() {
        return this.lvpConfig;
    }
    /**
     * @return The number of subdirectories to create under path.
     * 
     */
    public Integer sharedPathPvCount() {
        return this.sharedPathPvCount;
    }

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

    public static Builder builder(BareMetalLvpShareConfigResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private BareMetalLvpConfigResponse lvpConfig;
        private Integer sharedPathPvCount;
        public Builder() {}
        public Builder(BareMetalLvpShareConfigResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.lvpConfig = defaults.lvpConfig;
    	      this.sharedPathPvCount = defaults.sharedPathPvCount;
        }

        @CustomType.Setter
        public Builder lvpConfig(BareMetalLvpConfigResponse lvpConfig) {
            this.lvpConfig = Objects.requireNonNull(lvpConfig);
            return this;
        }
        @CustomType.Setter
        public Builder sharedPathPvCount(Integer sharedPathPvCount) {
            this.sharedPathPvCount = Objects.requireNonNull(sharedPathPvCount);
            return this;
        }
        public BareMetalLvpShareConfigResponse build() {
            final var o = new BareMetalLvpShareConfigResponse();
            o.lvpConfig = lvpConfig;
            o.sharedPathPvCount = sharedPathPvCount;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy