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

com.azure.resourcemanager.resources.models.ExportTemplateOutputFormat 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.resources.models;

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

/**
 * The output format for the exported resources.
 */
public final class ExportTemplateOutputFormat extends ExpandableStringEnum {
    /**
     * Static value Json for ExportTemplateOutputFormat.
     */
    public static final ExportTemplateOutputFormat JSON = fromString("Json");

    /**
     * Static value Bicep for ExportTemplateOutputFormat.
     */
    public static final ExportTemplateOutputFormat BICEP = fromString("Bicep");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy