Fqdn List Local Rulestack
LocalRulestack fqdnList Uses Azure REST API version 2023-09-01. Other available API versions: 2022-08-29, 2022-08-29-preview, 2023-09-01-preview, 2023-10-10-preview, 2024-01-19-preview, 2024-02-07-preview, 2025-02-06-preview.
Example Usage
FqdnListLocalRulestack_CreateOrUpdate_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fqdnListLocalRulestack = new AzureNative.Cloudngfw.FqdnListLocalRulestack("fqdnListLocalRulestack", new()
{
AuditComment = "string",
Description = "string",
FqdnList = new[]
{
"string1",
"string2",
},
LocalRulestackName = "lrs1",
Name = "armid1",
ResourceGroupName = "rgopenapi",
});
});
Content copied to clipboard
package main
import (
cloudngfw "github.com/pulumi/pulumi-azure-native-sdk/cloudngfw/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudngfw.NewFqdnListLocalRulestack(ctx, "fqdnListLocalRulestack", &cloudngfw.FqdnListLocalRulestackArgs{
AuditComment: pulumi.String("string"),
Description: pulumi.String("string"),
FqdnList: pulumi.StringArray{
pulumi.String("string1"),
pulumi.String("string2"),
},
LocalRulestackName: pulumi.String("lrs1"),
Name: pulumi.String("armid1"),
ResourceGroupName: pulumi.String("rgopenapi"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cloudngfw.FqdnListLocalRulestack;
import com.pulumi.azurenative.cloudngfw.FqdnListLocalRulestackArgs;
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 fqdnListLocalRulestack = new FqdnListLocalRulestack("fqdnListLocalRulestack", FqdnListLocalRulestackArgs.builder()
.auditComment("string")
.description("string")
.fqdnList(
"string1",
"string2")
.localRulestackName("lrs1")
.name("armid1")
.resourceGroupName("rgopenapi")
.build());
}
}
Content copied to clipboard
FqdnListLocalRulestack_CreateOrUpdate_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fqdnListLocalRulestack = new AzureNative.Cloudngfw.FqdnListLocalRulestack("fqdnListLocalRulestack", new()
{
FqdnList = new[]
{
"string1",
"string2",
},
LocalRulestackName = "lrs1",
Name = "armid1",
ResourceGroupName = "rgopenapi",
});
});
Content copied to clipboard
package main
import (
cloudngfw "github.com/pulumi/pulumi-azure-native-sdk/cloudngfw/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudngfw.NewFqdnListLocalRulestack(ctx, "fqdnListLocalRulestack", &cloudngfw.FqdnListLocalRulestackArgs{
FqdnList: pulumi.StringArray{
pulumi.String("string1"),
pulumi.String("string2"),
},
LocalRulestackName: pulumi.String("lrs1"),
Name: pulumi.String("armid1"),
ResourceGroupName: pulumi.String("rgopenapi"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cloudngfw.FqdnListLocalRulestack;
import com.pulumi.azurenative.cloudngfw.FqdnListLocalRulestackArgs;
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 fqdnListLocalRulestack = new FqdnListLocalRulestack("fqdnListLocalRulestack", FqdnListLocalRulestackArgs.builder()
.fqdnList(
"string1",
"string2")
.localRulestackName("lrs1")
.name("armid1")
.resourceGroupName("rgopenapi")
.build());
}
}
Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cloudngfw:FqdnListLocalRulestack armid1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/PaloAltoNetworks.Cloudngfw/localRulestacks/{localRulestackName}/fqdnlists/{name}
Content copied to clipboard
Properties
Link copied to clipboard
comment for this object
Link copied to clipboard
fqdn object description
Link copied to clipboard
Provisioning state of the resource.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Azure Resource Manager metadata containing createdBy and modifiedBy information.