com.pulumi.azurenative.cloudngfw.inputs.ListLocalRulestackSecurityServicesPlainArgs 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 ListLocalRulestackSecurityServicesPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListLocalRulestackSecurityServicesPlainArgs Empty = new ListLocalRulestackSecurityServicesPlainArgs();
/**
* LocalRulestack resource name
*
*/
@Import(name="localRulestackName", required=true)
private String localRulestackName;
/**
* @return LocalRulestack resource name
*
*/
public String localRulestackName() {
return this.localRulestackName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
@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 ListLocalRulestackSecurityServicesPlainArgs() {}
private ListLocalRulestackSecurityServicesPlainArgs(ListLocalRulestackSecurityServicesPlainArgs $) {
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(ListLocalRulestackSecurityServicesPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListLocalRulestackSecurityServicesPlainArgs $;
public Builder() {
$ = new ListLocalRulestackSecurityServicesPlainArgs();
}
public Builder(ListLocalRulestackSecurityServicesPlainArgs defaults) {
$ = new ListLocalRulestackSecurityServicesPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param localRulestackName LocalRulestack resource name
*
* @return builder
*
*/
public Builder localRulestackName(String localRulestackName) {
$.localRulestackName = localRulestackName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
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 ListLocalRulestackSecurityServicesPlainArgs build() {
if ($.localRulestackName == null) {
throw new MissingRequiredPropertyException("ListLocalRulestackSecurityServicesPlainArgs", "localRulestackName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ListLocalRulestackSecurityServicesPlainArgs", "resourceGroupName");
}
if ($.type == null) {
throw new MissingRequiredPropertyException("ListLocalRulestackSecurityServicesPlainArgs", "type");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy