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

com.pulumi.azure.paloalto.LocalRulestackFqdnList Maven / Gradle / Ivy

// *** 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.azure.paloalto;

import com.pulumi.azure.Utilities;
import com.pulumi.azure.paloalto.LocalRulestackFqdnListArgs;
import com.pulumi.azure.paloalto.inputs.LocalRulestackFqdnListState;
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.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Manages a Palo Alto Local Rulestack FQDN List.
 * 
 * ## Example Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.paloalto.LocalRulestack;
 * import com.pulumi.azure.paloalto.LocalRulestackArgs;
 * import com.pulumi.azure.paloalto.LocalRulestackFqdnList;
 * import com.pulumi.azure.paloalto.LocalRulestackFqdnListArgs;
 * 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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("rg-example")
 *             .location("West Europe")
 *             .build());
 * 
 *         var exampleLocalRulestack = new LocalRulestack("exampleLocalRulestack", LocalRulestackArgs.builder()
 *             .name("example")
 *             .resourceGroupName(exampleAzurermResrouceGroup.name())
 *             .location(example.location())
 *             .build());
 * 
 *         var exampleLocalRulestackFqdnList = new LocalRulestackFqdnList("exampleLocalRulestackFqdnList", LocalRulestackFqdnListArgs.builder()
 *             .name("example")
 *             .rulestackId(exampleLocalRulestack.id())
 *             .fullyQualifiedDomainNames("contoso.com")
 *             .build());
 * 
 *     }
 * }
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * Palo Alto Local Rulestack FQDN Lists can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:paloalto/localRulestackFqdnList:LocalRulestackFqdnList example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/PaloAltoNetworks.Cloudngfw/localRulestacks/myLocalRulestack/fqdnLists/myFQDNList1 * ``` * */ @ResourceType(type="azure:paloalto/localRulestackFqdnList:LocalRulestackFqdnList") public class LocalRulestackFqdnList extends com.pulumi.resources.CustomResource { /** * The comment for Audit purposes. * */ @Export(name="auditComment", refs={String.class}, tree="[0]") private Output auditComment; /** * @return The comment for Audit purposes. * */ public Output> auditComment() { return Codegen.optional(this.auditComment); } /** * The description for the FQDN List. * */ @Export(name="description", refs={String.class}, tree="[0]") private Output description; /** * @return The description for the FQDN List. * */ public Output> description() { return Codegen.optional(this.description); } /** * Specifies a list of Fully Qualified Domain Names. * */ @Export(name="fullyQualifiedDomainNames", refs={List.class,String.class}, tree="[0,1]") private Output> fullyQualifiedDomainNames; /** * @return Specifies a list of Fully Qualified Domain Names. * */ public Output> fullyQualifiedDomainNames() { return this.fullyQualifiedDomainNames; } /** * The name which should be used for this Palo Alto Local Rulestack FQDN List. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name which should be used for this Palo Alto Local Rulestack FQDN List. * */ public Output name() { return this.name; } /** * The ID of the TODO. Changing this forces a new Palo Alto Local Rulestack FQDN List to be created. * */ @Export(name="rulestackId", refs={String.class}, tree="[0]") private Output rulestackId; /** * @return The ID of the TODO. Changing this forces a new Palo Alto Local Rulestack FQDN List to be created. * */ public Output rulestackId() { return this.rulestackId; } /** * * @param name The _unique_ name of the resulting resource. */ public LocalRulestackFqdnList(java.lang.String name) { this(name, LocalRulestackFqdnListArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public LocalRulestackFqdnList(java.lang.String name, LocalRulestackFqdnListArgs 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 LocalRulestackFqdnList(java.lang.String name, LocalRulestackFqdnListArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:paloalto/localRulestackFqdnList:LocalRulestackFqdnList", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private LocalRulestackFqdnList(java.lang.String name, Output id, @Nullable LocalRulestackFqdnListState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:paloalto/localRulestackFqdnList:LocalRulestackFqdnList", name, state, makeResourceOptions(options, id), false); } private static LocalRulestackFqdnListArgs makeArgs(LocalRulestackFqdnListArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? LocalRulestackFqdnListArgs.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()) .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 state * @param options Optional settings to control the behavior of the CustomResource. */ public static LocalRulestackFqdnList get(java.lang.String name, Output id, @Nullable LocalRulestackFqdnListState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new LocalRulestackFqdnList(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy