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

com.pulumi.alicloud.alb.outputs.GetAclsResult Maven / Gradle / Ivy

There is a newer version: 3.63.0-alpha.1727424957
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.alicloud.alb.outputs;

import com.pulumi.alicloud.alb.outputs.GetAclsAcl;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class GetAclsResult {
    private @Nullable List aclIds;
    private @Nullable String aclName;
    private List acls;
    private @Nullable Boolean enableDetails;
    /**
     * @return The provider-assigned unique ID for this managed resource.
     * 
     */
    private String id;
    private List ids;
    private @Nullable String nameRegex;
    private List names;
    private @Nullable String outputFile;
    private @Nullable String resourceGroupId;
    private @Nullable String status;

    private GetAclsResult() {}
    public List aclIds() {
        return this.aclIds == null ? List.of() : this.aclIds;
    }
    public Optional aclName() {
        return Optional.ofNullable(this.aclName);
    }
    public List acls() {
        return this.acls;
    }
    public Optional enableDetails() {
        return Optional.ofNullable(this.enableDetails);
    }
    /**
     * @return The provider-assigned unique ID for this managed resource.
     * 
     */
    public String id() {
        return this.id;
    }
    public List ids() {
        return this.ids;
    }
    public Optional nameRegex() {
        return Optional.ofNullable(this.nameRegex);
    }
    public List names() {
        return this.names;
    }
    public Optional outputFile() {
        return Optional.ofNullable(this.outputFile);
    }
    public Optional resourceGroupId() {
        return Optional.ofNullable(this.resourceGroupId);
    }
    public Optional status() {
        return Optional.ofNullable(this.status);
    }

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

    public static Builder builder(GetAclsResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List aclIds;
        private @Nullable String aclName;
        private List acls;
        private @Nullable Boolean enableDetails;
        private String id;
        private List ids;
        private @Nullable String nameRegex;
        private List names;
        private @Nullable String outputFile;
        private @Nullable String resourceGroupId;
        private @Nullable String status;
        public Builder() {}
        public Builder(GetAclsResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.aclIds = defaults.aclIds;
    	      this.aclName = defaults.aclName;
    	      this.acls = defaults.acls;
    	      this.enableDetails = defaults.enableDetails;
    	      this.id = defaults.id;
    	      this.ids = defaults.ids;
    	      this.nameRegex = defaults.nameRegex;
    	      this.names = defaults.names;
    	      this.outputFile = defaults.outputFile;
    	      this.resourceGroupId = defaults.resourceGroupId;
    	      this.status = defaults.status;
        }

        @CustomType.Setter
        public Builder aclIds(@Nullable List aclIds) {

            this.aclIds = aclIds;
            return this;
        }
        public Builder aclIds(String... aclIds) {
            return aclIds(List.of(aclIds));
        }
        @CustomType.Setter
        public Builder aclName(@Nullable String aclName) {

            this.aclName = aclName;
            return this;
        }
        @CustomType.Setter
        public Builder acls(List acls) {
            if (acls == null) {
              throw new MissingRequiredPropertyException("GetAclsResult", "acls");
            }
            this.acls = acls;
            return this;
        }
        public Builder acls(GetAclsAcl... acls) {
            return acls(List.of(acls));
        }
        @CustomType.Setter
        public Builder enableDetails(@Nullable Boolean enableDetails) {

            this.enableDetails = enableDetails;
            return this;
        }
        @CustomType.Setter
        public Builder id(String id) {
            if (id == null) {
              throw new MissingRequiredPropertyException("GetAclsResult", "id");
            }
            this.id = id;
            return this;
        }
        @CustomType.Setter
        public Builder ids(List ids) {
            if (ids == null) {
              throw new MissingRequiredPropertyException("GetAclsResult", "ids");
            }
            this.ids = ids;
            return this;
        }
        public Builder ids(String... ids) {
            return ids(List.of(ids));
        }
        @CustomType.Setter
        public Builder nameRegex(@Nullable String nameRegex) {

            this.nameRegex = nameRegex;
            return this;
        }
        @CustomType.Setter
        public Builder names(List names) {
            if (names == null) {
              throw new MissingRequiredPropertyException("GetAclsResult", "names");
            }
            this.names = names;
            return this;
        }
        public Builder names(String... names) {
            return names(List.of(names));
        }
        @CustomType.Setter
        public Builder outputFile(@Nullable String outputFile) {

            this.outputFile = outputFile;
            return this;
        }
        @CustomType.Setter
        public Builder resourceGroupId(@Nullable String resourceGroupId) {

            this.resourceGroupId = resourceGroupId;
            return this;
        }
        @CustomType.Setter
        public Builder status(@Nullable String status) {

            this.status = status;
            return this;
        }
        public GetAclsResult build() {
            final var _resultValue = new GetAclsResult();
            _resultValue.aclIds = aclIds;
            _resultValue.aclName = aclName;
            _resultValue.acls = acls;
            _resultValue.enableDetails = enableDetails;
            _resultValue.id = id;
            _resultValue.ids = ids;
            _resultValue.nameRegex = nameRegex;
            _resultValue.names = names;
            _resultValue.outputFile = outputFile;
            _resultValue.resourceGroupId = resourceGroupId;
            _resultValue.status = status;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy