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

com.azure.resourcemanager.machinelearning.models.ServiceDataAccessAuthIdentity Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Machine Learning Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. These APIs allow end users to operate on Azure Machine Learning Workspace resources. Package tag package-2024-04.

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.machinelearning.models;

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

/**
 * Defines values for ServiceDataAccessAuthIdentity.
 */
public final class ServiceDataAccessAuthIdentity extends ExpandableStringEnum {
    /**
     * Static value None for ServiceDataAccessAuthIdentity.
     */
    public static final ServiceDataAccessAuthIdentity NONE = fromString("None");

    /**
     * Static value WorkspaceSystemAssignedIdentity for ServiceDataAccessAuthIdentity.
     */
    public static final ServiceDataAccessAuthIdentity WORKSPACE_SYSTEM_ASSIGNED_IDENTITY
        = fromString("WorkspaceSystemAssignedIdentity");

    /**
     * Static value WorkspaceUserAssignedIdentity for ServiceDataAccessAuthIdentity.
     */
    public static final ServiceDataAccessAuthIdentity WORKSPACE_USER_ASSIGNED_IDENTITY
        = fromString("WorkspaceUserAssignedIdentity");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy