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

com.pulumi.azurenative.network.FirewallPolicyRuleCollectionGroupDraft 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.network;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.network.FirewallPolicyRuleCollectionGroupDraftArgs;
import com.pulumi.azurenative.network.outputs.FirewallPolicyFilterRuleCollectionResponse;
import com.pulumi.azurenative.network.outputs.FirewallPolicyNatRuleCollectionResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Either;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Rule Collection Group resource.
 * Azure REST API version: 2023-11-01.
 * 
 * Other available API versions: 2024-01-01, 2024-03-01.
 * 
 * ## Example Usage
 * ### create or update rule collection group draft
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.network.FirewallPolicyRuleCollectionGroupDraft;
 * import com.pulumi.azurenative.network.FirewallPolicyRuleCollectionGroupDraftArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * 
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var firewallPolicyRuleCollectionGroupDraft = new FirewallPolicyRuleCollectionGroupDraft("firewallPolicyRuleCollectionGroupDraft", FirewallPolicyRuleCollectionGroupDraftArgs.builder()
 *             .firewallPolicyName("firewallPolicy")
 *             .priority(100)
 *             .resourceGroupName("rg1")
 *             .ruleCollectionGroupName("ruleCollectionGroup1")
 *             .ruleCollections(FirewallPolicyFilterRuleCollectionArgs.builder()
 *                 .action(FirewallPolicyFilterRuleCollectionActionArgs.builder()
 *                     .type("Deny")
 *                     .build())
 *                 .name("Example-Filter-Rule-Collection")
 *                 .priority(100)
 *                 .ruleCollectionType("FirewallPolicyFilterRuleCollection")
 *                 .rules(NetworkRuleArgs.builder()
 *                     .destinationAddresses("*")
 *                     .destinationPorts("*")
 *                     .ipProtocols("TCP")
 *                     .name("network-rule1")
 *                     .ruleType("NetworkRule")
 *                     .sourceAddresses("10.1.25.0/24")
 *                     .build())
 *                 .build())
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:network:FirewallPolicyRuleCollectionGroupDraft ruleCollectionGroup1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/firewallPolicies/{firewallPolicyName}/ruleCollectionGroups/{ruleCollectionGroupName}/ruleCollectionGroupDrafts/default * ``` * */ @ResourceType(type="azure-native:network:FirewallPolicyRuleCollectionGroupDraft") public class FirewallPolicyRuleCollectionGroupDraft extends com.pulumi.resources.CustomResource { /** * The name of the resource that is unique within a resource group. This name can be used to access the resource. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name of the resource that is unique within a resource group. This name can be used to access the resource. * */ public Output> name() { return Codegen.optional(this.name); } /** * Priority of the Firewall Policy Rule Collection Group resource. * */ @Export(name="priority", refs={Integer.class}, tree="[0]") private Output priority; /** * @return Priority of the Firewall Policy Rule Collection Group resource. * */ public Output> priority() { return Codegen.optional(this.priority); } /** * Group of Firewall Policy rule collections. * */ @Export(name="ruleCollections", refs={List.class,Either.class,FirewallPolicyFilterRuleCollectionResponse.class,FirewallPolicyNatRuleCollectionResponse.class}, tree="[0,[1,2,3]]") private Output>> ruleCollections; /** * @return Group of Firewall Policy rule collections. * */ public Output>>> ruleCollections() { return Codegen.optional(this.ruleCollections); } /** * A read-only string that represents the size of the FirewallPolicyRuleCollectionGroupProperties in MB. (ex 1.2MB) * */ @Export(name="size", refs={String.class}, tree="[0]") private Output size; /** * @return A read-only string that represents the size of the FirewallPolicyRuleCollectionGroupProperties in MB. (ex 1.2MB) * */ public Output size() { return this.size; } /** * Rule Group type. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Rule Group type. * */ public Output type() { return this.type; } /** * * @param name The _unique_ name of the resulting resource. */ public FirewallPolicyRuleCollectionGroupDraft(java.lang.String name) { this(name, FirewallPolicyRuleCollectionGroupDraftArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public FirewallPolicyRuleCollectionGroupDraft(java.lang.String name, FirewallPolicyRuleCollectionGroupDraftArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public FirewallPolicyRuleCollectionGroupDraft(java.lang.String name, FirewallPolicyRuleCollectionGroupDraftArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:network:FirewallPolicyRuleCollectionGroupDraft", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private FirewallPolicyRuleCollectionGroupDraft(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:network:FirewallPolicyRuleCollectionGroupDraft", name, null, makeResourceOptions(options, id), false); } private static FirewallPolicyRuleCollectionGroupDraftArgs makeArgs(FirewallPolicyRuleCollectionGroupDraftArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? FirewallPolicyRuleCollectionGroupDraftArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .aliases(List.of( Output.of(Alias.builder().type("azure-native:network/v20231101:FirewallPolicyRuleCollectionGroupDraft").build()), Output.of(Alias.builder().type("azure-native:network/v20240101:FirewallPolicyRuleCollectionGroupDraft").build()), Output.of(Alias.builder().type("azure-native:network/v20240301:FirewallPolicyRuleCollectionGroupDraft").build()) )) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param options Optional settings to control the behavior of the CustomResource. */ public static FirewallPolicyRuleCollectionGroupDraft get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new FirewallPolicyRuleCollectionGroupDraft(name, id, options); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy