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

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

There is a newer version: 2.82.0
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.Output;
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 ListLocalRulestackSecurityServicesArgs extends com.pulumi.resources.InvokeArgs {

    public static final ListLocalRulestackSecurityServicesArgs Empty = new ListLocalRulestackSecurityServicesArgs();

    /**
     * LocalRulestack resource name
     * 
     */
    @Import(name="localRulestackName", required=true)
    private Output localRulestackName;

    /**
     * @return LocalRulestack resource name
     * 
     */
    public Output localRulestackName() {
        return this.localRulestackName;
    }

    /**
     * The name of the resource group. The name is case insensitive.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return The name of the resource group. The name is case insensitive.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

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

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

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

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

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

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

    private ListLocalRulestackSecurityServicesArgs() {}

    private ListLocalRulestackSecurityServicesArgs(ListLocalRulestackSecurityServicesArgs $) {
        this.localRulestackName = $.localRulestackName;
        this.resourceGroupName = $.resourceGroupName;
        this.skip = $.skip;
        this.top = $.top;
        this.type = $.type;
    }

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

    public static final class Builder {
        private ListLocalRulestackSecurityServicesArgs $;

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

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

        /**
         * @param localRulestackName LocalRulestack resource name
         * 
         * @return builder
         * 
         */
        public Builder localRulestackName(Output localRulestackName) {
            $.localRulestackName = localRulestackName;
            return this;
        }

        /**
         * @param localRulestackName LocalRulestack resource name
         * 
         * @return builder
         * 
         */
        public Builder localRulestackName(String localRulestackName) {
            return localRulestackName(Output.of(localRulestackName));
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group. The name is case insensitive.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

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

        public Builder skip(String skip) {
            return skip(Output.of(skip));
        }

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

        public Builder top(Integer top) {
            return top(Output.of(top));
        }

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

        public Builder type(String type) {
            return type(Output.of(type));
        }

        public ListLocalRulestackSecurityServicesArgs build() {
            if ($.localRulestackName == null) {
                throw new MissingRequiredPropertyException("ListLocalRulestackSecurityServicesArgs", "localRulestackName");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("ListLocalRulestackSecurityServicesArgs", "resourceGroupName");
            }
            if ($.type == null) {
                throw new MissingRequiredPropertyException("ListLocalRulestackSecurityServicesArgs", "type");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy