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

com.azure.resourcemanager.storage.models.Services Maven / Gradle / Ivy

There is a newer version: 2.45.0
Show 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.storage.models;

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

/**
 * The signed services accessible with the account SAS. Possible values include: Blob (b), Queue (q), Table (t), File
 * (f).
 */
public final class Services extends ExpandableStringEnum {
    /** Static value b for Services. */
    public static final Services B = fromString("b");

    /** Static value q for Services. */
    public static final Services Q = fromString("q");

    /** Static value t for Services. */
    public static final Services T = fromString("t");

    /** Static value f for Services. */
    public static final Services F = fromString("f");

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy