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

com.microsoft.azure.management.sql.implementation.ServerAutomaticTuningInner Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Sql Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 1.41.4
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 */

package com.microsoft.azure.management.sql.implementation;

import com.microsoft.azure.management.sql.AutomaticTuningServerMode;
import java.util.Map;
import com.microsoft.azure.management.sql.AutomaticTuningServerOptions;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.ProxyResource;

/**
 * Server-level Automatic Tuning.
 */
@JsonFlatten
public class ServerAutomaticTuningInner extends ProxyResource {
    /**
     * Automatic tuning desired state. Possible values include: 'Custom',
     * 'Auto', 'Unspecified'.
     */
    @JsonProperty(value = "properties.desiredState")
    private AutomaticTuningServerMode desiredState;

    /**
     * Automatic tuning actual state. Possible values include: 'Custom',
     * 'Auto', 'Unspecified'.
     */
    @JsonProperty(value = "properties.actualState", access = JsonProperty.Access.WRITE_ONLY)
    private AutomaticTuningServerMode actualState;

    /**
     * Automatic tuning options definition.
     */
    @JsonProperty(value = "properties.options")
    private Map options;

    /**
     * Get automatic tuning desired state. Possible values include: 'Custom', 'Auto', 'Unspecified'.
     *
     * @return the desiredState value
     */
    public AutomaticTuningServerMode desiredState() {
        return this.desiredState;
    }

    /**
     * Set automatic tuning desired state. Possible values include: 'Custom', 'Auto', 'Unspecified'.
     *
     * @param desiredState the desiredState value to set
     * @return the ServerAutomaticTuningInner object itself.
     */
    public ServerAutomaticTuningInner withDesiredState(AutomaticTuningServerMode desiredState) {
        this.desiredState = desiredState;
        return this;
    }

    /**
     * Get automatic tuning actual state. Possible values include: 'Custom', 'Auto', 'Unspecified'.
     *
     * @return the actualState value
     */
    public AutomaticTuningServerMode actualState() {
        return this.actualState;
    }

    /**
     * Get automatic tuning options definition.
     *
     * @return the options value
     */
    public Map options() {
        return this.options;
    }

    /**
     * Set automatic tuning options definition.
     *
     * @param options the options value to set
     * @return the ServerAutomaticTuningInner object itself.
     */
    public ServerAutomaticTuningInner withOptions(Map options) {
        this.options = options;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy