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

com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs 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.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs Empty = new GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs();

    /**
     * Specifies a default data set for this property. If you don't configure a default database in the `ecmsDatabase` behavior, requests to objects in this data set follow the pattern: `<hostname>/datastore/<database_name>/<object_key>`.
     * 
     */
    @Import(name="dataset")
    private @Nullable Output dataset;

    /**
     * @return Specifies a default data set for this property. If you don't configure a default database in the `ecmsDatabase` behavior, requests to objects in this data set follow the pattern: `<hostname>/datastore/<database_name>/<object_key>`.
     * 
     */
    public Optional> dataset() {
        return Optional.ofNullable(this.dataset);
    }

    /**
     * Specifies where to pass a data set name in requests. If the specified location doesn't include the data set name or the name doesn't match the regular expression pattern, the default data set is used.
     * 
     */
    @Import(name="extractLocation")
    private @Nullable Output extractLocation;

    /**
     * @return Specifies where to pass a data set name in requests. If the specified location doesn't include the data set name or the name doesn't match the regular expression pattern, the default data set is used.
     * 
     */
    public Optional> extractLocation() {
        return Optional.ofNullable(this.extractLocation);
    }

    /**
     * Specifies the request header that passed the data set name. By default, it points to `X-KV-Dataset`.
     * 
     */
    @Import(name="headerName")
    private @Nullable Output headerName;

    /**
     * @return Specifies the request header that passed the data set name. By default, it points to `X-KV-Dataset`.
     * 
     */
    public Optional> headerName() {
        return Optional.ofNullable(this.headerName);
    }

    /**
     * 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);
    }

    /**
     * Specifies the query string parameter that passed the data set name. By default, it points to `dataset`.
     * 
     */
    @Import(name="queryParameterName")
    private @Nullable Output queryParameterName;

    /**
     * @return Specifies the query string parameter that passed the data set name. By default, it points to `dataset`.
     * 
     */
    public Optional> queryParameterName() {
        return Optional.ofNullable(this.queryParameterName);
    }

    /**
     * Specifies the regular expression that matches the data set name in the URL.
     * 
     */
    @Import(name="regexPattern")
    private @Nullable Output regexPattern;

    /**
     * @return Specifies the regular expression that matches the data set name in the URL.
     * 
     */
    public Optional> regexPattern() {
        return Optional.ofNullable(this.regexPattern);
    }

    /**
     * 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 GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs() {}

    private GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs(GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs $) {
        this.dataset = $.dataset;
        this.extractLocation = $.extractLocation;
        this.headerName = $.headerName;
        this.locked = $.locked;
        this.queryParameterName = $.queryParameterName;
        this.regexPattern = $.regexPattern;
        this.templateUuid = $.templateUuid;
        this.uuid = $.uuid;
    }

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

    public static final class Builder {
        private GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs $;

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

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

        /**
         * @param dataset Specifies a default data set for this property. If you don't configure a default database in the `ecmsDatabase` behavior, requests to objects in this data set follow the pattern: `<hostname>/datastore/<database_name>/<object_key>`.
         * 
         * @return builder
         * 
         */
        public Builder dataset(@Nullable Output dataset) {
            $.dataset = dataset;
            return this;
        }

        /**
         * @param dataset Specifies a default data set for this property. If you don't configure a default database in the `ecmsDatabase` behavior, requests to objects in this data set follow the pattern: `<hostname>/datastore/<database_name>/<object_key>`.
         * 
         * @return builder
         * 
         */
        public Builder dataset(String dataset) {
            return dataset(Output.of(dataset));
        }

        /**
         * @param extractLocation Specifies where to pass a data set name in requests. If the specified location doesn't include the data set name or the name doesn't match the regular expression pattern, the default data set is used.
         * 
         * @return builder
         * 
         */
        public Builder extractLocation(@Nullable Output extractLocation) {
            $.extractLocation = extractLocation;
            return this;
        }

        /**
         * @param extractLocation Specifies where to pass a data set name in requests. If the specified location doesn't include the data set name or the name doesn't match the regular expression pattern, the default data set is used.
         * 
         * @return builder
         * 
         */
        public Builder extractLocation(String extractLocation) {
            return extractLocation(Output.of(extractLocation));
        }

        /**
         * @param headerName Specifies the request header that passed the data set name. By default, it points to `X-KV-Dataset`.
         * 
         * @return builder
         * 
         */
        public Builder headerName(@Nullable Output headerName) {
            $.headerName = headerName;
            return this;
        }

        /**
         * @param headerName Specifies the request header that passed the data set name. By default, it points to `X-KV-Dataset`.
         * 
         * @return builder
         * 
         */
        public Builder headerName(String headerName) {
            return headerName(Output.of(headerName));
        }

        /**
         * @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 queryParameterName Specifies the query string parameter that passed the data set name. By default, it points to `dataset`.
         * 
         * @return builder
         * 
         */
        public Builder queryParameterName(@Nullable Output queryParameterName) {
            $.queryParameterName = queryParameterName;
            return this;
        }

        /**
         * @param queryParameterName Specifies the query string parameter that passed the data set name. By default, it points to `dataset`.
         * 
         * @return builder
         * 
         */
        public Builder queryParameterName(String queryParameterName) {
            return queryParameterName(Output.of(queryParameterName));
        }

        /**
         * @param regexPattern Specifies the regular expression that matches the data set name in the URL.
         * 
         * @return builder
         * 
         */
        public Builder regexPattern(@Nullable Output regexPattern) {
            $.regexPattern = regexPattern;
            return this;
        }

        /**
         * @param regexPattern Specifies the regular expression that matches the data set name in the URL.
         * 
         * @return builder
         * 
         */
        public Builder regexPattern(String regexPattern) {
            return regexPattern(Output.of(regexPattern));
        }

        /**
         * @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 GetPropertyRulesBuilderRulesV20230920BehaviorEcmsDatasetArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy