sdwan.UrlFilteringPolicyDefinition
Explore with Pulumi AI
This resource can manage a URL Filtering Policy Definition .
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.UrlFilteringPolicyDefinition("example", {
name: "Example",
description: "My description",
mode: "security",
alerts: ["blacklist"],
webCategories: ["alcohol-and-tobacco"],
webCategoriesAction: "allow",
webReputation: "moderate-risk",
targetVpns: ["1"],
blockPageAction: "text",
blockPageContents: "Access to the requested page has been denied. Please contact your Network Administrator",
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.UrlFilteringPolicyDefinition("example",
name="Example",
description="My description",
mode="security",
alerts=["blacklist"],
web_categories=["alcohol-and-tobacco"],
web_categories_action="allow",
web_reputation="moderate-risk",
target_vpns=["1"],
block_page_action="text",
block_page_contents="Access to the requested page has been denied. Please contact your Network Administrator")
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.NewUrlFilteringPolicyDefinition(ctx, "example", &sdwan.UrlFilteringPolicyDefinitionArgs{
Name: pulumi.String("Example"),
Description: pulumi.String("My description"),
Mode: pulumi.String("security"),
Alerts: pulumi.StringArray{
pulumi.String("blacklist"),
},
WebCategories: pulumi.StringArray{
pulumi.String("alcohol-and-tobacco"),
},
WebCategoriesAction: pulumi.String("allow"),
WebReputation: pulumi.String("moderate-risk"),
TargetVpns: pulumi.StringArray{
pulumi.String("1"),
},
BlockPageAction: pulumi.String("text"),
BlockPageContents: pulumi.String("Access to the requested page has been denied. Please contact your Network Administrator"),
})
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.UrlFilteringPolicyDefinition("example", new()
{
Name = "Example",
Description = "My description",
Mode = "security",
Alerts = new[]
{
"blacklist",
},
WebCategories = new[]
{
"alcohol-and-tobacco",
},
WebCategoriesAction = "allow",
WebReputation = "moderate-risk",
TargetVpns = new[]
{
"1",
},
BlockPageAction = "text",
BlockPageContents = "Access to the requested page has been denied. Please contact your Network Administrator",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.UrlFilteringPolicyDefinition;
import com.pulumi.sdwan.UrlFilteringPolicyDefinitionArgs;
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 UrlFilteringPolicyDefinition("example", UrlFilteringPolicyDefinitionArgs.builder()
.name("Example")
.description("My description")
.mode("security")
.alerts("blacklist")
.webCategories("alcohol-and-tobacco")
.webCategoriesAction("allow")
.webReputation("moderate-risk")
.targetVpns("1")
.blockPageAction("text")
.blockPageContents("Access to the requested page has been denied. Please contact your Network Administrator")
.build());
}
}
resources:
example:
type: sdwan:UrlFilteringPolicyDefinition
properties:
name: Example
description: My description
mode: security
alerts:
- blacklist
webCategories:
- alcohol-and-tobacco
webCategoriesAction: allow
webReputation: moderate-risk
targetVpns:
- '1'
blockPageAction: text
blockPageContents: Access to the requested page has been denied. Please contact your Network Administrator
Create UrlFilteringPolicyDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UrlFilteringPolicyDefinition(name: string, args: UrlFilteringPolicyDefinitionArgs, opts?: CustomResourceOptions);
@overload
def UrlFilteringPolicyDefinition(resource_name: str,
args: UrlFilteringPolicyDefinitionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UrlFilteringPolicyDefinition(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
block_url_list_version: Optional[int] = None,
allow_url_list_version: Optional[int] = None,
block_page_action: Optional[str] = None,
block_page_contents: Optional[str] = None,
block_url_list_id: Optional[str] = None,
alerts: Optional[Sequence[str]] = None,
allow_url_list_id: Optional[str] = None,
mode: Optional[str] = None,
name: Optional[str] = None,
target_vpns: Optional[Sequence[str]] = None,
web_categories: Optional[Sequence[str]] = None,
web_categories_action: Optional[str] = None,
web_reputation: Optional[str] = None)
func NewUrlFilteringPolicyDefinition(ctx *Context, name string, args UrlFilteringPolicyDefinitionArgs, opts ...ResourceOption) (*UrlFilteringPolicyDefinition, error)
public UrlFilteringPolicyDefinition(string name, UrlFilteringPolicyDefinitionArgs args, CustomResourceOptions? opts = null)
public UrlFilteringPolicyDefinition(String name, UrlFilteringPolicyDefinitionArgs args)
public UrlFilteringPolicyDefinition(String name, UrlFilteringPolicyDefinitionArgs args, CustomResourceOptions options)
type: sdwan:UrlFilteringPolicyDefinition
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 UrlFilteringPolicyDefinitionArgs
- 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 UrlFilteringPolicyDefinitionArgs
- 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 UrlFilteringPolicyDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UrlFilteringPolicyDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UrlFilteringPolicyDefinitionArgs
- 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 urlFilteringPolicyDefinitionResource = new Sdwan.UrlFilteringPolicyDefinition("urlFilteringPolicyDefinitionResource", new()
{
Description = "string",
BlockUrlListVersion = 0,
AllowUrlListVersion = 0,
BlockPageAction = "string",
BlockPageContents = "string",
BlockUrlListId = "string",
Alerts = new[]
{
"string",
},
AllowUrlListId = "string",
Mode = "string",
Name = "string",
TargetVpns = new[]
{
"string",
},
WebCategories = new[]
{
"string",
},
WebCategoriesAction = "string",
WebReputation = "string",
});
example, err := sdwan.NewUrlFilteringPolicyDefinition(ctx, "urlFilteringPolicyDefinitionResource", &sdwan.UrlFilteringPolicyDefinitionArgs{
Description: pulumi.String("string"),
BlockUrlListVersion: pulumi.Int(0),
AllowUrlListVersion: pulumi.Int(0),
BlockPageAction: pulumi.String("string"),
BlockPageContents: pulumi.String("string"),
BlockUrlListId: pulumi.String("string"),
Alerts: pulumi.StringArray{
pulumi.String("string"),
},
AllowUrlListId: pulumi.String("string"),
Mode: pulumi.String("string"),
Name: pulumi.String("string"),
TargetVpns: pulumi.StringArray{
pulumi.String("string"),
},
WebCategories: pulumi.StringArray{
pulumi.String("string"),
},
WebCategoriesAction: pulumi.String("string"),
WebReputation: pulumi.String("string"),
})
var urlFilteringPolicyDefinitionResource = new UrlFilteringPolicyDefinition("urlFilteringPolicyDefinitionResource", UrlFilteringPolicyDefinitionArgs.builder()
.description("string")
.blockUrlListVersion(0)
.allowUrlListVersion(0)
.blockPageAction("string")
.blockPageContents("string")
.blockUrlListId("string")
.alerts("string")
.allowUrlListId("string")
.mode("string")
.name("string")
.targetVpns("string")
.webCategories("string")
.webCategoriesAction("string")
.webReputation("string")
.build());
url_filtering_policy_definition_resource = sdwan.UrlFilteringPolicyDefinition("urlFilteringPolicyDefinitionResource",
description="string",
block_url_list_version=0,
allow_url_list_version=0,
block_page_action="string",
block_page_contents="string",
block_url_list_id="string",
alerts=["string"],
allow_url_list_id="string",
mode="string",
name="string",
target_vpns=["string"],
web_categories=["string"],
web_categories_action="string",
web_reputation="string")
const urlFilteringPolicyDefinitionResource = new sdwan.UrlFilteringPolicyDefinition("urlFilteringPolicyDefinitionResource", {
description: "string",
blockUrlListVersion: 0,
allowUrlListVersion: 0,
blockPageAction: "string",
blockPageContents: "string",
blockUrlListId: "string",
alerts: ["string"],
allowUrlListId: "string",
mode: "string",
name: "string",
targetVpns: ["string"],
webCategories: ["string"],
webCategoriesAction: "string",
webReputation: "string",
});
type: sdwan:UrlFilteringPolicyDefinition
properties:
alerts:
- string
allowUrlListId: string
allowUrlListVersion: 0
blockPageAction: string
blockPageContents: string
blockUrlListId: string
blockUrlListVersion: 0
description: string
mode: string
name: string
targetVpns:
- string
webCategories:
- string
webCategoriesAction: string
webReputation: string
UrlFilteringPolicyDefinition Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The UrlFilteringPolicyDefinition resource accepts the following input properties:
- Description string
- The description of the policy definition.
- Alerts List<string>
- List of alerts options that will be exported as syslog messages
- Allow
Url stringList Id - Allow URL list ID
- Allow
Url intList Version - Allow URL list version
- Block
Page stringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- Block
Page stringContents - The message displayed or URL redirected to when a blocked page is accessed.
- Block
Url stringList Id - Block URL list ID
- Block
Url intList Version - Block URL list version
- Mode string
- The policy mode - Choices:
security
,unified
- Name string
- The name of the policy definition.
- Target
Vpns List<string> - List of VPN IDs
- Web
Categories List<string> - List of categories to block or allow
- Web
Categories stringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- Web
Reputation string - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- Description string
- The description of the policy definition.
- Alerts []string
- List of alerts options that will be exported as syslog messages
- Allow
Url stringList Id - Allow URL list ID
- Allow
Url intList Version - Allow URL list version
- Block
Page stringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- Block
Page stringContents - The message displayed or URL redirected to when a blocked page is accessed.
- Block
Url stringList Id - Block URL list ID
- Block
Url intList Version - Block URL list version
- Mode string
- The policy mode - Choices:
security
,unified
- Name string
- The name of the policy definition.
- Target
Vpns []string - List of VPN IDs
- Web
Categories []string - List of categories to block or allow
- Web
Categories stringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- Web
Reputation string - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- description String
- The description of the policy definition.
- alerts List<String>
- List of alerts options that will be exported as syslog messages
- allow
Url StringList Id - Allow URL list ID
- allow
Url IntegerList Version - Allow URL list version
- block
Page StringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block
Page StringContents - The message displayed or URL redirected to when a blocked page is accessed.
- block
Url StringList Id - Block URL list ID
- block
Url IntegerList Version - Block URL list version
- mode String
- The policy mode - Choices:
security
,unified
- name String
- The name of the policy definition.
- target
Vpns List<String> - List of VPN IDs
- web
Categories List<String> - List of categories to block or allow
- web
Categories StringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web
Reputation String - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- description string
- The description of the policy definition.
- alerts string[]
- List of alerts options that will be exported as syslog messages
- allow
Url stringList Id - Allow URL list ID
- allow
Url numberList Version - Allow URL list version
- block
Page stringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block
Page stringContents - The message displayed or URL redirected to when a blocked page is accessed.
- block
Url stringList Id - Block URL list ID
- block
Url numberList Version - Block URL list version
- mode string
- The policy mode - Choices:
security
,unified
- name string
- The name of the policy definition.
- target
Vpns string[] - List of VPN IDs
- web
Categories string[] - List of categories to block or allow
- web
Categories stringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web
Reputation string - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- description str
- The description of the policy definition.
- alerts Sequence[str]
- List of alerts options that will be exported as syslog messages
- allow_
url_ strlist_ id - Allow URL list ID
- allow_
url_ intlist_ version - Allow URL list version
- block_
page_ straction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block_
page_ strcontents - The message displayed or URL redirected to when a blocked page is accessed.
- block_
url_ strlist_ id - Block URL list ID
- block_
url_ intlist_ version - Block URL list version
- mode str
- The policy mode - Choices:
security
,unified
- name str
- The name of the policy definition.
- target_
vpns Sequence[str] - List of VPN IDs
- web_
categories Sequence[str] - List of categories to block or allow
- web_
categories_ straction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web_
reputation str - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- description String
- The description of the policy definition.
- alerts List<String>
- List of alerts options that will be exported as syslog messages
- allow
Url StringList Id - Allow URL list ID
- allow
Url NumberList Version - Allow URL list version
- block
Page StringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block
Page StringContents - The message displayed or URL redirected to when a blocked page is accessed.
- block
Url StringList Id - Block URL list ID
- block
Url NumberList Version - Block URL list version
- mode String
- The policy mode - Choices:
security
,unified
- name String
- The name of the policy definition.
- target
Vpns List<String> - List of VPN IDs
- web
Categories List<String> - List of categories to block or allow
- web
Categories StringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web
Reputation String - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
Outputs
All input properties are implicitly available as output properties. Additionally, the UrlFilteringPolicyDefinition resource produces the following output properties:
Look up Existing UrlFilteringPolicyDefinition Resource
Get an existing UrlFilteringPolicyDefinition 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?: UrlFilteringPolicyDefinitionState, opts?: CustomResourceOptions): UrlFilteringPolicyDefinition
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alerts: Optional[Sequence[str]] = None,
allow_url_list_id: Optional[str] = None,
allow_url_list_version: Optional[int] = None,
block_page_action: Optional[str] = None,
block_page_contents: Optional[str] = None,
block_url_list_id: Optional[str] = None,
block_url_list_version: Optional[int] = None,
description: Optional[str] = None,
mode: Optional[str] = None,
name: Optional[str] = None,
target_vpns: Optional[Sequence[str]] = None,
version: Optional[int] = None,
web_categories: Optional[Sequence[str]] = None,
web_categories_action: Optional[str] = None,
web_reputation: Optional[str] = None) -> UrlFilteringPolicyDefinition
func GetUrlFilteringPolicyDefinition(ctx *Context, name string, id IDInput, state *UrlFilteringPolicyDefinitionState, opts ...ResourceOption) (*UrlFilteringPolicyDefinition, error)
public static UrlFilteringPolicyDefinition Get(string name, Input<string> id, UrlFilteringPolicyDefinitionState? state, CustomResourceOptions? opts = null)
public static UrlFilteringPolicyDefinition get(String name, Output<String> id, UrlFilteringPolicyDefinitionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Alerts List<string>
- List of alerts options that will be exported as syslog messages
- Allow
Url stringList Id - Allow URL list ID
- Allow
Url intList Version - Allow URL list version
- Block
Page stringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- Block
Page stringContents - The message displayed or URL redirected to when a blocked page is accessed.
- Block
Url stringList Id - Block URL list ID
- Block
Url intList Version - Block URL list version
- Description string
- The description of the policy definition.
- Mode string
- The policy mode - Choices:
security
,unified
- Name string
- The name of the policy definition.
- Target
Vpns List<string> - List of VPN IDs
- Version int
- The version of the object
- Web
Categories List<string> - List of categories to block or allow
- Web
Categories stringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- Web
Reputation string - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- Alerts []string
- List of alerts options that will be exported as syslog messages
- Allow
Url stringList Id - Allow URL list ID
- Allow
Url intList Version - Allow URL list version
- Block
Page stringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- Block
Page stringContents - The message displayed or URL redirected to when a blocked page is accessed.
- Block
Url stringList Id - Block URL list ID
- Block
Url intList Version - Block URL list version
- Description string
- The description of the policy definition.
- Mode string
- The policy mode - Choices:
security
,unified
- Name string
- The name of the policy definition.
- Target
Vpns []string - List of VPN IDs
- Version int
- The version of the object
- Web
Categories []string - List of categories to block or allow
- Web
Categories stringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- Web
Reputation string - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- alerts List<String>
- List of alerts options that will be exported as syslog messages
- allow
Url StringList Id - Allow URL list ID
- allow
Url IntegerList Version - Allow URL list version
- block
Page StringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block
Page StringContents - The message displayed or URL redirected to when a blocked page is accessed.
- block
Url StringList Id - Block URL list ID
- block
Url IntegerList Version - Block URL list version
- description String
- The description of the policy definition.
- mode String
- The policy mode - Choices:
security
,unified
- name String
- The name of the policy definition.
- target
Vpns List<String> - List of VPN IDs
- version Integer
- The version of the object
- web
Categories List<String> - List of categories to block or allow
- web
Categories StringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web
Reputation String - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- alerts string[]
- List of alerts options that will be exported as syslog messages
- allow
Url stringList Id - Allow URL list ID
- allow
Url numberList Version - Allow URL list version
- block
Page stringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block
Page stringContents - The message displayed or URL redirected to when a blocked page is accessed.
- block
Url stringList Id - Block URL list ID
- block
Url numberList Version - Block URL list version
- description string
- The description of the policy definition.
- mode string
- The policy mode - Choices:
security
,unified
- name string
- The name of the policy definition.
- target
Vpns string[] - List of VPN IDs
- version number
- The version of the object
- web
Categories string[] - List of categories to block or allow
- web
Categories stringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web
Reputation string - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- alerts Sequence[str]
- List of alerts options that will be exported as syslog messages
- allow_
url_ strlist_ id - Allow URL list ID
- allow_
url_ intlist_ version - Allow URL list version
- block_
page_ straction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block_
page_ strcontents - The message displayed or URL redirected to when a blocked page is accessed.
- block_
url_ strlist_ id - Block URL list ID
- block_
url_ intlist_ version - Block URL list version
- description str
- The description of the policy definition.
- mode str
- The policy mode - Choices:
security
,unified
- name str
- The name of the policy definition.
- target_
vpns Sequence[str] - List of VPN IDs
- version int
- The version of the object
- web_
categories Sequence[str] - List of categories to block or allow
- web_
categories_ straction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web_
reputation str - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
- alerts List<String>
- List of alerts options that will be exported as syslog messages
- allow
Url StringList Id - Allow URL list ID
- allow
Url NumberList Version - Allow URL list version
- block
Page StringAction - Redirect to a URL or display a message when a blocked page is accessed. - Choices:
text
,redirectUrl
- block
Page StringContents - The message displayed or URL redirected to when a blocked page is accessed.
- block
Url StringList Id - Block URL list ID
- block
Url NumberList Version - Block URL list version
- description String
- The description of the policy definition.
- mode String
- The policy mode - Choices:
security
,unified
- name String
- The name of the policy definition.
- target
Vpns List<String> - List of VPN IDs
- version Number
- The version of the object
- web
Categories List<String> - List of categories to block or allow
- web
Categories StringAction - whether the selected web categories should be blocked or allowed. - Choices:
block
,allow
- web
Reputation String - The web reputation of the policy definition - Choices:
high-risk
,suspicious
,moderate-risk
,low-risk
,trustworthy
Import
$ pulumi import sdwan:index/urlFilteringPolicyDefinition:UrlFilteringPolicyDefinition example "f6b2c44c-693c-4763-b010-895aa3d236bd"
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.