published on Saturday, Jul 11, 2026 by Pulumi
published on Saturday, Jul 11, 2026 by Pulumi
This resource manages the Org WLAN Templates.
A WLAN template is a collection of WLANs, tunneling policies, and wxlan policies. It is used to create and manage wlan configurations at an organizational level.
WLAN templates allow for modular, scalable, and easy-to-manage configuration of ssids and their application to specific sites, site groups, or ap device profiles.
They are valuable for automating configuration across multiple sites and profiles, making it easier to scale efficiently.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as junipermist from "@pulumi/juniper-mist";
const wlantemplateOne = new junipermist.org.Wlantemplate("wlantemplate_one", {
name: "wlantemplate_one",
orgId: terraformTest.id,
applies: {
siteIds: [terraformSite.id],
},
});
import pulumi
import pulumi_juniper_mist as junipermist
wlantemplate_one = junipermist.org.Wlantemplate("wlantemplate_one",
name="wlantemplate_one",
org_id=terraform_test["id"],
applies={
"site_ids": [terraform_site["id"]],
})
package main
import (
"github.com/pulumi/pulumi-junipermist/sdk/go/junipermist/org"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := org.NewWlantemplate(ctx, "wlantemplate_one", &org.WlantemplateArgs{
Name: pulumi.String("wlantemplate_one"),
OrgId: pulumi.Any(terraformTest.Id),
Applies: &org.WlantemplateAppliesArgs{
SiteIds: pulumi.StringArray{
terraformSite.Id,
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using JuniperMist = Pulumi.JuniperMist;
return await Deployment.RunAsync(() =>
{
var wlantemplateOne = new JuniperMist.Org.Wlantemplate("wlantemplate_one", new()
{
Name = "wlantemplate_one",
OrgId = terraformTest.Id,
Applies = new JuniperMist.Org.Inputs.WlantemplateAppliesArgs
{
SiteIds = new[]
{
terraformSite.Id,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.junipermist.org.Wlantemplate;
import com.pulumi.junipermist.org.WlantemplateArgs;
import com.pulumi.junipermist.org.inputs.WlantemplateAppliesArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 wlantemplateOne = new Wlantemplate("wlantemplateOne", WlantemplateArgs.builder()
.name("wlantemplate_one")
.orgId(terraformTest.id())
.applies(WlantemplateAppliesArgs.builder()
.siteIds(terraformSite.id())
.build())
.build());
}
}
resources:
wlantemplateOne:
type: junipermist:org:Wlantemplate
name: wlantemplate_one
properties:
name: wlantemplate_one
orgId: ${terraformTest.id}
applies:
siteIds:
- ${terraformSite.id}
pulumi {
required_providers {
junipermist = {
source = "pulumi/junipermist"
}
}
}
resource "junipermist_org_wlantemplate" "wlantemplate_one" {
name = "wlantemplate_one"
org_id = terraformTest.id
applies = {
site_ids = [terraformSite.id]
}
}
Create Wlantemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Wlantemplate(name: string, args: WlantemplateArgs, opts?: CustomResourceOptions);@overload
def Wlantemplate(resource_name: str,
args: WlantemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Wlantemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
org_id: Optional[str] = None,
applies: Optional[WlantemplateAppliesArgs] = None,
deviceprofile_ids: Optional[Sequence[str]] = None,
exceptions: Optional[WlantemplateExceptionsArgs] = None,
filter_by_deviceprofile: Optional[bool] = None,
name: Optional[str] = None)func NewWlantemplate(ctx *Context, name string, args WlantemplateArgs, opts ...ResourceOption) (*Wlantemplate, error)public Wlantemplate(string name, WlantemplateArgs args, CustomResourceOptions? opts = null)
public Wlantemplate(String name, WlantemplateArgs args)
public Wlantemplate(String name, WlantemplateArgs args, CustomResourceOptions options)
type: junipermist:org:Wlantemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "junipermist_org_wlantemplate" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args WlantemplateArgs
- 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 WlantemplateArgs
- 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 WlantemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WlantemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WlantemplateArgs
- 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 wlantemplateResource = new JuniperMist.Org.Wlantemplate("wlantemplateResource", new()
{
OrgId = "string",
Applies = new JuniperMist.Org.Inputs.WlantemplateAppliesArgs
{
OrgId = "string",
SiteIds = new[]
{
"string",
},
SitegroupIds = new[]
{
"string",
},
},
DeviceprofileIds = new[]
{
"string",
},
Exceptions = new JuniperMist.Org.Inputs.WlantemplateExceptionsArgs
{
SiteIds = new[]
{
"string",
},
SitegroupIds = new[]
{
"string",
},
},
FilterByDeviceprofile = false,
Name = "string",
});
example, err := org.NewWlantemplate(ctx, "wlantemplateResource", &org.WlantemplateArgs{
OrgId: pulumi.String("string"),
Applies: &org.WlantemplateAppliesArgs{
OrgId: pulumi.String("string"),
SiteIds: pulumi.StringArray{
pulumi.String("string"),
},
SitegroupIds: pulumi.StringArray{
pulumi.String("string"),
},
},
DeviceprofileIds: pulumi.StringArray{
pulumi.String("string"),
},
Exceptions: &org.WlantemplateExceptionsArgs{
SiteIds: pulumi.StringArray{
pulumi.String("string"),
},
SitegroupIds: pulumi.StringArray{
pulumi.String("string"),
},
},
FilterByDeviceprofile: pulumi.Bool(false),
Name: pulumi.String("string"),
})
resource "junipermist_org_wlantemplate" "wlantemplateResource" {
lifecycle {
create_before_destroy = true
}
org_id = "string"
applies = {
org_id = "string"
site_ids = ["string"]
sitegroup_ids = ["string"]
}
deviceprofile_ids = ["string"]
exceptions = {
site_ids = ["string"]
sitegroup_ids = ["string"]
}
filter_by_deviceprofile = false
name = "string"
}
var wlantemplateResource = new Wlantemplate("wlantemplateResource", WlantemplateArgs.builder()
.orgId("string")
.applies(WlantemplateAppliesArgs.builder()
.orgId("string")
.siteIds("string")
.sitegroupIds("string")
.build())
.deviceprofileIds("string")
.exceptions(WlantemplateExceptionsArgs.builder()
.siteIds("string")
.sitegroupIds("string")
.build())
.filterByDeviceprofile(false)
.name("string")
.build());
wlantemplate_resource = junipermist.org.Wlantemplate("wlantemplateResource",
org_id="string",
applies={
"org_id": "string",
"site_ids": ["string"],
"sitegroup_ids": ["string"],
},
deviceprofile_ids=["string"],
exceptions={
"site_ids": ["string"],
"sitegroup_ids": ["string"],
},
filter_by_deviceprofile=False,
name="string")
const wlantemplateResource = new junipermist.org.Wlantemplate("wlantemplateResource", {
orgId: "string",
applies: {
orgId: "string",
siteIds: ["string"],
sitegroupIds: ["string"],
},
deviceprofileIds: ["string"],
exceptions: {
siteIds: ["string"],
sitegroupIds: ["string"],
},
filterByDeviceprofile: false,
name: "string",
});
type: junipermist:org:Wlantemplate
properties:
applies:
orgId: string
siteIds:
- string
sitegroupIds:
- string
deviceprofileIds:
- string
exceptions:
siteIds:
- string
sitegroupIds:
- string
filterByDeviceprofile: false
name: string
orgId: string
Wlantemplate 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 Wlantemplate resource accepts the following input properties:
- Org
Id string - Organization that owns this WLAN template
- Applies
Pulumi.
Juniper Mist. Org. Inputs. Wlantemplate Applies - Organizations, sites, or site groups targeted by this WLAN template
- Deviceprofile
Ids List<string> - Device profile IDs that further limit where this WLAN template applies
- Exceptions
Pulumi.
Juniper Mist. Org. Inputs. Wlantemplate Exceptions - Sites or site groups excluded from this WLAN template even when included by the application scope
- Filter
By boolDeviceprofile - Whether to further filter by Device Profile
- Name string
- Display name of the WLAN template
- Org
Id string - Organization that owns this WLAN template
- Applies
Wlantemplate
Applies Args - Organizations, sites, or site groups targeted by this WLAN template
- Deviceprofile
Ids []string - Device profile IDs that further limit where this WLAN template applies
- Exceptions
Wlantemplate
Exceptions Args - Sites or site groups excluded from this WLAN template even when included by the application scope
- Filter
By boolDeviceprofile - Whether to further filter by Device Profile
- Name string
- Display name of the WLAN template
- org_
id string - Organization that owns this WLAN template
- applies object
- Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile_
ids list(string) - Device profile IDs that further limit where this WLAN template applies
- exceptions object
- Sites or site groups excluded from this WLAN template even when included by the application scope
- filter_
by_ booldeviceprofile - Whether to further filter by Device Profile
- name string
- Display name of the WLAN template
- org
Id String - Organization that owns this WLAN template
- applies
Wlantemplate
Applies - Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile
Ids List<String> - Device profile IDs that further limit where this WLAN template applies
- exceptions
Wlantemplate
Exceptions - Sites or site groups excluded from this WLAN template even when included by the application scope
- filter
By BooleanDeviceprofile - Whether to further filter by Device Profile
- name String
- Display name of the WLAN template
- org
Id string - Organization that owns this WLAN template
- applies
Wlantemplate
Applies - Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile
Ids string[] - Device profile IDs that further limit where this WLAN template applies
- exceptions
Wlantemplate
Exceptions - Sites or site groups excluded from this WLAN template even when included by the application scope
- filter
By booleanDeviceprofile - Whether to further filter by Device Profile
- name string
- Display name of the WLAN template
- org_
id str - Organization that owns this WLAN template
- applies
Wlantemplate
Applies Args - Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile_
ids Sequence[str] - Device profile IDs that further limit where this WLAN template applies
- exceptions
Wlantemplate
Exceptions Args - Sites or site groups excluded from this WLAN template even when included by the application scope
- filter_
by_ booldeviceprofile - Whether to further filter by Device Profile
- name str
- Display name of the WLAN template
- org
Id String - Organization that owns this WLAN template
- applies Property Map
- Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile
Ids List<String> - Device profile IDs that further limit where this WLAN template applies
- exceptions Property Map
- Sites or site groups excluded from this WLAN template even when included by the application scope
- filter
By BooleanDeviceprofile - Whether to further filter by Device Profile
- name String
- Display name of the WLAN template
Outputs
All input properties are implicitly available as output properties. Additionally, the Wlantemplate resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Wlantemplate Resource
Get an existing Wlantemplate 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?: WlantemplateState, opts?: CustomResourceOptions): Wlantemplate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
applies: Optional[WlantemplateAppliesArgs] = None,
deviceprofile_ids: Optional[Sequence[str]] = None,
exceptions: Optional[WlantemplateExceptionsArgs] = None,
filter_by_deviceprofile: Optional[bool] = None,
name: Optional[str] = None,
org_id: Optional[str] = None) -> Wlantemplatefunc GetWlantemplate(ctx *Context, name string, id IDInput, state *WlantemplateState, opts ...ResourceOption) (*Wlantemplate, error)public static Wlantemplate Get(string name, Input<string> id, WlantemplateState? state, CustomResourceOptions? opts = null)public static Wlantemplate get(String name, Output<String> id, WlantemplateState state, CustomResourceOptions options)resources: _: type: junipermist:org:Wlantemplate get: id: ${id}import {
to = junipermist_org_wlantemplate.example
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.
- Applies
Pulumi.
Juniper Mist. Org. Inputs. Wlantemplate Applies - Organizations, sites, or site groups targeted by this WLAN template
- Deviceprofile
Ids List<string> - Device profile IDs that further limit where this WLAN template applies
- Exceptions
Pulumi.
Juniper Mist. Org. Inputs. Wlantemplate Exceptions - Sites or site groups excluded from this WLAN template even when included by the application scope
- Filter
By boolDeviceprofile - Whether to further filter by Device Profile
- Name string
- Display name of the WLAN template
- Org
Id string - Organization that owns this WLAN template
- Applies
Wlantemplate
Applies Args - Organizations, sites, or site groups targeted by this WLAN template
- Deviceprofile
Ids []string - Device profile IDs that further limit where this WLAN template applies
- Exceptions
Wlantemplate
Exceptions Args - Sites or site groups excluded from this WLAN template even when included by the application scope
- Filter
By boolDeviceprofile - Whether to further filter by Device Profile
- Name string
- Display name of the WLAN template
- Org
Id string - Organization that owns this WLAN template
- applies object
- Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile_
ids list(string) - Device profile IDs that further limit where this WLAN template applies
- exceptions object
- Sites or site groups excluded from this WLAN template even when included by the application scope
- filter_
by_ booldeviceprofile - Whether to further filter by Device Profile
- name string
- Display name of the WLAN template
- org_
id string - Organization that owns this WLAN template
- applies
Wlantemplate
Applies - Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile
Ids List<String> - Device profile IDs that further limit where this WLAN template applies
- exceptions
Wlantemplate
Exceptions - Sites or site groups excluded from this WLAN template even when included by the application scope
- filter
By BooleanDeviceprofile - Whether to further filter by Device Profile
- name String
- Display name of the WLAN template
- org
Id String - Organization that owns this WLAN template
- applies
Wlantemplate
Applies - Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile
Ids string[] - Device profile IDs that further limit where this WLAN template applies
- exceptions
Wlantemplate
Exceptions - Sites or site groups excluded from this WLAN template even when included by the application scope
- filter
By booleanDeviceprofile - Whether to further filter by Device Profile
- name string
- Display name of the WLAN template
- org
Id string - Organization that owns this WLAN template
- applies
Wlantemplate
Applies Args - Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile_
ids Sequence[str] - Device profile IDs that further limit where this WLAN template applies
- exceptions
Wlantemplate
Exceptions Args - Sites or site groups excluded from this WLAN template even when included by the application scope
- filter_
by_ booldeviceprofile - Whether to further filter by Device Profile
- name str
- Display name of the WLAN template
- org_
id str - Organization that owns this WLAN template
- applies Property Map
- Organizations, sites, or site groups targeted by this WLAN template
- deviceprofile
Ids List<String> - Device profile IDs that further limit where this WLAN template applies
- exceptions Property Map
- Sites or site groups excluded from this WLAN template even when included by the application scope
- filter
By BooleanDeviceprofile - Whether to further filter by Device Profile
- name String
- Display name of the WLAN template
- org
Id String - Organization that owns this WLAN template
Supporting Types
WlantemplateApplies, WlantemplateAppliesArgs
- Org
Id string - Organization included in the WLAN template application scope
- Site
Ids List<string> - Sites included in the WLAN template application scope
- Sitegroup
Ids List<string> - Site groups included in the WLAN template application scope
- Org
Id string - Organization included in the WLAN template application scope
- Site
Ids []string - Sites included in the WLAN template application scope
- Sitegroup
Ids []string - Site groups included in the WLAN template application scope
- org_
id string - Organization included in the WLAN template application scope
- site_
ids list(string) - Sites included in the WLAN template application scope
- sitegroup_
ids list(string) - Site groups included in the WLAN template application scope
- org
Id String - Organization included in the WLAN template application scope
- site
Ids List<String> - Sites included in the WLAN template application scope
- sitegroup
Ids List<String> - Site groups included in the WLAN template application scope
- org
Id string - Organization included in the WLAN template application scope
- site
Ids string[] - Sites included in the WLAN template application scope
- sitegroup
Ids string[] - Site groups included in the WLAN template application scope
- org_
id str - Organization included in the WLAN template application scope
- site_
ids Sequence[str] - Sites included in the WLAN template application scope
- sitegroup_
ids Sequence[str] - Site groups included in the WLAN template application scope
- org
Id String - Organization included in the WLAN template application scope
- site
Ids List<String> - Sites included in the WLAN template application scope
- sitegroup
Ids List<String> - Site groups included in the WLAN template application scope
WlantemplateExceptions, WlantemplateExceptionsArgs
- Site
Ids List<string> - Sites excluded from the WLAN template application scope
- Sitegroup
Ids List<string> - Site groups excluded from the WLAN template application scope
- Site
Ids []string - Sites excluded from the WLAN template application scope
- Sitegroup
Ids []string - Site groups excluded from the WLAN template application scope
- site_
ids list(string) - Sites excluded from the WLAN template application scope
- sitegroup_
ids list(string) - Site groups excluded from the WLAN template application scope
- site
Ids List<String> - Sites excluded from the WLAN template application scope
- sitegroup
Ids List<String> - Site groups excluded from the WLAN template application scope
- site
Ids string[] - Sites excluded from the WLAN template application scope
- sitegroup
Ids string[] - Site groups excluded from the WLAN template application scope
- site_
ids Sequence[str] - Sites excluded from the WLAN template application scope
- sitegroup_
ids Sequence[str] - Site groups excluded from the WLAN template application scope
- site
Ids List<String> - Sites excluded from the WLAN template application scope
- sitegroup
Ids List<String> - Site groups excluded from the WLAN template application scope
Import
Using pulumi import, import junipermist.org.Wlantemplate with:
Org WLAN Template can be imported by specifying the orgId and the wlantemplateId
$ pulumi import junipermist:org/wlantemplate:Wlantemplate wlantemplate_one 17b46405-3a6d-4715-8bb4-6bb6d06f316a.d3c42998-9012-4859-9743-6b9bee475309
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- junipermist pulumi/pulumi-junipermist
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mistTerraform Provider.
published on Saturday, Jul 11, 2026 by Pulumi