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

com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs 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.akamai.inputs.GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerCpCodeOriginalArgs;
import com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerCpCodeTransformedArgs;
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 GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs extends com.pulumi.resources.ResourceArgs {

    public static final GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs Empty = new GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs();

    @Import(name="applyBestFileType")
    private @Nullable Output applyBestFileType;

    public Optional> applyBestFileType() {
        return Optional.ofNullable(this.applyBestFileType);
    }

    @Import(name="cpCodeOriginal")
    private @Nullable Output cpCodeOriginal;

    public Optional> cpCodeOriginal() {
        return Optional.ofNullable(this.cpCodeOriginal);
    }

    @Import(name="cpCodeTransformed")
    private @Nullable Output cpCodeTransformed;

    public Optional> cpCodeTransformed() {
        return Optional.ofNullable(this.cpCodeTransformed);
    }

    @Import(name="enabled")
    private @Nullable Output enabled;

    public Optional> enabled() {
        return Optional.ofNullable(this.enabled);
    }

    @Import(name="imageSet")
    private @Nullable Output imageSet;

    public Optional> imageSet() {
        return Optional.ofNullable(this.imageSet);
    }

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

    @Import(name="policySetType")
    private @Nullable Output policySetType;

    public Optional> policySetType() {
        return Optional.ofNullable(this.policySetType);
    }

    @Import(name="resize")
    private @Nullable Output resize;

    public Optional> resize() {
        return Optional.ofNullable(this.resize);
    }

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

    @Import(name="videoSet")
    private @Nullable Output videoSet;

    public Optional> videoSet() {
        return Optional.ofNullable(this.videoSet);
    }

    private GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs() {}

    private GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs(GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs $) {
        this.applyBestFileType = $.applyBestFileType;
        this.cpCodeOriginal = $.cpCodeOriginal;
        this.cpCodeTransformed = $.cpCodeTransformed;
        this.enabled = $.enabled;
        this.imageSet = $.imageSet;
        this.locked = $.locked;
        this.policySetType = $.policySetType;
        this.resize = $.resize;
        this.templateUuid = $.templateUuid;
        this.uuid = $.uuid;
        this.videoSet = $.videoSet;
    }

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

    public static final class Builder {
        private GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs $;

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

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

        public Builder applyBestFileType(@Nullable Output applyBestFileType) {
            $.applyBestFileType = applyBestFileType;
            return this;
        }

        public Builder applyBestFileType(Boolean applyBestFileType) {
            return applyBestFileType(Output.of(applyBestFileType));
        }

        public Builder cpCodeOriginal(@Nullable Output cpCodeOriginal) {
            $.cpCodeOriginal = cpCodeOriginal;
            return this;
        }

        public Builder cpCodeOriginal(GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerCpCodeOriginalArgs cpCodeOriginal) {
            return cpCodeOriginal(Output.of(cpCodeOriginal));
        }

        public Builder cpCodeTransformed(@Nullable Output cpCodeTransformed) {
            $.cpCodeTransformed = cpCodeTransformed;
            return this;
        }

        public Builder cpCodeTransformed(GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerCpCodeTransformedArgs cpCodeTransformed) {
            return cpCodeTransformed(Output.of(cpCodeTransformed));
        }

        public Builder enabled(@Nullable Output enabled) {
            $.enabled = enabled;
            return this;
        }

        public Builder enabled(Boolean enabled) {
            return enabled(Output.of(enabled));
        }

        public Builder imageSet(@Nullable Output imageSet) {
            $.imageSet = imageSet;
            return this;
        }

        public Builder imageSet(String imageSet) {
            return imageSet(Output.of(imageSet));
        }

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

        public Builder policySetType(@Nullable Output policySetType) {
            $.policySetType = policySetType;
            return this;
        }

        public Builder policySetType(String policySetType) {
            return policySetType(Output.of(policySetType));
        }

        public Builder resize(@Nullable Output resize) {
            $.resize = resize;
            return this;
        }

        public Builder resize(Boolean resize) {
            return resize(Output.of(resize));
        }

        /**
         * @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 Builder videoSet(@Nullable Output videoSet) {
            $.videoSet = videoSet;
            return this;
        }

        public Builder videoSet(String videoSet) {
            return videoSet(Output.of(videoSet));
        }

        public GetPropertyRulesBuilderRulesV20240109BehaviorImageAndVideoManagerArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy