com.azure.resourcemanager.storagecache.models.AmlFilesystemSquashMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storagecache Show documentation
Show all versions of azure-resourcemanager-storagecache Show documentation
This package contains Microsoft Azure SDK for StorageCache Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Managed Lustre provides a fully managed Lustre® file system, integrated with Blob storage, for use on demand. These operations create and manage Azure Managed Lustre file systems. Package tag package-2024-03.
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.storagecache.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Squash mode of the AML file system. 'All': User and Group IDs on files will be squashed to the provided values for
* all users on non-trusted systems. 'RootOnly': User and Group IDs on files will be squashed to provided values for
* solely the root user on non-trusted systems. 'None': No squashing of User and Group IDs is performed for any users on
* any systems.
*/
public final class AmlFilesystemSquashMode extends ExpandableStringEnum {
/**
* Static value None for AmlFilesystemSquashMode.
*/
public static final AmlFilesystemSquashMode NONE = fromString("None");
/**
* Static value RootOnly for AmlFilesystemSquashMode.
*/
public static final AmlFilesystemSquashMode ROOT_ONLY = fromString("RootOnly");
/**
* Static value All for AmlFilesystemSquashMode.
*/
public static final AmlFilesystemSquashMode ALL = fromString("All");
/**
* Creates a new instance of AmlFilesystemSquashMode value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public AmlFilesystemSquashMode() {
}
/**
* Creates or finds a AmlFilesystemSquashMode from its string representation.
*
* @param name a name to look for.
* @return the corresponding AmlFilesystemSquashMode.
*/
public static AmlFilesystemSquashMode fromString(String name) {
return fromString(name, AmlFilesystemSquashMode.class);
}
/**
* Gets known AmlFilesystemSquashMode values.
*
* @return known AmlFilesystemSquashMode values.
*/
public static Collection values() {
return values(AmlFilesystemSquashMode.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy