
com.pulumi.azurenative.cloudngfw.inputs.ListGlobalRulestackAppIdsPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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 ListGlobalRulestackAppIdsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListGlobalRulestackAppIdsPlainArgs Empty = new ListGlobalRulestackAppIdsPlainArgs();
@Import(name="appIdVersion")
private @Nullable String appIdVersion;
public Optional appIdVersion() {
return Optional.ofNullable(this.appIdVersion);
}
@Import(name="appPrefix")
private @Nullable String appPrefix;
public Optional appPrefix() {
return Optional.ofNullable(this.appPrefix);
}
/**
* 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);
}
private ListGlobalRulestackAppIdsPlainArgs() {}
private ListGlobalRulestackAppIdsPlainArgs(ListGlobalRulestackAppIdsPlainArgs $) {
this.appIdVersion = $.appIdVersion;
this.appPrefix = $.appPrefix;
this.globalRulestackName = $.globalRulestackName;
this.skip = $.skip;
this.top = $.top;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListGlobalRulestackAppIdsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListGlobalRulestackAppIdsPlainArgs $;
public Builder() {
$ = new ListGlobalRulestackAppIdsPlainArgs();
}
public Builder(ListGlobalRulestackAppIdsPlainArgs defaults) {
$ = new ListGlobalRulestackAppIdsPlainArgs(Objects.requireNonNull(defaults));
}
public Builder appIdVersion(@Nullable String appIdVersion) {
$.appIdVersion = appIdVersion;
return this;
}
public Builder appPrefix(@Nullable String appPrefix) {
$.appPrefix = appPrefix;
return this;
}
/**
* @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 ListGlobalRulestackAppIdsPlainArgs build() {
if ($.globalRulestackName == null) {
throw new MissingRequiredPropertyException("ListGlobalRulestackAppIdsPlainArgs", "globalRulestackName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy