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

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

// *** 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 java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final HipObjectMobileDeviceCriteriaModelArgs Empty = new HipObjectMobileDeviceCriteriaModelArgs();

    /**
     * The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
     * 
     */
    @Import(name="contains")
    private @Nullable Output contains;

    /**
     * @return The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
     * 
     */
    public Optional> contains() {
        return Optional.ofNullable(this.contains);
    }

    /**
     * The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
     * 
     */
    @Import(name="is")
    private @Nullable Output is;

    /**
     * @return The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
     * 
     */
    public Optional> is() {
        return Optional.ofNullable(this.is);
    }

    /**
     * The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
     * 
     */
    @Import(name="isNot")
    private @Nullable Output isNot;

    /**
     * @return The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
     * 
     */
    public Optional> isNot() {
        return Optional.ofNullable(this.isNot);
    }

    private HipObjectMobileDeviceCriteriaModelArgs() {}

    private HipObjectMobileDeviceCriteriaModelArgs(HipObjectMobileDeviceCriteriaModelArgs $) {
        this.contains = $.contains;
        this.is = $.is;
        this.isNot = $.isNot;
    }

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

    public static final class Builder {
        private HipObjectMobileDeviceCriteriaModelArgs $;

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

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

        /**
         * @param contains The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
         * 
         * @return builder
         * 
         */
        public Builder contains(@Nullable Output contains) {
            $.contains = contains;
            return this;
        }

        /**
         * @param contains The Contains param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
         * 
         * @return builder
         * 
         */
        public Builder contains(String contains) {
            return contains(Output.of(contains));
        }

        /**
         * @param is The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
         * 
         * @return builder
         * 
         */
        public Builder is(@Nullable Output is) {
            $.is = is;
            return this;
        }

        /**
         * @param is The Is param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
         * 
         * @return builder
         * 
         */
        public Builder is(String is) {
            return is(Output.of(is));
        }

        /**
         * @param isNot The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
         * 
         * @return builder
         * 
         */
        public Builder isNot(@Nullable Output isNot) {
            $.isNot = isNot;
            return this;
        }

        /**
         * @param isNot The IsNot param. String length must not exceed 255 characters. Ensure that only one of the following is specified: `contains`, `is`, `is_not`
         * 
         * @return builder
         * 
         */
        public Builder isNot(String isNot) {
            return isNot(Output.of(isNot));
        }

        public HipObjectMobileDeviceCriteriaModelArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy