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

com.pulumi.scm.inputs.HipObjectMobileDeviceCriteriaImeiArgs 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 java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final HipObjectMobileDeviceCriteriaImeiArgs Empty = new HipObjectMobileDeviceCriteriaImeiArgs();

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

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

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

    public static final class Builder {
        private HipObjectMobileDeviceCriteriaImeiArgs $;

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

        public Builder(HipObjectMobileDeviceCriteriaImeiArgs defaults) {
            $ = new HipObjectMobileDeviceCriteriaImeiArgs(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 HipObjectMobileDeviceCriteriaImeiArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy