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

com.pulumi.azurenative.synapse.outputs.DataLakeStorageAccountDetailsResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.synapse.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 DataLakeStorageAccountDetailsResponse {
    /**
     * @return Account URL
     * 
     */
    private @Nullable String accountUrl;
    /**
     * @return Create managed private endpoint to this storage account or not
     * 
     */
    private @Nullable Boolean createManagedPrivateEndpoint;
    /**
     * @return Filesystem name
     * 
     */
    private @Nullable String filesystem;
    /**
     * @return ARM resource Id of this storage account
     * 
     */
    private @Nullable String resourceId;

    private DataLakeStorageAccountDetailsResponse() {}
    /**
     * @return Account URL
     * 
     */
    public Optional accountUrl() {
        return Optional.ofNullable(this.accountUrl);
    }
    /**
     * @return Create managed private endpoint to this storage account or not
     * 
     */
    public Optional createManagedPrivateEndpoint() {
        return Optional.ofNullable(this.createManagedPrivateEndpoint);
    }
    /**
     * @return Filesystem name
     * 
     */
    public Optional filesystem() {
        return Optional.ofNullable(this.filesystem);
    }
    /**
     * @return ARM resource Id of this storage account
     * 
     */
    public Optional resourceId() {
        return Optional.ofNullable(this.resourceId);
    }

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

    public static Builder builder(DataLakeStorageAccountDetailsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String accountUrl;
        private @Nullable Boolean createManagedPrivateEndpoint;
        private @Nullable String filesystem;
        private @Nullable String resourceId;
        public Builder() {}
        public Builder(DataLakeStorageAccountDetailsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.accountUrl = defaults.accountUrl;
    	      this.createManagedPrivateEndpoint = defaults.createManagedPrivateEndpoint;
    	      this.filesystem = defaults.filesystem;
    	      this.resourceId = defaults.resourceId;
        }

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

            this.accountUrl = accountUrl;
            return this;
        }
        @CustomType.Setter
        public Builder createManagedPrivateEndpoint(@Nullable Boolean createManagedPrivateEndpoint) {

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

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

            this.resourceId = resourceId;
            return this;
        }
        public DataLakeStorageAccountDetailsResponse build() {
            final var _resultValue = new DataLakeStorageAccountDetailsResponse();
            _resultValue.accountUrl = accountUrl;
            _resultValue.createManagedPrivateEndpoint = createManagedPrivateEndpoint;
            _resultValue.filesystem = filesystem;
            _resultValue.resourceId = resourceId;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy