
com.pulumi.azurenative.network.inputs.GetFirewallPolicyRuleCollectionGroupDraftPlainArgs 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.network.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetFirewallPolicyRuleCollectionGroupDraftPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetFirewallPolicyRuleCollectionGroupDraftPlainArgs Empty = new GetFirewallPolicyRuleCollectionGroupDraftPlainArgs();
/**
* The name of the Firewall Policy.
*
*/
@Import(name="firewallPolicyName", required=true)
private String firewallPolicyName;
/**
* @return The name of the Firewall Policy.
*
*/
public String firewallPolicyName() {
return this.firewallPolicyName;
}
/**
* The name of the resource group.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* The name of the FirewallPolicyRuleCollectionGroup.
*
*/
@Import(name="ruleCollectionGroupName", required=true)
private String ruleCollectionGroupName;
/**
* @return The name of the FirewallPolicyRuleCollectionGroup.
*
*/
public String ruleCollectionGroupName() {
return this.ruleCollectionGroupName;
}
private GetFirewallPolicyRuleCollectionGroupDraftPlainArgs() {}
private GetFirewallPolicyRuleCollectionGroupDraftPlainArgs(GetFirewallPolicyRuleCollectionGroupDraftPlainArgs $) {
this.firewallPolicyName = $.firewallPolicyName;
this.resourceGroupName = $.resourceGroupName;
this.ruleCollectionGroupName = $.ruleCollectionGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetFirewallPolicyRuleCollectionGroupDraftPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetFirewallPolicyRuleCollectionGroupDraftPlainArgs $;
public Builder() {
$ = new GetFirewallPolicyRuleCollectionGroupDraftPlainArgs();
}
public Builder(GetFirewallPolicyRuleCollectionGroupDraftPlainArgs defaults) {
$ = new GetFirewallPolicyRuleCollectionGroupDraftPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param firewallPolicyName The name of the Firewall Policy.
*
* @return builder
*
*/
public Builder firewallPolicyName(String firewallPolicyName) {
$.firewallPolicyName = firewallPolicyName;
return this;
}
/**
* @param resourceGroupName The name of the resource group.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param ruleCollectionGroupName The name of the FirewallPolicyRuleCollectionGroup.
*
* @return builder
*
*/
public Builder ruleCollectionGroupName(String ruleCollectionGroupName) {
$.ruleCollectionGroupName = ruleCollectionGroupName;
return this;
}
public GetFirewallPolicyRuleCollectionGroupDraftPlainArgs build() {
if ($.firewallPolicyName == null) {
throw new MissingRequiredPropertyException("GetFirewallPolicyRuleCollectionGroupDraftPlainArgs", "firewallPolicyName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetFirewallPolicyRuleCollectionGroupDraftPlainArgs", "resourceGroupName");
}
if ($.ruleCollectionGroupName == null) {
throw new MissingRequiredPropertyException("GetFirewallPolicyRuleCollectionGroupDraftPlainArgs", "ruleCollectionGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy