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

com.azure.messaging.eventgrid.systemevents.AcsRouterUpdatedWorkerProperty Maven / Gradle / Ivy

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.messaging.eventgrid.systemevents;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * An individual property updated in the Router Worker.
 */
public final class AcsRouterUpdatedWorkerProperty extends ExpandableStringEnum {
    /**
     * Static value AvailableForOffers for AcsRouterUpdatedWorkerProperty.
     */
    public static final AcsRouterUpdatedWorkerProperty AVAILABLE_FOR_OFFERS = fromString("AvailableForOffers");

    /**
     * Static value TotalCapacity for AcsRouterUpdatedWorkerProperty.
     */
    public static final AcsRouterUpdatedWorkerProperty TOTAL_CAPACITY = fromString("TotalCapacity");

    /**
     * Static value QueueAssignments for AcsRouterUpdatedWorkerProperty.
     */
    public static final AcsRouterUpdatedWorkerProperty QUEUE_ASSIGNMENTS = fromString("QueueAssignments");

    /**
     * Static value Labels for AcsRouterUpdatedWorkerProperty.
     */
    public static final AcsRouterUpdatedWorkerProperty LABELS = fromString("Labels");

    /**
     * Static value Tags for AcsRouterUpdatedWorkerProperty.
     */
    public static final AcsRouterUpdatedWorkerProperty TAGS = fromString("Tags");

    /**
     * Static value ChannelConfigurations for AcsRouterUpdatedWorkerProperty.
     */
    public static final AcsRouterUpdatedWorkerProperty CHANNEL_CONFIGURATIONS = fromString("ChannelConfigurations");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy