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

com.azure.resourcemanager.avs.models.ScriptCmdletAudience Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Avs Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure VMware Solution API. Package tag package-2023-09-01.

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.resourcemanager.avs.models;

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

/**
 * Specifies whether a script cmdlet is intended to be invoked only through automation or visible to customers.
 */
public final class ScriptCmdletAudience extends ExpandableStringEnum {
    /**
     * Static value Automation for ScriptCmdletAudience.
     */
    public static final ScriptCmdletAudience AUTOMATION = fromString("Automation");

    /**
     * Static value Any for ScriptCmdletAudience.
     */
    public static final ScriptCmdletAudience ANY = fromString("Any");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy