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

com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs Maven / Gradle / Ivy

The 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.akamai.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs extends com.pulumi.resources.ResourceArgs {

    public static final GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs Empty = new GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs();

    /**
     * Denies attempts to inject ESI code.
     * 
     */
    @Import(name="detectInjection")
    private @Nullable Output detectInjection;

    /**
     * @return Denies attempts to inject ESI code.
     * 
     */
    public Optional> detectInjection() {
        return Optional.ofNullable(this.detectInjection);
    }

    /**
     * Enable ESI only for content featuring the `Edge-control: dca=esi` HTTP response header.
     * 
     */
    @Import(name="enableViaHttp")
    private @Nullable Output enableViaHttp;

    /**
     * @return Enable ESI only for content featuring the `Edge-control: dca=esi` HTTP response header.
     * 
     */
    public Optional> enableViaHttp() {
        return Optional.ofNullable(this.enableViaHttp);
    }

    /**
     * Enables ESI processing.
     * 
     */
    @Import(name="enabled")
    private @Nullable Output enabled;

    /**
     * @return Enables ESI processing.
     * 
     */
    public Optional> enabled() {
        return Optional.ofNullable(this.enabled);
    }

    /**
     * Specifies the character sets to use when transcoding the ESI language, `UTF-8` and `ISO-8859-1` for example.
     * 
     */
    @Import(name="i18nCharsets")
    private @Nullable Output> i18nCharsets;

    /**
     * @return Specifies the character sets to use when transcoding the ESI language, `UTF-8` and `ISO-8859-1` for example.
     * 
     */
    public Optional>> i18nCharsets() {
        return Optional.ofNullable(this.i18nCharsets);
    }

    /**
     * Provides internationalization support for ESI.
     * 
     */
    @Import(name="i18nStatus")
    private @Nullable Output i18nStatus;

    /**
     * @return Provides internationalization support for ESI.
     * 
     */
    public Optional> i18nStatus() {
        return Optional.ofNullable(this.i18nStatus);
    }

    /**
     * Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
     * 
     */
    @Import(name="locked")
    private @Nullable Output locked;

    /**
     * @return Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
     * 
     */
    public Optional> locked() {
        return Optional.ofNullable(this.locked);
    }

    /**
     * Allows edge servers to pass the client IP header to the ESI processor.
     * 
     */
    @Import(name="passClientIp")
    private @Nullable Output passClientIp;

    /**
     * @return Allows edge servers to pass the client IP header to the ESI processor.
     * 
     */
    public Optional> passClientIp() {
        return Optional.ofNullable(this.passClientIp);
    }

    /**
     * Allows edge servers to pass your origin server's cookies to the ESI processor.
     * 
     */
    @Import(name="passSetCookie")
    private @Nullable Output passSetCookie;

    /**
     * @return Allows edge servers to pass your origin server's cookies to the ESI processor.
     * 
     */
    public Optional> passSetCookie() {
        return Optional.ofNullable(this.passSetCookie);
    }

    /**
     * This option is for internal usage only.
     * 
     */
    @Import(name="templateUuid")
    private @Nullable Output templateUuid;

    /**
     * @return This option is for internal usage only.
     * 
     */
    public Optional> templateUuid() {
        return Optional.ofNullable(this.templateUuid);
    }

    /**
     * A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
     * 
     */
    @Import(name="uuid")
    private @Nullable Output uuid;

    /**
     * @return A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
     * 
     */
    public Optional> uuid() {
        return Optional.ofNullable(this.uuid);
    }

    private GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs() {}

    private GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs(GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs $) {
        this.detectInjection = $.detectInjection;
        this.enableViaHttp = $.enableViaHttp;
        this.enabled = $.enabled;
        this.i18nCharsets = $.i18nCharsets;
        this.i18nStatus = $.i18nStatus;
        this.locked = $.locked;
        this.passClientIp = $.passClientIp;
        this.passSetCookie = $.passSetCookie;
        this.templateUuid = $.templateUuid;
        this.uuid = $.uuid;
    }

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

    public static final class Builder {
        private GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs $;

        public Builder() {
            $ = new GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs();
        }

        public Builder(GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs defaults) {
            $ = new GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param detectInjection Denies attempts to inject ESI code.
         * 
         * @return builder
         * 
         */
        public Builder detectInjection(@Nullable Output detectInjection) {
            $.detectInjection = detectInjection;
            return this;
        }

        /**
         * @param detectInjection Denies attempts to inject ESI code.
         * 
         * @return builder
         * 
         */
        public Builder detectInjection(Boolean detectInjection) {
            return detectInjection(Output.of(detectInjection));
        }

        /**
         * @param enableViaHttp Enable ESI only for content featuring the `Edge-control: dca=esi` HTTP response header.
         * 
         * @return builder
         * 
         */
        public Builder enableViaHttp(@Nullable Output enableViaHttp) {
            $.enableViaHttp = enableViaHttp;
            return this;
        }

        /**
         * @param enableViaHttp Enable ESI only for content featuring the `Edge-control: dca=esi` HTTP response header.
         * 
         * @return builder
         * 
         */
        public Builder enableViaHttp(Boolean enableViaHttp) {
            return enableViaHttp(Output.of(enableViaHttp));
        }

        /**
         * @param enabled Enables ESI processing.
         * 
         * @return builder
         * 
         */
        public Builder enabled(@Nullable Output enabled) {
            $.enabled = enabled;
            return this;
        }

        /**
         * @param enabled Enables ESI processing.
         * 
         * @return builder
         * 
         */
        public Builder enabled(Boolean enabled) {
            return enabled(Output.of(enabled));
        }

        /**
         * @param i18nCharsets Specifies the character sets to use when transcoding the ESI language, `UTF-8` and `ISO-8859-1` for example.
         * 
         * @return builder
         * 
         */
        public Builder i18nCharsets(@Nullable Output> i18nCharsets) {
            $.i18nCharsets = i18nCharsets;
            return this;
        }

        /**
         * @param i18nCharsets Specifies the character sets to use when transcoding the ESI language, `UTF-8` and `ISO-8859-1` for example.
         * 
         * @return builder
         * 
         */
        public Builder i18nCharsets(List i18nCharsets) {
            return i18nCharsets(Output.of(i18nCharsets));
        }

        /**
         * @param i18nCharsets Specifies the character sets to use when transcoding the ESI language, `UTF-8` and `ISO-8859-1` for example.
         * 
         * @return builder
         * 
         */
        public Builder i18nCharsets(String... i18nCharsets) {
            return i18nCharsets(List.of(i18nCharsets));
        }

        /**
         * @param i18nStatus Provides internationalization support for ESI.
         * 
         * @return builder
         * 
         */
        public Builder i18nStatus(@Nullable Output i18nStatus) {
            $.i18nStatus = i18nStatus;
            return this;
        }

        /**
         * @param i18nStatus Provides internationalization support for ESI.
         * 
         * @return builder
         * 
         */
        public Builder i18nStatus(Boolean i18nStatus) {
            return i18nStatus(Output.of(i18nStatus));
        }

        /**
         * @param locked Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder locked(@Nullable Output locked) {
            $.locked = locked;
            return this;
        }

        /**
         * @param locked Indicates that your Akamai representative has locked this behavior or criteria so that you can't modify it. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder locked(Boolean locked) {
            return locked(Output.of(locked));
        }

        /**
         * @param passClientIp Allows edge servers to pass the client IP header to the ESI processor.
         * 
         * @return builder
         * 
         */
        public Builder passClientIp(@Nullable Output passClientIp) {
            $.passClientIp = passClientIp;
            return this;
        }

        /**
         * @param passClientIp Allows edge servers to pass the client IP header to the ESI processor.
         * 
         * @return builder
         * 
         */
        public Builder passClientIp(Boolean passClientIp) {
            return passClientIp(Output.of(passClientIp));
        }

        /**
         * @param passSetCookie Allows edge servers to pass your origin server's cookies to the ESI processor.
         * 
         * @return builder
         * 
         */
        public Builder passSetCookie(@Nullable Output passSetCookie) {
            $.passSetCookie = passSetCookie;
            return this;
        }

        /**
         * @param passSetCookie Allows edge servers to pass your origin server's cookies to the ESI processor.
         * 
         * @return builder
         * 
         */
        public Builder passSetCookie(Boolean passSetCookie) {
            return passSetCookie(Output.of(passSetCookie));
        }

        /**
         * @param templateUuid This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder templateUuid(@Nullable Output templateUuid) {
            $.templateUuid = templateUuid;
            return this;
        }

        /**
         * @param templateUuid This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder templateUuid(String templateUuid) {
            return templateUuid(Output.of(templateUuid));
        }

        /**
         * @param uuid A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder uuid(@Nullable Output uuid) {
            $.uuid = uuid;
            return this;
        }

        /**
         * @param uuid A uuid member indicates that at least one of its component behaviors or criteria is advanced and read-only. You need to preserve this uuid as well when modifying the rule tree. This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder uuid(String uuid) {
            return uuid(Output.of(uuid));
        }

        public GetPropertyRulesBuilderRulesV20231030BehaviorEdgeSideIncludesArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy