sdwan.PolicyObjectUnifiedUrlFiltering
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:
- Block
Page stringAction - Choices:
text,redirect-url
- Choices:
- Enable
Alerts bool - Feature
Profile stringId - Feature Profile ID
- Web
Categories List<string> - Web
Categories stringAction - Choices:
block,allow
- Choices:
- Web
Reputation string - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- Alerts List<string>
- , Attribute conditional on
enable_alertsbeing equal totrue - Block
Page stringContents - , Attribute conditional on
block_page_actionbeing equal totext - Description string
- The description of the Policy_object
- Name string
- The name of the Policy_object
- Redirect
Url string - , Attribute conditional on
block_page_actionbeing equal toredirect-url - Url
Allow stringList Id - Url
Block stringList Id
- Block
Page stringAction - Choices:
text,redirect-url
- Choices:
- Enable
Alerts bool - Feature
Profile stringId - Feature Profile ID
- Web
Categories []string - Web
Categories stringAction - Choices:
block,allow
- Choices:
- Web
Reputation string - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- Alerts []string
- , Attribute conditional on
enable_alertsbeing equal totrue - Block
Page stringContents - , Attribute conditional on
block_page_actionbeing equal totext - Description string
- The description of the Policy_object
- Name string
- The name of the Policy_object
- Redirect
Url string - , Attribute conditional on
block_page_actionbeing equal toredirect-url - Url
Allow stringList Id - Url
Block stringList Id
- block
Page StringAction - Choices:
text,redirect-url
- Choices:
- enable
Alerts Boolean - feature
Profile StringId - Feature Profile ID
- web
Categories List<String> - web
Categories StringAction - Choices:
block,allow
- Choices:
- web
Reputation String - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts List<String>
- , Attribute conditional on
enable_alertsbeing equal totrue - block
Page StringContents - , Attribute conditional on
block_page_actionbeing equal totext - description String
- The description of the Policy_object
- name String
- The name of the Policy_object
- redirect
Url String - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url
Allow StringList Id - url
Block StringList Id
- block
Page stringAction - Choices:
text,redirect-url
- Choices:
- enable
Alerts boolean - feature
Profile stringId - Feature Profile ID
- web
Categories string[] - web
Categories stringAction - Choices:
block,allow
- Choices:
- web
Reputation string - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts string[]
- , Attribute conditional on
enable_alertsbeing equal totrue - block
Page stringContents - , Attribute conditional on
block_page_actionbeing equal totext - description string
- The description of the Policy_object
- name string
- The name of the Policy_object
- redirect
Url string - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url
Allow stringList Id - url
Block stringList Id
- block_
page_ straction - Choices:
text,redirect-url
- Choices:
- enable_
alerts bool - feature_
profile_ strid - Feature Profile ID
- web_
categories Sequence[str] - web_
categories_ straction - Choices:
block,allow
- Choices:
- web_
reputation str - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts Sequence[str]
- , Attribute conditional on
enable_alertsbeing equal totrue - block_
page_ strcontents - , Attribute conditional on
block_page_actionbeing equal totext - description str
- The description of the Policy_object
- name str
- The name of the Policy_object
- redirect_
url str - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url_
allow_ strlist_ id - url_
block_ strlist_ id
- block
Page StringAction - Choices:
text,redirect-url
- Choices:
- enable
Alerts Boolean - feature
Profile StringId - Feature Profile ID
- web
Categories List<String> - web
Categories StringAction - Choices:
block,allow
- Choices:
- web
Reputation String - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts List<String>
- , Attribute conditional on
enable_alertsbeing equal totrue - block
Page StringContents - , Attribute conditional on
block_page_actionbeing equal totext - description String
- The description of the Policy_object
- name String
- The name of the Policy_object
- redirect
Url String - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url
Allow StringList Id - url
Block StringList Id
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyObjectUnifiedUrlFiltering resource produces the following output properties:
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) -> PolicyObjectUnifiedUrlFilteringfunc 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.
- Alerts List<string>
- , Attribute conditional on
enable_alertsbeing equal totrue - Block
Page stringAction - Choices:
text,redirect-url
- Choices:
- Block
Page stringContents - , Attribute conditional on
block_page_actionbeing equal totext - Description string
- The description of the Policy_object
- Enable
Alerts bool - Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Policy_object
- Redirect
Url string - , Attribute conditional on
block_page_actionbeing equal toredirect-url - Url
Allow stringList Id - Url
Block stringList Id - Version int
- The version of the Policy_object
- Web
Categories List<string> - Web
Categories stringAction - Choices:
block,allow
- Choices:
- Web
Reputation string - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- Alerts []string
- , Attribute conditional on
enable_alertsbeing equal totrue - Block
Page stringAction - Choices:
text,redirect-url
- Choices:
- Block
Page stringContents - , Attribute conditional on
block_page_actionbeing equal totext - Description string
- The description of the Policy_object
- Enable
Alerts bool - Feature
Profile stringId - Feature Profile ID
- Name string
- The name of the Policy_object
- Redirect
Url string - , Attribute conditional on
block_page_actionbeing equal toredirect-url - Url
Allow stringList Id - Url
Block stringList Id - Version int
- The version of the Policy_object
- Web
Categories []string - Web
Categories stringAction - Choices:
block,allow
- Choices:
- Web
Reputation string - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts List<String>
- , Attribute conditional on
enable_alertsbeing equal totrue - block
Page StringAction - Choices:
text,redirect-url
- Choices:
- block
Page StringContents - , Attribute conditional on
block_page_actionbeing equal totext - description String
- The description of the Policy_object
- enable
Alerts Boolean - feature
Profile StringId - Feature Profile ID
- name String
- The name of the Policy_object
- redirect
Url String - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url
Allow StringList Id - url
Block StringList Id - version Integer
- The version of the Policy_object
- web
Categories List<String> - web
Categories StringAction - Choices:
block,allow
- Choices:
- web
Reputation String - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts string[]
- , Attribute conditional on
enable_alertsbeing equal totrue - block
Page stringAction - Choices:
text,redirect-url
- Choices:
- block
Page stringContents - , Attribute conditional on
block_page_actionbeing equal totext - description string
- The description of the Policy_object
- enable
Alerts boolean - feature
Profile stringId - Feature Profile ID
- name string
- The name of the Policy_object
- redirect
Url string - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url
Allow stringList Id - url
Block stringList Id - version number
- The version of the Policy_object
- web
Categories string[] - web
Categories stringAction - Choices:
block,allow
- Choices:
- web
Reputation string - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts Sequence[str]
- , Attribute conditional on
enable_alertsbeing equal totrue - block_
page_ straction - Choices:
text,redirect-url
- Choices:
- block_
page_ strcontents - , Attribute conditional on
block_page_actionbeing equal totext - description str
- The description of the Policy_object
- enable_
alerts bool - feature_
profile_ strid - Feature Profile ID
- name str
- The name of the Policy_object
- redirect_
url str - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url_
allow_ strlist_ id - url_
block_ strlist_ id - version int
- The version of the Policy_object
- web_
categories Sequence[str] - web_
categories_ straction - Choices:
block,allow
- Choices:
- web_
reputation str - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
- alerts List<String>
- , Attribute conditional on
enable_alertsbeing equal totrue - block
Page StringAction - Choices:
text,redirect-url
- Choices:
- block
Page StringContents - , Attribute conditional on
block_page_actionbeing equal totext - description String
- The description of the Policy_object
- enable
Alerts Boolean - feature
Profile StringId - Feature Profile ID
- name String
- The name of the Policy_object
- redirect
Url String - , Attribute conditional on
block_page_actionbeing equal toredirect-url - url
Allow StringList Id - url
Block StringList Id - version Number
- The version of the Policy_object
- web
Categories List<String> - web
Categories StringAction - Choices:
block,allow
- Choices:
- web
Reputation String - Choices:
high-risk,low-risk,moderate-risk,suspicious,trustworthy
- Choices:
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
sdwanTerraform Provider.
