published on Saturday, Jul 11, 2026 by Pulumi
published on Saturday, Jul 11, 2026 by Pulumi
This resource manages the RF Templates.
The RF Templates can be used to define Wireless Access Points radio configuration, and can be assigned to the sites
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as junipermist from "@pulumi/juniper-mist";
const rftemplateOne = new junipermist.org.Rftemplate("rftemplate_one", {
name: "rftemplate_one",
orgId: terraformTest.id,
band24Usage: "auto",
band5: {
antGain: 2,
power: 8,
channels: [
60,
104,
132,
],
bandwidth: 20,
},
band6: {
antGain: 2,
power: 8,
},
band24: {
antGain: 1,
allowRrmDisable: true,
powerMin: 18,
powerMax: 18,
bandwidth: 20,
},
antGain5: 2,
antGain6: 2,
antGain24: 1,
countryCode: "FR",
});
import pulumi
import pulumi_juniper_mist as junipermist
rftemplate_one = junipermist.org.Rftemplate("rftemplate_one",
name="rftemplate_one",
org_id=terraform_test["id"],
band24_usage="auto",
band5={
"ant_gain": 2,
"power": 8,
"channels": [
60,
104,
132,
],
"bandwidth": 20,
},
band6={
"ant_gain": 2,
"power": 8,
},
band24={
"ant_gain": 1,
"allow_rrm_disable": True,
"power_min": 18,
"power_max": 18,
"bandwidth": 20,
},
ant_gain5=2,
ant_gain6=2,
ant_gain24=1,
country_code="FR")
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.NewRftemplate(ctx, "rftemplate_one", &org.RftemplateArgs{
Name: pulumi.String("rftemplate_one"),
OrgId: pulumi.Any(terraformTest.Id),
Band24Usage: pulumi.String("auto"),
Band5: &org.RftemplateBand5Args{
AntGain: pulumi.Int(2),
Power: pulumi.Int(8),
Channels: pulumi.IntArray{
pulumi.Int(60),
pulumi.Int(104),
pulumi.Int(132),
},
Bandwidth: pulumi.Int(20),
},
Band6: &org.RftemplateBand6Args{
AntGain: pulumi.Int(2),
Power: pulumi.Int(8),
},
Band24: &org.RftemplateBand24Args{
AntGain: pulumi.Int(1),
AllowRrmDisable: pulumi.Bool(true),
PowerMin: pulumi.Int(18),
PowerMax: pulumi.Int(18),
Bandwidth: pulumi.Int(20),
},
AntGain5: pulumi.Int(2),
AntGain6: pulumi.Int(2),
AntGain24: pulumi.Int(1),
CountryCode: pulumi.String("FR"),
})
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 rftemplateOne = new JuniperMist.Org.Rftemplate("rftemplate_one", new()
{
Name = "rftemplate_one",
OrgId = terraformTest.Id,
Band24Usage = "auto",
Band5 = new JuniperMist.Org.Inputs.RftemplateBand5Args
{
AntGain = 2,
Power = 8,
Channels = new[]
{
60,
104,
132,
},
Bandwidth = 20,
},
Band6 = new JuniperMist.Org.Inputs.RftemplateBand6Args
{
AntGain = 2,
Power = 8,
},
Band24 = new JuniperMist.Org.Inputs.RftemplateBand24Args
{
AntGain = 1,
AllowRrmDisable = true,
PowerMin = 18,
PowerMax = 18,
Bandwidth = 20,
},
AntGain5 = 2,
AntGain6 = 2,
AntGain24 = 1,
CountryCode = "FR",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.junipermist.org.Rftemplate;
import com.pulumi.junipermist.org.RftemplateArgs;
import com.pulumi.junipermist.org.inputs.RftemplateBand5Args;
import com.pulumi.junipermist.org.inputs.RftemplateBand6Args;
import com.pulumi.junipermist.org.inputs.RftemplateBand24Args;
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 rftemplateOne = new Rftemplate("rftemplateOne", RftemplateArgs.builder()
.name("rftemplate_one")
.orgId(terraformTest.id())
.band24Usage("auto")
.band5(RftemplateBand5Args.builder()
.antGain(2)
.power(8)
.channels(
60,
104,
132)
.bandwidth(20)
.build())
.band6(RftemplateBand6Args.builder()
.antGain(2)
.power(8)
.build())
.band24(RftemplateBand24Args.builder()
.antGain(1)
.allowRrmDisable(true)
.powerMin(18)
.powerMax(18)
.bandwidth(20)
.build())
.antGain5(2)
.antGain6(2)
.antGain24(1)
.countryCode("FR")
.build());
}
}
resources:
rftemplateOne:
type: junipermist:org:Rftemplate
name: rftemplate_one
properties:
name: rftemplate_one
orgId: ${terraformTest.id}
band24Usage: auto
band5:
antGain: 2
power: 8
channels:
- 60
- 104
- 132
bandwidth: 20
band6:
antGain: 2
power: 8
band24:
antGain: 1
allowRrmDisable: true
powerMin: 18
powerMax: 18
bandwidth: 20
antGain5: 2
antGain6: 2
antGain24: 1
countryCode: FR
pulumi {
required_providers {
junipermist = {
source = "pulumi/junipermist"
}
}
}
resource "junipermist_org_rftemplate" "rftemplate_one" {
name = "rftemplate_one"
org_id = terraformTest.id
band24_usage = "auto"
band5 = {
ant_gain = 2
power = 8
channels = [60, 104, 132]
bandwidth = 20
}
band6 = {
ant_gain = 2
power = 8
}
band24 = {
ant_gain = 1
allow_rrm_disable = true
power_min = 18
power_max = 18
bandwidth = 20
}
ant_gain5 = 2
ant_gain6 = 2
ant_gain24 = 1
country_code = "FR"
}
Create Rftemplate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Rftemplate(name: string, args: RftemplateArgs, opts?: CustomResourceOptions);@overload
def Rftemplate(resource_name: str,
args: RftemplateArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Rftemplate(resource_name: str,
opts: Optional[ResourceOptions] = None,
org_id: Optional[str] = None,
band5_on24_radio: Optional[RftemplateBand5On24RadioArgs] = None,
ant_gain6: Optional[int] = None,
band24: Optional[RftemplateBand24Args] = None,
band24_usage: Optional[str] = None,
band5: Optional[RftemplateBand5Args] = None,
ant_gain24: Optional[int] = None,
band6: Optional[RftemplateBand6Args] = None,
country_code: Optional[str] = None,
model_specific: Optional[Mapping[str, RftemplateModelSpecificArgs]] = None,
name: Optional[str] = None,
ant_gain5: Optional[int] = None,
scanning_enabled: Optional[bool] = None)func NewRftemplate(ctx *Context, name string, args RftemplateArgs, opts ...ResourceOption) (*Rftemplate, error)public Rftemplate(string name, RftemplateArgs args, CustomResourceOptions? opts = null)
public Rftemplate(String name, RftemplateArgs args)
public Rftemplate(String name, RftemplateArgs args, CustomResourceOptions options)
type: junipermist:org:Rftemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "junipermist_org_rftemplate" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args RftemplateArgs
- 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 RftemplateArgs
- 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 RftemplateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RftemplateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RftemplateArgs
- 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 rftemplateResource = new JuniperMist.Org.Rftemplate("rftemplateResource", new()
{
OrgId = "string",
Band5On24Radio = new JuniperMist.Org.Inputs.RftemplateBand5On24RadioArgs
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
},
AntGain6 = 0,
Band24 = new JuniperMist.Org.Inputs.RftemplateBand24Args
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
},
Band24Usage = "string",
Band5 = new JuniperMist.Org.Inputs.RftemplateBand5Args
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
},
AntGain24 = 0,
Band6 = new JuniperMist.Org.Inputs.RftemplateBand6Args
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
StandardPower = false,
},
CountryCode = "string",
ModelSpecific =
{
{ "string", new JuniperMist.Org.Inputs.RftemplateModelSpecificArgs
{
AntGain24 = 0,
AntGain5 = 0,
AntGain6 = 0,
Band24 = new JuniperMist.Org.Inputs.RftemplateModelSpecificBand24Args
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
},
Band24Usage = "string",
Band5 = new JuniperMist.Org.Inputs.RftemplateModelSpecificBand5Args
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
},
Band5On24Radio = new JuniperMist.Org.Inputs.RftemplateModelSpecificBand5On24RadioArgs
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
},
Band6 = new JuniperMist.Org.Inputs.RftemplateModelSpecificBand6Args
{
AllowRrmDisable = false,
AntGain = 0,
AntennaMode = "string",
Bandwidth = 0,
Channels = new[]
{
0,
},
Disabled = false,
Power = 0,
PowerMax = 0,
PowerMin = 0,
Preamble = "string",
StandardPower = false,
},
} },
},
Name = "string",
AntGain5 = 0,
ScanningEnabled = false,
});
example, err := org.NewRftemplate(ctx, "rftemplateResource", &org.RftemplateArgs{
OrgId: pulumi.String("string"),
Band5On24Radio: &org.RftemplateBand5On24RadioArgs{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
},
AntGain6: pulumi.Int(0),
Band24: &org.RftemplateBand24Args{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
},
Band24Usage: pulumi.String("string"),
Band5: &org.RftemplateBand5Args{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
},
AntGain24: pulumi.Int(0),
Band6: &org.RftemplateBand6Args{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
StandardPower: pulumi.Bool(false),
},
CountryCode: pulumi.String("string"),
ModelSpecific: org.RftemplateModelSpecificMap{
"string": &org.RftemplateModelSpecificArgs{
AntGain24: pulumi.Int(0),
AntGain5: pulumi.Int(0),
AntGain6: pulumi.Int(0),
Band24: &org.RftemplateModelSpecificBand24Args{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
},
Band24Usage: pulumi.String("string"),
Band5: &org.RftemplateModelSpecificBand5Args{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
},
Band5On24Radio: &org.RftemplateModelSpecificBand5On24RadioArgs{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
},
Band6: &org.RftemplateModelSpecificBand6Args{
AllowRrmDisable: pulumi.Bool(false),
AntGain: pulumi.Int(0),
AntennaMode: pulumi.String("string"),
Bandwidth: pulumi.Int(0),
Channels: pulumi.IntArray{
pulumi.Int(0),
},
Disabled: pulumi.Bool(false),
Power: pulumi.Int(0),
PowerMax: pulumi.Int(0),
PowerMin: pulumi.Int(0),
Preamble: pulumi.String("string"),
StandardPower: pulumi.Bool(false),
},
},
},
Name: pulumi.String("string"),
AntGain5: pulumi.Int(0),
ScanningEnabled: pulumi.Bool(false),
})
resource "junipermist_org_rftemplate" "rftemplateResource" {
lifecycle {
create_before_destroy = true
}
org_id = "string"
band5_on24_radio = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
}
ant_gain6 = 0
band24 = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
}
band24_usage = "string"
band5 = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
}
ant_gain24 = 0
band6 = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
standard_power = false
}
country_code = "string"
model_specific = {
"string" = {
ant_gain24 = 0
ant_gain5 = 0
ant_gain6 = 0
band24 = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
}
band24_usage = "string"
band5 = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
}
band5_on24_radio = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
}
band6 = {
allow_rrm_disable = false
ant_gain = 0
antenna_mode = "string"
bandwidth = 0
channels = [0]
disabled = false
power = 0
power_max = 0
power_min = 0
preamble = "string"
standard_power = false
}
}
}
name = "string"
ant_gain5 = 0
scanning_enabled = false
}
var rftemplateResource = new Rftemplate("rftemplateResource", RftemplateArgs.builder()
.orgId("string")
.band5On24Radio(RftemplateBand5On24RadioArgs.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.build())
.antGain6(0)
.band24(RftemplateBand24Args.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.build())
.band24Usage("string")
.band5(RftemplateBand5Args.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.build())
.antGain24(0)
.band6(RftemplateBand6Args.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.standardPower(false)
.build())
.countryCode("string")
.modelSpecific(Map.of("string", RftemplateModelSpecificArgs.builder()
.antGain24(0)
.antGain5(0)
.antGain6(0)
.band24(RftemplateModelSpecificBand24Args.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.build())
.band24Usage("string")
.band5(RftemplateModelSpecificBand5Args.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.build())
.band5On24Radio(RftemplateModelSpecificBand5On24RadioArgs.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.build())
.band6(RftemplateModelSpecificBand6Args.builder()
.allowRrmDisable(false)
.antGain(0)
.antennaMode("string")
.bandwidth(0)
.channels(0)
.disabled(false)
.power(0)
.powerMax(0)
.powerMin(0)
.preamble("string")
.standardPower(false)
.build())
.build()))
.name("string")
.antGain5(0)
.scanningEnabled(false)
.build());
rftemplate_resource = junipermist.org.Rftemplate("rftemplateResource",
org_id="string",
band5_on24_radio={
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
},
ant_gain6=0,
band24={
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
},
band24_usage="string",
band5={
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
},
ant_gain24=0,
band6={
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
"standard_power": False,
},
country_code="string",
model_specific={
"string": {
"ant_gain24": 0,
"ant_gain5": 0,
"ant_gain6": 0,
"band24": {
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
},
"band24_usage": "string",
"band5": {
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
},
"band5_on24_radio": {
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
},
"band6": {
"allow_rrm_disable": False,
"ant_gain": 0,
"antenna_mode": "string",
"bandwidth": 0,
"channels": [0],
"disabled": False,
"power": 0,
"power_max": 0,
"power_min": 0,
"preamble": "string",
"standard_power": False,
},
},
},
name="string",
ant_gain5=0,
scanning_enabled=False)
const rftemplateResource = new junipermist.org.Rftemplate("rftemplateResource", {
orgId: "string",
band5On24Radio: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
},
antGain6: 0,
band24: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
},
band24Usage: "string",
band5: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
},
antGain24: 0,
band6: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
standardPower: false,
},
countryCode: "string",
modelSpecific: {
string: {
antGain24: 0,
antGain5: 0,
antGain6: 0,
band24: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
},
band24Usage: "string",
band5: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
},
band5On24Radio: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
},
band6: {
allowRrmDisable: false,
antGain: 0,
antennaMode: "string",
bandwidth: 0,
channels: [0],
disabled: false,
power: 0,
powerMax: 0,
powerMin: 0,
preamble: "string",
standardPower: false,
},
},
},
name: "string",
antGain5: 0,
scanningEnabled: false,
});
type: junipermist:org:Rftemplate
properties:
antGain5: 0
antGain6: 0
antGain24: 0
band5:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
band5On24Radio:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
band6:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
standardPower: false
band24:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
band24Usage: string
countryCode: string
modelSpecific:
string:
antGain5: 0
antGain6: 0
antGain24: 0
band5:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
band5On24Radio:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
band6:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
standardPower: false
band24:
allowRrmDisable: false
antGain: 0
antennaMode: string
bandwidth: 0
channels:
- 0
disabled: false
power: 0
powerMax: 0
powerMin: 0
preamble: string
band24Usage: string
name: string
orgId: string
scanningEnabled: false
Rftemplate 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 Rftemplate resource accepts the following input properties:
- Org
Id string - Organization that owns this RF template
- Ant
Gain24 int - External antenna gain for the 2.4 GHz radio
- Ant
Gain5 int - External antenna gain for the 5 GHz radio
- Ant
Gain6 int - External antenna gain for the 6 GHz radio
- Band24
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band24 - 2.4 GHz radio settings in this RF template
- Band24Usage string
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- Band5
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band5 - 5 GHz radio settings in this RF template
- Band5On24Radio
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band5On24Radio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- Band6
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band6 - 6 GHz radio settings in this RF template
- Country
Code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- Model
Specific Dictionary<string, Pulumi.Juniper Mist. Org. Inputs. Rftemplate Model Specific Args> - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- Name string
- The name of the RF template
- Scanning
Enabled bool - Whether scanning radio is enabled
- Org
Id string - Organization that owns this RF template
- Ant
Gain24 int - External antenna gain for the 2.4 GHz radio
- Ant
Gain5 int - External antenna gain for the 5 GHz radio
- Ant
Gain6 int - External antenna gain for the 6 GHz radio
- Band24
Rftemplate
Band24Args - 2.4 GHz radio settings in this RF template
- Band24Usage string
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- Band5
Rftemplate
Band5Args - 5 GHz radio settings in this RF template
- Band5On24Radio
Rftemplate
Band5On24Radio Args - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- Band6
Rftemplate
Band6Args - 6 GHz radio settings in this RF template
- Country
Code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- Model
Specific map[string]RftemplateModel Specific Args - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- Name string
- The name of the RF template
- Scanning
Enabled bool - Whether scanning radio is enabled
- org_
id string - Organization that owns this RF template
- ant_
gain24 number - External antenna gain for the 2.4 GHz radio
- ant_
gain5 number - External antenna gain for the 5 GHz radio
- ant_
gain6 number - External antenna gain for the 6 GHz radio
- band24 object
- 2.4 GHz radio settings in this RF template
- band24_
usage string - Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5 object
- 5 GHz radio settings in this RF template
- band5_
on24_ objectradio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6 object
- 6 GHz radio settings in this RF template
- country_
code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model_
specific map(object) - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name string
- The name of the RF template
- scanning_
enabled bool - Whether scanning radio is enabled
- org
Id String - Organization that owns this RF template
- ant
Gain24 Integer - External antenna gain for the 2.4 GHz radio
- ant
Gain5 Integer - External antenna gain for the 5 GHz radio
- ant
Gain6 Integer - External antenna gain for the 6 GHz radio
- band24
Rftemplate
Band24 - 2.4 GHz radio settings in this RF template
- band24Usage String
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5
Rftemplate
Band5 - 5 GHz radio settings in this RF template
- band5On24Radio
Rftemplate
Band5On24Radio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Band6 - 6 GHz radio settings in this RF template
- country
Code String - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model
Specific Map<String,RftemplateModel Specific Args> - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name String
- The name of the RF template
- scanning
Enabled Boolean - Whether scanning radio is enabled
- org
Id string - Organization that owns this RF template
- ant
Gain24 number - External antenna gain for the 2.4 GHz radio
- ant
Gain5 number - External antenna gain for the 5 GHz radio
- ant
Gain6 number - External antenna gain for the 6 GHz radio
- band24
Rftemplate
Band24 - 2.4 GHz radio settings in this RF template
- band24Usage string
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5
Rftemplate
Band5 - 5 GHz radio settings in this RF template
- band5On24Radio
Rftemplate
Band5On24Radio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Band6 - 6 GHz radio settings in this RF template
- country
Code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model
Specific {[key: string]: RftemplateModel Specific Args} - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name string
- The name of the RF template
- scanning
Enabled boolean - Whether scanning radio is enabled
- org_
id str - Organization that owns this RF template
- ant_
gain24 int - External antenna gain for the 2.4 GHz radio
- ant_
gain5 int - External antenna gain for the 5 GHz radio
- ant_
gain6 int - External antenna gain for the 6 GHz radio
- band24
Rftemplate
Band24Args - 2.4 GHz radio settings in this RF template
- band24_
usage str - Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5
Rftemplate
Band5Args - 5 GHz radio settings in this RF template
- band5_
on24_ Rftemplateradio Band5On24Radio Args - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Band6Args - 6 GHz radio settings in this RF template
- country_
code str - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model_
specific Mapping[str, RftemplateModel Specific Args] - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name str
- The name of the RF template
- scanning_
enabled bool - Whether scanning radio is enabled
- org
Id String - Organization that owns this RF template
- ant
Gain24 Number - External antenna gain for the 2.4 GHz radio
- ant
Gain5 Number - External antenna gain for the 5 GHz radio
- ant
Gain6 Number - External antenna gain for the 6 GHz radio
- band24 Property Map
- 2.4 GHz radio settings in this RF template
- band24Usage String
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5 Property Map
- 5 GHz radio settings in this RF template
- band5On24Radio Property Map
- 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6 Property Map
- 6 GHz radio settings in this RF template
- country
Code String - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model
Specific Map<Property Map> - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name String
- The name of the RF template
- scanning
Enabled Boolean - Whether scanning radio is enabled
Outputs
All input properties are implicitly available as output properties. Additionally, the Rftemplate 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 Rftemplate Resource
Get an existing Rftemplate 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?: RftemplateState, opts?: CustomResourceOptions): Rftemplate@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
ant_gain24: Optional[int] = None,
ant_gain5: Optional[int] = None,
ant_gain6: Optional[int] = None,
band24: Optional[RftemplateBand24Args] = None,
band24_usage: Optional[str] = None,
band5: Optional[RftemplateBand5Args] = None,
band5_on24_radio: Optional[RftemplateBand5On24RadioArgs] = None,
band6: Optional[RftemplateBand6Args] = None,
country_code: Optional[str] = None,
model_specific: Optional[Mapping[str, RftemplateModelSpecificArgs]] = None,
name: Optional[str] = None,
org_id: Optional[str] = None,
scanning_enabled: Optional[bool] = None) -> Rftemplatefunc GetRftemplate(ctx *Context, name string, id IDInput, state *RftemplateState, opts ...ResourceOption) (*Rftemplate, error)public static Rftemplate Get(string name, Input<string> id, RftemplateState? state, CustomResourceOptions? opts = null)public static Rftemplate get(String name, Output<String> id, RftemplateState state, CustomResourceOptions options)resources: _: type: junipermist:org:Rftemplate get: id: ${id}import {
to = junipermist_org_rftemplate.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.
- Ant
Gain24 int - External antenna gain for the 2.4 GHz radio
- Ant
Gain5 int - External antenna gain for the 5 GHz radio
- Ant
Gain6 int - External antenna gain for the 6 GHz radio
- Band24
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band24 - 2.4 GHz radio settings in this RF template
- Band24Usage string
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- Band5
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band5 - 5 GHz radio settings in this RF template
- Band5On24Radio
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band5On24Radio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- Band6
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Band6 - 6 GHz radio settings in this RF template
- Country
Code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- Model
Specific Dictionary<string, Pulumi.Juniper Mist. Org. Inputs. Rftemplate Model Specific Args> - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- Name string
- The name of the RF template
- Org
Id string - Organization that owns this RF template
- Scanning
Enabled bool - Whether scanning radio is enabled
- Ant
Gain24 int - External antenna gain for the 2.4 GHz radio
- Ant
Gain5 int - External antenna gain for the 5 GHz radio
- Ant
Gain6 int - External antenna gain for the 6 GHz radio
- Band24
Rftemplate
Band24Args - 2.4 GHz radio settings in this RF template
- Band24Usage string
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- Band5
Rftemplate
Band5Args - 5 GHz radio settings in this RF template
- Band5On24Radio
Rftemplate
Band5On24Radio Args - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- Band6
Rftemplate
Band6Args - 6 GHz radio settings in this RF template
- Country
Code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- Model
Specific map[string]RftemplateModel Specific Args - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- Name string
- The name of the RF template
- Org
Id string - Organization that owns this RF template
- Scanning
Enabled bool - Whether scanning radio is enabled
- ant_
gain24 number - External antenna gain for the 2.4 GHz radio
- ant_
gain5 number - External antenna gain for the 5 GHz radio
- ant_
gain6 number - External antenna gain for the 6 GHz radio
- band24 object
- 2.4 GHz radio settings in this RF template
- band24_
usage string - Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5 object
- 5 GHz radio settings in this RF template
- band5_
on24_ objectradio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6 object
- 6 GHz radio settings in this RF template
- country_
code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model_
specific map(object) - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name string
- The name of the RF template
- org_
id string - Organization that owns this RF template
- scanning_
enabled bool - Whether scanning radio is enabled
- ant
Gain24 Integer - External antenna gain for the 2.4 GHz radio
- ant
Gain5 Integer - External antenna gain for the 5 GHz radio
- ant
Gain6 Integer - External antenna gain for the 6 GHz radio
- band24
Rftemplate
Band24 - 2.4 GHz radio settings in this RF template
- band24Usage String
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5
Rftemplate
Band5 - 5 GHz radio settings in this RF template
- band5On24Radio
Rftemplate
Band5On24Radio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Band6 - 6 GHz radio settings in this RF template
- country
Code String - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model
Specific Map<String,RftemplateModel Specific Args> - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name String
- The name of the RF template
- org
Id String - Organization that owns this RF template
- scanning
Enabled Boolean - Whether scanning radio is enabled
- ant
Gain24 number - External antenna gain for the 2.4 GHz radio
- ant
Gain5 number - External antenna gain for the 5 GHz radio
- ant
Gain6 number - External antenna gain for the 6 GHz radio
- band24
Rftemplate
Band24 - 2.4 GHz radio settings in this RF template
- band24Usage string
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5
Rftemplate
Band5 - 5 GHz radio settings in this RF template
- band5On24Radio
Rftemplate
Band5On24Radio - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Band6 - 6 GHz radio settings in this RF template
- country
Code string - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model
Specific {[key: string]: RftemplateModel Specific Args} - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name string
- The name of the RF template
- org
Id string - Organization that owns this RF template
- scanning
Enabled boolean - Whether scanning radio is enabled
- ant_
gain24 int - External antenna gain for the 2.4 GHz radio
- ant_
gain5 int - External antenna gain for the 5 GHz radio
- ant_
gain6 int - External antenna gain for the 6 GHz radio
- band24
Rftemplate
Band24Args - 2.4 GHz radio settings in this RF template
- band24_
usage str - Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5
Rftemplate
Band5Args - 5 GHz radio settings in this RF template
- band5_
on24_ Rftemplateradio Band5On24Radio Args - 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Band6Args - 6 GHz radio settings in this RF template
- country_
code str - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model_
specific Mapping[str, RftemplateModel Specific Args] - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name str
- The name of the RF template
- org_
id str - Organization that owns this RF template
- scanning_
enabled bool - Whether scanning radio is enabled
- ant
Gain24 Number - External antenna gain for the 2.4 GHz radio
- ant
Gain5 Number - External antenna gain for the 5 GHz radio
- ant
Gain6 Number - External antenna gain for the 6 GHz radio
- band24 Property Map
- 2.4 GHz radio settings in this RF template
- band24Usage String
- Radio usage mode for the 2.4 GHz-capable radio in this RF template
- band5 Property Map
- 5 GHz radio settings in this RF template
- band5On24Radio Property Map
- 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6 Property Map
- 6 GHz radio settings in this RF template
- country
Code String - Optional, country code to use. If specified, this gets applied to all sites using the RF Template
- model
Specific Map<Property Map> - overwrites for a specific model. If a band is specified, it will shadow the default. Property key is the model name (e.g. "AP63")
- name String
- The name of the RF template
- org
Id String - Organization that owns this RF template
- scanning
Enabled Boolean - Whether scanning radio is enabled
Supporting Types
RftemplateBand24, RftemplateBand24Args
- Allow
Rrm boolDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 2.4 GHz radio
- Antenna
Mode string - Radio chain mode for the 2.4 GHz radio
- Bandwidth int
- Channel width configured for the 2.4 GHz radio
- Channels List<int>
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- Allow
Rrm boolDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 2.4 GHz radio
- Antenna
Mode string - Radio chain mode for the 2.4 GHz radio
- Bandwidth int
- Channel width configured for the 2.4 GHz radio
- Channels []int
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 2.4 GHz radio
- antenna_
mode string - Radio chain mode for the 2.4 GHz radio
- bandwidth number
- Channel width configured for the 2.4 GHz radio
- channels list(number)
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 2.4 GHz radio
- antenna
Mode String - Radio chain mode for the 2.4 GHz radio
- bandwidth Integer
- Channel width configured for the 2.4 GHz radio
- channels List<Integer>
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 2.4 GHz radio
- allow
Rrm booleanDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 2.4 GHz radio
- antenna
Mode string - Radio chain mode for the 2.4 GHz radio
- bandwidth number
- Channel width configured for the 2.4 GHz radio
- channels number[]
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 2.4 GHz radio
- antenna_
mode str - Radio chain mode for the 2.4 GHz radio
- bandwidth int
- Channel width configured for the 2.4 GHz radio
- channels Sequence[int]
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 2.4 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 2.4 GHz radio
- antenna
Mode String - Radio chain mode for the 2.4 GHz radio
- bandwidth Number
- Channel width configured for the 2.4 GHz radio
- channels List<Number>
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 2.4 GHz radio
RftemplateBand5, RftemplateBand5Args
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels List<int>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels []int
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 5 GHz radio
- antenna_
mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels list(number)
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Integer
- Channel width configured for the 5 GHz radio
- channels List<Integer>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm booleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 5 GHz radio
- antenna
Mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels number[]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 5 GHz radio
- antenna_
mode str - Radio chain mode for the 5 GHz radio
- bandwidth int
- Channel width configured for the 5 GHz radio
- channels Sequence[int]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Number
- Channel width configured for the 5 GHz radio
- channels List<Number>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
RftemplateBand5On24Radio, RftemplateBand5On24RadioArgs
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels List<int>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels []int
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 5 GHz radio
- antenna_
mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels list(number)
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Integer
- Channel width configured for the 5 GHz radio
- channels List<Integer>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm booleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 5 GHz radio
- antenna
Mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels number[]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 5 GHz radio
- antenna_
mode str - Radio chain mode for the 5 GHz radio
- bandwidth int
- Channel width configured for the 5 GHz radio
- channels Sequence[int]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Number
- Channel width configured for the 5 GHz radio
- channels List<Number>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
RftemplateBand6, RftemplateBand6Args
- Allow
Rrm boolDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 6 GHz radio
- Antenna
Mode string - Radio chain mode for the 6 GHz radio
- Bandwidth int
- Channel width configured for the 6 GHz radio
- Channels List<int>
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 6 GHz radio
- Standard
Power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- Allow
Rrm boolDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 6 GHz radio
- Antenna
Mode string - Radio chain mode for the 6 GHz radio
- Bandwidth int
- Channel width configured for the 6 GHz radio
- Channels []int
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 6 GHz radio
- Standard
Power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow_
rrm_ booldisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 6 GHz radio
- antenna_
mode string - Radio chain mode for the 6 GHz radio
- bandwidth number
- Channel width configured for the 6 GHz radio
- channels list(number)
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 6 GHz radio
- standard_
power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow
Rrm BooleanDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 6 GHz radio
- antenna
Mode String - Radio chain mode for the 6 GHz radio
- bandwidth Integer
- Channel width configured for the 6 GHz radio
- channels List<Integer>
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 6 GHz radio
- standard
Power Boolean - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow
Rrm booleanDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 6 GHz radio
- antenna
Mode string - Radio chain mode for the 6 GHz radio
- bandwidth number
- Channel width configured for the 6 GHz radio
- channels number[]
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 6 GHz radio
- standard
Power boolean - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow_
rrm_ booldisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 6 GHz radio
- antenna_
mode str - Radio chain mode for the 6 GHz radio
- bandwidth int
- Channel width configured for the 6 GHz radio
- channels Sequence[int]
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 6 GHz radio
- standard_
power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow
Rrm BooleanDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 6 GHz radio
- antenna
Mode String - Radio chain mode for the 6 GHz radio
- bandwidth Number
- Channel width configured for the 6 GHz radio
- channels List<Number>
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 6 GHz radio
- standard
Power Boolean - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
RftemplateModelSpecific, RftemplateModelSpecificArgs
- Ant
Gain24 int - Model-specific external antenna gain for the 2.4 GHz radio
- Ant
Gain5 int - Model-specific external antenna gain for the 5 GHz radio
- Ant
Gain6 int - Model-specific external antenna gain for the 6 GHz radio
- Band24
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Model Specific Band24 - Model-specific 2.4 GHz radio settings that override RF template defaults
- Band24Usage string
- Model-specific radio usage mode for the 2.4 GHz-capable radio
- Band5
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Model Specific Band5 - Model-specific 5 GHz radio settings that override RF template defaults
- Band5On24Radio
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Model Specific Band5On24Radio - Model-specific 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- Band6
Pulumi.
Juniper Mist. Org. Inputs. Rftemplate Model Specific Band6 - Model-specific 6 GHz radio settings that override RF template defaults
- Ant
Gain24 int - Model-specific external antenna gain for the 2.4 GHz radio
- Ant
Gain5 int - Model-specific external antenna gain for the 5 GHz radio
- Ant
Gain6 int - Model-specific external antenna gain for the 6 GHz radio
- Band24
Rftemplate
Model Specific Band24 - Model-specific 2.4 GHz radio settings that override RF template defaults
- Band24Usage string
- Model-specific radio usage mode for the 2.4 GHz-capable radio
- Band5
Rftemplate
Model Specific Band5 - Model-specific 5 GHz radio settings that override RF template defaults
- Band5On24Radio
Rftemplate
Model Specific Band5On24Radio - Model-specific 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- Band6
Rftemplate
Model Specific Band6 - Model-specific 6 GHz radio settings that override RF template defaults
- ant_
gain24 number - Model-specific external antenna gain for the 2.4 GHz radio
- ant_
gain5 number - Model-specific external antenna gain for the 5 GHz radio
- ant_
gain6 number - Model-specific external antenna gain for the 6 GHz radio
- band24 object
- Model-specific 2.4 GHz radio settings that override RF template defaults
- band24_
usage string - Model-specific radio usage mode for the 2.4 GHz-capable radio
- band5 object
- Model-specific 5 GHz radio settings that override RF template defaults
- band5_
on24_ objectradio - Model-specific 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6 object
- Model-specific 6 GHz radio settings that override RF template defaults
- ant
Gain24 Integer - Model-specific external antenna gain for the 2.4 GHz radio
- ant
Gain5 Integer - Model-specific external antenna gain for the 5 GHz radio
- ant
Gain6 Integer - Model-specific external antenna gain for the 6 GHz radio
- band24
Rftemplate
Model Specific Band24 - Model-specific 2.4 GHz radio settings that override RF template defaults
- band24Usage String
- Model-specific radio usage mode for the 2.4 GHz-capable radio
- band5
Rftemplate
Model Specific Band5 - Model-specific 5 GHz radio settings that override RF template defaults
- band5On24Radio
Rftemplate
Model Specific Band5On24Radio - Model-specific 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Model Specific Band6 - Model-specific 6 GHz radio settings that override RF template defaults
- ant
Gain24 number - Model-specific external antenna gain for the 2.4 GHz radio
- ant
Gain5 number - Model-specific external antenna gain for the 5 GHz radio
- ant
Gain6 number - Model-specific external antenna gain for the 6 GHz radio
- band24
Rftemplate
Model Specific Band24 - Model-specific 2.4 GHz radio settings that override RF template defaults
- band24Usage string
- Model-specific radio usage mode for the 2.4 GHz-capable radio
- band5
Rftemplate
Model Specific Band5 - Model-specific 5 GHz radio settings that override RF template defaults
- band5On24Radio
Rftemplate
Model Specific Band5On24Radio - Model-specific 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Model Specific Band6 - Model-specific 6 GHz radio settings that override RF template defaults
- ant_
gain24 int - Model-specific external antenna gain for the 2.4 GHz radio
- ant_
gain5 int - Model-specific external antenna gain for the 5 GHz radio
- ant_
gain6 int - Model-specific external antenna gain for the 6 GHz radio
- band24
Rftemplate
Model Specific Band24 - Model-specific 2.4 GHz radio settings that override RF template defaults
- band24_
usage str - Model-specific radio usage mode for the 2.4 GHz-capable radio
- band5
Rftemplate
Model Specific Band5 - Model-specific 5 GHz radio settings that override RF template defaults
- band5_
on24_ Rftemplateradio Model Specific Band5On24Radio - Model-specific 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6
Rftemplate
Model Specific Band6 - Model-specific 6 GHz radio settings that override RF template defaults
- ant
Gain24 Number - Model-specific external antenna gain for the 2.4 GHz radio
- ant
Gain5 Number - Model-specific external antenna gain for the 5 GHz radio
- ant
Gain6 Number - Model-specific external antenna gain for the 6 GHz radio
- band24 Property Map
- Model-specific 2.4 GHz radio settings that override RF template defaults
- band24Usage String
- Model-specific radio usage mode for the 2.4 GHz-capable radio
- band5 Property Map
- Model-specific 5 GHz radio settings that override RF template defaults
- band5On24Radio Property Map
- Model-specific 5 GHz settings used when the 2.4 GHz radio operates in 5 GHz mode
- band6 Property Map
- Model-specific 6 GHz radio settings that override RF template defaults
RftemplateModelSpecificBand24, RftemplateModelSpecificBand24Args
- Allow
Rrm boolDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 2.4 GHz radio
- Antenna
Mode string - Radio chain mode for the 2.4 GHz radio
- Bandwidth int
- Channel width configured for the 2.4 GHz radio
- Channels List<int>
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- Allow
Rrm boolDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 2.4 GHz radio
- Antenna
Mode string - Radio chain mode for the 2.4 GHz radio
- Bandwidth int
- Channel width configured for the 2.4 GHz radio
- Channels []int
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 2.4 GHz radio
- antenna_
mode string - Radio chain mode for the 2.4 GHz radio
- bandwidth number
- Channel width configured for the 2.4 GHz radio
- channels list(number)
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 2.4 GHz radio
- antenna
Mode String - Radio chain mode for the 2.4 GHz radio
- bandwidth Integer
- Channel width configured for the 2.4 GHz radio
- channels List<Integer>
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 2.4 GHz radio
- allow
Rrm booleanDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 2.4 GHz radio
- antenna
Mode string - Radio chain mode for the 2.4 GHz radio
- bandwidth number
- Channel width configured for the 2.4 GHz radio
- channels number[]
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 2.4 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 2.4 GHz radio
- antenna_
mode str - Radio chain mode for the 2.4 GHz radio
- bandwidth int
- Channel width configured for the 2.4 GHz radio
- channels Sequence[int]
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 2.4 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 2.4 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 2.4 GHz radio
- antenna
Mode String - Radio chain mode for the 2.4 GHz radio
- bandwidth Number
- Channel width configured for the 2.4 GHz radio
- channels List<Number>
- Allowed channel list for the 2.4 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 2.4 GHz radio
RftemplateModelSpecificBand5, RftemplateModelSpecificBand5Args
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels List<int>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels []int
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 5 GHz radio
- antenna_
mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels list(number)
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Integer
- Channel width configured for the 5 GHz radio
- channels List<Integer>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm booleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 5 GHz radio
- antenna
Mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels number[]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 5 GHz radio
- antenna_
mode str - Radio chain mode for the 5 GHz radio
- bandwidth int
- Channel width configured for the 5 GHz radio
- channels Sequence[int]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Number
- Channel width configured for the 5 GHz radio
- channels List<Number>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
RftemplateModelSpecificBand5On24Radio, RftemplateModelSpecificBand5On24RadioArgs
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels List<int>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- Allow
Rrm boolDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 5 GHz radio
- Antenna
Mode string - Radio chain mode for the 5 GHz radio
- Bandwidth int
- Channel width configured for the 5 GHz radio
- Channels []int
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 5 GHz radio
- antenna_
mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels list(number)
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Integer
- Channel width configured for the 5 GHz radio
- channels List<Integer>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm booleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 5 GHz radio
- antenna
Mode string - Radio chain mode for the 5 GHz radio
- bandwidth number
- Channel width configured for the 5 GHz radio
- channels number[]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 5 GHz radio
- allow_
rrm_ booldisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 5 GHz radio
- antenna_
mode str - Radio chain mode for the 5 GHz radio
- bandwidth int
- Channel width configured for the 5 GHz radio
- channels Sequence[int]
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 5 GHz radio
- allow
Rrm BooleanDisable - Whether RRM may disable the 5 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 5 GHz radio
- antenna
Mode String - Radio chain mode for the 5 GHz radio
- bandwidth Number
- Channel width configured for the 5 GHz radio
- channels List<Number>
- Allowed channel list for the 5 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 5 GHz radio
RftemplateModelSpecificBand6, RftemplateModelSpecificBand6Args
- Allow
Rrm boolDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 6 GHz radio
- Antenna
Mode string - Radio chain mode for the 6 GHz radio
- Bandwidth int
- Channel width configured for the 6 GHz radio
- Channels List<int>
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 6 GHz radio
- Standard
Power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- Allow
Rrm boolDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- Ant
Gain int - External antenna gain for the 6 GHz radio
- Antenna
Mode string - Radio chain mode for the 6 GHz radio
- Bandwidth int
- Channel width configured for the 6 GHz radio
- Channels []int
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- Disabled bool
- Whether to disable the radio
- Power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - Power
Max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- Power
Min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- Preamble string
- 802.11 preamble mode used by the 6 GHz radio
- Standard
Power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow_
rrm_ booldisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant_
gain number - External antenna gain for the 6 GHz radio
- antenna_
mode string - Radio chain mode for the 6 GHz radio
- bandwidth number
- Channel width configured for the 6 GHz radio
- channels list(number)
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 6 GHz radio
- standard_
power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow
Rrm BooleanDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant
Gain Integer - External antenna gain for the 6 GHz radio
- antenna
Mode String - Radio chain mode for the 6 GHz radio
- bandwidth Integer
- Channel width configured for the 6 GHz radio
- channels List<Integer>
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Integer
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Integer - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Integer - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 6 GHz radio
- standard
Power Boolean - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow
Rrm booleanDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant
Gain number - External antenna gain for the 6 GHz radio
- antenna
Mode string - Radio chain mode for the 6 GHz radio
- bandwidth number
- Channel width configured for the 6 GHz radio
- channels number[]
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled boolean
- Whether to disable the radio
- power number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble string
- 802.11 preamble mode used by the 6 GHz radio
- standard
Power boolean - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow_
rrm_ booldisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant_
gain int - External antenna gain for the 6 GHz radio
- antenna_
mode str - Radio chain mode for the 6 GHz radio
- bandwidth int
- Channel width configured for the 6 GHz radio
- channels Sequence[int]
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled bool
- Whether to disable the radio
- power int
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power_
max int - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power_
min int - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble str
- 802.11 preamble mode used by the 6 GHz radio
- standard_
power bool - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
- allow
Rrm BooleanDisable - Whether RRM may disable the 6 GHz radio when optimizing RF settings
- ant
Gain Number - External antenna gain for the 6 GHz radio
- antenna
Mode String - Radio chain mode for the 6 GHz radio
- bandwidth Number
- Channel width configured for the 6 GHz radio
- channels List<Number>
- Allowed channel list for the 6 GHz radio; null or an empty array uses automatic selection
- disabled Boolean
- Whether to disable the radio
- power Number
- Radio Tx power, in dBm. Can be an integer 0-25 for static power configuration, or
nullor unset for auto power mode - power
Max Number - When power=null/unset, max tx power to use, HW-specific values will be used if not set
- power
Min Number - When power=null/unset, min tx power to use, HW-specific values will be used if not set
- preamble String
- 802.11 preamble mode used by the 6 GHz radio
- standard
Power Boolean - For 6GHz Only, standard-power operation, AFC (Automatic Frequency Coordination) will be performed, and we'll fall back to Low Power Indoor if AFC failed
Import
Using pulumi import, import junipermist.org.Rftemplate with:
Org RF Template can be imported by specifying the orgId and the rftemplateId
$ pulumi import junipermist:org/rftemplate:Rftemplate rftemplate_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