com.azure.resourcemanager.mediaservices.models.LiveEventResourceState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mediaservices Show documentation
Show all versions of azure-resourcemanager-mediaservices Show documentation
This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mediaservices.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for LiveEventResourceState. */
public final class LiveEventResourceState extends ExpandableStringEnum {
/** Static value Stopped for LiveEventResourceState. */
public static final LiveEventResourceState STOPPED = fromString("Stopped");
/** Static value Allocating for LiveEventResourceState. */
public static final LiveEventResourceState ALLOCATING = fromString("Allocating");
/** Static value StandBy for LiveEventResourceState. */
public static final LiveEventResourceState STAND_BY = fromString("StandBy");
/** Static value Starting for LiveEventResourceState. */
public static final LiveEventResourceState STARTING = fromString("Starting");
/** Static value Running for LiveEventResourceState. */
public static final LiveEventResourceState RUNNING = fromString("Running");
/** Static value Stopping for LiveEventResourceState. */
public static final LiveEventResourceState STOPPING = fromString("Stopping");
/** Static value Deleting for LiveEventResourceState. */
public static final LiveEventResourceState DELETING = fromString("Deleting");
/**
* Creates or finds a LiveEventResourceState from its string representation.
*
* @param name a name to look for.
* @return the corresponding LiveEventResourceState.
*/
@JsonCreator
public static LiveEventResourceState fromString(String name) {
return fromString(name, LiveEventResourceState.class);
}
/**
* Gets known LiveEventResourceState values.
*
* @return known LiveEventResourceState values.
*/
public static Collection values() {
return values(LiveEventResourceState.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy