MetastoreUpdateObject.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;
/** The MetastoreUpdateObject model. */
@Fluent
public final class MetastoreUpdateObject {
    /*
     * The input folder containing CDM files.
     */
    @JsonProperty(value = "inputFolder", required = true)
    private String inputFolder;
    /**
     * Get the inputFolder property: The input folder containing CDM files.
     *
     * @return the inputFolder value.
     */
    public String getInputFolder() {
        return this.inputFolder;
    }
    /**
     * Set the inputFolder property: The input folder containing CDM files.
     *
     * @param inputFolder the inputFolder value to set.
     * @return the MetastoreUpdateObject object itself.
     */
    public MetastoreUpdateObject setInputFolder(String inputFolder) {
        this.inputFolder = inputFolder;
        return this;
    }
}