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

com.pulumi.googlenative.baremetalsolution.v2.enums.AllowedClientMountPermissions Maven / Gradle / Ivy

// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.googlenative.baremetalsolution.v2.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * Mount permissions.
     * 
     */
    @EnumType
    public enum AllowedClientMountPermissions {
        /**
         * Permissions were not specified.
         * 
         */
        MountPermissionsUnspecified("MOUNT_PERMISSIONS_UNSPECIFIED"),
        /**
         * NFS share can be mount with read-only permissions.
         * 
         */
        Read("READ"),
        /**
         * NFS share can be mount with read-write permissions.
         * 
         */
        ReadWrite("READ_WRITE");

        private final String value;

        AllowedClientMountPermissions(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public String toString() {
            return new StringJoiner(", ", "AllowedClientMountPermissions[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy