AzureBlobFSLocation.java

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.analytics.synapse.artifacts.models;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;

/** The location of azure blobFS dataset. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonTypeName("AzureBlobFSLocation")
@Fluent
public final class AzureBlobFSLocation extends DatasetLocation {
    /*
     * Specify the fileSystem of azure blobFS. Type: string (or Expression with
     * resultType string).
     */
    @JsonProperty(value = "fileSystem")
    private Object fileSystem;

    /**
     * Get the fileSystem property: Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType
     * string).
     *
     * @return the fileSystem value.
     */
    public Object getFileSystem() {
        return this.fileSystem;
    }

    /**
     * Set the fileSystem property: Specify the fileSystem of azure blobFS. Type: string (or Expression with resultType
     * string).
     *
     * @param fileSystem the fileSystem value to set.
     * @return the AzureBlobFSLocation object itself.
     */
    public AzureBlobFSLocation setFileSystem(Object fileSystem) {
        this.fileSystem = fileSystem;
        return this;
    }
}