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

com.azure.resourcemanager.datafactory.models.ScriptActivityLogDestination Maven / Gradle / Ivy

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

package com.azure.resourcemanager.datafactory.models;

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

/**
 * The destination of logs. Type: string.
 */
public final class ScriptActivityLogDestination extends ExpandableStringEnum {
    /**
     * Static value ActivityOutput for ScriptActivityLogDestination.
     */
    public static final ScriptActivityLogDestination ACTIVITY_OUTPUT = fromString("ActivityOutput");

    /**
     * Static value ExternalStore for ScriptActivityLogDestination.
     */
    public static final ScriptActivityLogDestination EXTERNAL_STORE = fromString("ExternalStore");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy