MetastoreRequestSuccessResponse.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 MetastoreRequestSuccessResponse model. */
@Fluent
public final class MetastoreRequestSuccessResponse {
    /*
     * Enumerates possible Status of the resource.
     */
    @JsonProperty(value = "status")
    private ResourceStatus status;

    /**
     * Get the status property: Enumerates possible Status of the resource.
     *
     * @return the status value.
     */
    public ResourceStatus getStatus() {
        return this.status;
    }

    /**
     * Set the status property: Enumerates possible Status of the resource.
     *
     * @param status the status value to set.
     * @return the MetastoreRequestSuccessResponse object itself.
     */
    public MetastoreRequestSuccessResponse setStatus(ResourceStatus status) {
        this.status = status;
        return this;
    }
}