sdwan.UrlFilteringPolicyDefinition
Explore with Pulumi AI
This resource can manage a URL Filtering Policy Definition .
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
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 com.pulumi.sdwan.inputs.UrlFilteringPolicyDefinitionLoggingArgs;
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")
.loggings(UrlFilteringPolicyDefinitionLoggingArgs.builder()
.external_syslog_server_ip("10.0.0.1")
.external_syslog_server_vpn("123")
.build())
.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
loggings:
- external_syslog_server_ip: 10.0.0.1
external_syslog_server_vpn: '123'
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,
loggings: Optional[Sequence[UrlFilteringPolicyDefinitionLoggingArgs]] = 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,
allow_url_list_version: Optional[int] = 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,
Loggings = new[]
{
new Sdwan.Inputs.UrlFilteringPolicyDefinitionLoggingArgs
{
ExternalSyslogServerIp = "string",
ExternalSyslogServerVpn = "string",
},
},
BlockPageAction = "string",
BlockPageContents = "string",
BlockUrlListId = "string",
Alerts = new[]
{
"string",
},
AllowUrlListId = "string",
AllowUrlListVersion = 0,
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),
Loggings: sdwan.UrlFilteringPolicyDefinitionLoggingArray{
&sdwan.UrlFilteringPolicyDefinitionLoggingArgs{
ExternalSyslogServerIp: pulumi.String("string"),
ExternalSyslogServerVpn: pulumi.String("string"),
},
},
BlockPageAction: pulumi.String("string"),
BlockPageContents: pulumi.String("string"),
BlockUrlListId: pulumi.String("string"),
Alerts: pulumi.StringArray{
pulumi.String("string"),
},
AllowUrlListId: pulumi.String("string"),
AllowUrlListVersion: pulumi.Int(0),
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)
.loggings(UrlFilteringPolicyDefinitionLoggingArgs.builder()
.externalSyslogServerIp("string")
.externalSyslogServerVpn("string")
.build())
.blockPageAction("string")
.blockPageContents("string")
.blockUrlListId("string")
.alerts("string")
.allowUrlListId("string")
.allowUrlListVersion(0)
.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,
loggings=[{
"external_syslog_server_ip": "string",
"external_syslog_server_vpn": "string",
}],
block_page_action="string",
block_page_contents="string",
block_url_list_id="string",
alerts=["string"],
allow_url_list_id="string",
allow_url_list_version=0,
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,
loggings: [{
externalSyslogServerIp: "string",
externalSyslogServerVpn: "string",
}],
blockPageAction: "string",
blockPageContents: "string",
blockUrlListId: "string",
alerts: ["string"],
allowUrlListId: "string",
allowUrlListVersion: 0,
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
loggings:
- externalSyslogServerIp: string
externalSyslogServerVpn: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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
- Loggings
List<Url
Filtering Policy Definition Logging> - 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
- Loggings
[]Url
Filtering Policy Definition Logging Args - 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
- loggings
List<Url
Filtering Policy Definition Logging> - 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
- loggings
Url
Filtering Policy Definition Logging[] - 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
- loggings
Sequence[Url
Filtering Policy Definition Logging Args] - 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
- loggings List<Property Map>
- 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,
loggings: Optional[Sequence[UrlFilteringPolicyDefinitionLoggingArgs]] = 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)
resources: _: type: sdwan:UrlFilteringPolicyDefinition 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.
- 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.
- Loggings
List<Url
Filtering Policy Definition Logging> - 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.
- Loggings
[]Url
Filtering Policy Definition Logging Args - 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.
- loggings
List<Url
Filtering Policy Definition Logging> - 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.
- loggings
Url
Filtering Policy Definition Logging[] - 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.
- loggings
Sequence[Url
Filtering Policy Definition Logging Args] - 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.
- loggings List<Property Map>
- 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
Supporting Types
UrlFilteringPolicyDefinitionLogging, UrlFilteringPolicyDefinitionLoggingArgs
- External
Syslog stringServer Ip - External Syslog Server IP
- External
Syslog stringServer Vpn - External Syslog Server VPN
- External
Syslog stringServer Ip - External Syslog Server IP
- External
Syslog stringServer Vpn - External Syslog Server VPN
- external
Syslog StringServer Ip - External Syslog Server IP
- external
Syslog StringServer Vpn - External Syslog Server VPN
- external
Syslog stringServer Ip - External Syslog Server IP
- external
Syslog stringServer Vpn - External Syslog Server VPN
- external_
syslog_ strserver_ ip - External Syslog Server IP
- external_
syslog_ strserver_ vpn - External Syslog Server VPN
- external
Syslog StringServer Ip - External Syslog Server IP
- external
Syslog StringServer Vpn - External Syslog Server VPN
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.