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

com.pulumi.consul.outputs.AclTokenTemplatedPolicy 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.consul.outputs;

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

@CustomType
public final class AclTokenTemplatedPolicy {
    /**
     * @return Specifies the datacenters the effective policy is valid within.
     * 
     */
    private @Nullable List datacenters;
    /**
     * @return The name of the templated policies.
     * 
     */
    private String templateName;
    /**
     * @return The templated policy variables.
     * 
     */
    private @Nullable AclTokenTemplatedPolicyTemplateVariables templateVariables;

    private AclTokenTemplatedPolicy() {}
    /**
     * @return Specifies the datacenters the effective policy is valid within.
     * 
     */
    public List datacenters() {
        return this.datacenters == null ? List.of() : this.datacenters;
    }
    /**
     * @return The name of the templated policies.
     * 
     */
    public String templateName() {
        return this.templateName;
    }
    /**
     * @return The templated policy variables.
     * 
     */
    public Optional templateVariables() {
        return Optional.ofNullable(this.templateVariables);
    }

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

    public static Builder builder(AclTokenTemplatedPolicy defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List datacenters;
        private String templateName;
        private @Nullable AclTokenTemplatedPolicyTemplateVariables templateVariables;
        public Builder() {}
        public Builder(AclTokenTemplatedPolicy defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.datacenters = defaults.datacenters;
    	      this.templateName = defaults.templateName;
    	      this.templateVariables = defaults.templateVariables;
        }

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

            this.datacenters = datacenters;
            return this;
        }
        public Builder datacenters(String... datacenters) {
            return datacenters(List.of(datacenters));
        }
        @CustomType.Setter
        public Builder templateName(String templateName) {
            if (templateName == null) {
              throw new MissingRequiredPropertyException("AclTokenTemplatedPolicy", "templateName");
            }
            this.templateName = templateName;
            return this;
        }
        @CustomType.Setter
        public Builder templateVariables(@Nullable AclTokenTemplatedPolicyTemplateVariables templateVariables) {

            this.templateVariables = templateVariables;
            return this;
        }
        public AclTokenTemplatedPolicy build() {
            final var _resultValue = new AclTokenTemplatedPolicy();
            _resultValue.datacenters = datacenters;
            _resultValue.templateName = templateName;
            _resultValue.templateVariables = templateVariables;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy