com.azure.resourcemanager.machinelearning.models.ApplicationSharingPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-machinelearning Show documentation
Show all versions of azure-resourcemanager-machinelearning Show documentation
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;
/**
* Sharing policy for applications on this compute instance
*
* Policy for sharing applications on this compute instance among users of parent workspace. If Personal, only the
* creator can access applications on this compute instance. When Shared, any workspace user can access applications on
* this instance depending on his/her assigned role.
*/
public final class ApplicationSharingPolicy extends ExpandableStringEnum {
/**
* Static value Personal for ApplicationSharingPolicy.
*/
public static final ApplicationSharingPolicy PERSONAL = fromString("Personal");
/**
* Static value Shared for ApplicationSharingPolicy.
*/
public static final ApplicationSharingPolicy SHARED = fromString("Shared");
/**
* Creates a new instance of ApplicationSharingPolicy value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ApplicationSharingPolicy() {
}
/**
* Creates or finds a ApplicationSharingPolicy from its string representation.
*
* @param name a name to look for.
* @return the corresponding ApplicationSharingPolicy.
*/
public static ApplicationSharingPolicy fromString(String name) {
return fromString(name, ApplicationSharingPolicy.class);
}
/**
* Gets known ApplicationSharingPolicy values.
*
* @return known ApplicationSharingPolicy values.
*/
public static Collection values() {
return values(ApplicationSharingPolicy.class);
}
}