com.azure.resourcemanager.cosmos.models.TriggerOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.cosmos.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The operation the trigger is associated with.
*/
public final class TriggerOperation extends ExpandableStringEnum {
/**
* Static value All for TriggerOperation.
*/
public static final TriggerOperation ALL = fromString("All");
/**
* Static value Create for TriggerOperation.
*/
public static final TriggerOperation CREATE = fromString("Create");
/**
* Static value Update for TriggerOperation.
*/
public static final TriggerOperation UPDATE = fromString("Update");
/**
* Static value Delete for TriggerOperation.
*/
public static final TriggerOperation DELETE = fromString("Delete");
/**
* Static value Replace for TriggerOperation.
*/
public static final TriggerOperation REPLACE = fromString("Replace");
/**
* Creates a new instance of TriggerOperation value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public TriggerOperation() {
}
/**
* Creates or finds a TriggerOperation from its string representation.
*
* @param name a name to look for.
* @return the corresponding TriggerOperation.
*/
public static TriggerOperation fromString(String name) {
return fromString(name, TriggerOperation.class);
}
/**
* Gets known TriggerOperation values.
*
* @return known TriggerOperation values.
*/
public static Collection values() {
return values(TriggerOperation.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy