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

com.pulumi.azure.storage.outputs.DataLakeGen2PathAce Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
Show newest version
// *** 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.azure.storage.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class DataLakeGen2PathAce {
    /**
     * @return Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for `user` or `group` entries.
     * 
     */
    private @Nullable String id;
    private String permissions;
    /**
     * @return Specifies whether the ACE represents an `access` entry or a `default` entry. Default value is `access`.
     * 
     */
    private @Nullable String scope;
    /**
     * @return Specifies the type of entry. Can be `user`, `group`, `mask` or `other`.
     * 
     */
    private String type;

    private DataLakeGen2PathAce() {}
    /**
     * @return Specifies the Object ID of the Azure Active Directory User or Group that the entry relates to. Only valid for `user` or `group` entries.
     * 
     */
    public Optional id() {
        return Optional.ofNullable(this.id);
    }
    public String permissions() {
        return this.permissions;
    }
    /**
     * @return Specifies whether the ACE represents an `access` entry or a `default` entry. Default value is `access`.
     * 
     */
    public Optional scope() {
        return Optional.ofNullable(this.scope);
    }
    /**
     * @return Specifies the type of entry. Can be `user`, `group`, `mask` or `other`.
     * 
     */
    public String type() {
        return this.type;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(DataLakeGen2PathAce defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String id;
        private String permissions;
        private @Nullable String scope;
        private String type;
        public Builder() {}
        public Builder(DataLakeGen2PathAce defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.id = defaults.id;
    	      this.permissions = defaults.permissions;
    	      this.scope = defaults.scope;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder id(@Nullable String id) {

            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder permissions(String permissions) {
            if (permissions == null) {
              throw new MissingRequiredPropertyException("DataLakeGen2PathAce", "permissions");
            }
            this.permissions = permissions;
            return this;
        }
        @CustomType.Setter
        public Builder scope(@Nullable String scope) {

            this.scope = scope;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("DataLakeGen2PathAce", "type");
            }
            this.type = type;
            return this;
        }
        public DataLakeGen2PathAce build() {
            final var _resultValue = new DataLakeGen2PathAce();
            _resultValue.id = id;
            _resultValue.permissions = permissions;
            _resultValue.scope = scope;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy