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

com.pulumi.azurenative.cloudngfw.inputs.ListGlobalRulestackAdvancedSecurityObjectsPlainArgs Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.azurenative.cloudngfw.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class ListGlobalRulestackAdvancedSecurityObjectsPlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final ListGlobalRulestackAdvancedSecurityObjectsPlainArgs Empty = new ListGlobalRulestackAdvancedSecurityObjectsPlainArgs();

    /**
     * GlobalRulestack resource name
     * 
     */
    @Import(name="globalRulestackName", required=true)
    private String globalRulestackName;

    /**
     * @return GlobalRulestack resource name
     * 
     */
    public String globalRulestackName() {
        return this.globalRulestackName;
    }

    @Import(name="skip")
    private @Nullable String skip;

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

    @Import(name="top")
    private @Nullable Integer top;

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

    @Import(name="type", required=true)
    private String type;

    public String type() {
        return this.type;
    }

    private ListGlobalRulestackAdvancedSecurityObjectsPlainArgs() {}

    private ListGlobalRulestackAdvancedSecurityObjectsPlainArgs(ListGlobalRulestackAdvancedSecurityObjectsPlainArgs $) {
        this.globalRulestackName = $.globalRulestackName;
        this.skip = $.skip;
        this.top = $.top;
        this.type = $.type;
    }

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

    public static final class Builder {
        private ListGlobalRulestackAdvancedSecurityObjectsPlainArgs $;

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

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

        /**
         * @param globalRulestackName GlobalRulestack resource name
         * 
         * @return builder
         * 
         */
        public Builder globalRulestackName(String globalRulestackName) {
            $.globalRulestackName = globalRulestackName;
            return this;
        }

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

        public Builder top(@Nullable Integer top) {
            $.top = top;
            return this;
        }

        public Builder type(String type) {
            $.type = type;
            return this;
        }

        public ListGlobalRulestackAdvancedSecurityObjectsPlainArgs build() {
            if ($.globalRulestackName == null) {
                throw new MissingRequiredPropertyException("ListGlobalRulestackAdvancedSecurityObjectsPlainArgs", "globalRulestackName");
            }
            if ($.type == null) {
                throw new MissingRequiredPropertyException("ListGlobalRulestackAdvancedSecurityObjectsPlainArgs", "type");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy