1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. PolicyObjectUnifiedUrlFiltering
Cisco Catalyst SD-WAN v0.5.1 published on Tuesday, Nov 4, 2025 by Pulumi

sdwan.PolicyObjectUnifiedUrlFiltering

Get Started
sdwan logo
Cisco Catalyst SD-WAN v0.5.1 published on Tuesday, Nov 4, 2025 by Pulumi

    This resource can manage a Policy Object Unified URL Filtering Policy_object.

    • Minimum SD-WAN Manager version: 20.12.0

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = new sdwan.PolicyObjectUnifiedUrlFiltering("example", {
        name: "Example",
        description: "My Example",
        featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        webCategoriesAction: "block",
        webCategories: ["confirmed-spam-sources"],
        webReputation: "suspicious",
        urlAllowListId: "2ad58d78-59ee-46d3-86dd-7b6b7ca09f38",
        urlBlockListId: "2ad58d78-59ee-46d3-86dd-7b6b7ca09f38",
        blockPageAction: "text",
        blockPageContents: "Access to the requested page has been denied. Please contact your Network Administrator",
        enableAlerts: true,
        alerts: ["blacklist"],
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.PolicyObjectUnifiedUrlFiltering("example",
        name="Example",
        description="My Example",
        feature_profile_id="f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        web_categories_action="block",
        web_categories=["confirmed-spam-sources"],
        web_reputation="suspicious",
        url_allow_list_id="2ad58d78-59ee-46d3-86dd-7b6b7ca09f38",
        url_block_list_id="2ad58d78-59ee-46d3-86dd-7b6b7ca09f38",
        block_page_action="text",
        block_page_contents="Access to the requested page has been denied. Please contact your Network Administrator",
        enable_alerts=True,
        alerts=["blacklist"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sdwan.NewPolicyObjectUnifiedUrlFiltering(ctx, "example", &sdwan.PolicyObjectUnifiedUrlFilteringArgs{
    			Name:                pulumi.String("Example"),
    			Description:         pulumi.String("My Example"),
    			FeatureProfileId:    pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
    			WebCategoriesAction: pulumi.String("block"),
    			WebCategories: pulumi.StringArray{
    				pulumi.String("confirmed-spam-sources"),
    			},
    			WebReputation:     pulumi.String("suspicious"),
    			UrlAllowListId:    pulumi.String("2ad58d78-59ee-46d3-86dd-7b6b7ca09f38"),
    			UrlBlockListId:    pulumi.String("2ad58d78-59ee-46d3-86dd-7b6b7ca09f38"),
    			BlockPageAction:   pulumi.String("text"),
    			BlockPageContents: pulumi.String("Access to the requested page has been denied. Please contact your Network Administrator"),
    			EnableAlerts:      pulumi.Bool(true),
    			Alerts: pulumi.StringArray{
    				pulumi.String("blacklist"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sdwan = Pulumi.Sdwan;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Sdwan.PolicyObjectUnifiedUrlFiltering("example", new()
        {
            Name = "Example",
            Description = "My Example",
            FeatureProfileId = "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
            WebCategoriesAction = "block",
            WebCategories = new[]
            {
                "confirmed-spam-sources",
            },
            WebReputation = "suspicious",
            UrlAllowListId = "2ad58d78-59ee-46d3-86dd-7b6b7ca09f38",
            UrlBlockListId = "2ad58d78-59ee-46d3-86dd-7b6b7ca09f38",
            BlockPageAction = "text",
            BlockPageContents = "Access to the requested page has been denied. Please contact your Network Administrator",
            EnableAlerts = true,
            Alerts = new[]
            {
                "blacklist",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.PolicyObjectUnifiedUrlFiltering;
    import com.pulumi.sdwan.PolicyObjectUnifiedUrlFilteringArgs;
    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 PolicyObjectUnifiedUrlFiltering("example", PolicyObjectUnifiedUrlFilteringArgs.builder()
                .name("Example")
                .description("My Example")
                .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
                .webCategoriesAction("block")
                .webCategories("confirmed-spam-sources")
                .webReputation("suspicious")
                .urlAllowListId("2ad58d78-59ee-46d3-86dd-7b6b7ca09f38")
                .urlBlockListId("2ad58d78-59ee-46d3-86dd-7b6b7ca09f38")
                .blockPageAction("text")
                .blockPageContents("Access to the requested page has been denied. Please contact your Network Administrator")
                .enableAlerts(true)
                .alerts("blacklist")
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:PolicyObjectUnifiedUrlFiltering
        properties:
          name: Example
          description: My Example
          featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
          webCategoriesAction: block
          webCategories:
            - confirmed-spam-sources
          webReputation: suspicious
          urlAllowListId: 2ad58d78-59ee-46d3-86dd-7b6b7ca09f38
          urlBlockListId: 2ad58d78-59ee-46d3-86dd-7b6b7ca09f38
          blockPageAction: text
          blockPageContents: Access to the requested page has been denied. Please contact your Network Administrator
          enableAlerts: true
          alerts:
            - blacklist
    

    Create PolicyObjectUnifiedUrlFiltering Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PolicyObjectUnifiedUrlFiltering(name: string, args: PolicyObjectUnifiedUrlFilteringArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyObjectUnifiedUrlFiltering(resource_name: str,
                                        args: PolicyObjectUnifiedUrlFilteringArgs,
                                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyObjectUnifiedUrlFiltering(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        web_categories: Optional[Sequence[str]] = None,
                                        block_page_action: Optional[str] = None,
                                        web_reputation: Optional[str] = None,
                                        web_categories_action: Optional[str] = None,
                                        enable_alerts: Optional[bool] = None,
                                        feature_profile_id: Optional[str] = None,
                                        name: Optional[str] = None,
                                        redirect_url: Optional[str] = None,
                                        url_allow_list_id: Optional[str] = None,
                                        url_block_list_id: Optional[str] = None,
                                        alerts: Optional[Sequence[str]] = None,
                                        description: Optional[str] = None,
                                        block_page_contents: Optional[str] = None)
    func NewPolicyObjectUnifiedUrlFiltering(ctx *Context, name string, args PolicyObjectUnifiedUrlFilteringArgs, opts ...ResourceOption) (*PolicyObjectUnifiedUrlFiltering, error)
    public PolicyObjectUnifiedUrlFiltering(string name, PolicyObjectUnifiedUrlFilteringArgs args, CustomResourceOptions? opts = null)
    public PolicyObjectUnifiedUrlFiltering(String name, PolicyObjectUnifiedUrlFilteringArgs args)
    public PolicyObjectUnifiedUrlFiltering(String name, PolicyObjectUnifiedUrlFilteringArgs args, CustomResourceOptions options)
    
    type: sdwan:PolicyObjectUnifiedUrlFiltering
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PolicyObjectUnifiedUrlFilteringArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args PolicyObjectUnifiedUrlFilteringArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args PolicyObjectUnifiedUrlFilteringArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyObjectUnifiedUrlFilteringArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyObjectUnifiedUrlFilteringArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var policyObjectUnifiedUrlFilteringResource = new Sdwan.PolicyObjectUnifiedUrlFiltering("policyObjectUnifiedUrlFilteringResource", new()
    {
        WebCategories = new[]
        {
            "string",
        },
        BlockPageAction = "string",
        WebReputation = "string",
        WebCategoriesAction = "string",
        EnableAlerts = false,
        FeatureProfileId = "string",
        Name = "string",
        RedirectUrl = "string",
        UrlAllowListId = "string",
        UrlBlockListId = "string",
        Alerts = new[]
        {
            "string",
        },
        Description = "string",
        BlockPageContents = "string",
    });
    
    example, err := sdwan.NewPolicyObjectUnifiedUrlFiltering(ctx, "policyObjectUnifiedUrlFilteringResource", &sdwan.PolicyObjectUnifiedUrlFilteringArgs{
    	WebCategories: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	BlockPageAction:     pulumi.String("string"),
    	WebReputation:       pulumi.String("string"),
    	WebCategoriesAction: pulumi.String("string"),
    	EnableAlerts:        pulumi.Bool(false),
    	FeatureProfileId:    pulumi.String("string"),
    	Name:                pulumi.String("string"),
    	RedirectUrl:         pulumi.String("string"),
    	UrlAllowListId:      pulumi.String("string"),
    	UrlBlockListId:      pulumi.String("string"),
    	Alerts: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description:       pulumi.String("string"),
    	BlockPageContents: pulumi.String("string"),
    })
    
    var policyObjectUnifiedUrlFilteringResource = new PolicyObjectUnifiedUrlFiltering("policyObjectUnifiedUrlFilteringResource", PolicyObjectUnifiedUrlFilteringArgs.builder()
        .webCategories("string")
        .blockPageAction("string")
        .webReputation("string")
        .webCategoriesAction("string")
        .enableAlerts(false)
        .featureProfileId("string")
        .name("string")
        .redirectUrl("string")
        .urlAllowListId("string")
        .urlBlockListId("string")
        .alerts("string")
        .description("string")
        .blockPageContents("string")
        .build());
    
    policy_object_unified_url_filtering_resource = sdwan.PolicyObjectUnifiedUrlFiltering("policyObjectUnifiedUrlFilteringResource",
        web_categories=["string"],
        block_page_action="string",
        web_reputation="string",
        web_categories_action="string",
        enable_alerts=False,
        feature_profile_id="string",
        name="string",
        redirect_url="string",
        url_allow_list_id="string",
        url_block_list_id="string",
        alerts=["string"],
        description="string",
        block_page_contents="string")
    
    const policyObjectUnifiedUrlFilteringResource = new sdwan.PolicyObjectUnifiedUrlFiltering("policyObjectUnifiedUrlFilteringResource", {
        webCategories: ["string"],
        blockPageAction: "string",
        webReputation: "string",
        webCategoriesAction: "string",
        enableAlerts: false,
        featureProfileId: "string",
        name: "string",
        redirectUrl: "string",
        urlAllowListId: "string",
        urlBlockListId: "string",
        alerts: ["string"],
        description: "string",
        blockPageContents: "string",
    });
    
    type: sdwan:PolicyObjectUnifiedUrlFiltering
    properties:
        alerts:
            - string
        blockPageAction: string
        blockPageContents: string
        description: string
        enableAlerts: false
        featureProfileId: string
        name: string
        redirectUrl: string
        urlAllowListId: string
        urlBlockListId: string
        webCategories:
            - string
        webCategoriesAction: string
        webReputation: string
    

    PolicyObjectUnifiedUrlFiltering Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The PolicyObjectUnifiedUrlFiltering resource accepts the following input properties:

    BlockPageAction string
    • Choices: text, redirect-url
    EnableAlerts bool
    FeatureProfileId string
    Feature Profile ID
    WebCategories List<string>
    WebCategoriesAction string
    • Choices: block, allow
    WebReputation string
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    Alerts List<string>
    , Attribute conditional on enable_alerts being equal to true
    BlockPageContents string
    , Attribute conditional on block_page_action being equal to text
    Description string
    The description of the Policy_object
    Name string
    The name of the Policy_object
    RedirectUrl string
    , Attribute conditional on block_page_action being equal to redirect-url
    UrlAllowListId string
    UrlBlockListId string
    BlockPageAction string
    • Choices: text, redirect-url
    EnableAlerts bool
    FeatureProfileId string
    Feature Profile ID
    WebCategories []string
    WebCategoriesAction string
    • Choices: block, allow
    WebReputation string
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    Alerts []string
    , Attribute conditional on enable_alerts being equal to true
    BlockPageContents string
    , Attribute conditional on block_page_action being equal to text
    Description string
    The description of the Policy_object
    Name string
    The name of the Policy_object
    RedirectUrl string
    , Attribute conditional on block_page_action being equal to redirect-url
    UrlAllowListId string
    UrlBlockListId string
    blockPageAction String
    • Choices: text, redirect-url
    enableAlerts Boolean
    featureProfileId String
    Feature Profile ID
    webCategories List<String>
    webCategoriesAction String
    • Choices: block, allow
    webReputation String
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts List<String>
    , Attribute conditional on enable_alerts being equal to true
    blockPageContents String
    , Attribute conditional on block_page_action being equal to text
    description String
    The description of the Policy_object
    name String
    The name of the Policy_object
    redirectUrl String
    , Attribute conditional on block_page_action being equal to redirect-url
    urlAllowListId String
    urlBlockListId String
    blockPageAction string
    • Choices: text, redirect-url
    enableAlerts boolean
    featureProfileId string
    Feature Profile ID
    webCategories string[]
    webCategoriesAction string
    • Choices: block, allow
    webReputation string
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts string[]
    , Attribute conditional on enable_alerts being equal to true
    blockPageContents string
    , Attribute conditional on block_page_action being equal to text
    description string
    The description of the Policy_object
    name string
    The name of the Policy_object
    redirectUrl string
    , Attribute conditional on block_page_action being equal to redirect-url
    urlAllowListId string
    urlBlockListId string
    block_page_action str
    • Choices: text, redirect-url
    enable_alerts bool
    feature_profile_id str
    Feature Profile ID
    web_categories Sequence[str]
    web_categories_action str
    • Choices: block, allow
    web_reputation str
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts Sequence[str]
    , Attribute conditional on enable_alerts being equal to true
    block_page_contents str
    , Attribute conditional on block_page_action being equal to text
    description str
    The description of the Policy_object
    name str
    The name of the Policy_object
    redirect_url str
    , Attribute conditional on block_page_action being equal to redirect-url
    url_allow_list_id str
    url_block_list_id str
    blockPageAction String
    • Choices: text, redirect-url
    enableAlerts Boolean
    featureProfileId String
    Feature Profile ID
    webCategories List<String>
    webCategoriesAction String
    • Choices: block, allow
    webReputation String
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts List<String>
    , Attribute conditional on enable_alerts being equal to true
    blockPageContents String
    , Attribute conditional on block_page_action being equal to text
    description String
    The description of the Policy_object
    name String
    The name of the Policy_object
    redirectUrl String
    , Attribute conditional on block_page_action being equal to redirect-url
    urlAllowListId String
    urlBlockListId String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the PolicyObjectUnifiedUrlFiltering resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Policy_object
    Id string
    The provider-assigned unique ID for this managed resource.
    Version int
    The version of the Policy_object
    id String
    The provider-assigned unique ID for this managed resource.
    version Integer
    The version of the Policy_object
    id string
    The provider-assigned unique ID for this managed resource.
    version number
    The version of the Policy_object
    id str
    The provider-assigned unique ID for this managed resource.
    version int
    The version of the Policy_object
    id String
    The provider-assigned unique ID for this managed resource.
    version Number
    The version of the Policy_object

    Look up Existing PolicyObjectUnifiedUrlFiltering Resource

    Get an existing PolicyObjectUnifiedUrlFiltering resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: PolicyObjectUnifiedUrlFilteringState, opts?: CustomResourceOptions): PolicyObjectUnifiedUrlFiltering
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alerts: Optional[Sequence[str]] = None,
            block_page_action: Optional[str] = None,
            block_page_contents: Optional[str] = None,
            description: Optional[str] = None,
            enable_alerts: Optional[bool] = None,
            feature_profile_id: Optional[str] = None,
            name: Optional[str] = None,
            redirect_url: Optional[str] = None,
            url_allow_list_id: Optional[str] = None,
            url_block_list_id: Optional[str] = None,
            version: Optional[int] = None,
            web_categories: Optional[Sequence[str]] = None,
            web_categories_action: Optional[str] = None,
            web_reputation: Optional[str] = None) -> PolicyObjectUnifiedUrlFiltering
    func GetPolicyObjectUnifiedUrlFiltering(ctx *Context, name string, id IDInput, state *PolicyObjectUnifiedUrlFilteringState, opts ...ResourceOption) (*PolicyObjectUnifiedUrlFiltering, error)
    public static PolicyObjectUnifiedUrlFiltering Get(string name, Input<string> id, PolicyObjectUnifiedUrlFilteringState? state, CustomResourceOptions? opts = null)
    public static PolicyObjectUnifiedUrlFiltering get(String name, Output<String> id, PolicyObjectUnifiedUrlFilteringState state, CustomResourceOptions options)
    resources:  _:    type: sdwan:PolicyObjectUnifiedUrlFiltering    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Alerts List<string>
    , Attribute conditional on enable_alerts being equal to true
    BlockPageAction string
    • Choices: text, redirect-url
    BlockPageContents string
    , Attribute conditional on block_page_action being equal to text
    Description string
    The description of the Policy_object
    EnableAlerts bool
    FeatureProfileId string
    Feature Profile ID
    Name string
    The name of the Policy_object
    RedirectUrl string
    , Attribute conditional on block_page_action being equal to redirect-url
    UrlAllowListId string
    UrlBlockListId string
    Version int
    The version of the Policy_object
    WebCategories List<string>
    WebCategoriesAction string
    • Choices: block, allow
    WebReputation string
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    Alerts []string
    , Attribute conditional on enable_alerts being equal to true
    BlockPageAction string
    • Choices: text, redirect-url
    BlockPageContents string
    , Attribute conditional on block_page_action being equal to text
    Description string
    The description of the Policy_object
    EnableAlerts bool
    FeatureProfileId string
    Feature Profile ID
    Name string
    The name of the Policy_object
    RedirectUrl string
    , Attribute conditional on block_page_action being equal to redirect-url
    UrlAllowListId string
    UrlBlockListId string
    Version int
    The version of the Policy_object
    WebCategories []string
    WebCategoriesAction string
    • Choices: block, allow
    WebReputation string
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts List<String>
    , Attribute conditional on enable_alerts being equal to true
    blockPageAction String
    • Choices: text, redirect-url
    blockPageContents String
    , Attribute conditional on block_page_action being equal to text
    description String
    The description of the Policy_object
    enableAlerts Boolean
    featureProfileId String
    Feature Profile ID
    name String
    The name of the Policy_object
    redirectUrl String
    , Attribute conditional on block_page_action being equal to redirect-url
    urlAllowListId String
    urlBlockListId String
    version Integer
    The version of the Policy_object
    webCategories List<String>
    webCategoriesAction String
    • Choices: block, allow
    webReputation String
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts string[]
    , Attribute conditional on enable_alerts being equal to true
    blockPageAction string
    • Choices: text, redirect-url
    blockPageContents string
    , Attribute conditional on block_page_action being equal to text
    description string
    The description of the Policy_object
    enableAlerts boolean
    featureProfileId string
    Feature Profile ID
    name string
    The name of the Policy_object
    redirectUrl string
    , Attribute conditional on block_page_action being equal to redirect-url
    urlAllowListId string
    urlBlockListId string
    version number
    The version of the Policy_object
    webCategories string[]
    webCategoriesAction string
    • Choices: block, allow
    webReputation string
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts Sequence[str]
    , Attribute conditional on enable_alerts being equal to true
    block_page_action str
    • Choices: text, redirect-url
    block_page_contents str
    , Attribute conditional on block_page_action being equal to text
    description str
    The description of the Policy_object
    enable_alerts bool
    feature_profile_id str
    Feature Profile ID
    name str
    The name of the Policy_object
    redirect_url str
    , Attribute conditional on block_page_action being equal to redirect-url
    url_allow_list_id str
    url_block_list_id str
    version int
    The version of the Policy_object
    web_categories Sequence[str]
    web_categories_action str
    • Choices: block, allow
    web_reputation str
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy
    alerts List<String>
    , Attribute conditional on enable_alerts being equal to true
    blockPageAction String
    • Choices: text, redirect-url
    blockPageContents String
    , Attribute conditional on block_page_action being equal to text
    description String
    The description of the Policy_object
    enableAlerts Boolean
    featureProfileId String
    Feature Profile ID
    name String
    The name of the Policy_object
    redirectUrl String
    , Attribute conditional on block_page_action being equal to redirect-url
    urlAllowListId String
    urlBlockListId String
    version Number
    The version of the Policy_object
    webCategories List<String>
    webCategoriesAction String
    • Choices: block, allow
    webReputation String
    • Choices: high-risk, low-risk, moderate-risk, suspicious, trustworthy

    Import

    The pulumi import command can be used, for example:

    Expected import identifier with the format: “policy_object_unified_url_filtering_id,feature_profile_id”

    $ pulumi import sdwan:index/policyObjectUnifiedUrlFiltering:PolicyObjectUnifiedUrlFiltering example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.5.1 published on Tuesday, Nov 4, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate