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

com.pulumi.scm.inputs.HipObjectAntiMalwareCriteriaVirdefVersionArgs Maven / Gradle / Ivy

There is a newer version: 0.2.0-alpha.1732774506
Show 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.scm.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.scm.inputs.HipObjectAntiMalwareCriteriaVirdefVersionNotWithinArgs;
import com.pulumi.scm.inputs.HipObjectAntiMalwareCriteriaVirdefVersionWithinArgs;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final HipObjectAntiMalwareCriteriaVirdefVersionArgs Empty = new HipObjectAntiMalwareCriteriaVirdefVersionArgs();

    /**
     * The NotWithin param. Ensure that only one of the following is specified: `not_within`, `within`
     * 
     */
    @Import(name="notWithin")
    private @Nullable Output notWithin;

    /**
     * @return The NotWithin param. Ensure that only one of the following is specified: `not_within`, `within`
     * 
     */
    public Optional> notWithin() {
        return Optional.ofNullable(this.notWithin);
    }

    /**
     * The Within param. Ensure that only one of the following is specified: `not_within`, `within`
     * 
     */
    @Import(name="within")
    private @Nullable Output within;

    /**
     * @return The Within param. Ensure that only one of the following is specified: `not_within`, `within`
     * 
     */
    public Optional> within() {
        return Optional.ofNullable(this.within);
    }

    private HipObjectAntiMalwareCriteriaVirdefVersionArgs() {}

    private HipObjectAntiMalwareCriteriaVirdefVersionArgs(HipObjectAntiMalwareCriteriaVirdefVersionArgs $) {
        this.notWithin = $.notWithin;
        this.within = $.within;
    }

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

    public static final class Builder {
        private HipObjectAntiMalwareCriteriaVirdefVersionArgs $;

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

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

        /**
         * @param notWithin The NotWithin param. Ensure that only one of the following is specified: `not_within`, `within`
         * 
         * @return builder
         * 
         */
        public Builder notWithin(@Nullable Output notWithin) {
            $.notWithin = notWithin;
            return this;
        }

        /**
         * @param notWithin The NotWithin param. Ensure that only one of the following is specified: `not_within`, `within`
         * 
         * @return builder
         * 
         */
        public Builder notWithin(HipObjectAntiMalwareCriteriaVirdefVersionNotWithinArgs notWithin) {
            return notWithin(Output.of(notWithin));
        }

        /**
         * @param within The Within param. Ensure that only one of the following is specified: `not_within`, `within`
         * 
         * @return builder
         * 
         */
        public Builder within(@Nullable Output within) {
            $.within = within;
            return this;
        }

        /**
         * @param within The Within param. Ensure that only one of the following is specified: `not_within`, `within`
         * 
         * @return builder
         * 
         */
        public Builder within(HipObjectAntiMalwareCriteriaVirdefVersionWithinArgs within) {
            return within(Output.of(within));
        }

        public HipObjectAntiMalwareCriteriaVirdefVersionArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy