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

com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager 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.GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManagerCpCodeOriginal;
import com.pulumi.akamai.inputs.GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManagerCpCodeTransformed;
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 GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager extends com.pulumi.resources.InvokeArgs {

    public static final GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager Empty = new GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager();

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

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

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

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

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

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

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

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

    @Import(name="imageSet")
    private @Nullable String 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 Boolean 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 String policySetType;

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

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

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

    /**
     * This option is for internal usage only.
     * 
     */
    @Import(name="templateUuid")
    private @Nullable String 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 String 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 String videoSet;

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

    private GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager() {}

    private GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager(GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager $) {
        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(GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager $;

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

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

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

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

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

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

        public Builder imageSet(@Nullable String imageSet) {
            $.imageSet = imageSet;
            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(@Nullable Boolean locked) {
            $.locked = locked;
            return this;
        }

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

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

        /**
         * @param templateUuid This option is for internal usage only.
         * 
         * @return builder
         * 
         */
        public Builder templateUuid(@Nullable String templateUuid) {
            $.templateUuid = templateUuid;
            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(@Nullable String uuid) {
            $.uuid = uuid;
            return this;
        }

        public Builder videoSet(@Nullable String videoSet) {
            $.videoSet = videoSet;
            return this;
        }

        public GetPropertyRulesBuilderRulesV20230530BehaviorImageAndVideoManager build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy