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

com.pulumi.azurenative.workloads.outputs.MountFileShareConfigurationResponse 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.workloads.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class MountFileShareConfigurationResponse {
    /**
     * @return The type of file share config.
     * Expected value is 'Mount'.
     * 
     */
    private String configurationType;
    /**
     * @return The fileshare resource ID
     * 
     */
    private String id;
    /**
     * @return The private endpoint resource ID
     * 
     */
    private String privateEndpointId;

    private MountFileShareConfigurationResponse() {}
    /**
     * @return The type of file share config.
     * Expected value is 'Mount'.
     * 
     */
    public String configurationType() {
        return this.configurationType;
    }
    /**
     * @return The fileshare resource ID
     * 
     */
    public String id() {
        return this.id;
    }
    /**
     * @return The private endpoint resource ID
     * 
     */
    public String privateEndpointId() {
        return this.privateEndpointId;
    }

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

    public static Builder builder(MountFileShareConfigurationResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String configurationType;
        private String id;
        private String privateEndpointId;
        public Builder() {}
        public Builder(MountFileShareConfigurationResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.configurationType = defaults.configurationType;
    	      this.id = defaults.id;
    	      this.privateEndpointId = defaults.privateEndpointId;
        }

        @CustomType.Setter
        public Builder configurationType(String configurationType) {
            if (configurationType == null) {
              throw new MissingRequiredPropertyException("MountFileShareConfigurationResponse", "configurationType");
            }
            this.configurationType = configurationType;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("MountFileShareConfigurationResponse", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder privateEndpointId(String privateEndpointId) {
            if (privateEndpointId == null) {
              throw new MissingRequiredPropertyException("MountFileShareConfigurationResponse", "privateEndpointId");
            }
            this.privateEndpointId = privateEndpointId;
            return this;
        }
        public MountFileShareConfigurationResponse build() {
            final var _resultValue = new MountFileShareConfigurationResponse();
            _resultValue.configurationType = configurationType;
            _resultValue.id = id;
            _resultValue.privateEndpointId = privateEndpointId;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy