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

com.azure.resourcemanager.costmanagement.models.ForecastTimeframe Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for CostManagement Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. CostManagement management client provides access to CostManagement resources for Azure Enterprise Subscriptions. Package tag package-2022-10.

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

package com.azure.resourcemanager.costmanagement.models;

import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;

/** The time frame for pulling data for the forecast. */
public final class ForecastTimeframe extends ExpandableStringEnum {
    /** Static value Custom for ForecastTimeframe. */
    public static final ForecastTimeframe CUSTOM = fromString("Custom");

    /**
     * Creates a new instance of ForecastTimeframe value.
     *
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public ForecastTimeframe() {
    }

    /**
     * Creates or finds a ForecastTimeframe from its string representation.
     *
     * @param name a name to look for.
     * @return the corresponding ForecastTimeframe.
     */
    @JsonCreator
    public static ForecastTimeframe fromString(String name) {
        return fromString(name, ForecastTimeframe.class);
    }

    /**
     * Gets known ForecastTimeframe values.
     *
     * @return known ForecastTimeframe values.
     */
    public static Collection values() {
        return values(ForecastTimeframe.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy